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

61685 строки
1.5 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. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. }
  2274. //species
  2275. function getSpeciesInfo(speciesList) {
  2276. let result = new Set();
  2277. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2278. result.add(entry)
  2279. });
  2280. return Array.from(result);
  2281. };
  2282. function getSpeciesInfoHelper(species) {
  2283. if (!speciesData[species]) {
  2284. console.warn(species + " doesn't exist");
  2285. return [];
  2286. }
  2287. if (speciesData[species].parents) {
  2288. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2289. } else {
  2290. return [species];
  2291. }
  2292. }
  2293. characterMakers.push(() => makeCharacter(
  2294. {
  2295. name: "Fen",
  2296. species: ["crux"],
  2297. description: {
  2298. title: "Bio",
  2299. text: "Very furry. Sheds on everything."
  2300. },
  2301. tags: [
  2302. "anthro",
  2303. "goo"
  2304. ]
  2305. },
  2306. {
  2307. front: {
  2308. height: math.unit(12, "feet"),
  2309. weight: math.unit(2400, "lb"),
  2310. preyCapacity: math.unit(1, "people"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/fen/front.svg",
  2314. extra: 1804/1562,
  2315. bottom: 205/2009
  2316. },
  2317. extraAttributes: {
  2318. pawSize: {
  2319. name: "Paw Size",
  2320. power: 2,
  2321. type: "area",
  2322. base: math.unit(0.35, "m^2")
  2323. }
  2324. }
  2325. },
  2326. diving: {
  2327. height: math.unit(4.9, "meters"),
  2328. weight: math.unit(2400, "lb"),
  2329. name: "Diving",
  2330. image: {
  2331. source: "./media/characters/fen/diving.svg"
  2332. }
  2333. },
  2334. sleeby: {
  2335. height: math.unit(3.45, "meters"),
  2336. weight: math.unit(2400, "lb"),
  2337. name: "Sleeby",
  2338. image: {
  2339. source: "./media/characters/fen/sleeby.svg"
  2340. }
  2341. },
  2342. goo: {
  2343. height: math.unit(12, "feet"),
  2344. weight: math.unit(3600, "lb"),
  2345. volume: math.unit(1000, "liters"),
  2346. preyCapacity: math.unit(6, "people"),
  2347. name: "Goo",
  2348. image: {
  2349. source: "./media/characters/fen/goo.svg",
  2350. extra: 1307/1071,
  2351. bottom: 134/1441
  2352. }
  2353. },
  2354. horror: {
  2355. height: math.unit(13.6, "feet"),
  2356. weight: math.unit(2400, "lb"),
  2357. preyCapacity: math.unit(1, "people"),
  2358. name: "Horror",
  2359. image: {
  2360. source: "./media/characters/fen/horror.svg",
  2361. extra: 893/797,
  2362. bottom: 0/893
  2363. }
  2364. },
  2365. gooNsfw: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(3750, "lb"),
  2368. volume: math.unit(1000, "liters"),
  2369. preyCapacity: math.unit(6, "people"),
  2370. name: "Goo (NSFW)",
  2371. image: {
  2372. source: "./media/characters/fen/goo-nsfw.svg",
  2373. extra: 1875/1734,
  2374. bottom: 122/1997
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(5.03, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/fen/maw.svg"
  2382. }
  2383. },
  2384. gooCeiling: {
  2385. height: math.unit(6.6, "feet"),
  2386. weight: math.unit(3000, "lb"),
  2387. volume: math.unit(1000, "liters"),
  2388. preyCapacity: math.unit(6, "people"),
  2389. name: "Maw (Goo)",
  2390. image: {
  2391. source: "./media/characters/fen/goo-maw.svg"
  2392. }
  2393. },
  2394. paw: {
  2395. height: math.unit(3.77, "feet"),
  2396. name: "Paw",
  2397. image: {
  2398. source: "./media/characters/fen/paw.svg"
  2399. },
  2400. extraAttributes: {
  2401. "toeSize": {
  2402. name: "Toe Size",
  2403. power: 2,
  2404. type: "area",
  2405. base: math.unit(0.02875, "m^2")
  2406. },
  2407. "pawSize": {
  2408. name: "Paw Size",
  2409. power: 2,
  2410. type: "area",
  2411. base: math.unit(0.378, "m^2")
  2412. },
  2413. }
  2414. },
  2415. tail: {
  2416. height: math.unit(12.1, "feet"),
  2417. name: "Tail",
  2418. image: {
  2419. source: "./media/characters/fen/tail.svg"
  2420. }
  2421. },
  2422. tailFull: {
  2423. height: math.unit(12.1, "feet"),
  2424. name: "Full Tail",
  2425. image: {
  2426. source: "./media/characters/fen/tail-full.svg"
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(12, "feet"),
  2431. weight: math.unit(2400, "lb"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/fen/back.svg",
  2435. },
  2436. info: {
  2437. description: {
  2438. mode: "append",
  2439. text: "\n\nHe is not currently looking at you."
  2440. }
  2441. }
  2442. },
  2443. full: {
  2444. height: math.unit(1.85, "meter"),
  2445. weight: math.unit(3200, "lb"),
  2446. name: "Full",
  2447. image: {
  2448. source: "./media/characters/fen/full.svg",
  2449. extra: 1133/859,
  2450. bottom: 145/1278
  2451. },
  2452. info: {
  2453. description: {
  2454. mode: "append",
  2455. text: "\n\nMunch."
  2456. }
  2457. }
  2458. },
  2459. gooLounging: {
  2460. height: math.unit(4.53, "feet"),
  2461. weight: math.unit(3000, "lb"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (Lounging)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-lounging.svg",
  2466. bottom: 116 / 613
  2467. }
  2468. },
  2469. lounging: {
  2470. height: math.unit(10.52, "feet"),
  2471. weight: math.unit(2400, "lb"),
  2472. name: "Lounging",
  2473. image: {
  2474. source: "./media/characters/fen/lounging.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Small",
  2481. height: math.unit(2.2428, "meter")
  2482. },
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(12, "feet"),
  2486. default: true,
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(20, "feet")
  2491. },
  2492. {
  2493. name: "Minimacro",
  2494. height: math.unit(40, "feet"),
  2495. info: {
  2496. description: {
  2497. mode: "append",
  2498. text: "\n\nTOO DAMN BIG"
  2499. }
  2500. }
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(100, "feet"),
  2505. info: {
  2506. description: {
  2507. mode: "append",
  2508. text: "\n\nTOO DAMN BIG"
  2509. }
  2510. }
  2511. },
  2512. {
  2513. name: "Megamacro",
  2514. height: math.unit(2, "miles")
  2515. },
  2516. {
  2517. name: "Gigamacro",
  2518. height: math.unit(10, "earths")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(183, "cm"),
  2527. weight: math.unit(80, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/sofia-fluttertail/front.svg",
  2531. bottom: 0.01,
  2532. extra: 2154 / 2081
  2533. }
  2534. },
  2535. frontAlt: {
  2536. height: math.unit(183, "cm"),
  2537. weight: math.unit(80, "kg"),
  2538. name: "Front (alt)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/back.svg"
  2549. }
  2550. },
  2551. kneeling: {
  2552. height: math.unit(125, "cm"),
  2553. weight: math.unit(80, "kg"),
  2554. name: "Kneeling",
  2555. image: {
  2556. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2557. extra: 1033 / 977,
  2558. bottom: 23.7 / 1057
  2559. }
  2560. },
  2561. maw: {
  2562. height: math.unit(183 / 5, "cm"),
  2563. name: "Maw",
  2564. image: {
  2565. source: "./media/characters/sofia-fluttertail/maw.svg"
  2566. }
  2567. },
  2568. mawcloseup: {
  2569. height: math.unit(183 / 5 * 0.41, "cm"),
  2570. name: "Maw (Closeup)",
  2571. image: {
  2572. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2573. }
  2574. },
  2575. paws: {
  2576. height: math.unit(1.17, "feet"),
  2577. name: "Paws",
  2578. image: {
  2579. source: "./media/characters/sofia-fluttertail/paws.svg",
  2580. extra: 851 / 851,
  2581. bottom: 17 / 868
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(1.83, "meter")
  2589. },
  2590. {
  2591. name: "Size Thief",
  2592. height: math.unit(18, "feet")
  2593. },
  2594. {
  2595. name: "50 Foot Collie",
  2596. height: math.unit(50, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(96, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Megamerger",
  2605. height: math.unit(650, "feet")
  2606. },
  2607. ]
  2608. ))
  2609. characterMakers.push(() => makeCharacter(
  2610. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2611. {
  2612. front: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Front",
  2616. image: {
  2617. source: "./media/characters/march/front.svg",
  2618. extra: 1992/1851,
  2619. bottom: 39/2031
  2620. }
  2621. },
  2622. foot: {
  2623. height: math.unit(0.9, "feet"),
  2624. name: "Foot",
  2625. image: {
  2626. source: "./media/characters/march/foot.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7.9, "feet")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(220, "meters")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(2.98, "km"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(15963, "km")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(2980000000, "km")
  2651. },
  2652. {
  2653. name: "Examacro",
  2654. height: math.unit(250, "parsecs")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(60, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/noir/front.svg",
  2667. extra: 1,
  2668. bottom: 0.032
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(6.6, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet")
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(2.5, "km"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(22500, "km")
  2689. },
  2690. {
  2691. name: "Teramacro",
  2692. height: math.unit(2500000000, "km")
  2693. },
  2694. {
  2695. name: "Examacro",
  2696. height: math.unit(200, "parsecs")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(100, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/okuri/front.svg",
  2709. extra: 739/665,
  2710. bottom: 39/778
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(100, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/okuri/back.svg",
  2719. extra: 734/653,
  2720. bottom: 13/747
  2721. }
  2722. },
  2723. sitting: {
  2724. height: math.unit(2.95, "feet"),
  2725. weight: math.unit(100, "kg"),
  2726. name: "Sitting",
  2727. image: {
  2728. source: "./media/characters/okuri/sitting.svg",
  2729. extra: 370/318,
  2730. bottom: 99/469
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Smallest",
  2737. height: math.unit(5 + 2/12, "feet")
  2738. },
  2739. {
  2740. name: "Smaller",
  2741. height: math.unit(300, "feet")
  2742. },
  2743. {
  2744. name: "Small",
  2745. height: math.unit(1000, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(1, "mile")
  2750. },
  2751. {
  2752. name: "Mega Macro (Small)",
  2753. height: math.unit(20, "km")
  2754. },
  2755. {
  2756. name: "Mega Macro (Large)",
  2757. height: math.unit(600, "km")
  2758. },
  2759. {
  2760. name: "Giga Macro",
  2761. height: math.unit(10000, "km")
  2762. },
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(577560, "km"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Large",
  2770. height: math.unit(4, "galaxies")
  2771. },
  2772. {
  2773. name: "Largest",
  2774. height: math.unit(15, "multiverses")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/manny/front.svg",
  2787. extra: 1,
  2788. bottom: 0.06
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/manny/back.svg",
  2797. extra: 1,
  2798. bottom: 0.014
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(7, "feet"),
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(78, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(300, "meters")
  2815. },
  2816. {
  2817. name: "Macro++",
  2818. height: math.unit(2400, "meters")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(5167, "meters")
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(41769, "miles")
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(7, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/adake/front-1.svg"
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(7, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/adake/front-2.svg",
  2847. extra: 1,
  2848. bottom: 0.01
  2849. }
  2850. },
  2851. back: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Back",
  2855. image: {
  2856. source: "./media/characters/adake/back.svg",
  2857. }
  2858. },
  2859. kneel: {
  2860. height: math.unit(5.385, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Kneeling",
  2863. image: {
  2864. source: "./media/characters/adake/kneel.svg",
  2865. bottom: 0.052
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7, "feet"),
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(78, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(300, "meters")
  2882. },
  2883. {
  2884. name: "Macro++",
  2885. height: math.unit(2400, "meters")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(5167, "meters")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(41769, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(1.65, "meters"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/elijah/front.svg",
  2906. extra: 858 / 830,
  2907. bottom: 95.5 / 953.8559
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(1.65, "meters"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/elijah/back.svg",
  2916. extra: 895 / 850,
  2917. bottom: 5.3 / 897.956
  2918. }
  2919. },
  2920. frontNsfw: {
  2921. height: math.unit(1.65, "meters"),
  2922. weight: math.unit(50, "kg"),
  2923. name: "Front (NSFW)",
  2924. image: {
  2925. source: "./media/characters/elijah/front-nsfw.svg",
  2926. extra: 858 / 830,
  2927. bottom: 95.5 / 953.8559
  2928. }
  2929. },
  2930. backNsfw: {
  2931. height: math.unit(1.65, "meters"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Back (NSFW)",
  2934. image: {
  2935. source: "./media/characters/elijah/back-nsfw.svg",
  2936. extra: 895 / 850,
  2937. bottom: 5.3 / 897.956
  2938. }
  2939. },
  2940. dick: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Dick",
  2943. image: {
  2944. source: "./media/characters/elijah/dick.svg"
  2945. }
  2946. },
  2947. beakOpen: {
  2948. height: math.unit(1.25, "feet"),
  2949. name: "Beak (Open)",
  2950. image: {
  2951. source: "./media/characters/elijah/beak-open.svg"
  2952. }
  2953. },
  2954. beakShut: {
  2955. height: math.unit(1.25, "feet"),
  2956. name: "Beak (Shut)",
  2957. image: {
  2958. source: "./media/characters/elijah/beak-shut.svg"
  2959. }
  2960. },
  2961. footFlexing: {
  2962. height: math.unit(1.61, "feet"),
  2963. name: "Foot (Flexing)",
  2964. image: {
  2965. source: "./media/characters/elijah/foot-flexing.svg"
  2966. }
  2967. },
  2968. footStepping: {
  2969. height: math.unit(1.44, "feet"),
  2970. name: "Foot (Stepping)",
  2971. image: {
  2972. source: "./media/characters/elijah/foot-stepping.svg"
  2973. }
  2974. },
  2975. plantigradeLeg: {
  2976. height: math.unit(2.34, "feet"),
  2977. name: "Plantigrade Leg",
  2978. image: {
  2979. source: "./media/characters/elijah/plantigrade-leg.svg"
  2980. }
  2981. },
  2982. plantigradeFootLeft: {
  2983. height: math.unit(0.9, "feet"),
  2984. name: "Plantigrade Foot (Left)",
  2985. image: {
  2986. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2987. }
  2988. },
  2989. plantigradeFootRight: {
  2990. height: math.unit(0.9, "feet"),
  2991. name: "Plantigrade Foot (Right)",
  2992. image: {
  2993. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2994. }
  2995. },
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(1.65, "meters")
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(55, "meters"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Macro+",
  3009. height: math.unit(105, "meters")
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(7 + 2/12, "feet"),
  3018. weight: math.unit(320, "kg"),
  3019. preyCapacity: math.unit(0.276549935, "people"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/rai/front.svg",
  3023. extra: 1802/1696,
  3024. bottom: 68/1870
  3025. },
  3026. form: "anthro",
  3027. default: true
  3028. },
  3029. frontDressed: {
  3030. height: math.unit(7 + 2/12, "feet"),
  3031. weight: math.unit(320, "kg"),
  3032. preyCapacity: math.unit(0.276549935, "people"),
  3033. name: "Front (Dressed)",
  3034. image: {
  3035. source: "./media/characters/rai/front-dressed.svg",
  3036. extra: 1802/1696,
  3037. bottom: 68/1870
  3038. },
  3039. form: "anthro"
  3040. },
  3041. side: {
  3042. height: math.unit(7 + 2/12, "feet"),
  3043. weight: math.unit(320, "kg"),
  3044. preyCapacity: math.unit(0.276549935, "people"),
  3045. name: "Side",
  3046. image: {
  3047. source: "./media/characters/rai/side.svg",
  3048. extra: 1789/1710,
  3049. bottom: 115/1904
  3050. },
  3051. form: "anthro"
  3052. },
  3053. back: {
  3054. height: math.unit(7 + 2/12, "feet"),
  3055. weight: math.unit(320, "kg"),
  3056. preyCapacity: math.unit(0.276549935, "people"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/rai/back.svg",
  3060. extra: 1770/1707,
  3061. bottom: 28/1798
  3062. },
  3063. form: "anthro"
  3064. },
  3065. feral: {
  3066. height: math.unit(9.5, "feet"),
  3067. weight: math.unit(640, "kg"),
  3068. preyCapacity: math.unit(4, "people"),
  3069. name: "Feral",
  3070. image: {
  3071. source: "./media/characters/rai/feral.svg",
  3072. extra: 945/553,
  3073. bottom: 176/1121
  3074. },
  3075. form: "feral",
  3076. default: true
  3077. },
  3078. dragon: {
  3079. height: math.unit(23, "feet"),
  3080. weight: math.unit(50000, "lb"),
  3081. name: "Dragon",
  3082. image: {
  3083. source: "./media/characters/rai/dragon.svg",
  3084. extra: 2498 / 2030,
  3085. bottom: 85.2 / 2584
  3086. },
  3087. form: "dragon",
  3088. default: true
  3089. },
  3090. maw: {
  3091. height: math.unit(1.69, "feet"),
  3092. name: "Maw",
  3093. image: {
  3094. source: "./media/characters/rai/maw.svg"
  3095. },
  3096. form: "anthro"
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(7 + 2/12, "feet"),
  3103. form: "anthro"
  3104. },
  3105. {
  3106. name: "Big",
  3107. height: math.unit(11, "feet"),
  3108. form: "anthro"
  3109. },
  3110. {
  3111. name: "Minimacro",
  3112. height: math.unit(77, "feet"),
  3113. form: "anthro"
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(302, "feet"),
  3118. default: true,
  3119. form: "anthro"
  3120. },
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(9.5, "feet"),
  3124. form: "feral",
  3125. default: true
  3126. },
  3127. {
  3128. name: "Normal",
  3129. height: math.unit(23, "feet"),
  3130. form: "dragon",
  3131. default: true
  3132. }
  3133. ],
  3134. {
  3135. "anthro": {
  3136. name: "Anthro",
  3137. default: true
  3138. },
  3139. "feral": {
  3140. name: "Feral",
  3141. },
  3142. "dragon": {
  3143. name: "Dragon",
  3144. },
  3145. }
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3149. {
  3150. frontDressed: {
  3151. height: math.unit(216, "feet"),
  3152. weight: math.unit(7000000, "lb"),
  3153. preyCapacity: math.unit(1321, "people"),
  3154. name: "Front (Dressed)",
  3155. image: {
  3156. source: "./media/characters/jazzy/front-dressed.svg",
  3157. extra: 2738 / 2651,
  3158. bottom: 41.8 / 2786
  3159. }
  3160. },
  3161. backDressed: {
  3162. height: math.unit(216, "feet"),
  3163. weight: math.unit(7000000, "lb"),
  3164. preyCapacity: math.unit(1321, "people"),
  3165. name: "Back (Dressed)",
  3166. image: {
  3167. source: "./media/characters/jazzy/back-dressed.svg",
  3168. extra: 2775 / 2673,
  3169. bottom: 36.8 / 2817
  3170. }
  3171. },
  3172. front: {
  3173. height: math.unit(216, "feet"),
  3174. weight: math.unit(7000000, "lb"),
  3175. preyCapacity: math.unit(1321, "people"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/jazzy/front.svg",
  3179. extra: 2738 / 2651,
  3180. bottom: 41.8 / 2786
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(216, "feet"),
  3185. weight: math.unit(7000000, "lb"),
  3186. preyCapacity: math.unit(1321, "people"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/jazzy/back.svg",
  3190. extra: 2775 / 2673,
  3191. bottom: 36.8 / 2817
  3192. }
  3193. },
  3194. maw: {
  3195. height: math.unit(20, "feet"),
  3196. name: "Maw",
  3197. image: {
  3198. source: "./media/characters/jazzy/maw.svg"
  3199. }
  3200. },
  3201. paws: {
  3202. height: math.unit(27.5, "feet"),
  3203. name: "Paws",
  3204. image: {
  3205. source: "./media/characters/jazzy/paws.svg"
  3206. }
  3207. },
  3208. eye: {
  3209. height: math.unit(4.4, "feet"),
  3210. name: "Eye",
  3211. image: {
  3212. source: "./media/characters/jazzy/eye.svg"
  3213. }
  3214. },
  3215. droneOffense: {
  3216. height: math.unit(9.5, "inches"),
  3217. name: "Drone (Offense)",
  3218. image: {
  3219. source: "./media/characters/jazzy/drone-offense.svg"
  3220. }
  3221. },
  3222. droneRecon: {
  3223. height: math.unit(9.5, "inches"),
  3224. name: "Drone (Recon)",
  3225. image: {
  3226. source: "./media/characters/jazzy/drone-recon.svg"
  3227. }
  3228. },
  3229. droneDefense: {
  3230. height: math.unit(9.5, "inches"),
  3231. name: "Drone (Defense)",
  3232. image: {
  3233. source: "./media/characters/jazzy/drone-defense.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(216, "feet"),
  3241. default: true
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(9 + 6/12, "feet"),
  3250. weight: math.unit(700, "lb"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/flamm/front.svg",
  3254. extra: 1736/1596,
  3255. bottom: 93/1829
  3256. }
  3257. },
  3258. buff: {
  3259. height: math.unit(9 + 6/12, "feet"),
  3260. weight: math.unit(950, "lb"),
  3261. name: "Buff",
  3262. image: {
  3263. source: "./media/characters/flamm/buff.svg",
  3264. extra: 3018/2874,
  3265. bottom: 221/3239
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(9.5, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(200, "feet"),
  3277. default: true
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(5 + 3/12, "feet"),
  3286. weight: math.unit(60, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/zephiro/front.svg",
  3290. extra: 1873/1761,
  3291. bottom: 147/2020
  3292. }
  3293. },
  3294. side: {
  3295. height: math.unit(5 + 3/12, "feet"),
  3296. weight: math.unit(60, "kg"),
  3297. name: "Side",
  3298. image: {
  3299. source: "./media/characters/zephiro/side.svg",
  3300. extra: 1929/1827,
  3301. bottom: 65/1994
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(5 + 3/12, "feet"),
  3306. weight: math.unit(60, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/zephiro/back.svg",
  3310. extra: 1926/1816,
  3311. bottom: 41/1967
  3312. }
  3313. },
  3314. hand: {
  3315. height: math.unit(0.68, "feet"),
  3316. name: "Hand",
  3317. image: {
  3318. source: "./media/characters/zephiro/hand.svg"
  3319. }
  3320. },
  3321. paw: {
  3322. height: math.unit(1, "feet"),
  3323. name: "Paw",
  3324. image: {
  3325. source: "./media/characters/zephiro/paw.svg"
  3326. }
  3327. },
  3328. beans: {
  3329. height: math.unit(0.93, "feet"),
  3330. name: "Beans",
  3331. image: {
  3332. source: "./media/characters/zephiro/beans.svg"
  3333. }
  3334. },
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(3, "inches")
  3340. },
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(5 + 3 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(118, "feet")
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(5, "feet"),
  3357. weight: math.unit(90, "kg"),
  3358. preyCapacity: math.unit(14, "people"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/fory/front.svg",
  3362. extra: 2862 / 2674,
  3363. bottom: 180 / 3043.8
  3364. },
  3365. form: "weaselbun",
  3366. default: true,
  3367. extraAttributes: {
  3368. "pawSize": {
  3369. name: "Paw Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.1596, "m^2")
  3373. },
  3374. "pawLength": {
  3375. name: "Paw Length",
  3376. power: 1,
  3377. type: "length",
  3378. base: math.unit(0.7, "m")
  3379. }
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(5, "feet"),
  3384. weight: math.unit(90, "kg"),
  3385. preyCapacity: math.unit(14, "people"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/fory/back.svg",
  3389. extra: 1790/1672,
  3390. bottom: 84/1874
  3391. },
  3392. form: "weaselbun",
  3393. extraAttributes: {
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.1596, "m^2")
  3399. },
  3400. "pawLength": {
  3401. name: "Paw Length",
  3402. power: 1,
  3403. type: "length",
  3404. base: math.unit(0.7, "m")
  3405. }
  3406. }
  3407. },
  3408. paw: {
  3409. height: math.unit(2.14, "feet"),
  3410. name: "Paw",
  3411. image: {
  3412. source: "./media/characters/fory/paw.svg"
  3413. },
  3414. form: "weaselbun",
  3415. extraAttributes: {
  3416. "pawSize": {
  3417. name: "Paw Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.1596, "m^2")
  3421. },
  3422. "pawLength": {
  3423. name: "Paw Length",
  3424. power: 1,
  3425. type: "length",
  3426. base: math.unit(0.48, "m")
  3427. }
  3428. }
  3429. },
  3430. bunBack: {
  3431. height: math.unit(3, "feet"),
  3432. weight: math.unit(20, "kg"),
  3433. preyCapacity: math.unit(3, "people"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/fory/bun-back.svg",
  3437. extra: 1749/1564,
  3438. bottom: 246/1995
  3439. },
  3440. form: "bun",
  3441. default: true,
  3442. extraAttributes: {
  3443. "pawSize": {
  3444. name: "Paw Size",
  3445. power: 2,
  3446. type: "area",
  3447. base: math.unit(0.072, "m^2")
  3448. },
  3449. "pawLength": {
  3450. name: "Paw Length",
  3451. power: 1,
  3452. type: "length",
  3453. base: math.unit(0.45, "m")
  3454. }
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(5, "feet"),
  3462. form: "weaselbun"
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(50, "feet"),
  3467. default: true,
  3468. form: "weaselbun"
  3469. },
  3470. {
  3471. name: "Megamacro",
  3472. height: math.unit(10, "miles"),
  3473. form: "weaselbun"
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(5, "earths"),
  3478. form: "weaselbun"
  3479. },
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(3, "feet"),
  3483. default: true,
  3484. form: "bun"
  3485. },
  3486. {
  3487. name: "Fun-Size",
  3488. height: math.unit(12, "feet"),
  3489. form: "bun"
  3490. },
  3491. {
  3492. name: "Macro",
  3493. height: math.unit(100, "feet"),
  3494. form: "bun"
  3495. },
  3496. {
  3497. name: "Planetary",
  3498. height: math.unit(3, "earths"),
  3499. form: "bun"
  3500. },
  3501. ],
  3502. {
  3503. "weaselbun": {
  3504. name: "Weaselbun",
  3505. default: true
  3506. },
  3507. "bun": {
  3508. name: "Bun",
  3509. },
  3510. }
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(7, "feet"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/kurrikage/front.svg",
  3521. extra: 1845/1733,
  3522. bottom: 119/1964
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(7, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/kurrikage/back.svg",
  3531. extra: 1790/1677,
  3532. bottom: 61/1851
  3533. }
  3534. },
  3535. dressed: {
  3536. height: math.unit(7, "feet"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Dressed",
  3539. image: {
  3540. source: "./media/characters/kurrikage/dressed.svg",
  3541. extra: 1845/1733,
  3542. bottom: 119/1964
  3543. }
  3544. },
  3545. foot: {
  3546. height: math.unit(1.5, "feet"),
  3547. name: "Foot",
  3548. image: {
  3549. source: "./media/characters/kurrikage/foot.svg"
  3550. }
  3551. },
  3552. staff: {
  3553. height: math.unit(6.7, "feet"),
  3554. name: "Staff",
  3555. image: {
  3556. source: "./media/characters/kurrikage/staff.svg"
  3557. }
  3558. },
  3559. peek: {
  3560. height: math.unit(1.05, "feet"),
  3561. name: "Peeking",
  3562. image: {
  3563. source: "./media/characters/kurrikage/peek.svg",
  3564. bottom: 0.08
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(12, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Big",
  3576. height: math.unit(20, "feet")
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(500, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20, "miles")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/shingo/front.svg",
  3597. extra: 1900/1825,
  3598. bottom: 82/1982
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(75, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/shingo/side.svg",
  3607. extra: 1930/1865,
  3608. bottom: 16/1946
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(6, "feet"),
  3613. weight: math.unit(75, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/shingo/back.svg",
  3617. extra: 1922/1852,
  3618. bottom: 16/1938
  3619. }
  3620. },
  3621. frontDressed: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(150, "lb"),
  3624. name: "Front-dressed",
  3625. image: {
  3626. source: "./media/characters/shingo/front-dressed.svg",
  3627. extra: 1900/1825,
  3628. bottom: 82/1982
  3629. }
  3630. },
  3631. paw: {
  3632. height: math.unit(1.29, "feet"),
  3633. name: "Paw",
  3634. image: {
  3635. source: "./media/characters/shingo/paw.svg"
  3636. }
  3637. },
  3638. hand: {
  3639. height: math.unit(1.07, "feet"),
  3640. name: "Hand",
  3641. image: {
  3642. source: "./media/characters/shingo/hand.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/shingo/front-alt.svg",
  3651. extra: 3511 / 3338,
  3652. bottom: 0.005
  3653. }
  3654. },
  3655. frontAlt2: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front (Alt 2)",
  3659. image: {
  3660. source: "./media/characters/shingo/front-alt-2.svg",
  3661. extra: 706/681,
  3662. bottom: 11/717
  3663. }
  3664. },
  3665. pawAlt: {
  3666. height: math.unit(1, "feet"),
  3667. name: "Paw (Alt)",
  3668. image: {
  3669. source: "./media/characters/shingo/paw-alt.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Micro",
  3676. height: math.unit(4, "inches")
  3677. },
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(6, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(108, "feet")
  3686. },
  3687. {
  3688. name: "Macro+",
  3689. height: math.unit(1500, "feet")
  3690. },
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3695. {
  3696. side: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(75, "kg"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/aigey/side.svg"
  3702. }
  3703. },
  3704. },
  3705. [
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(200, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Megamacro",
  3713. height: math.unit(100, "miles")
  3714. },
  3715. ]
  3716. )
  3717. )
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natasha/front.svg",
  3727. extra: 859 / 824,
  3728. bottom: 23 / 879.6
  3729. }
  3730. },
  3731. frontNsfw: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Front (NSFW)",
  3735. image: {
  3736. source: "./media/characters/natasha/front-nsfw.svg",
  3737. extra: 859 / 824,
  3738. bottom: 23 / 879.6
  3739. }
  3740. },
  3741. frontErect: {
  3742. height: math.unit(5 + 5 / 12, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Front (Erect)",
  3745. image: {
  3746. source: "./media/characters/natasha/front-erect.svg",
  3747. extra: 859 / 824,
  3748. bottom: 23 / 879.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(5 + 5 / 12, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/natasha/back.svg",
  3757. extra: 887.9 / 852.6,
  3758. bottom: 9.7 / 896.4
  3759. }
  3760. },
  3761. backAlt: {
  3762. height: math.unit(5 + 5 / 12, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back (Alt)",
  3765. image: {
  3766. source: "./media/characters/natasha/back-alt.svg",
  3767. extra: 1236.7 / 1192,
  3768. bottom: 22.3 / 1258.2
  3769. }
  3770. },
  3771. dick: {
  3772. height: math.unit(1.772, "feet"),
  3773. name: "Dick",
  3774. image: {
  3775. source: "./media/characters/natasha/dick.svg"
  3776. }
  3777. },
  3778. paw: {
  3779. height: math.unit(0.250, "meters"),
  3780. name: "Paw",
  3781. image: {
  3782. source: "./media/characters/natasha/paw.svg"
  3783. },
  3784. extraAttributes: {
  3785. "toeSize": {
  3786. name: "Toe Size",
  3787. power: 2,
  3788. type: "area",
  3789. base: math.unit(0.0024, "m^2")
  3790. },
  3791. "padSize": {
  3792. name: "Pad Size",
  3793. power: 2,
  3794. type: "area",
  3795. base: math.unit(0.00889, "m^2")
  3796. },
  3797. "pawSize": {
  3798. name: "Paw Size",
  3799. power: 2,
  3800. type: "area",
  3801. base: math.unit(0.023667, "m^2")
  3802. },
  3803. }
  3804. },
  3805. },
  3806. [
  3807. {
  3808. name: "Shortstack",
  3809. height: math.unit(3, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(5 + 5 / 12, "feet")
  3815. },
  3816. {
  3817. name: "Large",
  3818. height: math.unit(12, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(100, "feet")
  3823. },
  3824. {
  3825. name: "Macro+",
  3826. height: math.unit(260, "feet")
  3827. },
  3828. {
  3829. name: "Macro++",
  3830. height: math.unit(1, "mile")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(75, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/malik/front.svg",
  3843. extra: 1750/1561,
  3844. bottom: 80/1830
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0159, "m^2")
  3852. },
  3853. "pawSize": {
  3854. name: "Paw Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.09834, "m^2")
  3858. },
  3859. }
  3860. },
  3861. side: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Side",
  3865. image: {
  3866. source: "./media/characters/malik/side.svg",
  3867. extra: 1802/1685,
  3868. bottom: 42/1844
  3869. },
  3870. extraAttributes: {
  3871. "toeSize": {
  3872. name: "Toe Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.0159, "m^2")
  3876. },
  3877. "pawSize": {
  3878. name: "Paw Size",
  3879. power: 2,
  3880. type: "area",
  3881. base: math.unit(0.09834, "m^2")
  3882. },
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/malik/back.svg",
  3891. extra: 1803/1607,
  3892. bottom: 33/1836
  3893. },
  3894. extraAttributes: {
  3895. "toeSize": {
  3896. name: "Toe Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.0159, "m^2")
  3900. },
  3901. "pawSize": {
  3902. name: "Paw Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.09834, "m^2")
  3906. },
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(156, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Macro+",
  3918. height: math.unit(1188, "feet")
  3919. },
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(75, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/sefer/front.svg",
  3931. extra: 848 / 659,
  3932. bottom: 28.3 / 876.442
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(75, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/sefer/back.svg",
  3941. extra: 864 / 695,
  3942. bottom: 10 / 871
  3943. }
  3944. },
  3945. frontDressed: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(75, "kg"),
  3948. name: "Dressed",
  3949. image: {
  3950. source: "./media/characters/sefer/dressed.svg",
  3951. extra: 839 / 653,
  3952. bottom: 37.6 / 878
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Normal",
  3959. height: math.unit(6, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Big",
  3964. height: math.unit(8, "meters")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3970. {
  3971. body: {
  3972. height: math.unit(2.2428, "meter"),
  3973. weight: math.unit(124.738, "kg"),
  3974. name: "Body",
  3975. image: {
  3976. extra: 1225 / 1050,
  3977. source: "./media/characters/north/front.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Micro",
  3984. height: math.unit(4, "inches")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(63, "meters")
  3989. },
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(101, "miles"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3999. {
  4000. angled: {
  4001. height: math.unit(4, "meter"),
  4002. weight: math.unit(150, "kg"),
  4003. name: "Angled",
  4004. image: {
  4005. source: "./media/characters/talan/angled-sfw.svg",
  4006. bottom: 29 / 3734
  4007. }
  4008. },
  4009. angledNsfw: {
  4010. height: math.unit(4, "meter"),
  4011. weight: math.unit(150, "kg"),
  4012. name: "Angled (NSFW)",
  4013. image: {
  4014. source: "./media/characters/talan/angled-nsfw.svg",
  4015. bottom: 29 / 3734
  4016. }
  4017. },
  4018. frontNsfw: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Front (NSFW)",
  4022. image: {
  4023. source: "./media/characters/talan/front-nsfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. sideNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Side (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/side-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/talan/back.svg"
  4042. }
  4043. },
  4044. dickBottom: {
  4045. height: math.unit(0.621, "meter"),
  4046. name: "Dick (Bottom)",
  4047. image: {
  4048. source: "./media/characters/talan/dick-bottom.svg"
  4049. }
  4050. },
  4051. dickTop: {
  4052. height: math.unit(0.621, "meter"),
  4053. name: "Dick (Top)",
  4054. image: {
  4055. source: "./media/characters/talan/dick-top.svg"
  4056. }
  4057. },
  4058. dickSide: {
  4059. height: math.unit(0.305, "meter"),
  4060. name: "Dick (Side)",
  4061. image: {
  4062. source: "./media/characters/talan/dick-side.svg"
  4063. }
  4064. },
  4065. dickFront: {
  4066. height: math.unit(0.305, "meter"),
  4067. name: "Dick (Front)",
  4068. image: {
  4069. source: "./media/characters/talan/dick-front.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(4, "meters")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "meters")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(2, "miles"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(5000, "miles")
  4090. },
  4091. {
  4092. name: "Teramacro",
  4093. height: math.unit(100, "parsecs")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(90, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/gael'rathus/front.svg"
  4106. }
  4107. },
  4108. frontAlt: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(90, "kg"),
  4111. name: "Front (alt)",
  4112. image: {
  4113. source: "./media/characters/gael'rathus/front-alt.svg"
  4114. }
  4115. },
  4116. frontAlt2: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(90, "kg"),
  4119. name: "Front (alt 2)",
  4120. image: {
  4121. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(9, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Large",
  4133. height: math.unit(25, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(0.25, "miles")
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(10, "miles")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4147. {
  4148. side: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(140, "kg"),
  4151. name: "Side",
  4152. image: {
  4153. source: "./media/characters/sosha/side.svg",
  4154. extra: 1170/1006,
  4155. bottom: 94/1264
  4156. }
  4157. },
  4158. maw: {
  4159. height: math.unit(2.87, "feet"),
  4160. name: "Maw",
  4161. image: {
  4162. source: "./media/characters/sosha/maw.svg",
  4163. extra: 966/865,
  4164. bottom: 0/966
  4165. }
  4166. },
  4167. cooch: {
  4168. height: math.unit(5.6, "feet"),
  4169. name: "Cooch",
  4170. image: {
  4171. source: "./media/characters/sosha/cooch.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4185. {
  4186. side: {
  4187. height: math.unit(5 + 5 / 12, "feet"),
  4188. weight: math.unit(170, "kg"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/runnola/side.svg",
  4192. extra: 741 / 448,
  4193. bottom: 0.05
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(3, "feet")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5 + 5 / 12, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Big",
  4209. height: math.unit(10, "feet")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(50, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/kurribird/front.svg",
  4222. bottom: 0.015
  4223. }
  4224. },
  4225. frontAlt: {
  4226. height: math.unit(1.5, "meter"),
  4227. weight: math.unit(50, "kg"),
  4228. name: "Front (Alt)",
  4229. image: {
  4230. source: "./media/characters/kurribird/front-alt.svg",
  4231. extra: 1.45
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(7, "feet")
  4239. },
  4240. {
  4241. name: "Big",
  4242. height: math.unit(12, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "feet")
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(2, "miles")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(80, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/elbial/front.svg",
  4264. extra: 1643 / 1556,
  4265. bottom: 60.2 / 1696
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/elbial/side.svg",
  4274. extra: 1601/1528,
  4275. bottom: 97/1698
  4276. }
  4277. },
  4278. back: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(80, "kg"),
  4281. name: "Back",
  4282. image: {
  4283. source: "./media/characters/elbial/back.svg",
  4284. extra: 1653/1569,
  4285. bottom: 20/1673
  4286. }
  4287. },
  4288. frontDressed: {
  4289. height: math.unit(2, "meter"),
  4290. weight: math.unit(80, "kg"),
  4291. name: "Front (Dressed)",
  4292. image: {
  4293. source: "./media/characters/elbial/front-dressed.svg",
  4294. extra: 1638/1569,
  4295. bottom: 70/1708
  4296. }
  4297. },
  4298. genitals: {
  4299. height: math.unit(2 / 3.367, "meter"),
  4300. name: "Genitals",
  4301. image: {
  4302. source: "./media/characters/elbial/genitals.svg"
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Large",
  4309. height: math.unit(100, "feet")
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(500, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Megamacro",
  4318. height: math.unit(10, "miles")
  4319. },
  4320. {
  4321. name: "Gigamacro",
  4322. height: math.unit(25000, "miles")
  4323. },
  4324. {
  4325. name: "Full-Size",
  4326. height: math.unit(8000000, "gigaparsecs")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(60, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/noah/front.svg"
  4339. }
  4340. },
  4341. talons: {
  4342. height: math.unit(0.315, "meter"),
  4343. name: "Talons",
  4344. image: {
  4345. source: "./media/characters/noah/talons.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Large",
  4352. height: math.unit(50, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(750, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(50, "miles")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(100000, "miles")
  4366. },
  4367. {
  4368. name: "Full-Size",
  4369. height: math.unit(3000000000, "miles")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/natalya/front.svg"
  4382. }
  4383. },
  4384. back: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Back",
  4388. image: {
  4389. source: "./media/characters/natalya/back.svg"
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(150, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(5, "miles")
  4402. },
  4403. {
  4404. name: "Full-Size",
  4405. height: math.unit(600, "kiloparsecs")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(50, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/erestrebah/front.svg",
  4418. extra: 1262/1162,
  4419. bottom: 96/1358
  4420. }
  4421. },
  4422. back: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(50, "kg"),
  4425. name: "Back",
  4426. image: {
  4427. source: "./media/characters/erestrebah/back.svg",
  4428. extra: 1257/1139,
  4429. bottom: 13/1270
  4430. }
  4431. },
  4432. wing: {
  4433. height: math.unit(2, "meter"),
  4434. weight: math.unit(50, "kg"),
  4435. name: "Wing",
  4436. image: {
  4437. source: "./media/characters/erestrebah/wing.svg",
  4438. extra: 1262/1162,
  4439. bottom: 96/1358
  4440. }
  4441. },
  4442. mouth: {
  4443. height: math.unit(0.39, "feet"),
  4444. name: "Mouth",
  4445. image: {
  4446. source: "./media/characters/erestrebah/mouth.svg"
  4447. }
  4448. }
  4449. },
  4450. [
  4451. {
  4452. name: "Normal",
  4453. height: math.unit(10, "feet")
  4454. },
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet"),
  4458. default: true
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(300, "feet")
  4463. },
  4464. {
  4465. name: "Macro+",
  4466. height: math.unit(750, "feet")
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(3, "miles")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(80, "kg"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/jennifer/front.svg",
  4483. bottom: 0.11,
  4484. extra: 1.16
  4485. }
  4486. },
  4487. frontAlt: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(80, "kg"),
  4490. name: "Front (Alt)",
  4491. image: {
  4492. source: "./media/characters/jennifer/front-alt.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Canon Height",
  4499. height: math.unit(120, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro+",
  4504. height: math.unit(300, "feet")
  4505. },
  4506. {
  4507. name: "Megamacro",
  4508. height: math.unit(20000, "feet")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(50, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/kalista/front.svg",
  4521. extra: 1314/1145,
  4522. bottom: 101/1415
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(50, "kg"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/kalista/back.svg",
  4531. extra: 1366 / 1156,
  4532. bottom: 33.9 / 1362.78
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Uncomfortably Small",
  4539. height: math.unit(10, "feet")
  4540. },
  4541. {
  4542. name: "Small",
  4543. height: math.unit(30, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(100, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro+",
  4552. height: math.unit(2000, "feet")
  4553. },
  4554. {
  4555. name: "True Form",
  4556. height: math.unit(8924, "miles")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(120, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/ggv/front.svg"
  4569. }
  4570. },
  4571. side: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(120, "kg"),
  4574. name: "Side",
  4575. image: {
  4576. source: "./media/characters/ggv/side.svg"
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Extremely Puny",
  4583. height: math.unit(9 + 5 / 12, "feet")
  4584. },
  4585. {
  4586. name: "Horribly Small",
  4587. height: math.unit(47.7, "miles"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Reasonably Sized",
  4592. height: math.unit(25000, "parsecs")
  4593. },
  4594. {
  4595. name: "Slightly Uncompressed",
  4596. height: math.unit(7.77e31, "parsecs")
  4597. },
  4598. {
  4599. name: "Omniversal",
  4600. height: math.unit(1e300, "meters")
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(2, "meter"),
  4609. weight: math.unit(75, "lb"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/napalm/front.svg"
  4613. }
  4614. },
  4615. back: {
  4616. height: math.unit(2, "meter"),
  4617. weight: math.unit(75, "lb"),
  4618. name: "Back",
  4619. image: {
  4620. source: "./media/characters/napalm/back.svg"
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Standard",
  4627. height: math.unit(55, "feet"),
  4628. default: true
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(7 + 5 / 6, "feet"),
  4637. weight: math.unit(325, "lb"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/asana/front.svg",
  4641. extra: 1133 / 1060,
  4642. bottom: 15.2 / 1148.6
  4643. }
  4644. },
  4645. back: {
  4646. height: math.unit(7 + 5 / 6, "feet"),
  4647. weight: math.unit(325, "lb"),
  4648. name: "Back",
  4649. image: {
  4650. source: "./media/characters/asana/back.svg",
  4651. extra: 1114 / 1043,
  4652. bottom: 5 / 1120
  4653. }
  4654. },
  4655. dressedDark: {
  4656. height: math.unit(7 + 5 / 6, "feet"),
  4657. weight: math.unit(325, "lb"),
  4658. name: "Dressed (Dark)",
  4659. image: {
  4660. source: "./media/characters/asana/dressed-dark.svg",
  4661. extra: 1133 / 1060,
  4662. bottom: 15.2 / 1148.6
  4663. }
  4664. },
  4665. dressedLight: {
  4666. height: math.unit(7 + 5 / 6, "feet"),
  4667. weight: math.unit(325, "lb"),
  4668. name: "Dressed (Light)",
  4669. image: {
  4670. source: "./media/characters/asana/dressed-light.svg",
  4671. extra: 1133 / 1060,
  4672. bottom: 15.2 / 1148.6
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Standard",
  4679. height: math.unit(7 + 5 / 6, "feet"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Large",
  4684. height: math.unit(10, "meters")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(2500, "meters")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(5e6, "meters")
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(5e12, "lightyears")
  4697. },
  4698. {
  4699. name: "Max Size",
  4700. height: math.unit(1e31, "lightyears")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(60, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/ebony/front.svg",
  4713. bottom: 0.03,
  4714. extra: 1045 / 810 + 0.03
  4715. }
  4716. },
  4717. side: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(60, "kg"),
  4720. name: "Side",
  4721. image: {
  4722. source: "./media/characters/ebony/side.svg",
  4723. bottom: 0.03,
  4724. extra: 1045 / 810 + 0.03
  4725. }
  4726. },
  4727. back: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(60, "kg"),
  4730. name: "Back",
  4731. image: {
  4732. source: "./media/characters/ebony/back.svg",
  4733. bottom: 0.01,
  4734. extra: 1045 / 810 + 0.01
  4735. }
  4736. },
  4737. },
  4738. [
  4739. // TODO check why I did this lol
  4740. {
  4741. name: "Standard",
  4742. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(200, "feet")
  4748. },
  4749. {
  4750. name: "Gigamacro",
  4751. height: math.unit(13000, "km")
  4752. }
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(175, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/mountain/front.svg",
  4764. extra: 972 / 955,
  4765. bottom: 64 / 1036.6
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(175, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/mountain/back.svg",
  4774. extra: 970 / 950,
  4775. bottom: 28.25 / 999
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Large",
  4782. height: math.unit(20, "meters")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(300, "meters")
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(10000, "km"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Examacro",
  4795. height: math.unit(10e9, "lightyears")
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(500, "lb"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/rick/front.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(8, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(5, "km")
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(8, "feet"),
  4828. weight: math.unit(120, "lb"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/ona/front.svg"
  4832. }
  4833. },
  4834. frontAlt: {
  4835. height: math.unit(8, "feet"),
  4836. weight: math.unit(120, "lb"),
  4837. name: "Front (Alt)",
  4838. image: {
  4839. source: "./media/characters/ona/front-alt.svg"
  4840. }
  4841. },
  4842. back: {
  4843. height: math.unit(8, "feet"),
  4844. weight: math.unit(120, "lb"),
  4845. name: "Back",
  4846. image: {
  4847. source: "./media/characters/ona/back.svg"
  4848. }
  4849. },
  4850. foot: {
  4851. height: math.unit(1.1, "feet"),
  4852. name: "Foot",
  4853. image: {
  4854. source: "./media/characters/ona/foot.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Megamacro",
  4861. height: math.unit(70, "km"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Gigamacro",
  4866. height: math.unit(681818, "miles")
  4867. },
  4868. {
  4869. name: "Examacro",
  4870. height: math.unit(3800000, "lightyears")
  4871. },
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(12, "feet"),
  4879. weight: math.unit(3000, "lb"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/mech/front.svg",
  4883. extra: 2900 / 2770,
  4884. bottom: 110 / 3010
  4885. }
  4886. },
  4887. back: {
  4888. height: math.unit(12, "feet"),
  4889. weight: math.unit(3000, "lb"),
  4890. name: "Back",
  4891. image: {
  4892. source: "./media/characters/mech/back.svg",
  4893. extra: 3011 / 2890,
  4894. bottom: 94 / 3105
  4895. }
  4896. },
  4897. maw: {
  4898. height: math.unit(3.07, "feet"),
  4899. name: "Maw",
  4900. image: {
  4901. source: "./media/characters/mech/maw.svg"
  4902. }
  4903. },
  4904. head: {
  4905. height: math.unit(3.07, "feet"),
  4906. name: "Head",
  4907. image: {
  4908. source: "./media/characters/mech/head.svg"
  4909. }
  4910. },
  4911. dick: {
  4912. height: math.unit(1.43, "feet"),
  4913. name: "Dick",
  4914. image: {
  4915. source: "./media/characters/mech/dick.svg"
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(12, "feet")
  4923. },
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(300, "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro+",
  4931. height: math.unit(1500, "feet")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(1.3, "meter"),
  4940. weight: math.unit(30, "kg"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/gregory/front.svg",
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(1.3, "meter"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(20, "meter")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(2.8, "meter"),
  4964. weight: math.unit(200, "kg"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/elory/front.svg",
  4968. }
  4969. }
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(2.8, "meter"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(38, "meter")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(470, "feet"),
  4988. weight: math.unit(924, "tons"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/angelpatamon/front.svg",
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(470, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Deity Size I",
  5003. height: math.unit(28651.2, "km")
  5004. },
  5005. {
  5006. name: "Deity Size II",
  5007. height: math.unit(171907.2, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5013. {
  5014. side: {
  5015. height: math.unit(7.2, "meter"),
  5016. weight: math.unit(8.2, "tons"),
  5017. name: "Side",
  5018. image: {
  5019. source: "./media/characters/cryae/side.svg",
  5020. extra: 3500 / 1500
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(7.2, "meter"),
  5028. default: true
  5029. }
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(175, "lb"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/xera/front.svg",
  5041. extra: 2377 / 1972,
  5042. bottom: 75.5 / 2452
  5043. }
  5044. },
  5045. side: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(175, "lb"),
  5048. name: "Side",
  5049. image: {
  5050. source: "./media/characters/xera/side.svg",
  5051. extra: 2345 / 2019,
  5052. bottom: 39.7 / 2384
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(175, "lb"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/xera/back.svg",
  5061. extra: 2095 / 1984,
  5062. bottom: 67 / 2166
  5063. }
  5064. },
  5065. },
  5066. [
  5067. {
  5068. name: "Small",
  5069. height: math.unit(10, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(500, "meters"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro+",
  5078. height: math.unit(10, "km")
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(25000, "km")
  5083. },
  5084. {
  5085. name: "Teramacro",
  5086. height: math.unit(3e6, "km")
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(175, "lb"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/nebula/front.svg",
  5099. extra: 2566 / 2362,
  5100. bottom: 81 / 2644
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Small",
  5107. height: math.unit(4.5, "meters")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(1500, "meters"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Megamacro",
  5116. height: math.unit(150, "km")
  5117. },
  5118. {
  5119. name: "Gigamacro",
  5120. height: math.unit(27000, "km")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(225, "lb"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/abysgar/front.svg",
  5133. extra: 1739/1614,
  5134. bottom: 71/1810
  5135. }
  5136. },
  5137. frontNsfw: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(225, "lb"),
  5140. name: "Front (NSFW)",
  5141. image: {
  5142. source: "./media/characters/abysgar/front-nsfw.svg",
  5143. extra: 1739/1614,
  5144. bottom: 71/1810
  5145. }
  5146. },
  5147. back: {
  5148. height: math.unit(4.6, "feet"),
  5149. weight: math.unit(225, "lb"),
  5150. name: "Back",
  5151. image: {
  5152. source: "./media/characters/abysgar/back.svg",
  5153. extra: 1384/1327,
  5154. bottom: 0/1384
  5155. }
  5156. },
  5157. head: {
  5158. height: math.unit(1.25, "feet"),
  5159. name: "Head",
  5160. image: {
  5161. source: "./media/characters/abysgar/head.svg",
  5162. extra: 669/569,
  5163. bottom: 0/669
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Small",
  5170. height: math.unit(4.5, "meters")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(1250, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(125, "km")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(26000, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/yakuz/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Small",
  5202. height: math.unit(5, "meters")
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(1500, "meters"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(200, "km")
  5212. },
  5213. {
  5214. name: "Gigamacro",
  5215. height: math.unit(100000, "km")
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(175, "lb"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/mirova/front.svg",
  5228. extra: 3334 / 3071,
  5229. bottom: 42 / 3375.6
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Small",
  5236. height: math.unit(5, "meters")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(900, "meters"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(135, "km")
  5246. },
  5247. {
  5248. name: "Gigamacro",
  5249. height: math.unit(20000, "km")
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5255. {
  5256. side: {
  5257. height: math.unit(28.35, "feet"),
  5258. weight: math.unit(99.75, "tons"),
  5259. name: "Side",
  5260. image: {
  5261. source: "./media/characters/asana-mech/side.svg",
  5262. extra: 923 / 699,
  5263. bottom: 50 / 975
  5264. }
  5265. },
  5266. chaingun: {
  5267. height: math.unit(7, "feet"),
  5268. weight: math.unit(2400, "lb"),
  5269. name: "Chaingun",
  5270. image: {
  5271. source: "./media/characters/asana-mech/chaingun.svg"
  5272. }
  5273. },
  5274. laser: {
  5275. height: math.unit(7.12, "feet"),
  5276. weight: math.unit(2000, "lb"),
  5277. name: "Laser",
  5278. image: {
  5279. source: "./media/characters/asana-mech/laser.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(28.35, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(2500, "feet")
  5292. },
  5293. {
  5294. name: "Megamacro",
  5295. height: math.unit(25, "miles")
  5296. },
  5297. {
  5298. name: "Examacro",
  5299. height: math.unit(6e8, "lightyears")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(5, "meters"),
  5308. weight: math.unit(1000, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/asche/front.svg",
  5312. extra: 1258 / 1190,
  5313. bottom: 47 / 1305
  5314. }
  5315. },
  5316. frontUnderwear: {
  5317. height: math.unit(5, "meters"),
  5318. weight: math.unit(1000, "kg"),
  5319. name: "Front (Underwear)",
  5320. image: {
  5321. source: "./media/characters/asche/front-underwear.svg",
  5322. extra: 1258 / 1190,
  5323. bottom: 47 / 1305
  5324. }
  5325. },
  5326. frontDressed: {
  5327. height: math.unit(5, "meters"),
  5328. weight: math.unit(1000, "kg"),
  5329. name: "Front (Dressed)",
  5330. image: {
  5331. source: "./media/characters/asche/front-dressed.svg",
  5332. extra: 1258 / 1190,
  5333. bottom: 47 / 1305
  5334. }
  5335. },
  5336. frontArmor: {
  5337. height: math.unit(5, "meters"),
  5338. weight: math.unit(1000, "kg"),
  5339. name: "Front (Armored)",
  5340. image: {
  5341. source: "./media/characters/asche/front-armored.svg",
  5342. extra: 1374 / 1308,
  5343. bottom: 23 / 1397
  5344. }
  5345. },
  5346. mp724: {
  5347. height: math.unit(0.96, "meters"),
  5348. weight: math.unit(38, "kg"),
  5349. name: "H&K MP724",
  5350. image: {
  5351. source: "./media/characters/asche/h&k-mp724.svg"
  5352. }
  5353. },
  5354. side: {
  5355. height: math.unit(5, "meters"),
  5356. weight: math.unit(1000, "kg"),
  5357. name: "Side",
  5358. image: {
  5359. source: "./media/characters/asche/side.svg",
  5360. extra: 1717 / 1609,
  5361. bottom: 0.005
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(5, "meters"),
  5366. weight: math.unit(1000, "kg"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/asche/back.svg",
  5370. extra: 1570 / 1501
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "DEFCON 5",
  5377. height: math.unit(5, "meters")
  5378. },
  5379. {
  5380. name: "DEFCON 4",
  5381. height: math.unit(500, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "DEFCON 3",
  5386. height: math.unit(5, "km")
  5387. },
  5388. {
  5389. name: "DEFCON 2",
  5390. height: math.unit(500, "km")
  5391. },
  5392. {
  5393. name: "DEFCON 1",
  5394. height: math.unit(500000, "km")
  5395. },
  5396. {
  5397. name: "DEFCON 0",
  5398. height: math.unit(3, "gigaparsecs")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(7, "feet"),
  5407. weight: math.unit(92.7, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/gale/front.svg",
  5411. extra: 977/919,
  5412. bottom: 105/1082
  5413. }
  5414. },
  5415. side: {
  5416. height: math.unit(6.7, "feet"),
  5417. weight: math.unit(92.7, "kg"),
  5418. name: "Side",
  5419. image: {
  5420. source: "./media/characters/gale/side.svg",
  5421. extra: 978/922,
  5422. bottom: 140/1118
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(7, "feet"),
  5427. weight: math.unit(92.7, "kg"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/gale/back.svg",
  5431. extra: 966/920,
  5432. bottom: 61/1027
  5433. }
  5434. },
  5435. maw: {
  5436. height: math.unit(2.23, "feet"),
  5437. name: "Maw",
  5438. image: {
  5439. source: "./media/characters/gale/maw.svg"
  5440. }
  5441. },
  5442. foot: {
  5443. height: math.unit(2.1, "feet"),
  5444. name: "Foot",
  5445. image: {
  5446. source: "./media/characters/gale/foot.svg"
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(7, "feet")
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(150, "feet"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Macro+",
  5462. height: math.unit(300, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(5 + 10/12, "feet"),
  5471. weight: math.unit(67, "kg"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/draylen/front.svg",
  5475. extra: 832/777,
  5476. bottom: 85/917
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(5 + 10/12, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(150, "feet"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(7 + 9 / 12, "feet"),
  5497. weight: math.unit(379, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/chez/front.svg"
  5501. }
  5502. },
  5503. side: {
  5504. height: math.unit(7 + 9 / 12, "feet"),
  5505. weight: math.unit(379, "lbs"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/chez/side.svg"
  5509. }
  5510. }
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(7 + 9 / 12, "feet"),
  5516. default: true
  5517. },
  5518. {
  5519. name: "God King",
  5520. height: math.unit(9750000, "meters")
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(275, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/kaylum/front.svg",
  5533. bottom: 0.01,
  5534. extra: 1166 / 1031
  5535. }
  5536. },
  5537. frontWingless: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(275, "lbs"),
  5540. name: "Front (Wingless)",
  5541. image: {
  5542. source: "./media/characters/kaylum/front-wingless.svg",
  5543. bottom: 0.01,
  5544. extra: 1117 / 1031
  5545. }
  5546. }
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(3.05, "meters")
  5552. },
  5553. {
  5554. name: "Master",
  5555. height: math.unit(5.5, "meters")
  5556. },
  5557. {
  5558. name: "Rampage",
  5559. height: math.unit(19, "meters")
  5560. },
  5561. {
  5562. name: "Macro Lite",
  5563. height: math.unit(37, "meters")
  5564. },
  5565. {
  5566. name: "Hyper Predator",
  5567. height: math.unit(61, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(138, "meters"),
  5572. default: true
  5573. }
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(5 + 5 / 12, "feet"),
  5581. weight: math.unit(120, "lbs"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/geta/front.svg",
  5585. extra: 1003/933,
  5586. bottom: 21/1024
  5587. }
  5588. },
  5589. paw: {
  5590. height: math.unit(0.35, "feet"),
  5591. name: "Paw",
  5592. image: {
  5593. source: "./media/characters/geta/paw.svg"
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(3, "inches"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5 + 5 / 12, "feet")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(300, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/tyrnn/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Main Height",
  5624. height: math.unit(355, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Fave. Height",
  5629. height: math.unit(2400, "feet")
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/appledectomy/front.svg"
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(2500, "feet")
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(50, "miles"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Gigamacro",
  5657. height: math.unit(5000, "miles")
  5658. },
  5659. {
  5660. name: "Teramacro",
  5661. height: math.unit(250000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(200, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/vulpes/front.svg",
  5674. extra: 573 / 543,
  5675. bottom: 0.033
  5676. }
  5677. },
  5678. side: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(200, "lbs"),
  5681. name: "Side",
  5682. image: {
  5683. source: "./media/characters/vulpes/side.svg",
  5684. extra: 577 / 549,
  5685. bottom: 11 / 588
  5686. }
  5687. },
  5688. back: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(200, "lbs"),
  5691. name: "Back",
  5692. image: {
  5693. source: "./media/characters/vulpes/back.svg",
  5694. extra: 573 / 549,
  5695. bottom: 20 / 593
  5696. }
  5697. },
  5698. feet: {
  5699. height: math.unit(1.276, "feet"),
  5700. name: "Feet",
  5701. image: {
  5702. source: "./media/characters/vulpes/feet.svg"
  5703. }
  5704. },
  5705. maw: {
  5706. height: math.unit(1.18, "feet"),
  5707. name: "Maw",
  5708. image: {
  5709. source: "./media/characters/vulpes/maw.svg"
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Micro",
  5716. height: math.unit(2, "inches")
  5717. },
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(6.3, "feet")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(850, "feet")
  5725. },
  5726. {
  5727. name: "Megamacro",
  5728. height: math.unit(7500, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Gigamacro",
  5733. height: math.unit(570000, "miles")
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(210, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/rain-fallen/front.svg"
  5746. }
  5747. },
  5748. side: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(210, "lbs"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/rain-fallen/side.svg"
  5754. }
  5755. },
  5756. back: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Back",
  5760. image: {
  5761. source: "./media/characters/rain-fallen/back.svg"
  5762. }
  5763. },
  5764. feral: {
  5765. height: math.unit(9, "feet"),
  5766. weight: math.unit(700, "lbs"),
  5767. name: "Feral",
  5768. image: {
  5769. source: "./media/characters/rain-fallen/feral.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Meddling with Mortals",
  5776. height: math.unit(8 + 8/12, "feet")
  5777. },
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(5, "meter")
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(150, "meter"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Megamacro",
  5789. height: math.unit(278e6, "meter")
  5790. },
  5791. {
  5792. name: "Gigamacro",
  5793. height: math.unit(2e9, "meter")
  5794. },
  5795. {
  5796. name: "Teramacro",
  5797. height: math.unit(8e12, "meter")
  5798. },
  5799. {
  5800. name: "Devourer",
  5801. height: math.unit(14, "zettameters")
  5802. },
  5803. {
  5804. name: "Scarlet King",
  5805. height: math.unit(18, "yottameters")
  5806. },
  5807. {
  5808. name: "Void",
  5809. height: math.unit(1e88, "yottameters")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5815. {
  5816. standing: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(180, "lbs"),
  5819. name: "Standing",
  5820. image: {
  5821. source: "./media/characters/zaakira/standing.svg",
  5822. extra: 1599/1504,
  5823. bottom: 39/1638
  5824. }
  5825. },
  5826. laying: {
  5827. height: math.unit(3.3, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Laying",
  5830. image: {
  5831. source: "./media/characters/zaakira/laying.svg"
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(279, "feet"),
  5843. default: true
  5844. }
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5849. {
  5850. femSfw: {
  5851. height: math.unit(8, "feet"),
  5852. weight: math.unit(350, "lb"),
  5853. name: "Fem",
  5854. image: {
  5855. source: "./media/characters/sigvald/fem-sfw.svg",
  5856. extra: 182 / 164,
  5857. bottom: 8.7 / 190.5
  5858. }
  5859. },
  5860. femNsfw: {
  5861. height: math.unit(8, "feet"),
  5862. weight: math.unit(350, "lb"),
  5863. name: "Fem (NSFW)",
  5864. image: {
  5865. source: "./media/characters/sigvald/fem-nsfw.svg",
  5866. extra: 182 / 164,
  5867. bottom: 8.7 / 190.5
  5868. }
  5869. },
  5870. maleNsfw: {
  5871. height: math.unit(8, "feet"),
  5872. weight: math.unit(350, "lb"),
  5873. name: "Male (NSFW)",
  5874. image: {
  5875. source: "./media/characters/sigvald/male-nsfw.svg",
  5876. extra: 182 / 164,
  5877. bottom: 8.7 / 190.5
  5878. }
  5879. },
  5880. hermNsfw: {
  5881. height: math.unit(8, "feet"),
  5882. weight: math.unit(350, "lb"),
  5883. name: "Herm (NSFW)",
  5884. image: {
  5885. source: "./media/characters/sigvald/herm-nsfw.svg",
  5886. extra: 182 / 164,
  5887. bottom: 8.7 / 190.5
  5888. }
  5889. },
  5890. dick: {
  5891. height: math.unit(2.36, "feet"),
  5892. name: "Dick",
  5893. image: {
  5894. source: "./media/characters/sigvald/dick.svg"
  5895. }
  5896. },
  5897. eye: {
  5898. height: math.unit(0.31, "feet"),
  5899. name: "Eye",
  5900. image: {
  5901. source: "./media/characters/sigvald/eye.svg"
  5902. }
  5903. },
  5904. mouth: {
  5905. height: math.unit(0.92, "feet"),
  5906. name: "Mouth",
  5907. image: {
  5908. source: "./media/characters/sigvald/mouth.svg"
  5909. }
  5910. },
  5911. paws: {
  5912. height: math.unit(2.2, "feet"),
  5913. name: "Paws",
  5914. image: {
  5915. source: "./media/characters/sigvald/paws.svg"
  5916. }
  5917. }
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(8, "feet")
  5923. },
  5924. {
  5925. name: "Large",
  5926. height: math.unit(12, "feet")
  5927. },
  5928. {
  5929. name: "Larger",
  5930. height: math.unit(20, "feet")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(150, "feet")
  5935. },
  5936. {
  5937. name: "Macro+",
  5938. height: math.unit(200, "feet"),
  5939. default: true
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5945. {
  5946. side: {
  5947. height: math.unit(12, "feet"),
  5948. weight: math.unit(2000, "kg"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/scott/side.svg",
  5952. extra: 754 / 724,
  5953. bottom: 0.069
  5954. }
  5955. },
  5956. upright: {
  5957. height: math.unit(12, "feet"),
  5958. weight: math.unit(2000, "kg"),
  5959. name: "Upright",
  5960. image: {
  5961. source: "./media/characters/scott/upright.svg",
  5962. extra: 3881 / 3722,
  5963. bottom: 0.05
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(12, "feet"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5977. {
  5978. side: {
  5979. height: math.unit(8, "meters"),
  5980. weight: math.unit(84755, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/tobias/side.svg",
  5984. extra: 1474 / 1096,
  5985. bottom: 38.9 / 1513.1235
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(8, "meters"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5999. {
  6000. front: {
  6001. height: math.unit(5.5, "feet"),
  6002. weight: math.unit(400, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/kieran/front.svg",
  6006. extra: 2694 / 2364,
  6007. bottom: 217 / 2908
  6008. }
  6009. },
  6010. side: {
  6011. height: math.unit(5.5, "feet"),
  6012. weight: math.unit(400, "lbs"),
  6013. name: "Side",
  6014. image: {
  6015. source: "./media/characters/kieran/side.svg",
  6016. extra: 875 / 777,
  6017. bottom: 84.6 / 959
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(5.5, "feet"),
  6025. default: true
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6031. {
  6032. side: {
  6033. height: math.unit(2, "meters"),
  6034. weight: math.unit(70, "kg"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/sanya/side.svg",
  6038. bottom: 0.02,
  6039. extra: 1.02
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Small",
  6046. height: math.unit(2, "meters")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(3, "meters")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(16, "meters"),
  6055. default: true
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(2, "meters"),
  6064. weight: math.unit(120, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/miranda/front.svg",
  6068. extra: 195 / 185,
  6069. bottom: 10.9 / 206.5
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(2, "meters"),
  6074. weight: math.unit(120, "kg"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/miranda/back.svg",
  6078. extra: 201 / 193,
  6079. bottom: 2.3 / 203.7
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(10, "feet"),
  6087. default: true
  6088. }
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "James", species: ["deer"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(2, "meters"),
  6096. weight: math.unit(100, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/james/front.svg",
  6100. extra: 10 / 8.5
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(8.5, "feet"),
  6108. default: true
  6109. }
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6114. {
  6115. side: {
  6116. height: math.unit(9.5, "feet"),
  6117. weight: math.unit(2500, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/heather/side.svg"
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(9.5, "feet"),
  6128. default: true
  6129. }
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6134. {
  6135. side: {
  6136. height: math.unit(6.5, "feet"),
  6137. weight: math.unit(400, "lbs"),
  6138. name: "Side",
  6139. image: {
  6140. source: "./media/characters/lukas/side.svg",
  6141. extra: 7.25 / 6.5
  6142. }
  6143. },
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6.5, "feet"),
  6149. default: true
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6155. {
  6156. side: {
  6157. height: math.unit(5, "feet"),
  6158. weight: math.unit(3000, "lbs"),
  6159. name: "Side",
  6160. image: {
  6161. source: "./media/characters/louise/side.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Normal",
  6168. height: math.unit(5, "feet"),
  6169. default: true
  6170. }
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6175. {
  6176. side: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(150, "lbs"),
  6179. name: "Side",
  6180. image: {
  6181. source: "./media/characters/ramona/side.svg",
  6182. extra: 871/854,
  6183. bottom: 41/912
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(6 + 4/12, "feet")
  6191. },
  6192. {
  6193. name: "Minimacro",
  6194. height: math.unit(5.3, "meters"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(20, "stories")
  6200. },
  6201. {
  6202. name: "Macro+",
  6203. height: math.unit(50, "stories")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6209. {
  6210. standing: {
  6211. height: math.unit(5.75, "feet"),
  6212. weight: math.unit(160, "lbs"),
  6213. name: "Standing",
  6214. image: {
  6215. source: "./media/characters/deerpuff/standing.svg",
  6216. extra: 682 / 624
  6217. }
  6218. },
  6219. sitting: {
  6220. height: math.unit(5.75 / 1.79, "feet"),
  6221. weight: math.unit(160, "lbs"),
  6222. name: "Sitting",
  6223. image: {
  6224. source: "./media/characters/deerpuff/sitting.svg",
  6225. bottom: 44 / 400,
  6226. extra: 1
  6227. }
  6228. },
  6229. taurLaying: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(400, "lbs"),
  6232. name: "Taur (Laying)",
  6233. image: {
  6234. source: "./media/characters/deerpuff/taur-laying.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Puffball",
  6241. height: math.unit(6, "inches")
  6242. },
  6243. {
  6244. name: "Normalpuff",
  6245. height: math.unit(5.75, "feet")
  6246. },
  6247. {
  6248. name: "Macropuff",
  6249. height: math.unit(1500, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Megapuff",
  6254. height: math.unit(500, "miles")
  6255. },
  6256. {
  6257. name: "Gigapuff",
  6258. height: math.unit(250000, "miles")
  6259. },
  6260. {
  6261. name: "Omegapuff",
  6262. height: math.unit(1000, "lightyears")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6268. {
  6269. stomping: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(170, "lbs"),
  6272. name: "Stomping",
  6273. image: {
  6274. source: "./media/characters/vivian/stomping.svg"
  6275. }
  6276. },
  6277. sitting: {
  6278. height: math.unit(6 / 1.75, "feet"),
  6279. weight: math.unit(170, "lbs"),
  6280. name: "Sitting",
  6281. image: {
  6282. source: "./media/characters/vivian/sitting.svg",
  6283. bottom: 1 / 6.4,
  6284. extra: 1,
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(7, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(10, "stories")
  6297. },
  6298. {
  6299. name: "Macro+",
  6300. height: math.unit(30, "stories")
  6301. },
  6302. {
  6303. name: "Megamacro",
  6304. height: math.unit(10, "miles")
  6305. },
  6306. {
  6307. name: "Megamacro+",
  6308. height: math.unit(2750000, "meters")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(160, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/prince/front.svg",
  6321. extra: 1938/1682,
  6322. bottom: 45/1983
  6323. }
  6324. },
  6325. back: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(160, "lbs"),
  6328. name: "Back",
  6329. image: {
  6330. source: "./media/characters/prince/back.svg",
  6331. extra: 1955/1726,
  6332. bottom: 6/1961
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(7.75, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Not cute",
  6344. height: math.unit(17, "feet")
  6345. },
  6346. {
  6347. name: "I said NOT",
  6348. height: math.unit(91, "feet")
  6349. },
  6350. {
  6351. name: "Please stop",
  6352. height: math.unit(560, "feet")
  6353. },
  6354. {
  6355. name: "What have you done",
  6356. height: math.unit(2200, "feet")
  6357. },
  6358. {
  6359. name: "Deer God",
  6360. height: math.unit(3.6, "miles")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6366. {
  6367. standing: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(300, "lbs"),
  6370. name: "Standing",
  6371. image: {
  6372. source: "./media/characters/psymon/standing.svg",
  6373. extra: 1888 / 1810,
  6374. bottom: 0.05
  6375. }
  6376. },
  6377. slithering: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(300, "lbs"),
  6380. name: "Slithering",
  6381. image: {
  6382. source: "./media/characters/psymon/slithering.svg",
  6383. extra: 1330 / 1224
  6384. }
  6385. },
  6386. slitheringAlt: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(300, "lbs"),
  6389. name: "Slithering (Alt)",
  6390. image: {
  6391. source: "./media/characters/psymon/slithering-alt.svg",
  6392. extra: 1330 / 1224
  6393. }
  6394. },
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(11.25, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Large",
  6404. height: math.unit(27, "feet")
  6405. },
  6406. {
  6407. name: "Giant",
  6408. height: math.unit(87, "feet")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(365, "feet")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(3, "miles")
  6417. },
  6418. {
  6419. name: "World Serpent",
  6420. height: math.unit(8000, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(180, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/daimos/front.svg",
  6433. extra: 4160 / 3897,
  6434. bottom: 0.021
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(8, "feet"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Big Dog",
  6446. height: math.unit(22, "feet")
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(127, "feet")
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(3600, "feet")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6460. {
  6461. side: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(180, "lbs"),
  6464. name: "Side",
  6465. image: {
  6466. source: "./media/characters/blake/side.svg",
  6467. extra: 1212 / 1120,
  6468. bottom: 0.05
  6469. }
  6470. },
  6471. crouched: {
  6472. height: math.unit(6 * 0.57, "feet"),
  6473. weight: math.unit(180, "lbs"),
  6474. name: "Crouched",
  6475. image: {
  6476. source: "./media/characters/blake/crouched.svg",
  6477. extra: 840 / 587,
  6478. bottom: 0.04
  6479. }
  6480. },
  6481. bent: {
  6482. height: math.unit(6 * 0.75, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Bent",
  6485. image: {
  6486. source: "./media/characters/blake/bent.svg",
  6487. extra: 592 / 544,
  6488. bottom: 0.035
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(8 + 1 / 6, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Big Backside",
  6500. height: math.unit(37, "feet")
  6501. },
  6502. {
  6503. name: "Subway Shredder",
  6504. height: math.unit(72, "feet")
  6505. },
  6506. {
  6507. name: "City Carver",
  6508. height: math.unit(1675, "feet")
  6509. },
  6510. {
  6511. name: "Tectonic Tweaker",
  6512. height: math.unit(2300, "miles")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/guisetto/front.svg",
  6525. extra: 856 / 817,
  6526. bottom: 0.06
  6527. }
  6528. },
  6529. airborne: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(180, "lbs"),
  6532. name: "Airborne",
  6533. image: {
  6534. source: "./media/characters/guisetto/airborne.svg",
  6535. extra: 584 / 525
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(10 + 11 / 12, "feet"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Large",
  6547. height: math.unit(35, "feet")
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(475, "feet")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/luxor/front.svg",
  6564. extra: 2940 / 2152
  6565. }
  6566. },
  6567. back: {
  6568. height: math.unit(6, "feet"),
  6569. weight: math.unit(180, "lbs"),
  6570. name: "Back",
  6571. image: {
  6572. source: "./media/characters/luxor/back.svg",
  6573. extra: 1083 / 960
  6574. }
  6575. },
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(5 + 5 / 6, "feet"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Lamp",
  6585. height: math.unit(50, "feet")
  6586. },
  6587. {
  6588. name: "Lämp",
  6589. height: math.unit(300, "feet")
  6590. },
  6591. {
  6592. name: "The sun is a lamp",
  6593. height: math.unit(250000, "miles")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(50, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/huoyan/front.svg"
  6606. }
  6607. },
  6608. side: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Side",
  6612. image: {
  6613. source: "./media/characters/huoyan/side.svg"
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Chef",
  6620. height: math.unit(9, "feet")
  6621. },
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(65, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(780, "feet")
  6630. },
  6631. {
  6632. name: "Flaming Mountain",
  6633. height: math.unit(4.8, "miles")
  6634. },
  6635. {
  6636. name: "Celestial",
  6637. height: math.unit(765000, "miles")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(5 + 3 / 4, "feet"),
  6646. weight: math.unit(120, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/tails/front.svg"
  6650. }
  6651. }
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(5 + 3 / 4, "feet"),
  6657. default: true
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(4, "feet"),
  6666. weight: math.unit(50, "lbs"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/rainy/front.svg"
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(800, "feet"),
  6677. default: true
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(150, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/rainier/front.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(2, "mm"),
  6697. default: true
  6698. }
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(8 + 4/12, "feet"),
  6706. weight: math.unit(450, "kilograms"),
  6707. volume: math.unit(5, "cups"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/andy-renard/front.svg",
  6711. extra: 1839/1726,
  6712. bottom: 134/1973
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(8 + 4/12, "feet"),
  6717. weight: math.unit(450, "kilograms"),
  6718. volume: math.unit(5, "cups"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/andy-renard/back.svg",
  6722. extra: 1838/1710,
  6723. bottom: 105/1943
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Tall",
  6730. height: math.unit(8 + 4/12, "feet")
  6731. },
  6732. {
  6733. name: "Mini Macro",
  6734. height: math.unit(15, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(100, "feet")
  6740. },
  6741. {
  6742. name: "Mega Macro",
  6743. height: math.unit(1000, "feet")
  6744. },
  6745. {
  6746. name: "Giga Macro",
  6747. height: math.unit(10, "miles")
  6748. },
  6749. {
  6750. name: "God Macro",
  6751. height: math.unit(1, "multiverse")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(210, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/cimmaron/front-sfw.svg",
  6764. extra: 701 / 676,
  6765. bottom: 0.046
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(210, "lbs"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/cimmaron/back-sfw.svg",
  6774. extra: 701 / 676,
  6775. bottom: 0.046
  6776. }
  6777. },
  6778. frontNsfw: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(210, "lbs"),
  6781. name: "Front (NSFW)",
  6782. image: {
  6783. source: "./media/characters/cimmaron/front-nsfw.svg",
  6784. extra: 701 / 676,
  6785. bottom: 0.046
  6786. }
  6787. },
  6788. backNsfw: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(210, "lbs"),
  6791. name: "Back (NSFW)",
  6792. image: {
  6793. source: "./media/characters/cimmaron/back-nsfw.svg",
  6794. extra: 701 / 676,
  6795. bottom: 0.046
  6796. }
  6797. },
  6798. dick: {
  6799. height: math.unit(1.714, "feet"),
  6800. name: "Dick",
  6801. image: {
  6802. source: "./media/characters/cimmaron/dick.svg"
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(6, "feet"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Macro Mayor",
  6814. height: math.unit(350, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(200, "lbs"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/akari/front.svg",
  6827. extra: 962 / 901,
  6828. bottom: 0.04
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(5, "inches"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(7, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(140, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/cynosura/front.svg",
  6853. extra: 437/410,
  6854. bottom: 9/446
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(140, "lbs"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/cynosura/back.svg",
  6863. extra: 1304/1160,
  6864. bottom: 71/1375
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(4, "inches")
  6872. },
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(5.75, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Tall",
  6880. height: math.unit(10, "feet")
  6881. },
  6882. {
  6883. name: "Big",
  6884. height: math.unit(20, "feet")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(50, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(13 + 2/12, "feet"),
  6897. weight: math.unit(800, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/gin/front.svg",
  6901. extra: 1312/1191,
  6902. bottom: 45/1357
  6903. }
  6904. },
  6905. mouth: {
  6906. height: math.unit(2.39 * 1.8, "feet"),
  6907. name: "Mouth",
  6908. image: {
  6909. source: "./media/characters/gin/mouth.svg"
  6910. }
  6911. },
  6912. hand: {
  6913. height: math.unit(1.57 * 2.19, "feet"),
  6914. name: "Hand",
  6915. image: {
  6916. source: "./media/characters/gin/hand.svg"
  6917. }
  6918. },
  6919. foot: {
  6920. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6921. name: "Foot",
  6922. image: {
  6923. source: "./media/characters/gin/foot.svg"
  6924. }
  6925. },
  6926. sole: {
  6927. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6928. name: "Sole",
  6929. image: {
  6930. source: "./media/characters/gin/sole.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Very Small",
  6937. height: math.unit(13 + 2 / 12, "feet")
  6938. },
  6939. {
  6940. name: "Micro",
  6941. height: math.unit(600, "miles")
  6942. },
  6943. {
  6944. name: "Regular",
  6945. height: math.unit(20, "earths"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(2.2, "solarradii")
  6951. },
  6952. {
  6953. name: "Teramacro",
  6954. height: math.unit(1.2, "galaxies")
  6955. },
  6956. {
  6957. name: "Omegamacro",
  6958. height: math.unit(200, "universes")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6 + 1 / 6, "feet"),
  6967. weight: math.unit(178, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/guy/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6 + 1 / 6, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Large",
  6982. height: math.unit(25 + 7 / 12, "feet")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(60 + 9 / 12, "feet")
  6987. },
  6988. {
  6989. name: "Macro+",
  6990. height: math.unit(246, "feet")
  6991. },
  6992. {
  6993. name: "Macro++",
  6994. height: math.unit(878, "feet")
  6995. }
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7000. {
  7001. front: {
  7002. height: math.unit(9, "feet"),
  7003. weight: math.unit(800, "lbs"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/tiberius/front.svg",
  7007. extra: 2295 / 2071
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(9, "feet"),
  7012. weight: math.unit(800, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/tiberius/back.svg",
  7016. extra: 2373 / 2160
  7017. }
  7018. },
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(9, "feet"),
  7024. default: true
  7025. }
  7026. ]
  7027. ))
  7028. characterMakers.push(() => makeCharacter(
  7029. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7030. {
  7031. front: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(600, "lbs"),
  7034. name: "Front",
  7035. image: {
  7036. source: "./media/characters/surgo/front.svg",
  7037. extra: 3591 / 2227
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(600, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/surgo/back.svg",
  7046. extra: 3557 / 2228
  7047. }
  7048. },
  7049. laying: {
  7050. height: math.unit(6 * 0.85, "feet"),
  7051. weight: math.unit(600, "lbs"),
  7052. name: "Laying",
  7053. image: {
  7054. source: "./media/characters/surgo/laying.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(6, "feet"),
  7062. default: true
  7063. }
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7068. {
  7069. side: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(150, "lbs"),
  7072. name: "Side",
  7073. image: {
  7074. source: "./media/characters/cibus/side.svg",
  7075. extra: 800 / 400
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(6, "feet"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(240, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/nibbles/front.svg"
  7096. }
  7097. },
  7098. side: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(240, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/nibbles/side.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(9, "feet"),
  7111. default: true
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7117. {
  7118. side: {
  7119. height: math.unit(5 + 1 / 6, "feet"),
  7120. weight: math.unit(130, "lbs"),
  7121. name: "Side",
  7122. image: {
  7123. source: "./media/characters/rikky/side.svg",
  7124. extra: 851 / 801
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(5 + 1 / 6, "feet")
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(152, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Megamacro",
  7140. height: math.unit(7, "miles")
  7141. }
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7146. {
  7147. side: {
  7148. height: math.unit(370, "cm"),
  7149. weight: math.unit(350, "lbs"),
  7150. name: "Side",
  7151. image: {
  7152. source: "./media/characters/malfressa/side.svg"
  7153. }
  7154. },
  7155. walking: {
  7156. height: math.unit(370, "cm"),
  7157. weight: math.unit(350, "lbs"),
  7158. name: "Walking",
  7159. image: {
  7160. source: "./media/characters/malfressa/walking.svg"
  7161. }
  7162. },
  7163. feral: {
  7164. height: math.unit(2500, "cm"),
  7165. weight: math.unit(100000, "lbs"),
  7166. name: "Feral",
  7167. image: {
  7168. source: "./media/characters/malfressa/feral.svg",
  7169. extra: 2108 / 837,
  7170. bottom: 0.02
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(370, "cm")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(300, "meters"),
  7182. default: true
  7183. }
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(60, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/jaro/front.svg",
  7195. extra: 845/817,
  7196. bottom: 45/890
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(60, "kg"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/jaro/back.svg",
  7205. extra: 847/817,
  7206. bottom: 34/881
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(7, "inches")
  7214. },
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(5.5, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Minimacro",
  7222. height: math.unit(20, "feet")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(200, "meters")
  7227. }
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(195, "lb"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/rogue/front.svg"
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(90, "feet"),
  7246. default: true
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7252. {
  7253. standing: {
  7254. height: math.unit(5 + 8 / 12, "feet"),
  7255. weight: math.unit(140, "lb"),
  7256. name: "Standing",
  7257. image: {
  7258. source: "./media/characters/piper/standing.svg",
  7259. extra: 1440/1284,
  7260. bottom: 66/1506
  7261. }
  7262. },
  7263. running: {
  7264. height: math.unit(5 + 8 / 12, "feet"),
  7265. weight: math.unit(140, "lb"),
  7266. name: "Running",
  7267. image: {
  7268. source: "./media/characters/piper/running.svg",
  7269. extra: 3948/3655,
  7270. bottom: 0/3948
  7271. }
  7272. },
  7273. sole: {
  7274. height: math.unit(0.81, "feet"),
  7275. weight: math.unit(2, "kg"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/piper/sole.svg"
  7279. }
  7280. },
  7281. nipple: {
  7282. height: math.unit(0.25, "feet"),
  7283. weight: math.unit(1.5, "lb"),
  7284. name: "Nipple",
  7285. image: {
  7286. source: "./media/characters/piper/nipple.svg"
  7287. }
  7288. },
  7289. head: {
  7290. height: math.unit(1.1, "feet"),
  7291. name: "Head",
  7292. image: {
  7293. source: "./media/characters/piper/head.svg"
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Micro",
  7300. height: math.unit(2, "inches")
  7301. },
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5 + 8 / 12, "feet")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(250, "feet"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Megamacro",
  7313. height: math.unit(7, "miles")
  7314. },
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(220, "lb"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/gemini/front.svg"
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(220, "lb"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/gemini/back.svg"
  7334. }
  7335. },
  7336. kneeling: {
  7337. height: math.unit(6 / 1.5, "feet"),
  7338. weight: math.unit(220, "lb"),
  7339. name: "Kneeling",
  7340. image: {
  7341. source: "./media/characters/gemini/kneeling.svg",
  7342. bottom: 0.02
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(300, "meters"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(6900, "meters")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7360. {
  7361. anthro: {
  7362. height: math.unit(2.35, "meters"),
  7363. weight: math.unit(73, "kg"),
  7364. name: "Anthro",
  7365. image: {
  7366. source: "./media/characters/alicia/anthro.svg",
  7367. extra: 2571 / 2385,
  7368. bottom: 75 / 2648
  7369. }
  7370. },
  7371. paw: {
  7372. height: math.unit(1.32, "feet"),
  7373. name: "Paw",
  7374. image: {
  7375. source: "./media/characters/alicia/paw.svg"
  7376. }
  7377. },
  7378. feral: {
  7379. height: math.unit(1.69, "meters"),
  7380. weight: math.unit(73, "kg"),
  7381. name: "Feral",
  7382. image: {
  7383. source: "./media/characters/alicia/feral.svg",
  7384. extra: 2123 / 1715,
  7385. bottom: 222 / 2349
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(2.35, "meters")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(60, "meters"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(10000, "kilometers")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(7, "feet"),
  7410. weight: math.unit(250, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/archy/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(1, "inch")
  7421. },
  7422. {
  7423. name: "Shorty",
  7424. height: math.unit(5, "feet")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(7, "feet")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(600, "meters"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(1, "mile")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7443. {
  7444. front: {
  7445. height: math.unit(1.65, "meters"),
  7446. weight: math.unit(74, "kg"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/berri/front.svg",
  7450. extra: 857 / 837,
  7451. bottom: 18 / 877
  7452. }
  7453. },
  7454. bum: {
  7455. height: math.unit(1.46, "feet"),
  7456. name: "Bum",
  7457. image: {
  7458. source: "./media/characters/berri/bum.svg"
  7459. }
  7460. },
  7461. mouth: {
  7462. height: math.unit(0.44, "feet"),
  7463. name: "Mouth",
  7464. image: {
  7465. source: "./media/characters/berri/mouth.svg"
  7466. }
  7467. },
  7468. paw: {
  7469. height: math.unit(0.826, "feet"),
  7470. name: "Paw",
  7471. image: {
  7472. source: "./media/characters/berri/paw.svg"
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(1.65, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(60, "m"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(9.213, "km")
  7489. },
  7490. {
  7491. name: "Planet Eater",
  7492. height: math.unit(489, "megameters")
  7493. },
  7494. {
  7495. name: "Teramacro",
  7496. height: math.unit(2471635000000, "meters")
  7497. },
  7498. {
  7499. name: "Examacro",
  7500. height: math.unit(8.0624e+26, "meters")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(1.72, "meters"),
  7509. weight: math.unit(68, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/lexi/front.svg"
  7513. }
  7514. }
  7515. },
  7516. [
  7517. {
  7518. name: "Very Smol",
  7519. height: math.unit(10, "mm")
  7520. },
  7521. {
  7522. name: "Micro",
  7523. height: math.unit(6.8, "cm"),
  7524. default: true
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(1.72, "m")
  7529. }
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(1.69, "meters"),
  7537. weight: math.unit(68, "kg"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/martin/front.svg",
  7541. extra: 596 / 581
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Micro",
  7548. height: math.unit(6.85, "cm"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(1.69, "m")
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(1.69, "meters"),
  7562. weight: math.unit(68, "kg"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/juno/front.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(7, "cm")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.89, "m")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(353, "meters"),
  7581. default: true
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(1.93, "meters"),
  7590. weight: math.unit(83, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/samantha/front.svg"
  7594. }
  7595. },
  7596. frontClothed: {
  7597. height: math.unit(1.93, "meters"),
  7598. weight: math.unit(83, "kg"),
  7599. name: "Front (Clothed)",
  7600. image: {
  7601. source: "./media/characters/samantha/front-clothed.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(1.93, "meters"),
  7606. weight: math.unit(83, "kg"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/samantha/back.svg"
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(1.93, "m")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(74, "meters"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(223, "meters"),
  7626. },
  7627. {
  7628. name: "Megamacro",
  7629. height: math.unit(8381, "meters"),
  7630. },
  7631. {
  7632. name: "Megamacro+",
  7633. height: math.unit(12000, "kilometers")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(1.92, "meters"),
  7642. weight: math.unit(80, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/dr-clay/front.svg"
  7646. }
  7647. },
  7648. frontClothed: {
  7649. height: math.unit(1.92, "meters"),
  7650. weight: math.unit(80, "kg"),
  7651. name: "Front (Clothed)",
  7652. image: {
  7653. source: "./media/characters/dr-clay/front-clothed.svg"
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(1.92, "m")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(214, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro+",
  7669. height: math.unit(12.237, "meters"),
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(557, "megameters"),
  7674. },
  7675. {
  7676. name: "Unimaginable",
  7677. height: math.unit(120e9, "lightyears")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(80, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7690. }
  7691. }
  7692. },
  7693. [
  7694. {
  7695. name: "Teramacro",
  7696. height: math.unit(500000, "lightyears"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7703. {
  7704. crux: {
  7705. height: math.unit(2, "meters"),
  7706. weight: math.unit(150, "kg"),
  7707. name: "Crux",
  7708. image: {
  7709. source: "./media/characters/vemus/crux.svg",
  7710. extra: 1074/936,
  7711. bottom: 23/1097
  7712. }
  7713. },
  7714. skunkTanuki: {
  7715. height: math.unit(2, "meters"),
  7716. weight: math.unit(150, "kg"),
  7717. name: "Skunk-Tanuki",
  7718. image: {
  7719. source: "./media/characters/vemus/skunk-tanuki.svg",
  7720. extra: 926/893,
  7721. bottom: 20/946
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(4, "meters"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Big",
  7733. height: math.unit(8, "meters")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(100, "meters")
  7738. },
  7739. {
  7740. name: "Macro+",
  7741. height: math.unit(1500, "meters")
  7742. },
  7743. {
  7744. name: "Stellar",
  7745. height: math.unit(14e8, "meters")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(2, "meters"),
  7754. weight: math.unit(70, "kg"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/beherit/front.svg",
  7758. extra: 1234/1109,
  7759. bottom: 55/1289
  7760. }
  7761. }
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(6, "feet")
  7767. },
  7768. {
  7769. name: "Lorg",
  7770. height: math.unit(25, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Lorger",
  7775. height: math.unit(75, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(200, "meters")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(150, "kg"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/everett/front.svg",
  7792. extra: 1017/866,
  7793. bottom: 86/1103
  7794. }
  7795. },
  7796. paw: {
  7797. height: math.unit(2 / 3.6, "meters"),
  7798. name: "Paw",
  7799. image: {
  7800. source: "./media/characters/everett/paw.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(15, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Lorg",
  7812. height: math.unit(70, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Lorger",
  7817. height: math.unit(250, "feet")
  7818. },
  7819. {
  7820. name: "Macro",
  7821. height: math.unit(500, "meters")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(2, "meters"),
  7830. weight: math.unit(86, "kg"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/rose/front.svg",
  7834. extra: 1785/1636,
  7835. bottom: 30/1815
  7836. },
  7837. form: "liom",
  7838. default: true
  7839. },
  7840. frontSporty: {
  7841. height: math.unit(2, "meters"),
  7842. weight: math.unit(86, "kg"),
  7843. name: "Front (Sporty)",
  7844. image: {
  7845. source: "./media/characters/rose/front-sporty.svg",
  7846. extra: 350/335,
  7847. bottom: 10/360
  7848. },
  7849. form: "liom"
  7850. },
  7851. frontAlt: {
  7852. height: math.unit(1.6, "meters"),
  7853. weight: math.unit(86, "kg"),
  7854. name: "Front (Alt)",
  7855. image: {
  7856. source: "./media/characters/rose/front-alt.svg",
  7857. extra: 299/283,
  7858. bottom: 3/302
  7859. },
  7860. form: "liom"
  7861. },
  7862. plush: {
  7863. height: math.unit(2, "meters"),
  7864. weight: math.unit(86/3, "kg"),
  7865. name: "Plush",
  7866. image: {
  7867. source: "./media/characters/rose/plush.svg",
  7868. extra: 361/337,
  7869. bottom: 11/372
  7870. },
  7871. form: "plush",
  7872. default: true
  7873. },
  7874. faeStanding: {
  7875. height: math.unit(10, "cm"),
  7876. weight: math.unit(10, "grams"),
  7877. name: "Standing",
  7878. image: {
  7879. source: "./media/characters/rose/fae-standing.svg",
  7880. extra: 1189/1060,
  7881. bottom: 27/1216
  7882. },
  7883. form: "fae",
  7884. default: true
  7885. },
  7886. faeSitting: {
  7887. height: math.unit(5, "cm"),
  7888. weight: math.unit(10, "grams"),
  7889. name: "Sitting",
  7890. image: {
  7891. source: "./media/characters/rose/fae-sitting.svg",
  7892. extra: 737/577,
  7893. bottom: 356/1093
  7894. },
  7895. form: "fae"
  7896. },
  7897. faePaw: {
  7898. height: math.unit(1.35, "cm"),
  7899. name: "Paw",
  7900. image: {
  7901. source: "./media/characters/rose/fae-paw.svg"
  7902. },
  7903. form: "fae"
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "True Micro",
  7909. height: math.unit(9, "cm"),
  7910. form: "liom"
  7911. },
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(16, "cm"),
  7915. form: "liom"
  7916. },
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(1.85, "meters"),
  7920. default: true,
  7921. form: "liom"
  7922. },
  7923. {
  7924. name: "Mini-Macro",
  7925. height: math.unit(5, "meters"),
  7926. form: "liom"
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(15, "meters"),
  7931. form: "liom"
  7932. },
  7933. {
  7934. name: "True Macro",
  7935. height: math.unit(40, "meters"),
  7936. form: "liom"
  7937. },
  7938. {
  7939. name: "City Scale",
  7940. height: math.unit(1, "km"),
  7941. form: "liom"
  7942. },
  7943. {
  7944. name: "Plushie",
  7945. height: math.unit(9, "cm"),
  7946. form: "plush",
  7947. default: true
  7948. },
  7949. {
  7950. name: "Fae",
  7951. height: math.unit(10, "cm"),
  7952. form: "fae",
  7953. default: true
  7954. },
  7955. ],
  7956. {
  7957. "liom": {
  7958. name: "Liom"
  7959. },
  7960. "plush": {
  7961. name: "Plush"
  7962. },
  7963. "fae": {
  7964. name: "Fae Fox",
  7965. default: true
  7966. }
  7967. }
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(2, "meters"),
  7974. weight: math.unit(350, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/regal/front.svg"
  7978. }
  7979. },
  7980. back: {
  7981. height: math.unit(2, "meters"),
  7982. weight: math.unit(350, "lbs"),
  7983. name: "Back",
  7984. image: {
  7985. source: "./media/characters/regal/back.svg"
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(350, "feet"),
  7993. default: true
  7994. }
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(4 + 11 / 12, "feet"),
  8002. weight: math.unit(100, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/opal/front.svg"
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(4 + 11 / 12, "feet"),
  8010. weight: math.unit(100, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/opal/front-alt.svg"
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Small",
  8020. height: math.unit(4 + 11 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(20, "feet"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(120, "feet")
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(80, "miles")
  8034. },
  8035. {
  8036. name: "True Size",
  8037. height: math.unit(100000, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(200, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/vector-wuff/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(2.8, "meters")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(450, "meters"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Megamacro",
  8065. height: math.unit(15, "kilometers")
  8066. }
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(256, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/dannik/front.svg"
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(69.57, "meters"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(120, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/azura-saharah/front.svg"
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(120, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/azura-saharah/back.svg"
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(100, "feet"),
  8113. default: true
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8119. {
  8120. side: {
  8121. height: math.unit(5 + 4 / 12, "feet"),
  8122. weight: math.unit(163, "lbs"),
  8123. name: "Side",
  8124. image: {
  8125. source: "./media/characters/kennedy/side.svg"
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Standard Doggo",
  8132. height: math.unit(5 + 4 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Big Doggo",
  8136. height: math.unit(25 + 3 / 12, "feet"),
  8137. default: true
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(5 + 5/12, "feet"),
  8146. weight: math.unit(100, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/odios-de-lunar/front.svg",
  8150. extra: 1468/1323,
  8151. bottom: 22/1490
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(3, "inches")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5.5, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(100, "feet")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8173. {
  8174. back: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(220, "lbs"),
  8177. name: "Back",
  8178. image: {
  8179. source: "./media/characters/mandake/back.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(7, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(78, "feet")
  8192. },
  8193. {
  8194. name: "Macro+",
  8195. height: math.unit(300, "meters")
  8196. },
  8197. {
  8198. name: "Macro++",
  8199. height: math.unit(2400, "feet")
  8200. },
  8201. {
  8202. name: "Megamacro",
  8203. height: math.unit(5167, "meters")
  8204. },
  8205. {
  8206. name: "Gigamacro",
  8207. height: math.unit(41769, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(120, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/yozey/front.svg"
  8220. }
  8221. },
  8222. frontAlt: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(120, "lbs"),
  8225. name: "Front (Alt)",
  8226. image: {
  8227. source: "./media/characters/yozey/front-alt.svg"
  8228. }
  8229. },
  8230. side: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(120, "lbs"),
  8233. name: "Side",
  8234. image: {
  8235. source: "./media/characters/yozey/side.svg"
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(3, "inches"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(6, "feet")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(103, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/valeska-voss/front.svg"
  8260. }
  8261. }
  8262. },
  8263. [
  8264. {
  8265. name: "Mini-Sized Sub",
  8266. height: math.unit(3.1, "inches")
  8267. },
  8268. {
  8269. name: "Mid-Sized Sub",
  8270. height: math.unit(6.2, "inches")
  8271. },
  8272. {
  8273. name: "Full-Sized Sub",
  8274. height: math.unit(9.3, "inches")
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(5 + 2 / 12, "foot"),
  8279. default: true
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(160, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/gene-zeta/front.svg",
  8292. extra: 3006 / 2826,
  8293. bottom: 182 / 3188
  8294. }
  8295. }
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(6, "inches")
  8301. },
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(5 + 11 / 12, "foot"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(140, "feet")
  8310. },
  8311. {
  8312. name: "Supercharged",
  8313. height: math.unit(2500, "feet")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/razinox/front.svg",
  8326. extra: 1686 / 1548,
  8327. bottom: 28.2 / 1868
  8328. }
  8329. },
  8330. back: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(350, "lbs"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/razinox/back.svg",
  8336. extra: 1660 / 1590,
  8337. bottom: 15 / 1665
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(10 + 8 / 12, "foot")
  8345. },
  8346. {
  8347. name: "Minimacro",
  8348. height: math.unit(15, "foot")
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(60, "foot"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Megamacro",
  8357. height: math.unit(5, "miles")
  8358. },
  8359. {
  8360. name: "Gigamacro",
  8361. height: math.unit(6000, "miles")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(150, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/cobalt/front.svg"
  8374. }
  8375. }
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(8 + 1 / 12, "foot")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(111, "foot"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Supracosmic",
  8389. height: math.unit(1e42, "feet")
  8390. },
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8395. {
  8396. front: {
  8397. height: math.unit(5, "inches"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/amanda/front.svg",
  8401. extra: 926/791,
  8402. bottom: 38/964
  8403. }
  8404. },
  8405. back: {
  8406. height: math.unit(5, "inches"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/amanda/back.svg",
  8410. extra: 909/805,
  8411. bottom: 43/952
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Micro",
  8418. height: math.unit(5, "inches"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(2.75, "meters"),
  8428. weight: math.unit(1200, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/teal/front.svg",
  8432. extra: 2463 / 2320,
  8433. bottom: 166 / 2629
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(2.75, "meters"),
  8438. weight: math.unit(1200, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/teal/back.svg",
  8442. extra: 2580 / 2489,
  8443. bottom: 151 / 2731
  8444. }
  8445. },
  8446. sitting: {
  8447. height: math.unit(1.9, "meters"),
  8448. weight: math.unit(1200, "lb"),
  8449. name: "Sitting",
  8450. image: {
  8451. source: "./media/characters/teal/sitting.svg",
  8452. extra: 623 / 590,
  8453. bottom: 121 / 744
  8454. }
  8455. },
  8456. standing: {
  8457. height: math.unit(2.75, "meters"),
  8458. weight: math.unit(1200, "lb"),
  8459. name: "Standing",
  8460. image: {
  8461. source: "./media/characters/teal/standing.svg",
  8462. extra: 923 / 893,
  8463. bottom: 60 / 983
  8464. }
  8465. },
  8466. stretching: {
  8467. height: math.unit(3.65, "meters"),
  8468. weight: math.unit(1200, "lb"),
  8469. name: "Stretching",
  8470. image: {
  8471. source: "./media/characters/teal/stretching.svg",
  8472. extra: 1276 / 1244,
  8473. bottom: 0 / 1276
  8474. }
  8475. },
  8476. legged: {
  8477. height: math.unit(1.3, "meters"),
  8478. weight: math.unit(100, "lb"),
  8479. name: "Legged",
  8480. image: {
  8481. source: "./media/characters/teal/legged.svg",
  8482. extra: 462 / 437,
  8483. bottom: 24 / 486
  8484. }
  8485. },
  8486. naga: {
  8487. height: math.unit(5.4, "meters"),
  8488. weight: math.unit(4000, "lb"),
  8489. name: "Naga",
  8490. image: {
  8491. source: "./media/characters/teal/naga.svg",
  8492. extra: 1902 / 1858,
  8493. bottom: 0 / 1902
  8494. }
  8495. },
  8496. hand: {
  8497. height: math.unit(0.52, "meters"),
  8498. name: "Hand",
  8499. image: {
  8500. source: "./media/characters/teal/hand.svg"
  8501. }
  8502. },
  8503. maw: {
  8504. height: math.unit(0.43, "meters"),
  8505. name: "Maw",
  8506. image: {
  8507. source: "./media/characters/teal/maw.svg"
  8508. }
  8509. },
  8510. slit: {
  8511. height: math.unit(0.25, "meters"),
  8512. name: "Slit",
  8513. image: {
  8514. source: "./media/characters/teal/slit.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(2.75, "meters"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Macro+",
  8530. height: math.unit(2000, "feet")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8536. {
  8537. frontCat: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(180, "lbs"),
  8540. name: "Front (Cat)",
  8541. image: {
  8542. source: "./media/characters/ravin-amulet/front-cat.svg"
  8543. }
  8544. },
  8545. frontCatAlt: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(180, "lbs"),
  8548. name: "Front (Alt, Cat)",
  8549. image: {
  8550. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8551. }
  8552. },
  8553. frontWerewolf: {
  8554. height: math.unit(6 * 1.2, "feet"),
  8555. weight: math.unit(225, "lbs"),
  8556. name: "Front (Werewolf)",
  8557. image: {
  8558. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8559. }
  8560. },
  8561. backWerewolf: {
  8562. height: math.unit(6 * 1.2, "feet"),
  8563. weight: math.unit(225, "lbs"),
  8564. name: "Back (Werewolf)",
  8565. image: {
  8566. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Nano",
  8573. height: math.unit(1, "micrometer")
  8574. },
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(1, "inch")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(6, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(60, "feet")
  8587. }
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(165, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/fluoresce/front.svg"
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(6, "cm")
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(5 + 7 / 12, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(56, "feet")
  8615. },
  8616. {
  8617. name: "Megamacro",
  8618. height: math.unit(1.9, "miles")
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(9 + 6 / 12, "feet"),
  8627. weight: math.unit(523, "lbs"),
  8628. name: "Side",
  8629. image: {
  8630. source: "./media/characters/aurora/side.svg",
  8631. extra: 474/393,
  8632. bottom: 5/479
  8633. }
  8634. }
  8635. },
  8636. [
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(9 + 6 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(96, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Macro+",
  8648. height: math.unit(243, "feet")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(194, "cm"),
  8657. weight: math.unit(90, "kg"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/ranek/front.svg",
  8661. extra: 1862/1791,
  8662. bottom: 80/1942
  8663. }
  8664. },
  8665. back: {
  8666. height: math.unit(194, "cm"),
  8667. weight: math.unit(90, "kg"),
  8668. name: "Back",
  8669. image: {
  8670. source: "./media/characters/ranek/back.svg",
  8671. extra: 1853/1787,
  8672. bottom: 74/1927
  8673. }
  8674. },
  8675. feral: {
  8676. height: math.unit(30, "cm"),
  8677. weight: math.unit(1.6, "lbs"),
  8678. name: "Feral",
  8679. image: {
  8680. source: "./media/characters/ranek/feral.svg",
  8681. extra: 990/631,
  8682. bottom: 29/1019
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(194, "cm"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(100, "meters")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 6 / 12, "feet"),
  8703. weight: math.unit(153, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/andrew-cooper/front.svg"
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Nano",
  8713. height: math.unit(1, "mm")
  8714. },
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5 + 6 / 12, "feet"),
  8722. default: true
  8723. }
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(180, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/akane-sato/front.svg",
  8735. extra: 1219 / 1140
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(180, "lbs"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/akane-sato/back.svg",
  8744. extra: 1219 / 1170
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(2.5, "meters")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(250, "meters"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(25, "km")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(65, "kg"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/rook/front.svg",
  8773. extra: 960 / 950
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(8.8, "feet")
  8781. },
  8782. {
  8783. name: "Macro",
  8784. height: math.unit(88, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Megamacro",
  8789. height: math.unit(8, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(12 + 2 / 12, "feet"),
  8798. weight: math.unit(808, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/prodigy/front.svg"
  8802. }
  8803. }
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(12 + 2 / 12, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(143, "feet")
  8814. },
  8815. {
  8816. name: "Macro+",
  8817. height: math.unit(400, "feet")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(225, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/daniel/front.svg"
  8830. }
  8831. },
  8832. leaning: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Leaning",
  8836. image: {
  8837. source: "./media/characters/daniel/leaning.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(1000, "feet"),
  8845. default: true
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(88, "lbs"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/chiros/front.svg",
  8858. extra: 306 / 226
  8859. }
  8860. },
  8861. side: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(88, "lbs"),
  8864. name: "Side",
  8865. image: {
  8866. source: "./media/characters/chiros/side.svg",
  8867. extra: 306 / 226
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(6, "cm"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(100, "lbs"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/selka/front.svg",
  8888. extra: 947 / 887
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(5, "cm"),
  8896. default: true
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(8 + 3 / 12, "feet"),
  8905. weight: math.unit(424, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/verin/front.svg",
  8909. extra: 1845 / 1550
  8910. }
  8911. },
  8912. frontArmored: {
  8913. height: math.unit(8 + 3 / 12, "feet"),
  8914. weight: math.unit(424, "lbs"),
  8915. name: "Front (Armored)",
  8916. image: {
  8917. source: "./media/characters/verin/front-armor.svg",
  8918. extra: 1845 / 1550,
  8919. bottom: 0.01
  8920. }
  8921. },
  8922. back: {
  8923. height: math.unit(8 + 3 / 12, "feet"),
  8924. weight: math.unit(424, "lbs"),
  8925. name: "Back",
  8926. image: {
  8927. source: "./media/characters/verin/back.svg",
  8928. bottom: 0.1,
  8929. extra: 1
  8930. }
  8931. },
  8932. foot: {
  8933. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8934. name: "Foot",
  8935. image: {
  8936. source: "./media/characters/verin/foot.svg"
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(8 + 3 / 12, "feet")
  8944. },
  8945. {
  8946. name: "Minimacro",
  8947. height: math.unit(21, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(626, "feet")
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(2.718, "meters"),
  8961. weight: math.unit(150, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/sovrim-terraquian/front.svg",
  8965. extra: 1752/1689,
  8966. bottom: 36/1788
  8967. }
  8968. },
  8969. back: {
  8970. height: math.unit(2.718, "meters"),
  8971. weight: math.unit(150, "lbs"),
  8972. name: "Back",
  8973. image: {
  8974. source: "./media/characters/sovrim-terraquian/back.svg",
  8975. extra: 1698/1657,
  8976. bottom: 58/1756
  8977. }
  8978. },
  8979. tongue: {
  8980. height: math.unit(2.865, "feet"),
  8981. name: "Tongue",
  8982. image: {
  8983. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8984. }
  8985. },
  8986. hand: {
  8987. height: math.unit(1.61, "feet"),
  8988. name: "Hand",
  8989. image: {
  8990. source: "./media/characters/sovrim-terraquian/hand.svg"
  8991. }
  8992. },
  8993. foot: {
  8994. height: math.unit(1.05, "feet"),
  8995. name: "Foot",
  8996. image: {
  8997. source: "./media/characters/sovrim-terraquian/foot.svg"
  8998. }
  8999. },
  9000. footAlt: {
  9001. height: math.unit(0.88, "feet"),
  9002. name: "Foot (Alt)",
  9003. image: {
  9004. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(2, "inches")
  9012. },
  9013. {
  9014. name: "Small",
  9015. height: math.unit(1, "meter")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(Math.E, "meters"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Macro",
  9024. height: math.unit(20, "meters")
  9025. },
  9026. {
  9027. name: "Macro+",
  9028. height: math.unit(400, "meters")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(7, "feet"),
  9037. weight: math.unit(489, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/reece-silvermane/front.svg",
  9041. bottom: 0.02,
  9042. extra: 1
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(1.5, "miles"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(78, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/kane/front.svg",
  9063. extra: 978 / 899
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(2.1, "m"),
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(1, "km"),
  9075. default: true
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(200, "kg"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/tegon/front.svg",
  9088. bottom: 0.01,
  9089. extra: 1
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(1, "inch")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(6 + 3 / 12, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "Macro",
  9105. height: math.unit(300, "feet")
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(69, "miles")
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9115. {
  9116. side: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(2304, "lbs"),
  9119. name: "Side",
  9120. image: {
  9121. source: "./media/characters/arcturax/side.svg",
  9122. extra: 790 / 376,
  9123. bottom: 0.01
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(2, "inch")
  9131. },
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(6, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(39, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Megamacro",
  9143. height: math.unit(7, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(50, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/sentri/front.svg",
  9156. extra: 1750 / 1570,
  9157. bottom: 0.025
  9158. }
  9159. },
  9160. frontAlt: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(50, "lbs"),
  9163. name: "Front (Alt)",
  9164. image: {
  9165. source: "./media/characters/sentri/front-alt.svg",
  9166. extra: 1750 / 1570,
  9167. bottom: 0.025
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(15, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(2500, "feet")
  9180. }
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(5 + 8 / 12, "feet"),
  9188. weight: math.unit(130, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/corvin/front.svg",
  9192. extra: 1803 / 1629
  9193. }
  9194. },
  9195. frontShirt: {
  9196. height: math.unit(5 + 8 / 12, "feet"),
  9197. weight: math.unit(130, "lbs"),
  9198. name: "Front (Shirt)",
  9199. image: {
  9200. source: "./media/characters/corvin/front-shirt.svg",
  9201. extra: 1803 / 1629
  9202. }
  9203. },
  9204. frontPoncho: {
  9205. height: math.unit(5 + 8 / 12, "feet"),
  9206. weight: math.unit(130, "lbs"),
  9207. name: "Front (Poncho)",
  9208. image: {
  9209. source: "./media/characters/corvin/front-poncho.svg",
  9210. extra: 1803 / 1629
  9211. }
  9212. },
  9213. side: {
  9214. height: math.unit(5 + 8 / 12, "feet"),
  9215. weight: math.unit(130, "lbs"),
  9216. name: "Side",
  9217. image: {
  9218. source: "./media/characters/corvin/side.svg",
  9219. extra: 1012 / 945
  9220. }
  9221. },
  9222. back: {
  9223. height: math.unit(5 + 8 / 12, "feet"),
  9224. weight: math.unit(130, "lbs"),
  9225. name: "Back",
  9226. image: {
  9227. source: "./media/characters/corvin/back.svg",
  9228. extra: 1803 / 1629
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(3, "inches")
  9236. },
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(5 + 8 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(300, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Megamacro",
  9248. height: math.unit(500, "miles")
  9249. }
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(135, "lbs"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/q/front.svg",
  9261. extra: 854 / 752,
  9262. bottom: 0.005
  9263. }
  9264. },
  9265. back: {
  9266. height: math.unit(6, "feet"),
  9267. weight: math.unit(130, "lbs"),
  9268. name: "Back",
  9269. image: {
  9270. source: "./media/characters/q/back.svg",
  9271. extra: 854 / 752
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(90, "feet"),
  9279. default: true
  9280. },
  9281. {
  9282. name: "Extra Macro",
  9283. height: math.unit(300, "feet"),
  9284. },
  9285. {
  9286. name: "BIG WALF",
  9287. height: math.unit(750, "feet"),
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9293. {
  9294. front: {
  9295. height: math.unit(3, "feet"),
  9296. weight: math.unit(28, "lbs"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/citrine/front.svg"
  9300. }
  9301. }
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(3, "feet"),
  9307. default: true
  9308. }
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9313. {
  9314. front: {
  9315. height: math.unit(14, "feet"),
  9316. weight: math.unit(1450, "kg"),
  9317. preyCapacity: math.unit(15, "people"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/aura-starwind/front.svg",
  9321. extra: 1440/1327,
  9322. bottom: 11/1451
  9323. }
  9324. },
  9325. side: {
  9326. height: math.unit(14, "feet"),
  9327. weight: math.unit(1450, "kg"),
  9328. preyCapacity: math.unit(15, "people"),
  9329. name: "Side",
  9330. image: {
  9331. source: "./media/characters/aura-starwind/side.svg",
  9332. extra: 1654 / 1497
  9333. }
  9334. },
  9335. taur: {
  9336. height: math.unit(18, "feet"),
  9337. weight: math.unit(5500, "kg"),
  9338. preyCapacity: math.unit(50, "people"),
  9339. name: "Taur",
  9340. image: {
  9341. source: "./media/characters/aura-starwind/taur.svg",
  9342. extra: 1760 / 1650
  9343. }
  9344. },
  9345. feral: {
  9346. height: math.unit(46, "feet"),
  9347. weight: math.unit(25000, "kg"),
  9348. preyCapacity: math.unit(120, "people"),
  9349. name: "Feral",
  9350. image: {
  9351. source: "./media/characters/aura-starwind/feral.svg"
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(14, "feet"),
  9359. default: true
  9360. },
  9361. {
  9362. name: "Macro",
  9363. height: math.unit(50, "meters")
  9364. },
  9365. {
  9366. name: "Megamacro",
  9367. height: math.unit(5000, "meters")
  9368. },
  9369. {
  9370. name: "Gigamacro",
  9371. height: math.unit(100000, "kilometers")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(2 + 7 / 12, "feet"),
  9380. weight: math.unit(32, "lbs"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/rivet/front.svg",
  9384. extra: 1716 / 1658,
  9385. bottom: 0.03
  9386. }
  9387. },
  9388. foot: {
  9389. height: math.unit(0.551, "feet"),
  9390. name: "Rivet's Foot",
  9391. image: {
  9392. source: "./media/characters/rivet/foot.svg"
  9393. },
  9394. rename: true
  9395. }
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(1.5, "inches"),
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(2 + 7 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(85, "feet")
  9410. },
  9411. {
  9412. name: "Megamacro",
  9413. height: math.unit(2.2, "km")
  9414. }
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9419. {
  9420. front: {
  9421. height: math.unit(5 + 9 / 12, "feet"),
  9422. weight: math.unit(150, "lbs"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/coffee/front.svg",
  9426. extra: 946/880,
  9427. bottom: 66/1012
  9428. }
  9429. },
  9430. foot: {
  9431. height: math.unit(1.29, "feet"),
  9432. name: "Foot",
  9433. image: {
  9434. source: "./media/characters/coffee/foot.svg"
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Micro",
  9441. height: math.unit(2, "inches"),
  9442. },
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5 + 9 / 12, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(800, "feet")
  9451. },
  9452. {
  9453. name: "Megamacro",
  9454. height: math.unit(25, "miles")
  9455. }
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "lbs"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/chari-gal/front.svg",
  9467. extra: 735/649,
  9468. bottom: 55/790
  9469. },
  9470. form: "normal",
  9471. default: true
  9472. },
  9473. back: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(200, "lb"),
  9476. name: "Back",
  9477. image: {
  9478. source: "./media/characters/chari-gal/back.svg",
  9479. extra: 762/666,
  9480. bottom: 31/793
  9481. },
  9482. form: "normal"
  9483. },
  9484. mouth: {
  9485. height: math.unit(1.35, "feet"),
  9486. name: "Mouth",
  9487. image: {
  9488. source: "./media/characters/chari-gal/mouth.svg"
  9489. },
  9490. form: "normal"
  9491. },
  9492. gigantamax: {
  9493. height: math.unit(6 * 16, "feet"),
  9494. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9495. name: "Gigantamax",
  9496. image: {
  9497. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9498. extra: 1507/1149,
  9499. bottom: 254/1761
  9500. },
  9501. form: "gigantamax",
  9502. default: true
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(5 + 7 / 12, "feet"),
  9509. form: "normal",
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(200, "feet"),
  9514. default: true,
  9515. form: "normal"
  9516. },
  9517. {
  9518. name: "Normal",
  9519. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9520. form: "gigantamax",
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(16 * 200, "feet"),
  9525. default: true,
  9526. form: "gigantamax"
  9527. },
  9528. ],
  9529. {
  9530. "normal": {
  9531. name: "Normal",
  9532. default: true
  9533. },
  9534. "gigantamax": {
  9535. name: "Gigantamax",
  9536. },
  9537. }
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(150, "lbs"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/nova/front.svg",
  9548. extra: 5000 / 4722,
  9549. bottom: 0.02
  9550. }
  9551. }
  9552. },
  9553. [
  9554. {
  9555. name: "Micro-",
  9556. height: math.unit(0.8, "inches")
  9557. },
  9558. {
  9559. name: "Micro",
  9560. height: math.unit(2, "inches"),
  9561. default: true
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9567. {
  9568. koboldFront: {
  9569. height: math.unit(3 + 1 / 12, "feet"),
  9570. weight: math.unit(21.7, "lbs"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/argent/kobold-front.svg",
  9574. extra: 1471 / 1331,
  9575. bottom: 100.8 / 1575.5
  9576. },
  9577. form: "kobold",
  9578. default: true
  9579. },
  9580. dragonFront: {
  9581. height: math.unit(75, "inches"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/argent/dragon-front.svg",
  9585. extra: 1389/1248,
  9586. bottom: 54/1443
  9587. },
  9588. form: "dragon",
  9589. },
  9590. dragonBack: {
  9591. height: math.unit(75, "inches"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/argent/dragon-back.svg",
  9595. extra: 1399/1271,
  9596. bottom: 23/1422
  9597. },
  9598. form: "dragon",
  9599. },
  9600. dragonDressed: {
  9601. height: math.unit(75, "inches"),
  9602. name: "Dressed",
  9603. image: {
  9604. source: "./media/characters/argent/dragon-dressed.svg",
  9605. extra: 1350/1215,
  9606. bottom: 26/1376
  9607. },
  9608. form: "dragon"
  9609. },
  9610. dragonHead: {
  9611. height: math.unit(23.5, "inches"),
  9612. name: "Head",
  9613. image: {
  9614. source: "./media/characters/argent/dragon-head.svg"
  9615. },
  9616. form: "dragon",
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(2, "inches"),
  9623. form: "kobold",
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(3 + 1 / 12, "feet"),
  9628. form: "kobold",
  9629. default: true
  9630. },
  9631. {
  9632. name: "Macro",
  9633. height: math.unit(120, "feet"),
  9634. form: "kobold",
  9635. },
  9636. {
  9637. name: "Speck",
  9638. height: math.unit(1, "mm"),
  9639. form: "dragon",
  9640. },
  9641. {
  9642. name: "Tiny",
  9643. height: math.unit(1, "cm"),
  9644. form: "dragon",
  9645. },
  9646. {
  9647. name: "Micro",
  9648. height: math.unit(5, "cm"),
  9649. form: "dragon",
  9650. },
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(75, "inches"),
  9654. form: "dragon",
  9655. default: true
  9656. },
  9657. {
  9658. name: "Extra Tall",
  9659. height: math.unit(9, "feet"),
  9660. form: "dragon",
  9661. },
  9662. {
  9663. name: "Inconvenient",
  9664. height: math.unit(5, "meters"),
  9665. form: "dragon",
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(70, "meters"),
  9670. form: "dragon",
  9671. },
  9672. {
  9673. name: "Macro+",
  9674. height: math.unit(250, "meters"),
  9675. form: "dragon",
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(20, "km"),
  9680. form: "dragon",
  9681. },
  9682. {
  9683. name: "Mountainous",
  9684. height: math.unit(100, "km"),
  9685. form: "dragon",
  9686. },
  9687. {
  9688. name: "Continental",
  9689. height: math.unit(2, "megameters"),
  9690. form: "dragon",
  9691. },
  9692. {
  9693. name: "Too Big",
  9694. height: math.unit(900, "megameters"),
  9695. form: "dragon",
  9696. },
  9697. ],
  9698. {
  9699. "kobold": {
  9700. name: "Kobold",
  9701. default: true
  9702. },
  9703. "dragon": {
  9704. name: "Dragon",
  9705. },
  9706. }
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9710. {
  9711. lamp: {
  9712. height: math.unit(7 * 1559 / 989, "feet"),
  9713. name: "Magic Lamp",
  9714. image: {
  9715. source: "./media/characters/mira-al-cul/lamp.svg",
  9716. extra: 1617 / 1559
  9717. }
  9718. },
  9719. front: {
  9720. height: math.unit(7, "feet"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/mira-al-cul/front.svg",
  9724. extra: 1044 / 990
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Heavily Restricted",
  9731. height: math.unit(7 * 1559 / 989, "feet")
  9732. },
  9733. {
  9734. name: "Freshly Freed",
  9735. height: math.unit(50 * 1559 / 989, "feet")
  9736. },
  9737. {
  9738. name: "World Encompassing",
  9739. height: math.unit(10000 * 1559 / 989, "miles")
  9740. },
  9741. {
  9742. name: "Galactic",
  9743. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9744. },
  9745. {
  9746. name: "Palmed Universe",
  9747. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Multiversal Matriarch",
  9752. height: math.unit(8.87e10, "yottameters")
  9753. },
  9754. {
  9755. name: "Void Mother",
  9756. height: math.unit(3.14e110, "yottaparsecs")
  9757. },
  9758. {
  9759. name: "Toying with Transcendence",
  9760. height: math.unit(1e307, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9766. {
  9767. front: {
  9768. height: math.unit(17 + 1 / 12, "feet"),
  9769. weight: math.unit(476.2 * 5, "lbs"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/kuro-shi-uchū/front.svg",
  9773. extra: 2329 / 1835,
  9774. bottom: 0.02
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Micro",
  9781. height: math.unit(2, "inches")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(12, "meters")
  9786. },
  9787. {
  9788. name: "Planetary",
  9789. height: math.unit(0.00929, "AU"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Universal",
  9794. height: math.unit(20, "gigaparsecs")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(5 + 2 / 12, "feet"),
  9803. weight: math.unit(120, "lbs"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/katherine/front.svg",
  9807. extra: 2075 / 1969
  9808. }
  9809. },
  9810. dress: {
  9811. height: math.unit(5 + 2 / 12, "feet"),
  9812. weight: math.unit(120, "lbs"),
  9813. name: "Dress",
  9814. image: {
  9815. source: "./media/characters/katherine/dress.svg",
  9816. extra: 2258 / 2064
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Micro",
  9823. height: math.unit(1, "inches"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 2 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(100, "meters")
  9833. },
  9834. {
  9835. name: "Megamacro",
  9836. height: math.unit(80, "miles")
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(7 + 8 / 12, "feet"),
  9845. weight: math.unit(250, "lbs"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/yevis/front.svg",
  9849. extra: 1938 / 1755
  9850. }
  9851. }
  9852. },
  9853. [
  9854. {
  9855. name: "Mortal",
  9856. height: math.unit(7 + 8 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Battle",
  9860. height: math.unit(25 + 11 / 12, "feet")
  9861. },
  9862. {
  9863. name: "Wrath",
  9864. height: math.unit(1654 + 11 / 12, "feet")
  9865. },
  9866. {
  9867. name: "Planet Destroyer",
  9868. height: math.unit(12000, "miles")
  9869. },
  9870. {
  9871. name: "Galaxy Conqueror",
  9872. height: math.unit(1.45, "zettameters"),
  9873. default: true
  9874. },
  9875. {
  9876. name: "Universal War",
  9877. height: math.unit(184, "gigaparsecs")
  9878. },
  9879. {
  9880. name: "Eternity War",
  9881. height: math.unit(1.98e55, "yottaparsecs")
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9887. {
  9888. front: {
  9889. height: math.unit(5 + 8 / 12, "feet"),
  9890. weight: math.unit(63, "kg"),
  9891. name: "Front",
  9892. image: {
  9893. source: "./media/characters/xavier/front.svg",
  9894. extra: 944 / 883
  9895. }
  9896. },
  9897. frontStretch: {
  9898. height: math.unit(5 + 8 / 12, "feet"),
  9899. weight: math.unit(63, "kg"),
  9900. name: "Stretching",
  9901. image: {
  9902. source: "./media/characters/xavier/front-stretch.svg",
  9903. extra: 962 / 820
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(5 + 8 / 12, "feet")
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(100, "meters"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "McLargeHuge",
  9919. height: math.unit(10, "miles")
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(5 + 5 / 12, "feet"),
  9928. weight: math.unit(150, "lb"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/joshii/front.svg",
  9932. extra: 765 / 653,
  9933. bottom: 51 / 816
  9934. }
  9935. },
  9936. foot: {
  9937. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9938. name: "Foot",
  9939. image: {
  9940. source: "./media/characters/joshii/foot.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(2, "inches")
  9948. },
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(5 + 5 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(785, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(24.5, "miles")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(150, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/goddess-elizabeth/front.svg",
  9973. extra: 1800 / 1525,
  9974. bottom: 0.005
  9975. }
  9976. },
  9977. foot: {
  9978. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9979. name: "Foot",
  9980. image: {
  9981. source: "./media/characters/goddess-elizabeth/foot.svg"
  9982. }
  9983. },
  9984. mouth: {
  9985. height: math.unit(6, "feet"),
  9986. name: "Mouth",
  9987. image: {
  9988. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Micro",
  9995. height: math.unit(12, "feet")
  9996. },
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(80, "miles"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(15000, "parsecs")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(5 + 9 / 12, "feet"),
  10013. weight: math.unit(144, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/kara/front.svg"
  10017. }
  10018. },
  10019. feet: {
  10020. height: math.unit(6 / 6.765, "feet"),
  10021. name: "Kara's Feet",
  10022. rename: true,
  10023. image: {
  10024. source: "./media/characters/kara/feet.svg"
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(5 + 9 / 12, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(174, "feet"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(18, "feet"),
  10045. weight: math.unit(4050, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/tyrone/front.svg",
  10049. extra: 2405 / 2270,
  10050. bottom: 182 / 2587
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(18, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(300, "feet")
  10063. },
  10064. {
  10065. name: "Megamacro",
  10066. height: math.unit(15, "km")
  10067. },
  10068. {
  10069. name: "Gigamacro",
  10070. height: math.unit(500, "km")
  10071. },
  10072. {
  10073. name: "Teramacro",
  10074. height: math.unit(0.5, "gigameters")
  10075. },
  10076. {
  10077. name: "Omnimacro",
  10078. height: math.unit(1e252, "yottauniverse")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(7 + 8 / 12, "feet"),
  10087. weight: math.unit(120, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/danny/front.svg",
  10091. extra: 1490 / 1350
  10092. }
  10093. },
  10094. back: {
  10095. height: math.unit(7 + 8 / 12, "feet"),
  10096. weight: math.unit(120, "lb"),
  10097. name: "Back",
  10098. image: {
  10099. source: "./media/characters/danny/back.svg",
  10100. extra: 1490 / 1350
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(7 + 8 / 12, "feet"),
  10108. default: true
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(3.5, "inches"),
  10117. weight: math.unit(19, "grams"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/mallow/front.svg",
  10121. extra: 471 / 431
  10122. }
  10123. },
  10124. back: {
  10125. height: math.unit(3.5, "inches"),
  10126. weight: math.unit(19, "grams"),
  10127. name: "Back",
  10128. image: {
  10129. source: "./media/characters/mallow/back.svg",
  10130. extra: 471 / 431
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(3.5, "inches"),
  10138. default: true
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(9, "feet"),
  10147. weight: math.unit(230, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/starry-aqua/front.svg"
  10151. }
  10152. },
  10153. back: {
  10154. height: math.unit(9, "feet"),
  10155. weight: math.unit(230, "kg"),
  10156. name: "Back",
  10157. image: {
  10158. source: "./media/characters/starry-aqua/back.svg"
  10159. }
  10160. },
  10161. hand: {
  10162. height: math.unit(9 * 0.1168, "feet"),
  10163. name: "Hand",
  10164. image: {
  10165. source: "./media/characters/starry-aqua/hand.svg"
  10166. }
  10167. },
  10168. foot: {
  10169. height: math.unit(9 * 0.18, "feet"),
  10170. name: "Foot",
  10171. image: {
  10172. source: "./media/characters/starry-aqua/foot.svg"
  10173. }
  10174. }
  10175. },
  10176. [
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(3, "inches")
  10180. },
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(9, "feet")
  10184. },
  10185. {
  10186. name: "Macro",
  10187. height: math.unit(300, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(3200, "feet")
  10193. }
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(15, "feet"),
  10201. weight: math.unit(5026, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/luka-towers/front.svg",
  10205. extra: 1269/1133,
  10206. bottom: 51/1320
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(15, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Minimacro",
  10218. height: math.unit(25, "feet")
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(320, "feet")
  10223. },
  10224. {
  10225. name: "Megamacro",
  10226. height: math.unit(35000, "feet")
  10227. },
  10228. {
  10229. name: "Gigamacro",
  10230. height: math.unit(4000, "miles")
  10231. },
  10232. {
  10233. name: "Teramacro",
  10234. height: math.unit(15000, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/natalie-nightring/front.svg",
  10247. extra: 1,
  10248. bottom: 0.06
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Uh Oh",
  10255. height: math.unit(0.1, "mm")
  10256. },
  10257. {
  10258. name: "Small",
  10259. height: math.unit(3, "inches")
  10260. },
  10261. {
  10262. name: "Human Scale",
  10263. height: math.unit(6, "feet")
  10264. },
  10265. {
  10266. name: "Librarian",
  10267. height: math.unit(50, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Immense",
  10272. height: math.unit(200, "miles")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(180, "lbs"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/danni-rosie/front.svg",
  10285. extra: 1260 / 1128,
  10286. bottom: 0.022
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(2, "inches"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(5 + 9 / 12, "feet"),
  10303. weight: math.unit(220, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/samantha-kruse/front.svg",
  10307. extra: (985 / 935),
  10308. bottom: 0.03
  10309. }
  10310. },
  10311. frontUndressed: {
  10312. height: math.unit(5 + 9 / 12, "feet"),
  10313. weight: math.unit(220, "lb"),
  10314. name: "Front (Undressed)",
  10315. image: {
  10316. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10317. extra: (973 / 923),
  10318. bottom: 0.025
  10319. }
  10320. },
  10321. fat: {
  10322. height: math.unit(5 + 9 / 12, "feet"),
  10323. weight: math.unit(900, "lb"),
  10324. name: "Front (Fat)",
  10325. image: {
  10326. source: "./media/characters/samantha-kruse/fat.svg",
  10327. extra: 2688 / 2561
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 9 / 12, "feet"),
  10335. default: true
  10336. }
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10341. {
  10342. back: {
  10343. height: math.unit(5 + 4 / 12, "feet"),
  10344. weight: math.unit(4963, "lb"),
  10345. name: "Back",
  10346. image: {
  10347. source: "./media/characters/amelia-rosie/back.svg",
  10348. extra: 1113 / 963,
  10349. bottom: 0.01
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Level 0",
  10356. height: math.unit(5 + 4 / 12, "feet")
  10357. },
  10358. {
  10359. name: "Level 1",
  10360. height: math.unit(164597, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Level 2",
  10365. height: math.unit(956243, "miles")
  10366. },
  10367. {
  10368. name: "Level 3",
  10369. height: math.unit(29421709423, "miles")
  10370. },
  10371. {
  10372. name: "Level 4",
  10373. height: math.unit(154, "lightyears")
  10374. },
  10375. {
  10376. name: "Level 5",
  10377. height: math.unit(4738272, "lightyears")
  10378. },
  10379. {
  10380. name: "Level 6",
  10381. height: math.unit(145787152896, "lightyears")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(5 + 11 / 12, "feet"),
  10390. weight: math.unit(65, "kg"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/rook-kitara/front.svg",
  10394. extra: 1347 / 1274,
  10395. bottom: 0.005
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Totally Unfair",
  10402. height: math.unit(1.8, "mm")
  10403. },
  10404. {
  10405. name: "Lap Rookie",
  10406. height: math.unit(1.4, "feet")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 11 / 12, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "How Did This Happen",
  10415. height: math.unit(80, "miles")
  10416. }
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(7, "feet"),
  10424. weight: math.unit(300, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/pisces/front.svg",
  10428. extra: 2255 / 2115,
  10429. bottom: 0.03
  10430. }
  10431. },
  10432. back: {
  10433. height: math.unit(7, "feet"),
  10434. weight: math.unit(300, "lb"),
  10435. name: "Back",
  10436. image: {
  10437. source: "./media/characters/pisces/back.svg",
  10438. extra: 2146 / 2055,
  10439. bottom: 0.04
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(7, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Swimming Pool",
  10451. height: math.unit(12.2, "meters")
  10452. },
  10453. {
  10454. name: "Olympic Swimming Pool",
  10455. height: math.unit(56.3, "meters")
  10456. },
  10457. {
  10458. name: "Lake Superior",
  10459. height: math.unit(93900, "meters")
  10460. },
  10461. {
  10462. name: "Mediterranean Sea",
  10463. height: math.unit(644457, "meters")
  10464. },
  10465. {
  10466. name: "World's Oceans",
  10467. height: math.unit(4567491, "meters")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(2.3, "meters"),
  10476. weight: math.unit(120, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/zelas/front.svg"
  10480. }
  10481. },
  10482. side: {
  10483. height: math.unit(2.3, "meters"),
  10484. weight: math.unit(120, "kg"),
  10485. name: "Side",
  10486. image: {
  10487. source: "./media/characters/zelas/side.svg"
  10488. }
  10489. },
  10490. back: {
  10491. height: math.unit(2.3, "meters"),
  10492. weight: math.unit(120, "kg"),
  10493. name: "Back",
  10494. image: {
  10495. source: "./media/characters/zelas/back.svg"
  10496. }
  10497. },
  10498. foot: {
  10499. height: math.unit(1.116, "feet"),
  10500. name: "Foot",
  10501. image: {
  10502. source: "./media/characters/zelas/foot.svg"
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(2.3, "meters")
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(30, "meters"),
  10514. default: true
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(1, "inch"),
  10523. weight: math.unit(0.21, "grams"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/talbot/front.svg",
  10527. extra: 594 / 544
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Micro",
  10534. height: math.unit(1, "inch"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10541. {
  10542. front: {
  10543. height: math.unit(3 + 3 / 12, "feet"),
  10544. weight: math.unit(51.8, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/fliss/front.svg",
  10548. extra: 840 / 640
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Teeny Tiny",
  10555. height: math.unit(1, "mm")
  10556. },
  10557. {
  10558. name: "Small",
  10559. height: math.unit(1, "inch"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Standard Sylveon",
  10564. height: math.unit(3 + 3 / 12, "feet")
  10565. },
  10566. {
  10567. name: "Large Nuisance",
  10568. height: math.unit(33, "feet")
  10569. },
  10570. {
  10571. name: "City Filler",
  10572. height: math.unit(3000, "feet")
  10573. },
  10574. {
  10575. name: "New Horizon",
  10576. height: math.unit(6000, "miles")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(5, "cm"),
  10585. weight: math.unit(1.94, "g"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/fleta/front.svg",
  10589. extra: 835 / 803
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(5, "cm"),
  10594. weight: math.unit(1.94, "g"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/fleta/back.svg",
  10598. extra: 835 / 803
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Micro",
  10605. height: math.unit(5, "cm"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(225, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/dominic/front.svg",
  10619. extra: 1770 / 1620,
  10620. bottom: 0.025
  10621. }
  10622. },
  10623. back: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(225, "lb"),
  10626. name: "Back",
  10627. image: {
  10628. source: "./media/characters/dominic/back.svg",
  10629. extra: 1745 / 1620,
  10630. bottom: 0.065
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Nano",
  10637. height: math.unit(0.1, "mm")
  10638. },
  10639. {
  10640. name: "Micro-",
  10641. height: math.unit(1, "mm")
  10642. },
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(4, "inches")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(6 + 4 / 12, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(115, "feet")
  10655. },
  10656. {
  10657. name: "Macro+",
  10658. height: math.unit(955, "feet")
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(8990, "feet")
  10663. },
  10664. {
  10665. name: "Gigmacro",
  10666. height: math.unit(9310, "miles")
  10667. },
  10668. {
  10669. name: "Teramacro",
  10670. height: math.unit(1567005010, "miles")
  10671. },
  10672. {
  10673. name: "Examacro",
  10674. height: math.unit(1425, "parsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(400, "feet"),
  10683. weight: math.unit(44444444, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/major-colonel/front.svg"
  10687. }
  10688. },
  10689. back: {
  10690. height: math.unit(400, "feet"),
  10691. weight: math.unit(44444444, "lb"),
  10692. name: "Back",
  10693. image: {
  10694. source: "./media/characters/major-colonel/back.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(400, "feet"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10708. {
  10709. catFront: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(120, "lb"),
  10712. name: "Front (Cat Side)",
  10713. image: {
  10714. source: "./media/characters/axel-lycan/cat-front.svg",
  10715. extra: 430 / 402,
  10716. bottom: 43 / 472.35
  10717. }
  10718. },
  10719. catBack: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(120, "lb"),
  10722. name: "Back (Cat Side)",
  10723. image: {
  10724. source: "./media/characters/axel-lycan/cat-back.svg",
  10725. extra: 447 / 419,
  10726. bottom: 23.3 / 469
  10727. }
  10728. },
  10729. wolfFront: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(120, "lb"),
  10732. name: "Front (Wolf Side)",
  10733. image: {
  10734. source: "./media/characters/axel-lycan/wolf-front.svg",
  10735. extra: 485 / 456,
  10736. bottom: 19 / 504
  10737. }
  10738. },
  10739. wolfBack: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(120, "lb"),
  10742. name: "Back (Wolf Side)",
  10743. image: {
  10744. source: "./media/characters/axel-lycan/wolf-back.svg",
  10745. extra: 475 / 438,
  10746. bottom: 39.2 / 514
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(1, "km"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(5 + 9 / 12, "feet"),
  10763. weight: math.unit(175, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/vanrel-hyena/front.svg",
  10767. extra: 1086 / 1010,
  10768. bottom: 0.04
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(5 + 9 / 12, "feet"),
  10776. default: true
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(103, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/abbott-absol/front.svg",
  10789. extra: 2010 / 1842
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Megamicro",
  10796. height: math.unit(0.1, "mm")
  10797. },
  10798. {
  10799. name: "Micro",
  10800. height: math.unit(1, "inch")
  10801. },
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(6, "feet"),
  10805. default: true
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10811. {
  10812. front: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(264, "lb"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/hector/front.svg",
  10818. extra: 2280 / 2130,
  10819. bottom: 0.07
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(12.25, "foot"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Macro",
  10831. height: math.unit(160, "feet")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/sal/front.svg",
  10844. extra: 1846 / 1699,
  10845. bottom: 0.04
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(10, "miles"),
  10853. default: true
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10859. {
  10860. front: {
  10861. height: math.unit(3, "meters"),
  10862. weight: math.unit(450, "kg"),
  10863. name: "front",
  10864. image: {
  10865. source: "./media/characters/ranger/front.svg",
  10866. extra: 2401 / 2243,
  10867. bottom: 0.05
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(3, "meters"),
  10875. default: true
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(14, "feet"),
  10884. weight: math.unit(800, "kg"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/theresa/front.svg",
  10888. extra: 3575 / 3346,
  10889. bottom: 0.03
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(14, "feet"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10903. {
  10904. front: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(3, "kg"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/ine/front.svg",
  10910. extra: 678 / 539,
  10911. bottom: 0.023
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Normal",
  10918. height: math.unit(2.265, "feet"),
  10919. default: true
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(5, "feet"),
  10928. weight: math.unit(30, "kg"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/vial/front.svg",
  10932. extra: 1365 / 1277,
  10933. bottom: 0.04
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(5, "feet"),
  10941. default: true
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10947. {
  10948. side: {
  10949. height: math.unit(3.4, "meters"),
  10950. weight: math.unit(1000, "lb"),
  10951. name: "Side",
  10952. image: {
  10953. source: "./media/characters/rovoska/side.svg",
  10954. extra: 4403 / 1515
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(3.4, "meters"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(8, "feet"),
  10971. weight: math.unit(315, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/gunner-rotthbauer/front.svg"
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(8, "feet"),
  10979. weight: math.unit(315, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/gunner-rotthbauer/back.svg"
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Micro",
  10989. height: math.unit(3.5, "inches")
  10990. },
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(8, "feet"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(250, "feet")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(1, "AU")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(5 + 5 / 12, "feet"),
  11011. weight: math.unit(140, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/allatia/front.svg",
  11015. extra: 1227 / 1180,
  11016. bottom: 0.027
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(5 + 5 / 12, "feet")
  11024. },
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(250, "feet"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(8, "miles")
  11033. }
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(120, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/tene/front.svg",
  11045. extra: 814/750,
  11046. bottom: 36/850
  11047. }
  11048. },
  11049. stomping: {
  11050. height: math.unit(2.025, "meters"),
  11051. weight: math.unit(120, "lb"),
  11052. name: "Stomping",
  11053. image: {
  11054. source: "./media/characters/tene/stomping.svg",
  11055. extra: 885/821,
  11056. bottom: 15/900
  11057. }
  11058. },
  11059. sitting: {
  11060. height: math.unit(1, "meter"),
  11061. weight: math.unit(120, "lb"),
  11062. name: "Sitting",
  11063. image: {
  11064. source: "./media/characters/tene/sitting.svg",
  11065. extra: 396/366,
  11066. bottom: 79/475
  11067. }
  11068. },
  11069. smiling: {
  11070. height: math.unit(1.2, "feet"),
  11071. name: "Smiling",
  11072. image: {
  11073. source: "./media/characters/tene/smiling.svg",
  11074. extra: 1364/1071,
  11075. bottom: 0/1364
  11076. }
  11077. },
  11078. smug: {
  11079. height: math.unit(1.3, "feet"),
  11080. name: "Smug",
  11081. image: {
  11082. source: "./media/characters/tene/smug.svg",
  11083. extra: 1323/1082,
  11084. bottom: 0/1323
  11085. }
  11086. },
  11087. feral: {
  11088. height: math.unit(3.9, "feet"),
  11089. weight: math.unit(250, "lb"),
  11090. name: "Feral",
  11091. image: {
  11092. source: "./media/characters/tene/feral.svg",
  11093. extra: 717 / 458,
  11094. bottom: 0.179
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(6, "feet")
  11102. },
  11103. {
  11104. name: "Macro",
  11105. height: math.unit(300, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Megamacro",
  11110. height: math.unit(5, "miles")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11116. {
  11117. side: {
  11118. height: math.unit(6, "feet"),
  11119. name: "Side",
  11120. image: {
  11121. source: "./media/characters/evander/side.svg",
  11122. extra: 877 / 477
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(0.83, "meters"),
  11130. default: true
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(12, "feet"),
  11139. weight: math.unit(1000, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11143. extra: 1762 / 1611
  11144. }
  11145. },
  11146. back: {
  11147. height: math.unit(12, "feet"),
  11148. weight: math.unit(1000, "lb"),
  11149. name: "Back",
  11150. image: {
  11151. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11152. extra: 1762 / 1611
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(12, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Kaiju",
  11164. height: math.unit(150, "feet")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/zero-alurus/front.svg"
  11177. }
  11178. },
  11179. back: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Back",
  11183. image: {
  11184. source: "./media/characters/zero-alurus/back.svg"
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(5 + 10 / 12, "feet")
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(60, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro+",
  11200. height: math.unit(450, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(200, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/mega-shi/front.svg",
  11213. extra: 1279 / 1250,
  11214. bottom: 0.02
  11215. }
  11216. },
  11217. back: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(200, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/mega-shi/back.svg",
  11223. extra: 1279 / 1250,
  11224. bottom: 0.02
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(16 + 6 / 12, "feet")
  11232. },
  11233. {
  11234. name: "Third Dimension",
  11235. height: math.unit(40, "meters")
  11236. },
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(660, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(10, "miles")
  11245. },
  11246. {
  11247. name: "Planetary Launch",
  11248. height: math.unit(500, "miles")
  11249. },
  11250. {
  11251. name: "Interstellar",
  11252. height: math.unit(1e9, "miles")
  11253. },
  11254. {
  11255. name: "Leaving the Universe",
  11256. height: math.unit(1, "gigaparsec")
  11257. },
  11258. {
  11259. name: "Travelling Universes",
  11260. height: math.unit(30e15, "parsecs")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(5 + 4/12, "feet"),
  11269. weight: math.unit(120, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/odyssey/front.svg",
  11273. extra: 1747/1571,
  11274. bottom: 47/1794
  11275. }
  11276. },
  11277. side: {
  11278. height: math.unit(5.1, "feet"),
  11279. weight: math.unit(120, "lb"),
  11280. name: "Side",
  11281. image: {
  11282. source: "./media/characters/odyssey/side.svg",
  11283. extra: 1847/1619,
  11284. bottom: 47/1894
  11285. }
  11286. },
  11287. lounging: {
  11288. height: math.unit(1.464, "feet"),
  11289. weight: math.unit(120, "lb"),
  11290. name: "Lounging",
  11291. image: {
  11292. source: "./media/characters/odyssey/lounging.svg",
  11293. extra: 1235/837,
  11294. bottom: 551/1786
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(5 + 4 / 12, "feet")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(1, "km")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(3000, "km")
  11310. },
  11311. {
  11312. name: "Gigamacro",
  11313. height: math.unit(1, "AU"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Omniversal",
  11318. height: math.unit(100e14, "lightyears")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(5 + 10/12, "feet"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/mekuto/front.svg",
  11330. extra: 875/835,
  11331. bottom: 46/921
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Minimicro",
  11338. height: math.unit(0.2, "inches")
  11339. },
  11340. {
  11341. name: "Micro",
  11342. height: math.unit(1.5, "inches")
  11343. },
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(5 + 10 / 12, "feet"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Minimacro",
  11351. height: math.unit(17 + 9 / 12, "feet")
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(177.5, "feet")
  11356. },
  11357. {
  11358. name: "Megamacro",
  11359. height: math.unit(152, "miles")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6.5, "inches"),
  11368. weight: math.unit(13, "oz"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/dafydd-tomos/front.svg",
  11372. extra: 2990 / 2603,
  11373. bottom: 0.03
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Micro",
  11380. height: math.unit(6.5, "inches"),
  11381. default: true
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(6, "feet"),
  11390. weight: math.unit(150, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/splinter/front.svg",
  11394. extra: 2990 / 2882,
  11395. bottom: 0.04
  11396. }
  11397. },
  11398. back: {
  11399. height: math.unit(6, "feet"),
  11400. weight: math.unit(150, "lb"),
  11401. name: "Back",
  11402. image: {
  11403. source: "./media/characters/splinter/back.svg",
  11404. extra: 2990 / 2882,
  11405. bottom: 0.04
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Normal",
  11412. height: math.unit(6, "feet")
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(230, "meters"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(4 + 10 / 12, "feet"),
  11426. weight: math.unit(480, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/snow-gabumon/front.svg",
  11430. extra: 1140 / 963,
  11431. bottom: 0.058
  11432. }
  11433. },
  11434. back: {
  11435. height: math.unit(4 + 10 / 12, "feet"),
  11436. weight: math.unit(480, "lb"),
  11437. name: "Back",
  11438. image: {
  11439. source: "./media/characters/snow-gabumon/back.svg",
  11440. extra: 1115 / 962,
  11441. bottom: 0.041
  11442. }
  11443. },
  11444. frontUndresed: {
  11445. height: math.unit(4 + 10 / 12, "feet"),
  11446. weight: math.unit(480, "lb"),
  11447. name: "Front (Undressed)",
  11448. image: {
  11449. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11450. extra: 1061 / 960,
  11451. bottom: 0.045
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Micro",
  11458. height: math.unit(1, "inch")
  11459. },
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(4 + 10 / 12, "feet"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(200, "feet")
  11468. },
  11469. {
  11470. name: "Megamacro",
  11471. height: math.unit(120, "miles")
  11472. },
  11473. {
  11474. name: "Gigamacro",
  11475. height: math.unit(9800, "miles")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(1.7, "meters"),
  11484. weight: math.unit(140, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/moody/front.svg",
  11488. extra: 3226 / 3007,
  11489. bottom: 0.087
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Micro",
  11496. height: math.unit(1, "mm")
  11497. },
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(1.7, "meters"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro",
  11505. height: math.unit(80, "meters")
  11506. },
  11507. {
  11508. name: "Macro+",
  11509. height: math.unit(500, "meters")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(150, "lb"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/zyas/front.svg",
  11522. extra: 1180 / 1120,
  11523. bottom: 0.045
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(10, "feet"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(500, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(5, "miles")
  11540. },
  11541. {
  11542. name: "Teramacro",
  11543. height: math.unit(150000, "miles")
  11544. },
  11545. ]
  11546. ))
  11547. characterMakers.push(() => makeCharacter(
  11548. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11549. {
  11550. front: {
  11551. height: math.unit(6, "feet"),
  11552. weight: math.unit(150, "lb"),
  11553. name: "Front",
  11554. image: {
  11555. source: "./media/characters/cuon/front.svg",
  11556. extra: 1390 / 1320,
  11557. bottom: 0.008
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Micro",
  11564. height: math.unit(3, "inches")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(18 + 9 / 12, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(360, "feet")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(360, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(2.4, "meters"),
  11586. weight: math.unit(70, "kg"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/nyanuxk/front.svg",
  11590. extra: 1172 / 1084,
  11591. bottom: 0.065
  11592. }
  11593. },
  11594. side: {
  11595. height: math.unit(2.4, "meters"),
  11596. weight: math.unit(70, "kg"),
  11597. name: "Side",
  11598. image: {
  11599. source: "./media/characters/nyanuxk/side.svg",
  11600. extra: 1190 / 1132,
  11601. bottom: 0.007
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(2.4, "meters"),
  11606. weight: math.unit(70, "kg"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/nyanuxk/back.svg",
  11610. extra: 1200 / 1141,
  11611. bottom: 0.015
  11612. }
  11613. },
  11614. foot: {
  11615. height: math.unit(0.52, "meters"),
  11616. name: "Foot",
  11617. image: {
  11618. source: "./media/characters/nyanuxk/foot.svg"
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Micro",
  11625. height: math.unit(2, "cm")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(2.4, "meters"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Smaller Macro",
  11634. height: math.unit(120, "meters")
  11635. },
  11636. {
  11637. name: "Bigger Macro",
  11638. height: math.unit(1.2, "km")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(15, "kilometers")
  11643. },
  11644. {
  11645. name: "Gigamacro",
  11646. height: math.unit(2000, "km")
  11647. },
  11648. {
  11649. name: "Teramacro",
  11650. height: math.unit(500000, "km")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11656. {
  11657. side: {
  11658. height: math.unit(6, "feet"),
  11659. name: "Side",
  11660. image: {
  11661. source: "./media/characters/ailbhe/side.svg",
  11662. extra: 757 / 464,
  11663. bottom: 0.041
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(1.07, "meters"),
  11671. default: true
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(6, "feet"),
  11680. weight: math.unit(120, "kg"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/zevulfius/front.svg",
  11684. extra: 965 / 903
  11685. }
  11686. },
  11687. side: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(120, "kg"),
  11690. name: "Side",
  11691. image: {
  11692. source: "./media/characters/zevulfius/side.svg",
  11693. extra: 939 / 900
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(120, "kg"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/zevulfius/back.svg",
  11702. extra: 918 / 854,
  11703. bottom: 0.005
  11704. }
  11705. },
  11706. foot: {
  11707. height: math.unit(6 / 3.72, "feet"),
  11708. name: "Foot",
  11709. image: {
  11710. source: "./media/characters/zevulfius/foot.svg"
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(750, "meters")
  11718. },
  11719. {
  11720. name: "Megamacro",
  11721. height: math.unit(20, "km"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Gigamacro",
  11726. height: math.unit(2000, "km")
  11727. },
  11728. {
  11729. name: "Teramacro",
  11730. height: math.unit(250000, "km")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(100, "feet"),
  11739. weight: math.unit(350, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/rikes/front.svg",
  11743. extra: 1565 / 1483,
  11744. bottom: 0.017
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(100, "feet"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(8, "feet"),
  11761. weight: math.unit(356, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/adam-silver-mane/front.svg",
  11765. extra: 1036/937,
  11766. bottom: 63/1099
  11767. }
  11768. },
  11769. side: {
  11770. height: math.unit(8, "feet"),
  11771. weight: math.unit(356, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/adam-silver-mane/side.svg",
  11775. extra: 997/901,
  11776. bottom: 59/1056
  11777. }
  11778. },
  11779. frontNsfw: {
  11780. height: math.unit(8, "feet"),
  11781. weight: math.unit(356, "lb"),
  11782. name: "Front (NSFW)",
  11783. image: {
  11784. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11785. extra: 1036/937,
  11786. bottom: 63/1099
  11787. }
  11788. },
  11789. sideNsfw: {
  11790. height: math.unit(8, "feet"),
  11791. weight: math.unit(356, "lb"),
  11792. name: "Side (NSFW)",
  11793. image: {
  11794. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11795. extra: 997/901,
  11796. bottom: 59/1056
  11797. }
  11798. },
  11799. dick: {
  11800. height: math.unit(2.1, "feet"),
  11801. name: "Dick",
  11802. image: {
  11803. source: "./media/characters/adam-silver-mane/dick.svg"
  11804. }
  11805. },
  11806. taur: {
  11807. height: math.unit(16, "feet"),
  11808. weight: math.unit(1500, "kg"),
  11809. name: "Taur",
  11810. image: {
  11811. source: "./media/characters/adam-silver-mane/taur.svg",
  11812. extra: 1713 / 1571,
  11813. bottom: 0.01
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(8, "feet")
  11821. },
  11822. {
  11823. name: "Minimacro",
  11824. height: math.unit(80, "feet")
  11825. },
  11826. {
  11827. name: "MDA",
  11828. height: math.unit(80, "meters")
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(800, "feet"),
  11833. default: true
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(8000, "feet")
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(800, "miles")
  11842. },
  11843. {
  11844. name: "Teramacro",
  11845. height: math.unit(80000, "miles")
  11846. },
  11847. {
  11848. name: "Celestial",
  11849. height: math.unit(8e6, "miles")
  11850. },
  11851. {
  11852. name: "Star Dragon",
  11853. height: math.unit(800000, "parsecs")
  11854. },
  11855. {
  11856. name: "Godly",
  11857. height: math.unit(800, "teraparsecs")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/ky'owin/front.svg",
  11870. extra: 3862/3053,
  11871. bottom: 74/3936
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(6 + 8 / 12, "feet")
  11879. },
  11880. {
  11881. name: "Large",
  11882. height: math.unit(68, "feet")
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(132, "feet")
  11887. },
  11888. {
  11889. name: "Macro+",
  11890. height: math.unit(340, "feet")
  11891. },
  11892. {
  11893. name: "Macro++",
  11894. height: math.unit(680, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Megamacro",
  11899. height: math.unit(1, "mile")
  11900. },
  11901. {
  11902. name: "Megamacro+",
  11903. height: math.unit(10, "miles")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(4, "feet"),
  11912. weight: math.unit(50, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/mal/front.svg",
  11916. extra: 785 / 724,
  11917. bottom: 0.07
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Micro",
  11924. height: math.unit(4, "inches")
  11925. },
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(4, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(200, "feet")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(6, "feet"),
  11942. weight: math.unit(150, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/jordan-deware/front.svg",
  11946. extra: 1191 / 1012
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Nano",
  11953. height: math.unit(0.01, "mm")
  11954. },
  11955. {
  11956. name: "Minimicro",
  11957. height: math.unit(1, "mm")
  11958. },
  11959. {
  11960. name: "Micro",
  11961. height: math.unit(0.5, "inches")
  11962. },
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(4, "feet"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Minimacro",
  11970. height: math.unit(40, "meters")
  11971. },
  11972. {
  11973. name: "Small Macro",
  11974. height: math.unit(400, "meters")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(4, "miles")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(40, "miles")
  11983. },
  11984. {
  11985. name: "Megamacro+",
  11986. height: math.unit(400, "miles")
  11987. },
  11988. {
  11989. name: "Gigamacro",
  11990. height: math.unit(400000, "miles")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11996. {
  11997. side: {
  11998. height: math.unit(6, "feet"),
  11999. weight: math.unit(150, "lb"),
  12000. name: "Side",
  12001. image: {
  12002. source: "./media/characters/kimiko/side.svg",
  12003. extra: 600 / 358
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(15, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(220, "feet")
  12016. },
  12017. {
  12018. name: "Macro+",
  12019. height: math.unit(1450, "feet")
  12020. },
  12021. {
  12022. name: "Megamacro",
  12023. height: math.unit(11500, "feet")
  12024. },
  12025. {
  12026. name: "Gigamacro",
  12027. height: math.unit(9500, "miles")
  12028. },
  12029. {
  12030. name: "Teramacro",
  12031. height: math.unit(2208005005, "miles")
  12032. },
  12033. {
  12034. name: "Examacro",
  12035. height: math.unit(2750, "parsecs")
  12036. },
  12037. {
  12038. name: "Zettamacro",
  12039. height: math.unit(101500, "parsecs")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(70, "kg"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/andrew-sleepy/front.svg"
  12052. }
  12053. },
  12054. side: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(70, "kg"),
  12057. name: "Side",
  12058. image: {
  12059. source: "./media/characters/andrew-sleepy/side.svg"
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Micro",
  12066. height: math.unit(1, "mm"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/judio/front.svg",
  12080. extra: 1258 / 1110
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(5 + 6 / 12, "feet")
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(1000, "feet"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(10, "miles")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12102. {
  12103. frontDressed: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(68, "kg"),
  12106. name: "Front (Dressed)",
  12107. image: {
  12108. source: "./media/characters/nomaxice/front-dressed.svg",
  12109. extra: 1137/824,
  12110. bottom: 74/1211
  12111. }
  12112. },
  12113. frontShorts: {
  12114. height: math.unit(6, "feet"),
  12115. weight: math.unit(68, "kg"),
  12116. name: "Front (Shorts)",
  12117. image: {
  12118. source: "./media/characters/nomaxice/front-shorts.svg",
  12119. extra: 1137/824,
  12120. bottom: 74/1211
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(68, "kg"),
  12126. name: "Back",
  12127. image: {
  12128. source: "./media/characters/nomaxice/back.svg",
  12129. extra: 822/786,
  12130. bottom: 39/861
  12131. }
  12132. },
  12133. hand: {
  12134. height: math.unit(0.565, "feet"),
  12135. name: "Hand",
  12136. image: {
  12137. source: "./media/characters/nomaxice/hand.svg"
  12138. }
  12139. },
  12140. foot: {
  12141. height: math.unit(1, "feet"),
  12142. name: "Foot",
  12143. image: {
  12144. source: "./media/characters/nomaxice/foot.svg"
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Micro",
  12151. height: math.unit(8, "cm")
  12152. },
  12153. {
  12154. name: "Norm",
  12155. height: math.unit(1.82, "m")
  12156. },
  12157. {
  12158. name: "Norm+",
  12159. height: math.unit(8.8, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Big",
  12164. height: math.unit(8, "meters")
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(18, "meters")
  12169. },
  12170. {
  12171. name: "Macro+",
  12172. height: math.unit(88, "meters")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(12, "feet"),
  12181. weight: math.unit(1.5, "tons"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/dydros/front.svg",
  12185. extra: 863 / 800,
  12186. bottom: 0.015
  12187. }
  12188. },
  12189. back: {
  12190. height: math.unit(12, "feet"),
  12191. weight: math.unit(1.5, "tons"),
  12192. name: "Back",
  12193. image: {
  12194. source: "./media/characters/dydros/back.svg",
  12195. extra: 900 / 843,
  12196. bottom: 0.005
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(12, "feet"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12210. {
  12211. front: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(100, "kg"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/riggi/front.svg",
  12217. extra: 5787 / 5303
  12218. }
  12219. },
  12220. hyper: {
  12221. height: math.unit(6 * 5 / 3, "feet"),
  12222. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12223. name: "Hyper",
  12224. image: {
  12225. source: "./media/characters/riggi/hyper.svg",
  12226. extra: 3595 / 3485
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Small Macro",
  12233. height: math.unit(50, "feet")
  12234. },
  12235. {
  12236. name: "Default",
  12237. height: math.unit(200, "feet"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Loom",
  12242. height: math.unit(10000, "feet")
  12243. },
  12244. {
  12245. name: "Cruising Altitude",
  12246. height: math.unit(30000, "feet")
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(100, "miles")
  12251. },
  12252. {
  12253. name: "Continent Sized",
  12254. height: math.unit(2800, "miles")
  12255. },
  12256. {
  12257. name: "Earth Sized",
  12258. height: math.unit(8000, "miles")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(250, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/alexi/front.svg",
  12271. extra: 3483 / 3291,
  12272. bottom: 0.04
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(250, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/alexi/back.svg",
  12281. extra: 3533 / 3356,
  12282. bottom: 0.021
  12283. }
  12284. },
  12285. frontTransforming: {
  12286. height: math.unit(8.58, "feet"),
  12287. weight: math.unit(1300, "lb"),
  12288. name: "Transforming",
  12289. image: {
  12290. source: "./media/characters/alexi/front-transforming.svg",
  12291. extra: 437 / 409,
  12292. bottom: 19 / 458.66
  12293. }
  12294. },
  12295. frontTransformed: {
  12296. height: math.unit(12.5, "feet"),
  12297. weight: math.unit(4000, "lb"),
  12298. name: "Transformed",
  12299. image: {
  12300. source: "./media/characters/alexi/front-transformed.svg",
  12301. extra: 639 / 614,
  12302. bottom: 30.55 / 671
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(14, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Minimacro",
  12314. height: math.unit(30, "meters")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(500, "meters")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(9000, "km")
  12323. },
  12324. {
  12325. name: "Teramacro",
  12326. height: math.unit(384000, "km")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/kayroo/front.svg",
  12339. extra: 1153 / 1038,
  12340. bottom: 0.06
  12341. }
  12342. },
  12343. foot: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Foot",
  12347. image: {
  12348. source: "./media/characters/kayroo/foot.svg"
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(8, "feet"),
  12356. default: true
  12357. },
  12358. {
  12359. name: "Minimacro",
  12360. height: math.unit(250, "feet")
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(2800, "feet")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(5200, "feet")
  12369. },
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(27000, "feet")
  12373. },
  12374. {
  12375. name: "Omega",
  12376. height: math.unit(45000, "feet")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(18, "feet"),
  12385. weight: math.unit(5800, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/rhys/front.svg",
  12389. extra: 3386 / 3090,
  12390. bottom: 0.07
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(18, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Working Size",
  12402. height: math.unit(200, "feet")
  12403. },
  12404. {
  12405. name: "Demolition Size",
  12406. height: math.unit(2000, "feet")
  12407. },
  12408. {
  12409. name: "Maximum Licensed Size",
  12410. height: math.unit(5, "miles")
  12411. },
  12412. {
  12413. name: "Maximum Observed Size",
  12414. height: math.unit(10, "yottameters")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(250, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/toto/front.svg",
  12427. extra: 527 / 479,
  12428. bottom: 0.05
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(3, "feet")
  12436. },
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(10, "feet")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(150, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(1200, "feet")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "King", species: ["lion"], tags: ["anthro"] },
  12454. {
  12455. back: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/king/back.svg"
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(2, "inches")
  12468. },
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(8, "feet")
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(200, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Megamacro",
  12480. height: math.unit(50, "miles")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(11, "feet"),
  12489. weight: math.unit(1400, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/cordite/front.svg",
  12493. extra: 1919/1827,
  12494. bottom: 40/1959
  12495. }
  12496. },
  12497. side: {
  12498. height: math.unit(11, "feet"),
  12499. weight: math.unit(1400, "lb"),
  12500. name: "Side",
  12501. image: {
  12502. source: "./media/characters/cordite/side.svg",
  12503. extra: 1908/1793,
  12504. bottom: 38/1946
  12505. }
  12506. },
  12507. back: {
  12508. height: math.unit(11, "feet"),
  12509. weight: math.unit(1400, "lb"),
  12510. name: "Back",
  12511. image: {
  12512. source: "./media/characters/cordite/back.svg",
  12513. extra: 1938/1837,
  12514. bottom: 10/1948
  12515. }
  12516. },
  12517. feral: {
  12518. height: math.unit(2, "feet"),
  12519. weight: math.unit(90, "lb"),
  12520. name: "Feral",
  12521. image: {
  12522. source: "./media/characters/cordite/feral.svg",
  12523. extra: 1260 / 755,
  12524. bottom: 0.05
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(11, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/pianostrong/front.svg",
  12545. extra: 6577 / 6254,
  12546. bottom: 0.02
  12547. }
  12548. },
  12549. side: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Side",
  12553. image: {
  12554. source: "./media/characters/pianostrong/side.svg",
  12555. extra: 6106 / 5730
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/pianostrong/back.svg",
  12564. extra: 6085 / 5733,
  12565. bottom: 0.01
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(100, "feet")
  12573. },
  12574. {
  12575. name: "Macro+",
  12576. height: math.unit(300, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Macro++",
  12581. height: math.unit(1000, "feet")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/kona/front.svg",
  12594. extra: 2960 / 2629,
  12595. bottom: 0.005
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(11 + 8 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(850, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro+",
  12611. height: math.unit(1.5, "km"),
  12612. default: true
  12613. },
  12614. {
  12615. name: "Megamacro",
  12616. height: math.unit(80, "miles")
  12617. },
  12618. {
  12619. name: "Gigamacro",
  12620. height: math.unit(3500, "miles")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12626. {
  12627. side: {
  12628. height: math.unit(1.9, "meters"),
  12629. weight: math.unit(326, "kg"),
  12630. name: "Side",
  12631. image: {
  12632. source: "./media/characters/levi/side.svg",
  12633. extra: 1704 / 1334,
  12634. bottom: 0.02
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(1.9, "meters"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(20, "meters")
  12647. },
  12648. {
  12649. name: "Macro+",
  12650. height: math.unit(200, "meters")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(2, "km")
  12655. },
  12656. {
  12657. name: "Megamacro+",
  12658. height: math.unit(20, "km")
  12659. },
  12660. {
  12661. name: "Gigamacro",
  12662. height: math.unit(2500, "km")
  12663. },
  12664. {
  12665. name: "Gigamacro+",
  12666. height: math.unit(120000, "km")
  12667. },
  12668. {
  12669. name: "Teramacro",
  12670. height: math.unit(7.77e6, "km")
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6 + 4/12, "feet"),
  12679. weight: math.unit(190, "lb"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/bmc/front.svg",
  12683. extra: 1626/1472,
  12684. bottom: 79/1705
  12685. }
  12686. },
  12687. back: {
  12688. height: math.unit(6 + 4/12, "feet"),
  12689. weight: math.unit(190, "lb"),
  12690. name: "Back",
  12691. image: {
  12692. source: "./media/characters/bmc/back.svg",
  12693. extra: 1640/1479,
  12694. bottom: 45/1685
  12695. }
  12696. },
  12697. frontArmor: {
  12698. height: math.unit(6 + 4/12, "feet"),
  12699. weight: math.unit(190, "lb"),
  12700. name: "Front-armor",
  12701. image: {
  12702. source: "./media/characters/bmc/front-armor.svg",
  12703. extra: 1538/1468,
  12704. bottom: 79/1617
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Human-sized",
  12711. height: math.unit(6 + 4 / 12, "feet")
  12712. },
  12713. {
  12714. name: "Interactive Size",
  12715. height: math.unit(25, "feet")
  12716. },
  12717. {
  12718. name: "Small",
  12719. height: math.unit(250, "feet")
  12720. },
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(1250, "feet"),
  12724. default: true
  12725. },
  12726. {
  12727. name: "Good Day",
  12728. height: math.unit(88, "miles")
  12729. },
  12730. {
  12731. name: "Largest Measured Size",
  12732. height: math.unit(105.960, "galaxies")
  12733. },
  12734. ]
  12735. ))
  12736. characterMakers.push(() => makeCharacter(
  12737. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12738. {
  12739. front: {
  12740. height: math.unit(20, "feet"),
  12741. weight: math.unit(2016, "kg"),
  12742. name: "Front",
  12743. image: {
  12744. source: "./media/characters/sven-the-kaiju/front.svg",
  12745. extra: 1277/1250,
  12746. bottom: 35/1312
  12747. }
  12748. },
  12749. mouth: {
  12750. height: math.unit(1.85, "feet"),
  12751. name: "Mouth",
  12752. image: {
  12753. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Fairy",
  12760. height: math.unit(6, "inches")
  12761. },
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(20, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Rampage",
  12769. height: math.unit(200, "feet")
  12770. },
  12771. {
  12772. name: "Archfey Forest Guardian",
  12773. height: math.unit(1, "mile")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(4, "meters"),
  12782. weight: math.unit(2, "tons"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/marik/front.svg",
  12786. extra: 1057 / 1003,
  12787. bottom: 0.08
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(4, "meters"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Macro",
  12799. height: math.unit(20, "meters")
  12800. },
  12801. {
  12802. name: "Megamacro",
  12803. height: math.unit(50, "km")
  12804. },
  12805. {
  12806. name: "Gigamacro",
  12807. height: math.unit(100, "km")
  12808. },
  12809. {
  12810. name: "Alpha Macro",
  12811. height: math.unit(7.88e7, "yottameters")
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12817. {
  12818. front: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(110, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/mel/front.svg",
  12824. extra: 736 / 617,
  12825. bottom: 0.017
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Pico",
  12832. height: math.unit(3, "pm")
  12833. },
  12834. {
  12835. name: "Nano",
  12836. height: math.unit(3, "nm")
  12837. },
  12838. {
  12839. name: "Micro",
  12840. height: math.unit(0.3, "mm"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Micro+",
  12845. height: math.unit(3, "mm")
  12846. },
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(5 + 10.5 / 12, "feet")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12855. {
  12856. kaiju: {
  12857. height: math.unit(1.75, "meters"),
  12858. weight: math.unit(55, "kg"),
  12859. name: "Kaiju",
  12860. image: {
  12861. source: "./media/characters/lykonous/kaiju.svg",
  12862. extra: 1055 / 946,
  12863. bottom: 0.135
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(2.5, "meters"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Kaiju Dragon",
  12875. height: math.unit(60, "meters")
  12876. },
  12877. {
  12878. name: "Mega Kaiju",
  12879. height: math.unit(120, "km")
  12880. },
  12881. {
  12882. name: "Giga Kaiju",
  12883. height: math.unit(200, "megameters")
  12884. },
  12885. {
  12886. name: "Terra Kaiju",
  12887. height: math.unit(400, "gigameters")
  12888. },
  12889. {
  12890. name: "Kaiju Dragon God",
  12891. height: math.unit(13000, "exaparsecs")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(150, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/blü/front.svg",
  12904. extra: 1883 / 1564,
  12905. bottom: 0.031
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(13, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Big Boi",
  12917. height: math.unit(150, "meters")
  12918. },
  12919. {
  12920. name: "Mini Stomper",
  12921. height: math.unit(300, "meters")
  12922. },
  12923. {
  12924. name: "Macro",
  12925. height: math.unit(1000, "meters")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(11000, "meters")
  12930. },
  12931. {
  12932. name: "Gigamacro",
  12933. height: math.unit(11000, "km")
  12934. },
  12935. {
  12936. name: "Teramacro",
  12937. height: math.unit(420000, "km")
  12938. },
  12939. {
  12940. name: "Examacro",
  12941. height: math.unit(120, "parsecs")
  12942. },
  12943. {
  12944. name: "God Tho",
  12945. height: math.unit(98000000000, "parsecs")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12951. {
  12952. taurFront: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(200, "lb"),
  12955. name: "Taur (Front)",
  12956. image: {
  12957. source: "./media/characters/scales/taur-front.svg",
  12958. extra: 1,
  12959. bottom: 0.05
  12960. }
  12961. },
  12962. taurBack: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(200, "lb"),
  12965. name: "Taur (Back)",
  12966. image: {
  12967. source: "./media/characters/scales/taur-back.svg",
  12968. extra: 1,
  12969. bottom: 0.08
  12970. }
  12971. },
  12972. anthro: {
  12973. height: math.unit(6 * 7 / 12, "feet"),
  12974. weight: math.unit(100, "lb"),
  12975. name: "Anthro",
  12976. image: {
  12977. source: "./media/characters/scales/anthro.svg",
  12978. extra: 1,
  12979. bottom: 0.06
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(12, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/koragos/front.svg",
  13000. extra: 841 / 794,
  13001. bottom: 0.035
  13002. }
  13003. },
  13004. back: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Back",
  13008. image: {
  13009. source: "./media/characters/koragos/back.svg",
  13010. extra: 841 / 810,
  13011. bottom: 0.022
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(6 + 11 / 12, "feet"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Macro",
  13023. height: math.unit(490, "feet")
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(10, "miles")
  13028. },
  13029. {
  13030. name: "Gigamacro",
  13031. height: math.unit(50, "miles")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(250, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/xylrem/front.svg",
  13044. extra: 3323 / 3050,
  13045. bottom: 0.065
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(4, "feet")
  13053. },
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(16, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(2720, "feet")
  13062. },
  13063. {
  13064. name: "Megamacro",
  13065. height: math.unit(25000, "miles")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(8, "feet"),
  13074. weight: math.unit(250, "kg"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/ikideru/front.svg",
  13078. extra: 930 / 870,
  13079. bottom: 0.087
  13080. }
  13081. },
  13082. back: {
  13083. height: math.unit(8, "feet"),
  13084. weight: math.unit(250, "kg"),
  13085. name: "Back",
  13086. image: {
  13087. source: "./media/characters/ikideru/back.svg",
  13088. extra: 919 / 852,
  13089. bottom: 0.055
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Rare",
  13096. height: math.unit(8, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Playful Loom",
  13101. height: math.unit(80, "feet")
  13102. },
  13103. {
  13104. name: "City Leaner",
  13105. height: math.unit(230, "feet")
  13106. },
  13107. {
  13108. name: "Megamacro",
  13109. height: math.unit(2500, "feet")
  13110. },
  13111. {
  13112. name: "Gigamacro",
  13113. height: math.unit(26400, "feet")
  13114. },
  13115. {
  13116. name: "Tectonic Shifter",
  13117. height: math.unit(1.7, "megameters")
  13118. },
  13119. {
  13120. name: "Planet Carer",
  13121. height: math.unit(21, "megameters")
  13122. },
  13123. {
  13124. name: "God",
  13125. height: math.unit(11157.22, "parsecs")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(120, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/neo/front.svg"
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Micro",
  13144. height: math.unit(2, "inches"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Human Size",
  13149. height: math.unit(5 + 8 / 12, "feet")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(13 + 10 / 12, "feet"),
  13158. weight: math.unit(5320, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/chauncey-chantz/front.svg",
  13162. extra: 1587 / 1435,
  13163. bottom: 0.02
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(13 + 10 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(45, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(250, "miles")
  13180. },
  13181. {
  13182. name: "Planetary",
  13183. height: math.unit(10000, "miles")
  13184. },
  13185. {
  13186. name: "Galactic",
  13187. height: math.unit(40000, "parsecs")
  13188. },
  13189. {
  13190. name: "Universal",
  13191. height: math.unit(1, "yottameter")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/epifox/front.svg",
  13204. extra: 1,
  13205. bottom: 0.075
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Micro",
  13212. height: math.unit(6, "inches")
  13213. },
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(12, "feet"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(3810, "feet")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(500, "miles")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(1.8796, "m"),
  13234. weight: math.unit(230, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/colin-t/front.svg",
  13238. extra: 1272 / 1193,
  13239. bottom: 0.07
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Micro",
  13246. height: math.unit(0.571, "meters")
  13247. },
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(1.8796, "meters"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Tall",
  13255. height: math.unit(4, "meters")
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(67.241, "meters")
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(371.856, "meters")
  13264. },
  13265. {
  13266. name: "Planetary",
  13267. height: math.unit(12631.5689, "km")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(1.85, "meters"),
  13276. weight: math.unit(80, "kg"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/matvei/front.svg",
  13280. extra: 456/447,
  13281. bottom: 8/464
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(1.85, "meters"),
  13286. weight: math.unit(80, "kg"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/matvei/back.svg",
  13290. extra: 434/427,
  13291. bottom: 11/445
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(1.85, "meters"),
  13299. default: true
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(5 + 9 / 12, "feet"),
  13308. weight: math.unit(70, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/quincy/front.svg",
  13312. extra: 3041 / 2751
  13313. }
  13314. },
  13315. back: {
  13316. height: math.unit(5 + 9 / 12, "feet"),
  13317. weight: math.unit(70, "lb"),
  13318. name: "Back",
  13319. image: {
  13320. source: "./media/characters/quincy/back.svg",
  13321. extra: 3041 / 2751
  13322. }
  13323. },
  13324. flying: {
  13325. height: math.unit(5 + 4 / 12, "feet"),
  13326. weight: math.unit(70, "lb"),
  13327. name: "Flying",
  13328. image: {
  13329. source: "./media/characters/quincy/flying.svg",
  13330. extra: 1044 / 930
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Micro",
  13337. height: math.unit(3, "cm")
  13338. },
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(5 + 9 / 12, "feet")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(200, "meters"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Megamacro",
  13350. height: math.unit(1000, "meters")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(3 + 11/12, "feet"),
  13359. weight: math.unit(50, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/vanrel/front.svg",
  13363. extra: 1104/949,
  13364. bottom: 52/1156
  13365. }
  13366. },
  13367. back: {
  13368. height: math.unit(3 + 11/12, "feet"),
  13369. weight: math.unit(50, "lb"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/vanrel/back.svg",
  13373. extra: 1119/976,
  13374. bottom: 37/1156
  13375. }
  13376. },
  13377. tome: {
  13378. height: math.unit(1.35, "feet"),
  13379. weight: math.unit(10, "lb"),
  13380. name: "Vanrel's Tome",
  13381. rename: true,
  13382. image: {
  13383. source: "./media/characters/vanrel/tome.svg"
  13384. }
  13385. },
  13386. beans: {
  13387. height: math.unit(0.89, "feet"),
  13388. name: "Beans",
  13389. image: {
  13390. source: "./media/characters/vanrel/beans.svg"
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(3 + 11/12, "feet"),
  13398. default: true
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(7 + 5 / 12, "feet"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/kuiper-vanrel/front.svg",
  13410. extra: 1219/1169,
  13411. bottom: 69/1288
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(7 + 5 / 12, "feet"),
  13416. name: "Back",
  13417. image: {
  13418. source: "./media/characters/kuiper-vanrel/back.svg",
  13419. extra: 1236/1193,
  13420. bottom: 27/1263
  13421. }
  13422. },
  13423. foot: {
  13424. height: math.unit(0.55, "meters"),
  13425. name: "Foot",
  13426. image: {
  13427. source: "./media/characters/kuiper-vanrel/foot.svg",
  13428. }
  13429. },
  13430. battle: {
  13431. height: math.unit(6.824, "feet"),
  13432. name: "Battle",
  13433. image: {
  13434. source: "./media/characters/kuiper-vanrel/battle.svg",
  13435. extra: 1466 / 1327,
  13436. bottom: 29 / 1492.5
  13437. }
  13438. },
  13439. meerkui: {
  13440. height: math.unit(18, "inches"),
  13441. name: "Meerkui",
  13442. image: {
  13443. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13444. extra: 1354/1289,
  13445. bottom: 69/1423
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(7 + 5 / 12, "feet"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(8 + 5 / 12, "feet"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/keset-vanrel/front.svg",
  13465. extra: 1231/1148,
  13466. bottom: 82/1313
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(8 + 5 / 12, "feet"),
  13471. name: "Back",
  13472. image: {
  13473. source: "./media/characters/keset-vanrel/back.svg",
  13474. extra: 1240/1174,
  13475. bottom: 33/1273
  13476. }
  13477. },
  13478. hand: {
  13479. height: math.unit(0.6, "meters"),
  13480. name: "Hand",
  13481. image: {
  13482. source: "./media/characters/keset-vanrel/hand.svg"
  13483. }
  13484. },
  13485. foot: {
  13486. height: math.unit(0.94978, "meters"),
  13487. name: "Foot",
  13488. image: {
  13489. source: "./media/characters/keset-vanrel/foot.svg"
  13490. }
  13491. },
  13492. battle: {
  13493. height: math.unit(7.408, "feet"),
  13494. name: "Battle",
  13495. image: {
  13496. source: "./media/characters/keset-vanrel/battle.svg",
  13497. extra: 1890 / 1386,
  13498. bottom: 73.28 / 1970
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(8 + 5 / 12, "feet"),
  13506. default: true
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/neos/front.svg",
  13519. extra: 1696 / 992,
  13520. bottom: 0.14
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(54, "cm"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(100, "m")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(10, "km")
  13537. },
  13538. {
  13539. name: "Megamacro+",
  13540. height: math.unit(100, "km")
  13541. },
  13542. {
  13543. name: "Gigamacro",
  13544. height: math.unit(100, "Mm")
  13545. },
  13546. {
  13547. name: "Teramacro",
  13548. height: math.unit(100, "Gm")
  13549. },
  13550. {
  13551. name: "Examacro",
  13552. height: math.unit(100, "Em")
  13553. },
  13554. {
  13555. name: "Godly",
  13556. height: math.unit(10000, "Ym")
  13557. },
  13558. {
  13559. name: "Beyond Godly",
  13560. height: math.unit(25, "multiverses")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13566. {
  13567. feminine: {
  13568. height: math.unit(5, "feet"),
  13569. weight: math.unit(100, "lb"),
  13570. name: "Feminine",
  13571. image: {
  13572. source: "./media/characters/sammy-mouse/feminine.svg",
  13573. extra: 2526 / 2425,
  13574. bottom: 0.123
  13575. }
  13576. },
  13577. masculine: {
  13578. height: math.unit(5, "feet"),
  13579. weight: math.unit(100, "lb"),
  13580. name: "Masculine",
  13581. image: {
  13582. source: "./media/characters/sammy-mouse/masculine.svg",
  13583. extra: 2526 / 2425,
  13584. bottom: 0.123
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Micro",
  13591. height: math.unit(5, "inches")
  13592. },
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(5, "feet"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(60, "feet")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(4, "feet"),
  13609. weight: math.unit(50, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/kole/front.svg",
  13613. extra: 1423 / 1303,
  13614. bottom: 0.025
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(4, "feet"),
  13619. weight: math.unit(50, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/kole/back.svg",
  13623. extra: 1426 / 1280,
  13624. bottom: 0.02
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(4, "feet"),
  13632. default: true
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(2.5, "feet"),
  13641. weight: math.unit(32, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/rufran/front.svg",
  13645. extra: 1313/885,
  13646. bottom: 94/1407
  13647. }
  13648. },
  13649. side: {
  13650. height: math.unit(2.5, "feet"),
  13651. weight: math.unit(32, "lb"),
  13652. name: "Side",
  13653. image: {
  13654. source: "./media/characters/rufran/side.svg",
  13655. extra: 1109/852,
  13656. bottom: 118/1227
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(2.5, "feet"),
  13661. weight: math.unit(32, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/rufran/back.svg",
  13665. extra: 1280/878,
  13666. bottom: 131/1411
  13667. }
  13668. },
  13669. mouth: {
  13670. height: math.unit(1.13, "feet"),
  13671. name: "Mouth",
  13672. image: {
  13673. source: "./media/characters/rufran/mouth.svg"
  13674. }
  13675. },
  13676. foot: {
  13677. height: math.unit(1.33, "feet"),
  13678. name: "Foot",
  13679. image: {
  13680. source: "./media/characters/rufran/foot.svg"
  13681. }
  13682. },
  13683. koboldFront: {
  13684. height: math.unit(2 + 6 / 12, "feet"),
  13685. weight: math.unit(20, "lb"),
  13686. name: "Front (Kobold)",
  13687. image: {
  13688. source: "./media/characters/rufran/kobold-front.svg",
  13689. extra: 2041 / 1839,
  13690. bottom: 0.055
  13691. }
  13692. },
  13693. koboldBack: {
  13694. height: math.unit(2 + 6 / 12, "feet"),
  13695. weight: math.unit(20, "lb"),
  13696. name: "Back (Kobold)",
  13697. image: {
  13698. source: "./media/characters/rufran/kobold-back.svg",
  13699. extra: 2054 / 1839,
  13700. bottom: 0.01
  13701. }
  13702. },
  13703. koboldHand: {
  13704. height: math.unit(0.2166, "meters"),
  13705. name: "Hand (Kobold)",
  13706. image: {
  13707. source: "./media/characters/rufran/kobold-hand.svg"
  13708. }
  13709. },
  13710. koboldFoot: {
  13711. height: math.unit(0.185, "meters"),
  13712. name: "Foot (Kobold)",
  13713. image: {
  13714. source: "./media/characters/rufran/kobold-foot.svg"
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(1, "inch")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(2 + 6 / 12, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Big",
  13730. height: math.unit(60, "feet")
  13731. },
  13732. {
  13733. name: "Macro",
  13734. height: math.unit(325, "feet")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(0.3, "meters"),
  13743. weight: math.unit(3.5, "kg"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/chip/front.svg",
  13747. extra: 748 / 674
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Micro",
  13754. height: math.unit(1, "inch"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13761. {
  13762. side: {
  13763. height: math.unit(2.3, "meters"),
  13764. weight: math.unit(3500, "lb"),
  13765. name: "Side",
  13766. image: {
  13767. source: "./media/characters/torvid/side.svg",
  13768. extra: 1972 / 722,
  13769. bottom: 0.035
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(2.3, "meters"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(2, "meters"),
  13786. weight: math.unit(150.5, "kg"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/susan/front.svg",
  13790. extra: 693 / 635,
  13791. bottom: 0.05
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Megamacro",
  13798. height: math.unit(505, "miles"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/raindrops/front.svg",
  13812. extra: 2655 / 2461,
  13813. bottom: 49 / 2705
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/raindrops/back.svg",
  13822. extra: 2574 / 2400,
  13823. bottom: 65 / 2634
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Micro",
  13830. height: math.unit(6, "inches")
  13831. },
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(6 + 2 / 12, "feet")
  13835. },
  13836. {
  13837. name: "Macro",
  13838. height: math.unit(131, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Megamacro",
  13843. height: math.unit(15, "miles")
  13844. },
  13845. {
  13846. name: "Gigamacro",
  13847. height: math.unit(4000, "miles")
  13848. },
  13849. {
  13850. name: "Teramacro",
  13851. height: math.unit(315000, "miles")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(2.794, "meters"),
  13860. weight: math.unit(325, "kg"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/tezwa/front.svg",
  13864. extra: 2083 / 1906,
  13865. bottom: 0.031
  13866. }
  13867. },
  13868. foot: {
  13869. height: math.unit(0.687, "meters"),
  13870. name: "Foot",
  13871. image: {
  13872. source: "./media/characters/tezwa/foot.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Normal",
  13879. height: math.unit(9 + 2 / 12, "feet"),
  13880. default: true
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(58, "feet"),
  13889. weight: math.unit(89000, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/typhus/front.svg",
  13893. extra: 816 / 800,
  13894. bottom: 0.065
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Macro",
  13901. height: math.unit(58, "feet"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(12, "feet"),
  13911. weight: math.unit(6, "tonnes"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/lyra-von-wulf/front.svg",
  13915. extra: 1,
  13916. bottom: 0.10
  13917. }
  13918. },
  13919. frontMecha: {
  13920. height: math.unit(12, "feet"),
  13921. weight: math.unit(12, "tonnes"),
  13922. name: "Front (Mecha)",
  13923. image: {
  13924. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13925. extra: 1,
  13926. bottom: 0.042
  13927. }
  13928. },
  13929. maw: {
  13930. height: math.unit(2.2, "feet"),
  13931. name: "Maw",
  13932. image: {
  13933. source: "./media/characters/lyra-von-wulf/maw.svg"
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(12, "feet"),
  13941. default: true
  13942. },
  13943. {
  13944. name: "Classic",
  13945. height: math.unit(50, "feet")
  13946. },
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(500, "feet")
  13950. },
  13951. {
  13952. name: "Megamacro",
  13953. height: math.unit(1, "mile")
  13954. },
  13955. {
  13956. name: "Gigamacro",
  13957. height: math.unit(400, "miles")
  13958. },
  13959. {
  13960. name: "Teramacro",
  13961. height: math.unit(22000, "miles")
  13962. },
  13963. {
  13964. name: "Solarmacro",
  13965. height: math.unit(8600000, "miles")
  13966. },
  13967. {
  13968. name: "Galactic",
  13969. height: math.unit(1057000, "lightyears")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6 + 10 / 12, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/dixon/front.svg",
  13982. extra: 3361 / 3209,
  13983. bottom: 0.01
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(6 + 10 / 12, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Big",
  13995. height: math.unit(12, "meters")
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(500, "meters")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(2, "km")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(185, "cm"),
  14012. weight: math.unit(68, "kg"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/kauko/front.svg",
  14016. extra: 1455 / 1421,
  14017. bottom: 0.03
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(185, "cm"),
  14022. weight: math.unit(68, "kg"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/kauko/back.svg",
  14026. extra: 1455 / 1421,
  14027. bottom: 0.004
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(185, "cm"),
  14035. default: true
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14041. {
  14042. frontSfw: {
  14043. height: math.unit(5, "meters"),
  14044. weight: math.unit(4250, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/varg/front-sfw.svg",
  14048. extra: 1103/1010,
  14049. bottom: 50/1153
  14050. },
  14051. form: "anthro",
  14052. default: true
  14053. },
  14054. backSfw: {
  14055. height: math.unit(5, "meters"),
  14056. weight: math.unit(4250, "lb"),
  14057. name: "Back",
  14058. image: {
  14059. source: "./media/characters/varg/back-sfw.svg",
  14060. extra: 1038/1022,
  14061. bottom: 36/1074
  14062. },
  14063. form: "anthro"
  14064. },
  14065. frontNsfw: {
  14066. height: math.unit(5, "meters"),
  14067. weight: math.unit(4250, "lb"),
  14068. name: "Front (NSFW)",
  14069. image: {
  14070. source: "./media/characters/varg/front-nsfw.svg",
  14071. extra: 1103/1010,
  14072. bottom: 50/1153
  14073. },
  14074. form: "anthro"
  14075. },
  14076. sheath: {
  14077. height: math.unit(3.8, "feet"),
  14078. weight: math.unit(90, "kilograms"),
  14079. name: "Sheath",
  14080. image: {
  14081. source: "./media/characters/varg/sheath.svg"
  14082. },
  14083. form: "anthro"
  14084. },
  14085. dick: {
  14086. height: math.unit(4.6, "feet"),
  14087. weight: math.unit(451, "kilograms"),
  14088. name: "Dick",
  14089. image: {
  14090. source: "./media/characters/varg/dick.svg"
  14091. },
  14092. form: "anthro"
  14093. },
  14094. feralSfw: {
  14095. height: math.unit(5, "meters"),
  14096. weight: math.unit(100000, "lb"),
  14097. name: "Side",
  14098. image: {
  14099. source: "./media/characters/varg/feral-sfw.svg",
  14100. extra: 1065/511,
  14101. bottom: 211/1276
  14102. },
  14103. form: "feral",
  14104. default: true
  14105. },
  14106. feralNsfw: {
  14107. height: math.unit(5, "meters"),
  14108. weight: math.unit(100000, "lb"),
  14109. name: "Side (NSFW)",
  14110. image: {
  14111. source: "./media/characters/varg/feral-nsfw.svg",
  14112. extra: 1065/511,
  14113. bottom: 211/1276
  14114. },
  14115. form: "feral",
  14116. },
  14117. feralSheath: {
  14118. height: math.unit(9.8, "feet"),
  14119. weight: math.unit(2000, "kilograms"),
  14120. name: "Sheath",
  14121. image: {
  14122. source: "./media/characters/varg/sheath.svg"
  14123. },
  14124. form: "feral"
  14125. },
  14126. feralDick: {
  14127. height: math.unit(13.11, "feet"),
  14128. weight: math.unit(10440, "kilograms"),
  14129. name: "Dick",
  14130. image: {
  14131. source: "./media/characters/varg/dick.svg"
  14132. },
  14133. form: "feral"
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(5, "meters"),
  14140. form: "anthro"
  14141. },
  14142. {
  14143. name: "Macro",
  14144. height: math.unit(200, "meters"),
  14145. form: "anthro"
  14146. },
  14147. {
  14148. name: "Megamacro",
  14149. height: math.unit(20, "kilometers"),
  14150. form: "anthro"
  14151. },
  14152. {
  14153. name: "True Size",
  14154. height: math.unit(211, "km"),
  14155. form: "anthro",
  14156. default: true
  14157. },
  14158. {
  14159. name: "Gigamacro",
  14160. height: math.unit(1000, "km"),
  14161. form: "anthro"
  14162. },
  14163. {
  14164. name: "Gigamacro+",
  14165. height: math.unit(8000, "km"),
  14166. form: "anthro"
  14167. },
  14168. {
  14169. name: "Teramacro",
  14170. height: math.unit(1000000, "km"),
  14171. form: "anthro"
  14172. },
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(5, "meters"),
  14176. form: "feral"
  14177. },
  14178. {
  14179. name: "Macro",
  14180. height: math.unit(200, "meters"),
  14181. form: "feral"
  14182. },
  14183. {
  14184. name: "Megamacro",
  14185. height: math.unit(20, "kilometers"),
  14186. form: "feral"
  14187. },
  14188. {
  14189. name: "True Size",
  14190. height: math.unit(211, "km"),
  14191. form: "feral",
  14192. default: true
  14193. },
  14194. {
  14195. name: "Gigamacro",
  14196. height: math.unit(1000, "km"),
  14197. form: "feral"
  14198. },
  14199. {
  14200. name: "Gigamacro+",
  14201. height: math.unit(8000, "km"),
  14202. form: "feral"
  14203. },
  14204. {
  14205. name: "Teramacro",
  14206. height: math.unit(1000000, "km"),
  14207. form: "feral"
  14208. },
  14209. ],
  14210. {
  14211. "anthro": {
  14212. name: "Anthro",
  14213. default: true
  14214. },
  14215. "feral": {
  14216. name: "Feral",
  14217. },
  14218. }
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(7 + 7 / 12, "feet"),
  14225. weight: math.unit(267, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/dayza/front.svg",
  14229. extra: 1262 / 1200,
  14230. bottom: 0.035
  14231. }
  14232. },
  14233. side: {
  14234. height: math.unit(7 + 7 / 12, "feet"),
  14235. weight: math.unit(267, "lb"),
  14236. name: "Side",
  14237. image: {
  14238. source: "./media/characters/dayza/side.svg",
  14239. extra: 1295 / 1245,
  14240. bottom: 0.05
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(7 + 7 / 12, "feet"),
  14245. weight: math.unit(267, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/dayza/back.svg",
  14249. extra: 1241 / 1170
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(7 + 7 / 12, "feet"),
  14257. default: true
  14258. },
  14259. {
  14260. name: "Macro",
  14261. height: math.unit(155, "feet")
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6 + 5 / 12, "feet"),
  14270. weight: math.unit(160, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/xanthos/front.svg",
  14274. extra: 1,
  14275. bottom: 0.04
  14276. }
  14277. },
  14278. back: {
  14279. height: math.unit(6 + 5 / 12, "feet"),
  14280. weight: math.unit(160, "lb"),
  14281. name: "Back",
  14282. image: {
  14283. source: "./media/characters/xanthos/back.svg",
  14284. extra: 1,
  14285. bottom: 0.03
  14286. }
  14287. },
  14288. hand: {
  14289. height: math.unit(0.928, "feet"),
  14290. name: "Hand",
  14291. image: {
  14292. source: "./media/characters/xanthos/hand.svg"
  14293. }
  14294. },
  14295. foot: {
  14296. height: math.unit(1.286, "feet"),
  14297. name: "Foot",
  14298. image: {
  14299. source: "./media/characters/xanthos/foot.svg"
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(6 + 5 / 12, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Normal+",
  14311. height: math.unit(6, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(40, "feet")
  14316. },
  14317. {
  14318. name: "Macro+",
  14319. height: math.unit(200, "meters")
  14320. },
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(20, "km")
  14324. },
  14325. {
  14326. name: "Megamacro+",
  14327. height: math.unit(100, "km")
  14328. },
  14329. {
  14330. name: "Gigamacro",
  14331. height: math.unit(200, "megameters")
  14332. },
  14333. {
  14334. name: "Gigamacro+",
  14335. height: math.unit(1.5, "gigameters")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6 + 3 / 12, "feet"),
  14344. weight: math.unit(215, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/grynn/front.svg",
  14348. extra: 4627 / 4209,
  14349. bottom: 0.047
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(6, "inches")
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(6 + 3 / 12, "feet"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Big",
  14365. height: math.unit(104, "feet")
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(944, "feet")
  14370. },
  14371. {
  14372. name: "Macro+",
  14373. height: math.unit(9480, "feet")
  14374. },
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(78752, "feet")
  14378. },
  14379. {
  14380. name: "Megamacro+",
  14381. height: math.unit(630128, "feet")
  14382. },
  14383. {
  14384. name: "Megamacro++",
  14385. height: math.unit(3150695, "feet")
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(7 + 5 / 12, "feet"),
  14394. weight: math.unit(450, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/mocha-aura/front.svg",
  14398. extra: 1907 / 1817,
  14399. bottom: 0.04
  14400. }
  14401. },
  14402. back: {
  14403. height: math.unit(7 + 5 / 12, "feet"),
  14404. weight: math.unit(450, "lb"),
  14405. name: "Back",
  14406. image: {
  14407. source: "./media/characters/mocha-aura/back.svg",
  14408. extra: 1900 / 1825,
  14409. bottom: 0.045
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Nano",
  14416. height: math.unit(1, "nm")
  14417. },
  14418. {
  14419. name: "Megamicro",
  14420. height: math.unit(1, "mm")
  14421. },
  14422. {
  14423. name: "Micro",
  14424. height: math.unit(3, "inches")
  14425. },
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(7 + 5 / 12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Macro",
  14433. height: math.unit(30, "feet")
  14434. },
  14435. {
  14436. name: "Megamacro",
  14437. height: math.unit(3500, "feet")
  14438. },
  14439. {
  14440. name: "Teramacro",
  14441. height: math.unit(500000, "miles")
  14442. },
  14443. {
  14444. name: "Petamacro",
  14445. height: math.unit(50000000000000000, "parsecs")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/ilisha-devya/front.svg",
  14458. extra: 1053/1049,
  14459. bottom: 270/1323
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/ilisha-devya/back.svg",
  14468. extra: 1131/1128,
  14469. bottom: 39/1170
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(500, "feet"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(10, "miles")
  14482. },
  14483. {
  14484. name: "Gigamacro",
  14485. height: math.unit(100000, "miles")
  14486. },
  14487. {
  14488. name: "Examacro",
  14489. height: math.unit(1e9, "lightyears")
  14490. },
  14491. {
  14492. name: "Omniversal",
  14493. height: math.unit(1e33, "lightyears")
  14494. },
  14495. {
  14496. name: "Beyond Infinite",
  14497. height: math.unit(1e100, "lightyears")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14503. {
  14504. Side: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Side",
  14508. image: {
  14509. source: "./media/characters/mira/side.svg",
  14510. extra: 900 / 799,
  14511. bottom: 0.02
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Human Size",
  14518. height: math.unit(6, "feet")
  14519. },
  14520. {
  14521. name: "Macro",
  14522. height: math.unit(100, "feet"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Megamacro",
  14527. height: math.unit(10, "miles")
  14528. },
  14529. {
  14530. name: "Gigamacro",
  14531. height: math.unit(25000, "miles")
  14532. },
  14533. {
  14534. name: "Teramacro",
  14535. height: math.unit(300, "AU")
  14536. },
  14537. {
  14538. name: "Full Size",
  14539. height: math.unit(4.5e10, "lightyears")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/holly/front.svg",
  14552. extra: 639 / 606
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/holly/back.svg",
  14561. extra: 623 / 598
  14562. }
  14563. },
  14564. frontWorking: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Front (Working)",
  14568. image: {
  14569. source: "./media/characters/holly/front-working.svg",
  14570. extra: 607 / 577,
  14571. bottom: 0.048
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(12 + 3 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/porter/front.svg",
  14592. extra: 1,
  14593. bottom: 0.01
  14594. }
  14595. },
  14596. frontRobes: {
  14597. height: math.unit(6, "feet"),
  14598. weight: math.unit(150, "lb"),
  14599. name: "Front (Robes)",
  14600. image: {
  14601. source: "./media/characters/porter/front-robes.svg",
  14602. extra: 1.01,
  14603. bottom: 0.01
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(11 + 9 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14617. {
  14618. legendary: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Legendary",
  14622. image: {
  14623. source: "./media/characters/lucy/legendary.svg",
  14624. extra: 1355 / 1100,
  14625. bottom: 0.045
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Legendary",
  14632. height: math.unit(86882 * 2, "miles"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(6, "feet"),
  14642. weight: math.unit(150, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/drusilla/front.svg",
  14646. extra: 678 / 635,
  14647. bottom: 0.03
  14648. }
  14649. },
  14650. back: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Back",
  14654. image: {
  14655. source: "./media/characters/drusilla/back.svg",
  14656. extra: 678 / 635,
  14657. bottom: 0.005
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Macro",
  14664. height: math.unit(100, "feet")
  14665. },
  14666. {
  14667. name: "Canon Height",
  14668. height: math.unit(2000, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(180, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/renard-thatch/front.svg",
  14682. extra: 2411 / 2275,
  14683. bottom: 0.01
  14684. }
  14685. },
  14686. frontPosing: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(180, "lb"),
  14689. name: "Front (Posing)",
  14690. image: {
  14691. source: "./media/characters/renard-thatch/front-posing.svg",
  14692. extra: 2381 / 2261,
  14693. bottom: 0.01
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(180, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/renard-thatch/back.svg",
  14702. extra: 2428 / 2288
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Micro",
  14709. height: math.unit(3, "inches")
  14710. },
  14711. {
  14712. name: "Default",
  14713. height: math.unit(6, "feet"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Macro",
  14718. height: math.unit(75, "feet")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(1450, "feet"),
  14727. weight: math.unit(1.21e6, "tons"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/sekvra/front.svg",
  14731. extra: 1193/1190,
  14732. bottom: 78/1271
  14733. }
  14734. },
  14735. side: {
  14736. height: math.unit(1450, "feet"),
  14737. weight: math.unit(1.21e6, "tons"),
  14738. name: "Side",
  14739. image: {
  14740. source: "./media/characters/sekvra/side.svg",
  14741. extra: 1193/1190,
  14742. bottom: 52/1245
  14743. }
  14744. },
  14745. back: {
  14746. height: math.unit(1450, "feet"),
  14747. weight: math.unit(1.21e6, "tons"),
  14748. name: "Back",
  14749. image: {
  14750. source: "./media/characters/sekvra/back.svg",
  14751. extra: 1219/1216,
  14752. bottom: 21/1240
  14753. }
  14754. },
  14755. frontClothed: {
  14756. height: math.unit(1450, "feet"),
  14757. weight: math.unit(1.21e6, "tons"),
  14758. name: "Front (Clothed)",
  14759. image: {
  14760. source: "./media/characters/sekvra/front-clothed.svg",
  14761. extra: 1192/1189,
  14762. bottom: 79/1271
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Macro",
  14769. height: math.unit(1450, "feet"),
  14770. default: true
  14771. },
  14772. {
  14773. name: "Megamacro",
  14774. height: math.unit(15000, "feet")
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/carmine/front.svg",
  14787. extra: 1,
  14788. bottom: 0.035
  14789. }
  14790. },
  14791. frontArmor: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front (Armor)",
  14795. image: {
  14796. source: "./media/characters/carmine/front-armor.svg",
  14797. extra: 1,
  14798. bottom: 0.035
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Large",
  14805. height: math.unit(1, "mile")
  14806. },
  14807. {
  14808. name: "Huge",
  14809. height: math.unit(40, "miles"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Colossal",
  14814. height: math.unit(2500, "miles")
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/elyssia/front.svg",
  14827. extra: 2201 / 2035,
  14828. bottom: 0.05
  14829. }
  14830. },
  14831. frontClothed: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(150, "lb"),
  14834. name: "Front (Clothed)",
  14835. image: {
  14836. source: "./media/characters/elyssia/front-clothed.svg",
  14837. extra: 2201 / 2035,
  14838. bottom: 0.05
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/elyssia/back.svg",
  14847. extra: 2201 / 2035,
  14848. bottom: 0.013
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Smaller",
  14855. height: math.unit(150, "feet")
  14856. },
  14857. {
  14858. name: "Standard",
  14859. height: math.unit(1400, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Distracted",
  14864. height: math.unit(15000, "feet")
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(7 + 4/12, "feet"),
  14873. weight: math.unit(690, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/geno-maxwell/front.svg",
  14877. extra: 984/856,
  14878. bottom: 87/1071
  14879. }
  14880. },
  14881. back: {
  14882. height: math.unit(7 + 4/12, "feet"),
  14883. weight: math.unit(690, "lb"),
  14884. name: "Back",
  14885. image: {
  14886. source: "./media/characters/geno-maxwell/back.svg",
  14887. extra: 981/854,
  14888. bottom: 57/1038
  14889. }
  14890. },
  14891. frontCostume: {
  14892. height: math.unit(7 + 4/12, "feet"),
  14893. weight: math.unit(690, "lb"),
  14894. name: "Front (Costume)",
  14895. image: {
  14896. source: "./media/characters/geno-maxwell/front-costume.svg",
  14897. extra: 984/856,
  14898. bottom: 87/1071
  14899. }
  14900. },
  14901. backcostume: {
  14902. height: math.unit(7 + 4/12, "feet"),
  14903. weight: math.unit(690, "lb"),
  14904. name: "Back (Costume)",
  14905. image: {
  14906. source: "./media/characters/geno-maxwell/back-costume.svg",
  14907. extra: 981/854,
  14908. bottom: 57/1038
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Micro",
  14915. height: math.unit(3, "inches")
  14916. },
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(7 + 4 / 12, "feet"),
  14920. default: true
  14921. },
  14922. {
  14923. name: "Macro",
  14924. height: math.unit(220, "feet")
  14925. },
  14926. {
  14927. name: "Megamacro",
  14928. height: math.unit(11, "miles")
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(7 + 4/12, "feet"),
  14937. weight: math.unit(750, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/regena-maxwell/front.svg",
  14941. extra: 984/856,
  14942. bottom: 87/1071
  14943. }
  14944. },
  14945. back: {
  14946. height: math.unit(7 + 4/12, "feet"),
  14947. weight: math.unit(750, "lb"),
  14948. name: "Back",
  14949. image: {
  14950. source: "./media/characters/regena-maxwell/back.svg",
  14951. extra: 981/854,
  14952. bottom: 57/1038
  14953. }
  14954. },
  14955. frontCostume: {
  14956. height: math.unit(7 + 4/12, "feet"),
  14957. weight: math.unit(750, "lb"),
  14958. name: "Front (Costume)",
  14959. image: {
  14960. source: "./media/characters/regena-maxwell/front-costume.svg",
  14961. extra: 984/856,
  14962. bottom: 87/1071
  14963. }
  14964. },
  14965. backcostume: {
  14966. height: math.unit(7 + 4/12, "feet"),
  14967. weight: math.unit(750, "lb"),
  14968. name: "Back (Costume)",
  14969. image: {
  14970. source: "./media/characters/regena-maxwell/back-costume.svg",
  14971. extra: 981/854,
  14972. bottom: 57/1038
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(7 + 4 / 12, "feet"),
  14980. default: true
  14981. },
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(220, "feet")
  14985. },
  14986. {
  14987. name: "Megamacro",
  14988. height: math.unit(11, "miles")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15001. extra: 860 / 690,
  15002. bottom: 0.03
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(1.7, "meters"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/quilly/front.svg",
  15023. extra: 890 / 776
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Gigamacro",
  15030. height: math.unit(404090, "miles"),
  15031. default: true
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(7 + 8 / 12, "feet"),
  15040. weight: math.unit(350, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/tempest/front.svg",
  15044. extra: 1175 / 1086,
  15045. bottom: 0.02
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(7 + 8 / 12, "feet"),
  15053. default: true
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15059. {
  15060. side: {
  15061. height: math.unit(4 + 5 / 12, "feet"),
  15062. weight: math.unit(80, "lb"),
  15063. name: "Side",
  15064. image: {
  15065. source: "./media/characters/rodger/side.svg",
  15066. extra: 1235 / 1118
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Micro",
  15073. height: math.unit(1, "inch")
  15074. },
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(4 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro",
  15082. height: math.unit(120, "feet")
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/danyel/front.svg",
  15095. extra: 1185 / 1123,
  15096. bottom: 0.05
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Shrunken",
  15103. height: math.unit(0.5, "mm")
  15104. },
  15105. {
  15106. name: "Micro",
  15107. height: math.unit(1, "mm"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Upsized",
  15112. height: math.unit(5 + 5 / 12, "feet")
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(5 + 6 / 12, "feet"),
  15121. weight: math.unit(200, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/vivian-bijoux/front.svg",
  15125. extra: 1217/1209,
  15126. bottom: 76/1293
  15127. }
  15128. },
  15129. back: {
  15130. height: math.unit(5 + 6 / 12, "feet"),
  15131. weight: math.unit(200, "lb"),
  15132. name: "Back",
  15133. image: {
  15134. source: "./media/characters/vivian-bijoux/back.svg",
  15135. extra: 1214/1208,
  15136. bottom: 51/1265
  15137. }
  15138. },
  15139. dressed: {
  15140. height: math.unit(5 + 6 / 12, "feet"),
  15141. weight: math.unit(200, "lb"),
  15142. name: "Dressed",
  15143. image: {
  15144. source: "./media/characters/vivian-bijoux/dressed.svg",
  15145. extra: 1217/1209,
  15146. bottom: 76/1293
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(5 + 6 / 12, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Bad Dream",
  15158. height: math.unit(500, "feet")
  15159. },
  15160. {
  15161. name: "Nightmare",
  15162. height: math.unit(500, "miles")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6 + 1 / 12, "feet"),
  15171. weight: math.unit(260, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/zeta/front.svg",
  15175. extra: 1968 / 1889,
  15176. bottom: 0.06
  15177. }
  15178. },
  15179. back: {
  15180. height: math.unit(6 + 1 / 12, "feet"),
  15181. weight: math.unit(260, "lb"),
  15182. name: "Back",
  15183. image: {
  15184. source: "./media/characters/zeta/back.svg",
  15185. extra: 1944 / 1858,
  15186. bottom: 0.03
  15187. }
  15188. },
  15189. hand: {
  15190. height: math.unit(1.112, "feet"),
  15191. name: "Hand",
  15192. image: {
  15193. source: "./media/characters/zeta/hand.svg"
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(1.48, "feet"),
  15198. name: "Foot",
  15199. image: {
  15200. source: "./media/characters/zeta/foot.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Micro",
  15207. height: math.unit(6, "inches")
  15208. },
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6 + 1 / 12, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(20, "feet")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/jamie-larsen/front.svg",
  15229. extra: 962 / 933,
  15230. bottom: 0.02
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/jamie-larsen/back.svg",
  15239. extra: 997 / 946
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(28 + 7 / 12, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Macro+",
  15251. height: math.unit(180, "feet")
  15252. },
  15253. {
  15254. name: "Megamacro",
  15255. height: math.unit(10, "miles")
  15256. },
  15257. {
  15258. name: "Gigamacro",
  15259. height: math.unit(200000, "miles")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(120, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/vance/front.svg",
  15272. extra: 1980 / 1890,
  15273. bottom: 0.09
  15274. }
  15275. },
  15276. back: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(120, "lb"),
  15279. name: "Back",
  15280. image: {
  15281. source: "./media/characters/vance/back.svg",
  15282. extra: 2081 / 1994,
  15283. bottom: 0.014
  15284. }
  15285. },
  15286. hand: {
  15287. height: math.unit(0.88, "feet"),
  15288. name: "Hand",
  15289. image: {
  15290. source: "./media/characters/vance/hand.svg"
  15291. }
  15292. },
  15293. foot: {
  15294. height: math.unit(0.64, "feet"),
  15295. name: "Foot",
  15296. image: {
  15297. source: "./media/characters/vance/foot.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Small",
  15304. height: math.unit(90, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(100, "meters")
  15310. },
  15311. {
  15312. name: "Megamacro",
  15313. height: math.unit(15, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(6, "feet"),
  15322. weight: math.unit(180, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/xochitl/front.svg",
  15326. extra: 2297 / 2261,
  15327. bottom: 0.065
  15328. }
  15329. },
  15330. back: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(180, "lb"),
  15333. name: "Back",
  15334. image: {
  15335. source: "./media/characters/xochitl/back.svg",
  15336. extra: 2386 / 2354,
  15337. bottom: 0.01
  15338. }
  15339. },
  15340. foot: {
  15341. height: math.unit(6 / 5 * 1.15, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Foot",
  15344. image: {
  15345. source: "./media/characters/xochitl/foot.svg"
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(80, "feet")
  15353. },
  15354. {
  15355. name: "Macro+",
  15356. height: math.unit(400, "feet"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Gigamacro",
  15361. height: math.unit(80000, "miles")
  15362. },
  15363. {
  15364. name: "Gigamacro+",
  15365. height: math.unit(400000, "miles")
  15366. },
  15367. {
  15368. name: "Teramacro",
  15369. height: math.unit(300, "AU")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/vincent/front.svg",
  15382. extra: 1130 / 1080,
  15383. bottom: 0.055
  15384. }
  15385. },
  15386. beak: {
  15387. height: math.unit(6 * 0.1, "feet"),
  15388. name: "Beak",
  15389. image: {
  15390. source: "./media/characters/vincent/beak.svg"
  15391. }
  15392. },
  15393. hand: {
  15394. height: math.unit(6 * 0.85, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Hand",
  15397. image: {
  15398. source: "./media/characters/vincent/hand.svg"
  15399. }
  15400. },
  15401. foot: {
  15402. height: math.unit(6 * 0.19, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Foot",
  15405. image: {
  15406. source: "./media/characters/vincent/foot.svg"
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Base",
  15413. height: math.unit(6 + 5 / 12, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(300, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(2, "miles")
  15423. },
  15424. {
  15425. name: "Gigamacro",
  15426. height: math.unit(1000, "miles")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(2, "meters"),
  15435. weight: math.unit(500, "kg"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/coatl/front.svg",
  15439. extra: 3948 / 3500,
  15440. bottom: 0.082
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(4, "meters")
  15448. },
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(100, "meters"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Macro+",
  15456. height: math.unit(300, "meters")
  15457. },
  15458. {
  15459. name: "Megamacro",
  15460. height: math.unit(3, "gigameters")
  15461. },
  15462. {
  15463. name: "Megamacro+",
  15464. height: math.unit(300, "terameters")
  15465. },
  15466. {
  15467. name: "Megamacro++",
  15468. height: math.unit(3, "lightyears")
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(50, "kg"),
  15478. name: "front",
  15479. image: {
  15480. source: "./media/characters/shiroryu/front.svg",
  15481. extra: 1990 / 1935
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Mortal Mingling",
  15488. height: math.unit(3, "meters")
  15489. },
  15490. {
  15491. name: "Kaiju-ish",
  15492. height: math.unit(250, "meters")
  15493. },
  15494. {
  15495. name: "Somewhat Godly",
  15496. height: math.unit(400, "km"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Planetary",
  15501. height: math.unit(300, "megameters")
  15502. },
  15503. {
  15504. name: "Galaxy-dwarfing",
  15505. height: math.unit(450, "kiloparsecs")
  15506. },
  15507. {
  15508. name: "Universe Eater",
  15509. height: math.unit(150, "gigaparsecs")
  15510. },
  15511. {
  15512. name: "Almost Immeasurable",
  15513. height: math.unit(1.3e266, "yottaparsecs")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/umeko/front.svg",
  15526. extra: 1,
  15527. bottom: 0.019
  15528. }
  15529. },
  15530. frontArmored: {
  15531. height: math.unit(6, "feet"),
  15532. weight: math.unit(150, "lb"),
  15533. name: "Front (Armored)",
  15534. image: {
  15535. source: "./media/characters/umeko/front-armored.svg",
  15536. extra: 1,
  15537. bottom: 0.021
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Macro",
  15544. height: math.unit(220, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Guardian Dragon",
  15549. height: math.unit(50, "miles")
  15550. },
  15551. {
  15552. name: "Cosmic",
  15553. height: math.unit(800000, "miles")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/cassidy/front.svg",
  15566. extra: 810/808,
  15567. bottom: 41/851
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Canon Height",
  15574. height: math.unit(120, "feet"),
  15575. default: true
  15576. },
  15577. {
  15578. name: "Macro+",
  15579. height: math.unit(400, "feet")
  15580. },
  15581. {
  15582. name: "Macro++",
  15583. height: math.unit(4000, "feet")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(3, "miles")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(150, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/isaac/front.svg",
  15600. extra: 896 / 815,
  15601. bottom: 0.11
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Human Size",
  15608. height: math.unit(8, "feet"),
  15609. default: true
  15610. },
  15611. {
  15612. name: "Macro",
  15613. height: math.unit(400, "feet")
  15614. },
  15615. {
  15616. name: "Megamacro",
  15617. height: math.unit(50, "miles")
  15618. },
  15619. {
  15620. name: "Canon Height",
  15621. height: math.unit(200, "AU")
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(72, "kg"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/sleekit/front.svg",
  15634. extra: 4693 / 4487,
  15635. bottom: 0.012
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Minimum Height",
  15642. height: math.unit(10, "meters")
  15643. },
  15644. {
  15645. name: "Smaller",
  15646. height: math.unit(25, "meters")
  15647. },
  15648. {
  15649. name: "Larger",
  15650. height: math.unit(38, "meters"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Maximum height",
  15655. height: math.unit(100, "meters")
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(6, "feet"),
  15664. weight: math.unit(150, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/nillia/front.svg",
  15668. extra: 2195 / 2037,
  15669. bottom: 0.005
  15670. }
  15671. },
  15672. back: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Back",
  15676. image: {
  15677. source: "./media/characters/nillia/back.svg",
  15678. extra: 2195 / 2037,
  15679. bottom: 0.005
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Canon Height",
  15686. height: math.unit(489, "feet"),
  15687. default: true
  15688. }
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/mesmyriza/front.svg",
  15700. extra: 2067 / 1784,
  15701. bottom: 0.035
  15702. }
  15703. },
  15704. foot: {
  15705. height: math.unit(6 / (250 / 35), "feet"),
  15706. name: "Foot",
  15707. image: {
  15708. source: "./media/characters/mesmyriza/foot.svg"
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Macro",
  15715. height: math.unit(457, "meters"),
  15716. default: true
  15717. },
  15718. {
  15719. name: "Megamacro",
  15720. height: math.unit(8, "megameters")
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(6, "feet"),
  15729. weight: math.unit(250, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/saudade/front.svg",
  15733. extra: 1172 / 1139,
  15734. bottom: 0.035
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Micro",
  15741. height: math.unit(3, "inches")
  15742. },
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6, "feet"),
  15746. default: true
  15747. },
  15748. {
  15749. name: "Macro",
  15750. height: math.unit(50, "feet")
  15751. },
  15752. {
  15753. name: "Megamacro",
  15754. height: math.unit(2800, "feet")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(5 + 4 / 12, "feet"),
  15763. weight: math.unit(100, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/keireer/front.svg",
  15767. extra: 716 / 666,
  15768. bottom: 0.05
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(5 + 4 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(5.5, "feet"),
  15785. weight: math.unit(90, "kg"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/mirja/front.svg",
  15789. extra: 1452/1262,
  15790. bottom: 67/1519
  15791. }
  15792. },
  15793. frontDressed: {
  15794. height: math.unit(5.5, "feet"),
  15795. weight: math.unit(90, "lb"),
  15796. name: "Front (Dressed)",
  15797. image: {
  15798. source: "./media/characters/mirja/dressed.svg",
  15799. extra: 1452/1262,
  15800. bottom: 67/1519
  15801. }
  15802. },
  15803. back: {
  15804. height: math.unit(6, "feet"),
  15805. weight: math.unit(90, "lb"),
  15806. name: "Back",
  15807. image: {
  15808. source: "./media/characters/mirja/back.svg",
  15809. extra: 1892/1795,
  15810. bottom: 48/1940
  15811. }
  15812. },
  15813. maw: {
  15814. height: math.unit(1.312, "feet"),
  15815. name: "Maw",
  15816. image: {
  15817. source: "./media/characters/mirja/maw.svg"
  15818. }
  15819. },
  15820. paw: {
  15821. height: math.unit(1.15, "feet"),
  15822. name: "Paw",
  15823. image: {
  15824. source: "./media/characters/mirja/paw.svg"
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "\"Incognito\"",
  15831. height: math.unit(3, "meters")
  15832. },
  15833. {
  15834. name: "Strolling Size",
  15835. height: math.unit(15, "km")
  15836. },
  15837. {
  15838. name: "Larger Strolling Size",
  15839. height: math.unit(400, "km")
  15840. },
  15841. {
  15842. name: "Preferred Size",
  15843. height: math.unit(5000, "km"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "True Size",
  15848. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(15, "feet"),
  15857. weight: math.unit(880, "kg"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/nightraver/front.svg",
  15861. extra: 2444 / 2160,
  15862. bottom: 0.027
  15863. }
  15864. },
  15865. back: {
  15866. height: math.unit(15, "feet"),
  15867. weight: math.unit(880, "kg"),
  15868. name: "Back",
  15869. image: {
  15870. source: "./media/characters/nightraver/back.svg",
  15871. extra: 2309 / 2180,
  15872. bottom: 0.005
  15873. }
  15874. },
  15875. sole: {
  15876. height: math.unit(2.878, "feet"),
  15877. name: "Sole",
  15878. image: {
  15879. source: "./media/characters/nightraver/sole.svg"
  15880. }
  15881. },
  15882. foot: {
  15883. height: math.unit(2.285, "feet"),
  15884. name: "Foot",
  15885. image: {
  15886. source: "./media/characters/nightraver/foot.svg"
  15887. }
  15888. },
  15889. maw: {
  15890. height: math.unit(2.67, "feet"),
  15891. name: "Maw",
  15892. image: {
  15893. source: "./media/characters/nightraver/maw.svg"
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(1, "cm")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(15, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(300, "feet")
  15910. },
  15911. {
  15912. name: "Megamacro",
  15913. height: math.unit(300, "miles")
  15914. },
  15915. {
  15916. name: "Gigamacro",
  15917. height: math.unit(10000, "miles")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15923. {
  15924. side: {
  15925. height: math.unit(2, "inches"),
  15926. weight: math.unit(5, "grams"),
  15927. name: "Side",
  15928. image: {
  15929. source: "./media/characters/arc/side.svg"
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Micro",
  15936. height: math.unit(2, "inches"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(1.1938, "meters"),
  15946. weight: math.unit(54, "kg"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/nebula-shahar/front.svg",
  15950. extra: 1642 / 1436,
  15951. bottom: 0.06
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Megamicro",
  15958. height: math.unit(0.3, "mm")
  15959. },
  15960. {
  15961. name: "Micro",
  15962. height: math.unit(3, "cm")
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(138, "cm"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(30, "m")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(5.24, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/shayla/front.svg",
  15984. extra: 1512 / 1414,
  15985. bottom: 0.01
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(5.24, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/shayla/back.svg",
  15994. extra: 1512 / 1414
  15995. }
  15996. },
  15997. hand: {
  15998. height: math.unit(0.7781496062992126, "feet"),
  15999. name: "Hand",
  16000. image: {
  16001. source: "./media/characters/shayla/hand.svg"
  16002. }
  16003. },
  16004. foot: {
  16005. height: math.unit(1.4206036745406823, "feet"),
  16006. name: "Foot",
  16007. image: {
  16008. source: "./media/characters/shayla/foot.svg"
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(0.32, "feet")
  16016. },
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5.24, "feet"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Macro",
  16024. height: math.unit(492.12, "feet")
  16025. },
  16026. {
  16027. name: "Megamacro",
  16028. height: math.unit(186.41, "miles")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(2.2, "m"),
  16037. weight: math.unit(120, "kg"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/pia-jr/front.svg",
  16041. extra: 1000 / 970,
  16042. bottom: 0.035
  16043. }
  16044. },
  16045. hand: {
  16046. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16047. name: "Hand",
  16048. image: {
  16049. source: "./media/characters/pia-jr/hand.svg"
  16050. }
  16051. },
  16052. paw: {
  16053. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16054. name: "Paw",
  16055. image: {
  16056. source: "./media/characters/pia-jr/paw.svg"
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(1.2, "cm")
  16064. },
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(2.2, "m"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(180, "m")
  16073. },
  16074. {
  16075. name: "Megamacro",
  16076. height: math.unit(420, "km")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(2, "m"),
  16085. weight: math.unit(115, "kg"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/pia-sr/front.svg",
  16089. extra: 760 / 730,
  16090. bottom: 0.015
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(2, "m"),
  16095. weight: math.unit(115, "kg"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/pia-sr/back.svg",
  16099. extra: 760 / 730,
  16100. bottom: 0.01
  16101. }
  16102. },
  16103. hand: {
  16104. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16105. name: "Hand",
  16106. image: {
  16107. source: "./media/characters/pia-sr/hand.svg"
  16108. }
  16109. },
  16110. foot: {
  16111. height: math.unit(1.83, "feet"),
  16112. name: "Foot",
  16113. image: {
  16114. source: "./media/characters/pia-sr/foot.svg"
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Micro",
  16121. height: math.unit(88, "mm")
  16122. },
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(2, "m"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro",
  16130. height: math.unit(200, "m")
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(420, "km")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(8 + 2 / 12, "feet"),
  16143. weight: math.unit(300, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/kibibyte/front.svg",
  16147. extra: 2221 / 2098,
  16148. bottom: 0.04
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(8 + 2 / 12, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Socialable Macro",
  16160. height: math.unit(50, "feet")
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(300, "feet")
  16165. },
  16166. {
  16167. name: "Megamacro",
  16168. height: math.unit(500, "miles")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/felix/front.svg",
  16181. extra: 762 / 722,
  16182. bottom: 0.02
  16183. }
  16184. },
  16185. frontClothed: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(150, "lb"),
  16188. name: "Front (Clothed)",
  16189. image: {
  16190. source: "./media/characters/felix/front-clothed.svg",
  16191. extra: 762 / 722,
  16192. bottom: 0.02
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(6 + 8 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(2600, "feet")
  16205. },
  16206. {
  16207. name: "Megamacro",
  16208. height: math.unit(450, "miles")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6 + 1 / 12, "feet"),
  16217. weight: math.unit(250, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/tobo/front.svg",
  16221. extra: 608 / 586,
  16222. bottom: 0.023
  16223. }
  16224. },
  16225. back: {
  16226. height: math.unit(6 + 1 / 12, "feet"),
  16227. weight: math.unit(250, "lb"),
  16228. name: "Back",
  16229. image: {
  16230. source: "./media/characters/tobo/back.svg",
  16231. extra: 608 / 586
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Nano",
  16238. height: math.unit(2, "nm")
  16239. },
  16240. {
  16241. name: "Megamicro",
  16242. height: math.unit(0.1, "mm")
  16243. },
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(1, "inch"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Human-sized",
  16251. height: math.unit(6 + 1 / 12, "feet")
  16252. },
  16253. {
  16254. name: "Macro",
  16255. height: math.unit(250, "feet")
  16256. },
  16257. {
  16258. name: "Megamacro",
  16259. height: math.unit(75, "miles")
  16260. },
  16261. {
  16262. name: "Texas-sized",
  16263. height: math.unit(750, "miles")
  16264. },
  16265. {
  16266. name: "Teramacro",
  16267. height: math.unit(50000, "miles")
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(269, "lb"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/danny-kapowsky/front.svg",
  16280. extra: 766 / 736,
  16281. bottom: 0.044
  16282. }
  16283. },
  16284. back: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(269, "lb"),
  16287. name: "Back",
  16288. image: {
  16289. source: "./media/characters/danny-kapowsky/back.svg",
  16290. extra: 797 / 760,
  16291. bottom: 0.025
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(150, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro+",
  16303. height: math.unit(200, "feet")
  16304. },
  16305. {
  16306. name: "Macro++",
  16307. height: math.unit(300, "feet")
  16308. },
  16309. {
  16310. name: "Macro+++",
  16311. height: math.unit(400, "feet")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16317. {
  16318. side: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(170, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/finn/side.svg",
  16324. extra: 1953 / 1807,
  16325. bottom: 0.057
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Megamacro",
  16332. height: math.unit(14445, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(5 + 6 / 12, "feet"),
  16342. weight: math.unit(125, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/roy/front.svg",
  16346. extra: 1,
  16347. bottom: 0.11
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Micro",
  16354. height: math.unit(3, "inches"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(5 + 6 / 12, "feet")
  16360. },
  16361. {
  16362. name: "Lesser Macro",
  16363. height: math.unit(60, "feet")
  16364. },
  16365. {
  16366. name: "Greater Macro",
  16367. height: math.unit(120, "feet")
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(100, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/aevsivs/front.svg",
  16380. extra: 1,
  16381. bottom: 0.03
  16382. }
  16383. },
  16384. back: {
  16385. height: math.unit(6, "feet"),
  16386. weight: math.unit(100, "lb"),
  16387. name: "Back",
  16388. image: {
  16389. source: "./media/characters/aevsivs/back.svg"
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Micro",
  16396. height: math.unit(2, "inches"),
  16397. default: true
  16398. },
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(5, "feet")
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 7 / 12, "feet"),
  16410. weight: math.unit(159, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/hildegard/front.svg",
  16414. extra: 289 / 269,
  16415. bottom: 7.63 / 297.8
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(5 + 7 / 12, "feet"),
  16420. weight: math.unit(159, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/hildegard/back.svg",
  16424. extra: 280 / 260,
  16425. bottom: 2.3 / 282
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 7 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16439. {
  16440. bernard: {
  16441. height: math.unit(2 + 7 / 12, "feet"),
  16442. weight: math.unit(66, "lb"),
  16443. name: "Bernard",
  16444. rename: true,
  16445. image: {
  16446. source: "./media/characters/bernard-wilder/bernard.svg",
  16447. extra: 192 / 128,
  16448. bottom: 0.05
  16449. }
  16450. },
  16451. wilder: {
  16452. height: math.unit(5 + 8 / 12, "feet"),
  16453. weight: math.unit(143, "lb"),
  16454. name: "Wilder",
  16455. rename: true,
  16456. image: {
  16457. source: "./media/characters/bernard-wilder/wilder.svg",
  16458. extra: 361 / 312,
  16459. bottom: 0.02
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(2 + 7 / 12, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16473. {
  16474. anthro: {
  16475. height: math.unit(6 + 1 / 12, "feet"),
  16476. weight: math.unit(155, "lb"),
  16477. name: "Anthro",
  16478. image: {
  16479. source: "./media/characters/hearth/anthro.svg",
  16480. extra: 1178/1136,
  16481. bottom: 28/1206
  16482. }
  16483. },
  16484. feral: {
  16485. height: math.unit(3.78, "feet"),
  16486. weight: math.unit(35, "kg"),
  16487. name: "Feral",
  16488. image: {
  16489. source: "./media/characters/hearth/feral.svg",
  16490. extra: 153 / 135,
  16491. bottom: 0.03
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(6 + 1 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(6, "feet"),
  16508. weight: math.unit(182, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/ingrid/front.svg",
  16512. extra: 294 / 268,
  16513. bottom: 0.027
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(6, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16527. {
  16528. eevee: {
  16529. height: math.unit(2 + 10 / 12, "feet"),
  16530. weight: math.unit(86, "lb"),
  16531. name: "Malgam",
  16532. image: {
  16533. source: "./media/characters/malgam/eevee.svg",
  16534. extra: 952/784,
  16535. bottom: 38/990
  16536. }
  16537. },
  16538. sylveon: {
  16539. height: math.unit(4, "feet"),
  16540. weight: math.unit(101, "lb"),
  16541. name: "Future Malgam",
  16542. rename: true,
  16543. image: {
  16544. source: "./media/characters/malgam/sylveon.svg",
  16545. extra: 371 / 325,
  16546. bottom: 0.015
  16547. }
  16548. },
  16549. gigantamax: {
  16550. height: math.unit(50, "feet"),
  16551. name: "Gigantamax Malgam",
  16552. rename: true,
  16553. image: {
  16554. source: "./media/characters/malgam/gigantamax.svg"
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(2 + 10 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(5 + 11 / 12, "feet"),
  16571. weight: math.unit(188, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/fleur/front.svg",
  16575. extra: 309 / 283,
  16576. bottom: 0.007
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(5 + 11 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(5 + 4 / 12, "feet"),
  16593. weight: math.unit(122, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/jude/front.svg",
  16597. extra: 288 / 273,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(5 + 4 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(5 + 11 / 12, "feet"),
  16615. weight: math.unit(190, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/seara/front.svg",
  16619. extra: 1,
  16620. bottom: 0.05
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(5 + 11 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(16 + 5 / 12, "feet"),
  16637. weight: math.unit(524, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/caspian-lugia/front.svg",
  16641. extra: 1,
  16642. bottom: 0.04
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(16 + 5 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(5 + 7 / 12, "feet"),
  16659. weight: math.unit(170, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/mika/front.svg",
  16663. extra: 1,
  16664. bottom: 0.016
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(5 + 7 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(6 + 2 / 12, "feet"),
  16681. weight: math.unit(268, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/sol/front.svg",
  16685. extra: 247 / 231,
  16686. bottom: 0.05
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(6 + 2 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16700. {
  16701. buizel: {
  16702. height: math.unit(2 + 5 / 12, "feet"),
  16703. weight: math.unit(87, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/umiko/buizel.svg",
  16707. extra: 172 / 157,
  16708. bottom: 0.01
  16709. },
  16710. form: "buizel",
  16711. default: true
  16712. },
  16713. floatzel: {
  16714. height: math.unit(5 + 9 / 12, "feet"),
  16715. weight: math.unit(250, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/umiko/floatzel.svg",
  16719. extra: 1076/1006,
  16720. bottom: 15/1091
  16721. },
  16722. form: "floatzel",
  16723. default: true
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(2 + 5 / 12, "feet"),
  16730. form: "buizel",
  16731. default: true
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(5 + 9 / 12, "feet"),
  16736. form: "floatzel",
  16737. default: true
  16738. },
  16739. ],
  16740. {
  16741. "buizel": {
  16742. name: "Buizel"
  16743. },
  16744. "floatzel": {
  16745. name: "Floatzel",
  16746. default: true
  16747. }
  16748. }
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(6 + 2 / 12, "feet"),
  16755. weight: math.unit(146, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/iliac/front.svg",
  16759. extra: 389 / 365,
  16760. bottom: 0.035
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(6 + 2 / 12, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(170, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/topaz/front.svg",
  16781. extra: 317 / 303,
  16782. bottom: 0.055
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(6, "feet"),
  16790. default: true
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(5 + 11 / 12, "feet"),
  16799. weight: math.unit(144, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/gabriel/front.svg",
  16803. extra: 285 / 262,
  16804. bottom: 0.004
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(5 + 11 / 12, "feet"),
  16812. default: true
  16813. },
  16814. ]
  16815. ))
  16816. characterMakers.push(() => makeCharacter(
  16817. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16818. {
  16819. side: {
  16820. height: math.unit(6 + 5 / 12, "feet"),
  16821. weight: math.unit(300, "lb"),
  16822. name: "Side",
  16823. image: {
  16824. source: "./media/characters/tempest-suicune/side.svg",
  16825. extra: 195 / 154,
  16826. bottom: 0.04
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(6 + 5 / 12, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16840. {
  16841. front: {
  16842. height: math.unit(7 + 2 / 12, "feet"),
  16843. weight: math.unit(322, "lb"),
  16844. name: "Front",
  16845. image: {
  16846. source: "./media/characters/vulcan/front.svg",
  16847. extra: 154 / 147,
  16848. bottom: 0.04
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(7 + 2 / 12, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(5 + 10 / 12, "feet"),
  16865. weight: math.unit(264, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/gault/front.svg",
  16869. extra: 161 / 140,
  16870. bottom: 0.028
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(5 + 10 / 12, "feet"),
  16878. default: true
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6, "feet"),
  16887. weight: math.unit(150, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/shard/front.svg",
  16891. extra: 273 / 238,
  16892. bottom: 0.02
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(3 + 6 / 12, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(5 + 11 / 12, "feet"),
  16909. weight: math.unit(146, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/ashe/front.svg",
  16913. extra: 400 / 373,
  16914. bottom: 0.01
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(5 + 11 / 12, "feet"),
  16922. default: true
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(5 + 5 / 12, "feet"),
  16931. weight: math.unit(135, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/beatrix/front.svg",
  16935. extra: 392 / 379,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(6, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6 + 2/12, "feet"),
  16953. weight: math.unit(135, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/ignatius/front.svg",
  16957. extra: 1380/1259,
  16958. bottom: 27/1407
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 2/12, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(6 + 2 / 12, "feet"),
  16975. weight: math.unit(138, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/mei-li/front.svg",
  16979. extra: 237 / 229,
  16980. bottom: 0.03
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(6 + 2 / 12, "feet"),
  16988. default: true
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(2 + 4 / 12, "feet"),
  16997. weight: math.unit(62, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/puru/front.svg",
  17001. extra: 206 / 149,
  17002. bottom: 0.06
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(2 + 4 / 12, "feet"),
  17010. default: true
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17016. {
  17017. anthro: {
  17018. height: math.unit(5 + 8/12, "feet"),
  17019. weight: math.unit(200, "lb"),
  17020. energyNeed: math.unit(2000, "kcal"),
  17021. name: "Anthro",
  17022. image: {
  17023. source: "./media/characters/kee/anthro.svg",
  17024. extra: 3251/3184,
  17025. bottom: 250/3501
  17026. }
  17027. },
  17028. taur: {
  17029. height: math.unit(11, "feet"),
  17030. weight: math.unit(500, "lb"),
  17031. energyNeed: math.unit(5000, "kcal"),
  17032. name: "Taur",
  17033. image: {
  17034. source: "./media/characters/kee/taur.svg",
  17035. extra: 1362/1320,
  17036. bottom: 83/1445
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 8/12, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Macro",
  17048. height: math.unit(35, "feet")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17054. {
  17055. anthro: {
  17056. height: math.unit(7, "feet"),
  17057. weight: math.unit(190, "lb"),
  17058. name: "Anthro",
  17059. image: {
  17060. source: "./media/characters/cobalt-dracha/anthro.svg",
  17061. extra: 231 / 225,
  17062. bottom: 0.04
  17063. }
  17064. },
  17065. feral: {
  17066. height: math.unit(9 + 7 / 12, "feet"),
  17067. weight: math.unit(294, "lb"),
  17068. name: "Feral",
  17069. image: {
  17070. source: "./media/characters/cobalt-dracha/feral.svg",
  17071. extra: 692 / 633,
  17072. bottom: 0.05
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(7, "feet"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17086. {
  17087. fallen: {
  17088. height: math.unit(11 + 8 / 12, "feet"),
  17089. weight: math.unit(485, "lb"),
  17090. name: "Java (Fallen)",
  17091. rename: true,
  17092. image: {
  17093. source: "./media/characters/java/fallen.svg",
  17094. extra: 226 / 208,
  17095. bottom: 0.005
  17096. }
  17097. },
  17098. godkin: {
  17099. height: math.unit(10 + 6 / 12, "feet"),
  17100. weight: math.unit(328, "lb"),
  17101. name: "Java (Godkin)",
  17102. rename: true,
  17103. image: {
  17104. source: "./media/characters/java/godkin.svg",
  17105. extra: 1104/1068,
  17106. bottom: 36/1140
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(11 + 8 / 12, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(5 + 9 / 12, "feet"),
  17123. weight: math.unit(170, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/purna/front.svg",
  17127. extra: 239 / 229,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(5 + 9 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(5 + 9 / 12, "feet"),
  17145. weight: math.unit(142, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/kuva/front.svg",
  17149. extra: 281 / 271,
  17150. bottom: 0.006
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(5 + 9 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17164. {
  17165. anthro: {
  17166. height: math.unit(9 + 2 / 12, "feet"),
  17167. weight: math.unit(270, "lb"),
  17168. name: "Anthro",
  17169. image: {
  17170. source: "./media/characters/embra/anthro.svg",
  17171. extra: 200 / 187,
  17172. bottom: 0.02
  17173. }
  17174. },
  17175. feral: {
  17176. height: math.unit(18 + 8 / 12, "feet"),
  17177. weight: math.unit(576, "lb"),
  17178. name: "Feral",
  17179. image: {
  17180. source: "./media/characters/embra/feral.svg",
  17181. extra: 152 / 137,
  17182. bottom: 0.037
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(9 + 2 / 12, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17196. {
  17197. anthro: {
  17198. height: math.unit(10 + 9 / 12, "feet"),
  17199. weight: math.unit(224, "lb"),
  17200. name: "Anthro",
  17201. image: {
  17202. source: "./media/characters/grottos/anthro.svg",
  17203. extra: 350 / 332,
  17204. bottom: 0.045
  17205. }
  17206. },
  17207. feral: {
  17208. height: math.unit(20 + 7 / 12, "feet"),
  17209. weight: math.unit(629, "lb"),
  17210. name: "Feral",
  17211. image: {
  17212. source: "./media/characters/grottos/feral.svg",
  17213. extra: 207 / 190,
  17214. bottom: 0.05
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(10 + 9 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17228. {
  17229. anthro: {
  17230. height: math.unit(9 + 6 / 12, "feet"),
  17231. weight: math.unit(298, "lb"),
  17232. name: "Anthro",
  17233. image: {
  17234. source: "./media/characters/frifna/anthro.svg",
  17235. extra: 282 / 269,
  17236. bottom: 0.015
  17237. }
  17238. },
  17239. feral: {
  17240. height: math.unit(16 + 2 / 12, "feet"),
  17241. weight: math.unit(624, "lb"),
  17242. name: "Feral",
  17243. image: {
  17244. source: "./media/characters/frifna/feral.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(9 + 6 / 12, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6 + 2 / 12, "feet"),
  17261. weight: math.unit(168, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/elise/front.svg",
  17265. extra: 276 / 271
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(6 + 2 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(5 + 10 / 12, "feet"),
  17282. weight: math.unit(210, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/glade/front.svg",
  17286. extra: 258 / 247,
  17287. bottom: 0.008
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(5 + 10 / 12, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 10 / 12, "feet"),
  17304. weight: math.unit(129, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/rina/front.svg",
  17308. extra: 266 / 255,
  17309. bottom: 0.005
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(5 + 10 / 12, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(6 + 1 / 12, "feet"),
  17326. weight: math.unit(192, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/veronica/front.svg",
  17330. extra: 319 / 309,
  17331. bottom: 0.005
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(6 + 1 / 12, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(9 + 3 / 12, "feet"),
  17348. weight: math.unit(1100, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/braxton/front.svg",
  17352. extra: 1057 / 984,
  17353. bottom: 0.05
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(9 + 3 / 12, "feet")
  17361. },
  17362. {
  17363. name: "Giant",
  17364. height: math.unit(300, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(700, "feet")
  17370. },
  17371. {
  17372. name: "Megamacro",
  17373. height: math.unit(6000, "feet")
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(6 + 7 / 12, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/blue-feyonics/front.svg",
  17386. extra: 1403 / 1306,
  17387. bottom: 0.047
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(6 + 7 / 12, "feet"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(1.8, "meters"),
  17404. weight: math.unit(60, "kg"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/maxwell/front.svg",
  17408. extra: 2060 / 1873
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Micro",
  17415. height: math.unit(1, "mm")
  17416. },
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(1.8, "meter"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(30, "meters")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(10, "km")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(150, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/jack/front.svg",
  17441. extra: 1754 / 1640,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(80000, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Max size",
  17454. height: math.unit(10, "lightyears")
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17460. {
  17461. urban: {
  17462. height: math.unit(5, "feet"),
  17463. weight: math.unit(240, "lb"),
  17464. name: "Urban",
  17465. image: {
  17466. source: "./media/characters/cafat/urban.svg",
  17467. extra: 1223/1126,
  17468. bottom: 205/1428
  17469. }
  17470. },
  17471. summer: {
  17472. height: math.unit(5, "feet"),
  17473. weight: math.unit(240, "lb"),
  17474. name: "Summer",
  17475. image: {
  17476. source: "./media/characters/cafat/summer.svg",
  17477. extra: 1223/1126,
  17478. bottom: 205/1428
  17479. }
  17480. },
  17481. winter: {
  17482. height: math.unit(5, "feet"),
  17483. weight: math.unit(240, "lb"),
  17484. name: "Winter",
  17485. image: {
  17486. source: "./media/characters/cafat/winter.svg",
  17487. extra: 1223/1126,
  17488. bottom: 205/1428
  17489. }
  17490. },
  17491. lingerie: {
  17492. height: math.unit(5, "feet"),
  17493. weight: math.unit(240, "lb"),
  17494. name: "Lingerie",
  17495. image: {
  17496. source: "./media/characters/cafat/lingerie.svg",
  17497. extra: 1223/1126,
  17498. bottom: 205/1428
  17499. }
  17500. },
  17501. upright: {
  17502. height: math.unit(6.3, "feet"),
  17503. weight: math.unit(240, "lb"),
  17504. name: "Upright",
  17505. image: {
  17506. source: "./media/characters/cafat/upright.svg",
  17507. bottom: 0.01
  17508. }
  17509. },
  17510. uprightFull: {
  17511. height: math.unit(6.3, "feet"),
  17512. weight: math.unit(240, "lb"),
  17513. name: "Upright (Full)",
  17514. image: {
  17515. source: "./media/characters/cafat/upright-full.svg",
  17516. bottom: 0.01
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Small",
  17523. height: math.unit(5, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Large",
  17528. height: math.unit(13, "feet")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(6, "feet"),
  17537. weight: math.unit(150, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/verin-raharra/front.svg",
  17541. extra: 5019 / 4835,
  17542. bottom: 0.023
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(7 + 5 / 12, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Upsized",
  17554. height: math.unit(20, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(7, "feet"),
  17563. weight: math.unit(230, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/nakata/front.svg",
  17567. extra: 1.005,
  17568. bottom: 0.01
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(7, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Big",
  17580. height: math.unit(14, "feet")
  17581. },
  17582. {
  17583. name: "Macro",
  17584. height: math.unit(400, "feet")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(4.91, "feet"),
  17593. weight: math.unit(100, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/lily/front.svg",
  17597. extra: 1585 / 1415,
  17598. bottom: 0.02
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(4.91, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17612. {
  17613. laying: {
  17614. height: math.unit(4 + 4 / 12, "feet"),
  17615. weight: math.unit(600, "lb"),
  17616. name: "Laying",
  17617. image: {
  17618. source: "./media/characters/sheila/laying.svg",
  17619. extra: 1333 / 1265,
  17620. bottom: 0.16
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(4 + 4 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6, "feet"),
  17637. weight: math.unit(190, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/sax/front.svg",
  17641. extra: 1187 / 973,
  17642. bottom: 0.042
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Micro",
  17649. height: math.unit(4, "inches"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(6, "feet"),
  17659. weight: math.unit(150, "lb"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/pandora/front.svg",
  17663. extra: 2720 / 2556,
  17664. bottom: 0.015
  17665. }
  17666. },
  17667. back: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(150, "lb"),
  17670. name: "Back",
  17671. image: {
  17672. source: "./media/characters/pandora/back.svg",
  17673. extra: 2720 / 2556,
  17674. bottom: 0.01
  17675. }
  17676. },
  17677. beans: {
  17678. height: math.unit(6 / 8, "feet"),
  17679. name: "Beans",
  17680. image: {
  17681. source: "./media/characters/pandora/beans.svg"
  17682. }
  17683. },
  17684. collar: {
  17685. height: math.unit(0.31, "feet"),
  17686. name: "Collar",
  17687. image: {
  17688. source: "./media/characters/pandora/collar.svg"
  17689. }
  17690. },
  17691. skirt: {
  17692. height: math.unit(6, "feet"),
  17693. weight: math.unit(150, "lb"),
  17694. name: "Skirt",
  17695. image: {
  17696. source: "./media/characters/pandora/skirt.svg",
  17697. extra: 1622 / 1525,
  17698. bottom: 0.015
  17699. }
  17700. },
  17701. hoodie: {
  17702. height: math.unit(6, "feet"),
  17703. weight: math.unit(150, "lb"),
  17704. name: "Hoodie",
  17705. image: {
  17706. source: "./media/characters/pandora/hoodie.svg",
  17707. extra: 1622 / 1525,
  17708. bottom: 0.015
  17709. }
  17710. },
  17711. casual: {
  17712. height: math.unit(6, "feet"),
  17713. weight: math.unit(150, "lb"),
  17714. name: "Casual",
  17715. image: {
  17716. source: "./media/characters/pandora/casual.svg",
  17717. extra: 1622 / 1525,
  17718. bottom: 0.015
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(6, "feet")
  17726. },
  17727. {
  17728. name: "Big Steppy",
  17729. height: math.unit(1, "km"),
  17730. default: true
  17731. },
  17732. {
  17733. name: "Galactic Steppy",
  17734. height: math.unit(2, "gigameters")
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17740. {
  17741. side: {
  17742. height: math.unit(10, "feet"),
  17743. weight: math.unit(800, "kg"),
  17744. name: "Side",
  17745. image: {
  17746. source: "./media/characters/venio-darcony/side.svg",
  17747. extra: 1373 / 1003,
  17748. bottom: 0.037
  17749. }
  17750. },
  17751. front: {
  17752. height: math.unit(19, "feet"),
  17753. weight: math.unit(800, "kg"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/venio-darcony/front.svg"
  17757. }
  17758. },
  17759. back: {
  17760. height: math.unit(19, "feet"),
  17761. weight: math.unit(800, "kg"),
  17762. name: "Back",
  17763. image: {
  17764. source: "./media/characters/venio-darcony/back.svg"
  17765. }
  17766. },
  17767. sideNsfw: {
  17768. height: math.unit(10, "feet"),
  17769. weight: math.unit(800, "kg"),
  17770. name: "Side (NSFW)",
  17771. image: {
  17772. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17773. extra: 1373 / 1003,
  17774. bottom: 0.037
  17775. }
  17776. },
  17777. frontNsfw: {
  17778. height: math.unit(19, "feet"),
  17779. weight: math.unit(800, "kg"),
  17780. name: "Front (NSFW)",
  17781. image: {
  17782. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17783. }
  17784. },
  17785. backNsfw: {
  17786. height: math.unit(19, "feet"),
  17787. weight: math.unit(800, "kg"),
  17788. name: "Back (NSFW)",
  17789. image: {
  17790. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17791. }
  17792. },
  17793. sideArmored: {
  17794. height: math.unit(10, "feet"),
  17795. weight: math.unit(800, "kg"),
  17796. name: "Side (Armored)",
  17797. image: {
  17798. source: "./media/characters/venio-darcony/side-armored.svg",
  17799. extra: 1373 / 1003,
  17800. bottom: 0.037
  17801. }
  17802. },
  17803. frontArmored: {
  17804. height: math.unit(19, "feet"),
  17805. weight: math.unit(900, "kg"),
  17806. name: "Front (Armored)",
  17807. image: {
  17808. source: "./media/characters/venio-darcony/front-armored.svg"
  17809. }
  17810. },
  17811. backArmored: {
  17812. height: math.unit(19, "feet"),
  17813. weight: math.unit(900, "kg"),
  17814. name: "Back (Armored)",
  17815. image: {
  17816. source: "./media/characters/venio-darcony/back-armored.svg"
  17817. }
  17818. },
  17819. sword: {
  17820. height: math.unit(10, "feet"),
  17821. weight: math.unit(50, "lb"),
  17822. name: "Sword",
  17823. image: {
  17824. source: "./media/characters/venio-darcony/sword.svg"
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(10, "feet")
  17832. },
  17833. {
  17834. name: "Macro",
  17835. height: math.unit(130, "feet"),
  17836. default: true
  17837. },
  17838. {
  17839. name: "Macro+",
  17840. height: math.unit(240, "feet")
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17846. {
  17847. front: {
  17848. height: math.unit(6, "feet"),
  17849. weight: math.unit(150, "lb"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/veski/front.svg",
  17853. extra: 1299 / 1225,
  17854. bottom: 0.04
  17855. }
  17856. },
  17857. back: {
  17858. height: math.unit(6, "feet"),
  17859. weight: math.unit(150, "lb"),
  17860. name: "Back",
  17861. image: {
  17862. source: "./media/characters/veski/back.svg",
  17863. extra: 1299 / 1225,
  17864. bottom: 0.008
  17865. }
  17866. },
  17867. maw: {
  17868. height: math.unit(1.5 * 1.21, "feet"),
  17869. name: "Maw",
  17870. image: {
  17871. source: "./media/characters/veski/maw.svg"
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(2, "km"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(5 + 7 / 12, "feet"),
  17888. name: "Front",
  17889. image: {
  17890. source: "./media/characters/isabelle/front.svg",
  17891. extra: 2130 / 1976,
  17892. bottom: 0.05
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Supermicro",
  17899. height: math.unit(10, "micrometers")
  17900. },
  17901. {
  17902. name: "Micro",
  17903. height: math.unit(1, "inch")
  17904. },
  17905. {
  17906. name: "Tiny",
  17907. height: math.unit(5, "inches")
  17908. },
  17909. {
  17910. name: "Standard",
  17911. height: math.unit(5 + 7 / 12, "inches")
  17912. },
  17913. {
  17914. name: "Macro",
  17915. height: math.unit(80, "meters"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Megamacro",
  17920. height: math.unit(250, "meters")
  17921. },
  17922. {
  17923. name: "Gigamacro",
  17924. height: math.unit(5, "km")
  17925. },
  17926. {
  17927. name: "Cosmic",
  17928. height: math.unit(2.5e6, "miles")
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(6, "feet"),
  17937. weight: math.unit(150, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/hanzo/front.svg",
  17941. extra: 374 / 344,
  17942. bottom: 0.02
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(8, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(7, "feet"),
  17959. weight: math.unit(130, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/anna/front.svg",
  17963. extra: 169 / 145,
  17964. bottom: 0.06
  17965. }
  17966. },
  17967. full: {
  17968. height: math.unit(4.96, "feet"),
  17969. weight: math.unit(220, "lb"),
  17970. name: "Full",
  17971. image: {
  17972. source: "./media/characters/anna/full.svg",
  17973. extra: 138 / 114,
  17974. bottom: 0.15
  17975. }
  17976. },
  17977. tongue: {
  17978. height: math.unit(2.53, "feet"),
  17979. name: "Tongue",
  17980. image: {
  17981. source: "./media/characters/anna/tongue.svg"
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(7, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(7, "feet"),
  17998. weight: math.unit(150, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/ian-corvid/front.svg",
  18002. extra: 150 / 142,
  18003. bottom: 0.02
  18004. }
  18005. },
  18006. back: {
  18007. height: math.unit(7, "feet"),
  18008. weight: math.unit(150, "lb"),
  18009. name: "Back",
  18010. image: {
  18011. source: "./media/characters/ian-corvid/back.svg",
  18012. extra: 150 / 143,
  18013. bottom: 0.01
  18014. }
  18015. },
  18016. stomping: {
  18017. height: math.unit(7, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Stomping",
  18020. image: {
  18021. source: "./media/characters/ian-corvid/stomping.svg",
  18022. extra: 76 / 72
  18023. }
  18024. },
  18025. sitting: {
  18026. height: math.unit(7 / 1.8, "feet"),
  18027. weight: math.unit(150, "lb"),
  18028. name: "Sitting",
  18029. image: {
  18030. source: "./media/characters/ian-corvid/sitting.svg",
  18031. extra: 1400 / 1269,
  18032. bottom: 0.15
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Tiny Microw",
  18039. height: math.unit(1, "inch")
  18040. },
  18041. {
  18042. name: "Microw",
  18043. height: math.unit(6, "inches")
  18044. },
  18045. {
  18046. name: "Crow",
  18047. height: math.unit(7 + 1 / 12, "feet"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Macrow",
  18052. height: math.unit(176, "feet")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(5 + 7 / 12, "feet"),
  18061. weight: math.unit(147, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/natalie-kellon/front.svg",
  18065. extra: 1214 / 1141,
  18066. bottom: 0.02
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(1 / 16, "inch")
  18074. },
  18075. {
  18076. name: "Tiny",
  18077. height: math.unit(4, "inches")
  18078. },
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(5 + 7 / 12, "feet"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Amazon",
  18086. height: math.unit(12, "feet")
  18087. },
  18088. {
  18089. name: "Giantess",
  18090. height: math.unit(160, "meters")
  18091. },
  18092. {
  18093. name: "Titaness",
  18094. height: math.unit(800, "meters")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/alluria/front.svg",
  18107. extra: 806 / 738,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. side: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Side",
  18115. image: {
  18116. source: "./media/characters/alluria/side.svg",
  18117. extra: 800 / 750,
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(6, "feet"),
  18122. weight: math.unit(150, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/alluria/back.svg",
  18126. extra: 806 / 738,
  18127. }
  18128. },
  18129. frontMaid: {
  18130. height: math.unit(6, "feet"),
  18131. weight: math.unit(150, "lb"),
  18132. name: "Front (Maid)",
  18133. image: {
  18134. source: "./media/characters/alluria/front-maid.svg",
  18135. extra: 806 / 738,
  18136. bottom: 0.01
  18137. }
  18138. },
  18139. sideMaid: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Side (Maid)",
  18143. image: {
  18144. source: "./media/characters/alluria/side-maid.svg",
  18145. extra: 800 / 750,
  18146. bottom: 0.005
  18147. }
  18148. },
  18149. backMaid: {
  18150. height: math.unit(6, "feet"),
  18151. weight: math.unit(150, "lb"),
  18152. name: "Back (Maid)",
  18153. image: {
  18154. source: "./media/characters/alluria/back-maid.svg",
  18155. extra: 806 / 738,
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Micro",
  18162. height: math.unit(6, "inches"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(6, "feet"),
  18172. weight: math.unit(150, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/kyle/front.svg",
  18176. extra: 1069 / 962,
  18177. bottom: 77.228 / 1727.45
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(150, "feet"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(6, "feet"),
  18194. weight: math.unit(300, "lb"),
  18195. name: "Front",
  18196. image: {
  18197. source: "./media/characters/duncan/front.svg",
  18198. extra: 1650 / 1482,
  18199. bottom: 0.05
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(100, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(5 + 4 / 12, "feet"),
  18216. weight: math.unit(220, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/memory/front.svg",
  18220. extra: 3641 / 3545,
  18221. bottom: 0.03
  18222. }
  18223. },
  18224. back: {
  18225. height: math.unit(5 + 4 / 12, "feet"),
  18226. weight: math.unit(220, "lb"),
  18227. name: "Back",
  18228. image: {
  18229. source: "./media/characters/memory/back.svg",
  18230. extra: 3641 / 3545,
  18231. bottom: 0.025
  18232. }
  18233. },
  18234. frontSkirt: {
  18235. height: math.unit(5 + 4 / 12, "feet"),
  18236. weight: math.unit(220, "lb"),
  18237. name: "Front (Skirt)",
  18238. image: {
  18239. source: "./media/characters/memory/front-skirt.svg",
  18240. extra: 3641 / 3545,
  18241. bottom: 0.03
  18242. }
  18243. },
  18244. frontDress: {
  18245. height: math.unit(5 + 4 / 12, "feet"),
  18246. weight: math.unit(220, "lb"),
  18247. name: "Front (Dress)",
  18248. image: {
  18249. source: "./media/characters/memory/front-dress.svg",
  18250. extra: 3641 / 3545,
  18251. bottom: 0.03
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Micro",
  18258. height: math.unit(6, "inches"),
  18259. default: true
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(5 + 4 / 12, "feet")
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(4 + 11 / 12, "feet"),
  18272. weight: math.unit(100, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/luno/front.svg",
  18276. extra: 1535 / 1487,
  18277. bottom: 0.03
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Micro",
  18284. height: math.unit(3, "inches")
  18285. },
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(4 + 11 / 12, "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Macro",
  18293. height: math.unit(300, "feet")
  18294. },
  18295. {
  18296. name: "Megamacro",
  18297. height: math.unit(700, "miles")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(6 + 2 / 12, "feet"),
  18306. weight: math.unit(170, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/jamesy/front.svg",
  18310. extra: 440 / 382,
  18311. bottom: 0.005
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Micro",
  18318. height: math.unit(3, "inches")
  18319. },
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(6 + 2 / 12, "feet"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(300, "feet")
  18328. },
  18329. {
  18330. name: "Megamacro",
  18331. height: math.unit(700, "miles")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(6, "feet"),
  18340. weight: math.unit(160, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/mark/front.svg",
  18344. extra: 3300 / 3100,
  18345. bottom: 136.42 / 3440.47
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Macro",
  18352. height: math.unit(120, "meters")
  18353. },
  18354. {
  18355. name: "Bigger Macro",
  18356. height: math.unit(350, "meters")
  18357. },
  18358. {
  18359. name: "Megamacro",
  18360. height: math.unit(8, "km"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Continental",
  18365. height: math.unit(4550, "km")
  18366. },
  18367. {
  18368. name: "Planetary",
  18369. height: math.unit(65000, "km")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(6, "feet"),
  18378. weight: math.unit(400, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/mac/front.svg",
  18382. extra: 1048 / 987.7,
  18383. bottom: 60 / 1107.6,
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(500, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(5 + 2 / 12, "feet"),
  18400. weight: math.unit(190, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/bari/front.svg",
  18404. extra: 3156 / 2880,
  18405. bottom: 0.03
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(5 + 2 / 12, "feet"),
  18410. weight: math.unit(190, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/bari/back.svg",
  18414. extra: 3260 / 2834,
  18415. bottom: 0.025
  18416. }
  18417. },
  18418. frontPlush: {
  18419. height: math.unit(5 + 2 / 12, "feet"),
  18420. weight: math.unit(190, "lb"),
  18421. name: "Front (Plush)",
  18422. image: {
  18423. source: "./media/characters/bari/front-plush.svg",
  18424. extra: 1112 / 1061,
  18425. bottom: 0.002
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Micro",
  18432. height: math.unit(3, "inches")
  18433. },
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(5 + 2 / 12, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Macro",
  18441. height: math.unit(20, "feet")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6 + 1 / 12, "feet"),
  18450. weight: math.unit(275, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/hunter-misha-raven/front.svg"
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Mortal",
  18460. height: math.unit(6 + 1 / 12, "feet")
  18461. },
  18462. {
  18463. name: "Divine",
  18464. height: math.unit(1.12134e34, "parsecs"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(6 + 3 / 12, "feet"),
  18474. weight: math.unit(220, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/max-calore/front.svg",
  18478. extra: 1700 / 1648,
  18479. bottom: 0.01
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(6 + 3 / 12, "feet"),
  18484. weight: math.unit(220, "lb"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/max-calore/back.svg",
  18488. extra: 1700 / 1648,
  18489. bottom: 0.01
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 3 / 12, "feet"),
  18497. default: true
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18503. {
  18504. side: {
  18505. height: math.unit(2 + 8 / 12, "feet"),
  18506. weight: math.unit(99, "lb"),
  18507. name: "Side",
  18508. image: {
  18509. source: "./media/characters/aspen/side.svg",
  18510. extra: 152 / 138,
  18511. bottom: 0.032
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(2 + 8 / 12, "feet"),
  18519. default: true
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18525. {
  18526. side: {
  18527. height: math.unit(3 + 2 / 12, "feet"),
  18528. weight: math.unit(224, "lb"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/sheila-feral-wolf/side.svg",
  18532. extra: 179 / 166,
  18533. bottom: 0.03
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(3 + 2 / 12, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18547. {
  18548. side: {
  18549. height: math.unit(1 + 9 / 12, "feet"),
  18550. weight: math.unit(38, "lb"),
  18551. name: "Side",
  18552. image: {
  18553. source: "./media/characters/michelle/side.svg",
  18554. extra: 147 / 136.7,
  18555. bottom: 0.03
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(1 + 9 / 12, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.54, "feet"),
  18572. weight: math.unit(50, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/nino/front.svg"
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(1.54, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(1.49, "feet"),
  18592. weight: math.unit(45, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/viola/front.svg"
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(1.49, "feet"),
  18603. default: true
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(6 + 5 / 12, "feet"),
  18612. weight: math.unit(580, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/atlas/front.svg",
  18616. extra: 298.5 / 290,
  18617. bottom: 0.015
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(6 + 5 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18631. {
  18632. side: {
  18633. height: math.unit(15.6, "inches"),
  18634. weight: math.unit(10, "lb"),
  18635. name: "Side",
  18636. image: {
  18637. source: "./media/characters/davy/side.svg",
  18638. extra: 200 / 170,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(15.6, "inches"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18653. {
  18654. side: {
  18655. height: math.unit(4 + 8 / 12, "feet"),
  18656. weight: math.unit(166, "lb"),
  18657. name: "Side",
  18658. image: {
  18659. source: "./media/characters/fiona/side.svg",
  18660. extra: 232 / 220,
  18661. bottom: 0.03
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(4 + 8 / 12, "feet"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18675. {
  18676. front: {
  18677. height: math.unit(26, "inches"),
  18678. weight: math.unit(35, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/lyla/front.svg",
  18682. bottom: 0.1
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(3, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18696. {
  18697. side: {
  18698. height: math.unit(1.8, "feet"),
  18699. weight: math.unit(44, "lb"),
  18700. name: "Side",
  18701. image: {
  18702. source: "./media/characters/perseus/side.svg",
  18703. bottom: 0.21
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(1.8, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18717. {
  18718. side: {
  18719. height: math.unit(4 + 2 / 12, "feet"),
  18720. weight: math.unit(20, "lb"),
  18721. name: "Side",
  18722. image: {
  18723. source: "./media/characters/remus/side.svg"
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(4 + 2 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(4 + 11 / 12, "feet"),
  18740. weight: math.unit(114, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/raf/front.svg",
  18744. extra: 1504/1339,
  18745. bottom: 26/1530
  18746. }
  18747. },
  18748. side: {
  18749. height: math.unit(4 + 11 / 12, "feet"),
  18750. weight: math.unit(114, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/raf/side.svg",
  18754. extra: 1466/1316,
  18755. bottom: 29/1495
  18756. }
  18757. },
  18758. paw: {
  18759. height: math.unit(1.45, "feet"),
  18760. name: "Paw",
  18761. image: {
  18762. source: "./media/characters/raf/paw.svg"
  18763. },
  18764. extraAttributes: {
  18765. "toeSize": {
  18766. name: "Toe Size",
  18767. power: 2,
  18768. type: "area",
  18769. base: math.unit(0.004, "m^2")
  18770. },
  18771. "padSize": {
  18772. name: "Pad Size",
  18773. power: 2,
  18774. type: "area",
  18775. base: math.unit(0.04, "m^2")
  18776. },
  18777. "footSize": {
  18778. name: "Foot Size",
  18779. power: 2,
  18780. type: "area",
  18781. base: math.unit(0.08, "m^2")
  18782. },
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Micro",
  18789. height: math.unit(2, "inches")
  18790. },
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(4 + 11 / 12, "feet"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "Macro",
  18798. height: math.unit(70, "feet")
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(1.5, "meters"),
  18807. weight: math.unit(68, "kg"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/liam-einarr/front.svg",
  18811. extra: 2822 / 2666
  18812. }
  18813. },
  18814. back: {
  18815. height: math.unit(1.5, "meters"),
  18816. weight: math.unit(68, "kg"),
  18817. name: "Back",
  18818. image: {
  18819. source: "./media/characters/liam-einarr/back.svg",
  18820. extra: 2822 / 2666,
  18821. bottom: 0.015
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(1.5, "meters"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(150, "meters")
  18834. },
  18835. {
  18836. name: "Megamacro",
  18837. height: math.unit(35, "km")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(75, "kg"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/linda/front.svg",
  18850. extra: 930 / 874,
  18851. bottom: 0.004
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(6, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6 + 8 / 12, "feet"),
  18868. weight: math.unit(220, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/caylex/front.svg",
  18872. extra: 821 / 772,
  18873. bottom: 0.07
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(6 + 8 / 12, "feet"),
  18878. weight: math.unit(220, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/caylex/back.svg",
  18882. extra: 821 / 772,
  18883. bottom: 0.022
  18884. }
  18885. },
  18886. hand: {
  18887. height: math.unit(1.25, "feet"),
  18888. name: "Hand",
  18889. image: {
  18890. source: "./media/characters/caylex/hand.svg"
  18891. }
  18892. },
  18893. foot: {
  18894. height: math.unit(1.6, "feet"),
  18895. name: "Foot",
  18896. image: {
  18897. source: "./media/characters/caylex/foot.svg"
  18898. }
  18899. },
  18900. armored: {
  18901. height: math.unit(6 + 8 / 12, "feet"),
  18902. weight: math.unit(250, "lb"),
  18903. name: "Armored",
  18904. image: {
  18905. source: "./media/characters/caylex/armored.svg",
  18906. extra: 1420 / 1310,
  18907. bottom: 0.045
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(6 + 8 / 12, "feet"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Normal+",
  18919. height: math.unit(12, "feet")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(7 + 6 / 12, "feet"),
  18928. weight: math.unit(288, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/alana/front.svg",
  18932. extra: 679 / 653,
  18933. bottom: 22.5 / 701
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(7 + 6 / 12, "feet")
  18941. },
  18942. {
  18943. name: "Large",
  18944. height: math.unit(50, "feet")
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(100, "feet"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Macro+",
  18953. height: math.unit(200, "feet")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 1 / 12, "feet"),
  18962. weight: math.unit(210, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/hasani/front.svg",
  18966. extra: 244 / 232,
  18967. bottom: 0.01
  18968. }
  18969. },
  18970. back: {
  18971. height: math.unit(6 + 1 / 12, "feet"),
  18972. weight: math.unit(210, "lb"),
  18973. name: "Back",
  18974. image: {
  18975. source: "./media/characters/hasani/back.svg",
  18976. extra: 244 / 232,
  18977. bottom: 0.01
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(6 + 1 / 12, "feet")
  18985. },
  18986. {
  18987. name: "Macro",
  18988. height: math.unit(175, "feet"),
  18989. default: true
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18995. {
  18996. front: {
  18997. height: math.unit(1.82, "meters"),
  18998. weight: math.unit(140, "lb"),
  18999. name: "Front",
  19000. image: {
  19001. source: "./media/characters/nita/front.svg",
  19002. extra: 2473 / 2363,
  19003. bottom: 0.01
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(1.82, "m")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(300, "m")
  19015. },
  19016. {
  19017. name: "Mistake Canon",
  19018. height: math.unit(0.5, "miles"),
  19019. default: true
  19020. },
  19021. {
  19022. name: "Big Mistake",
  19023. height: math.unit(13, "miles")
  19024. },
  19025. {
  19026. name: "Playing God",
  19027. height: math.unit(2450, "miles")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(4, "feet"),
  19036. weight: math.unit(120, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/shiriko/front.svg",
  19040. extra: 970/934,
  19041. bottom: 5/975
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(4, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(6, "feet"),
  19058. name: "front",
  19059. image: {
  19060. source: "./media/characters/deja/front.svg",
  19061. extra: 926 / 840,
  19062. bottom: 0.07
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Planck Length",
  19069. height: math.unit(1.6e-35, "meters")
  19070. },
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(30.48, "meters"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Universal",
  19078. height: math.unit(8.8e26, "meters")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19084. {
  19085. side: {
  19086. height: math.unit(8, "feet"),
  19087. weight: math.unit(6300, "lb"),
  19088. name: "Side",
  19089. image: {
  19090. source: "./media/characters/anima/side.svg",
  19091. bottom: 0.035
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(8, "feet"),
  19099. default: true
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(8, "feet"),
  19108. weight: math.unit(350, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/bianca/front.svg",
  19112. extra: 234 / 225,
  19113. bottom: 0.03
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(8, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(11 + 5/12, "feet"),
  19130. weight: math.unit(1200, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/adinia/front.svg",
  19134. extra: 1767/1641,
  19135. bottom: 44/1811
  19136. },
  19137. extraAttributes: {
  19138. "energyIntake": {
  19139. name: "Energy Intake",
  19140. power: 3,
  19141. type: "energy",
  19142. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19143. },
  19144. }
  19145. },
  19146. back: {
  19147. height: math.unit(11 + 5/12, "feet"),
  19148. weight: math.unit(1200, "lb"),
  19149. name: "Back",
  19150. image: {
  19151. source: "./media/characters/adinia/back.svg",
  19152. extra: 1834/1684,
  19153. bottom: 14/1848
  19154. },
  19155. extraAttributes: {
  19156. "energyIntake": {
  19157. name: "Energy Intake",
  19158. power: 3,
  19159. type: "energy",
  19160. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19161. },
  19162. }
  19163. },
  19164. maw: {
  19165. height: math.unit(3.79, "feet"),
  19166. name: "Maw",
  19167. image: {
  19168. source: "./media/characters/adinia/maw.svg"
  19169. }
  19170. },
  19171. rump: {
  19172. height: math.unit(4.6, "feet"),
  19173. name: "Rump",
  19174. image: {
  19175. source: "./media/characters/adinia/rump.svg"
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(11 + 5 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(3, "meters"),
  19192. weight: math.unit(200, "kg"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/lykasa/front.svg",
  19196. extra: 1076 / 976,
  19197. bottom: 0.06
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(3, "meters")
  19205. },
  19206. {
  19207. name: "Kaiju",
  19208. height: math.unit(120, "meters"),
  19209. default: true
  19210. },
  19211. {
  19212. name: "Mega Kaiju",
  19213. height: math.unit(240, "km")
  19214. },
  19215. {
  19216. name: "Giga Kaiju",
  19217. height: math.unit(400, "megameters")
  19218. },
  19219. {
  19220. name: "Tera Kaiju",
  19221. height: math.unit(800, "gigameters")
  19222. },
  19223. {
  19224. name: "Kaiju Dragon Goddess",
  19225. height: math.unit(26, "zettaparsecs")
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19231. {
  19232. side: {
  19233. height: math.unit(283 / 124 * 6, "feet"),
  19234. weight: math.unit(35000, "lb"),
  19235. name: "Side",
  19236. image: {
  19237. source: "./media/characters/malfaren/side.svg",
  19238. extra: 1310/529,
  19239. bottom: 24/1334
  19240. }
  19241. },
  19242. front: {
  19243. height: math.unit(22.36, "feet"),
  19244. weight: math.unit(35000, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/malfaren/front.svg",
  19248. extra: 1237/1115,
  19249. bottom: 32/1269
  19250. }
  19251. },
  19252. maw: {
  19253. height: math.unit(6.9, "feet"),
  19254. name: "Maw",
  19255. image: {
  19256. source: "./media/characters/malfaren/maw.svg"
  19257. }
  19258. },
  19259. dick: {
  19260. height: math.unit(6.19, "feet"),
  19261. name: "Dick",
  19262. image: {
  19263. source: "./media/characters/malfaren/dick.svg"
  19264. }
  19265. },
  19266. eye: {
  19267. height: math.unit(0.69, "feet"),
  19268. name: "Eye",
  19269. image: {
  19270. source: "./media/characters/malfaren/eye.svg"
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Big",
  19277. height: math.unit(283 / 162 * 6, "feet"),
  19278. },
  19279. {
  19280. name: "Bigger",
  19281. height: math.unit(283 / 124 * 6, "feet")
  19282. },
  19283. {
  19284. name: "Massive",
  19285. height: math.unit(283 / 92 * 6, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "👀💦",
  19290. height: math.unit(283 / 73 * 6, "feet"),
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(1.7, "m"),
  19299. weight: math.unit(70, "kg"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/kernel/front.svg",
  19303. extra: 222 / 210,
  19304. bottom: 0.007
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Nano",
  19311. height: math.unit(17, "micrometers")
  19312. },
  19313. {
  19314. name: "Micro",
  19315. height: math.unit(1.7, "mm")
  19316. },
  19317. {
  19318. name: "Small",
  19319. height: math.unit(1.7, "cm")
  19320. },
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(1.7, "m"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(1.75, "meters"),
  19333. weight: math.unit(65, "kg"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/jayne-folest/front.svg",
  19337. extra: 2115 / 2007,
  19338. bottom: 0.02
  19339. }
  19340. },
  19341. back: {
  19342. height: math.unit(1.75, "meters"),
  19343. weight: math.unit(65, "kg"),
  19344. name: "Back",
  19345. image: {
  19346. source: "./media/characters/jayne-folest/back.svg",
  19347. extra: 2115 / 2007,
  19348. bottom: 0.005
  19349. }
  19350. },
  19351. frontClothed: {
  19352. height: math.unit(1.75, "meters"),
  19353. weight: math.unit(65, "kg"),
  19354. name: "Front (Clothed)",
  19355. image: {
  19356. source: "./media/characters/jayne-folest/front-clothed.svg",
  19357. extra: 2115 / 2007,
  19358. bottom: 0.035
  19359. }
  19360. },
  19361. hand: {
  19362. height: math.unit(1 / 1.260, "feet"),
  19363. name: "Hand",
  19364. image: {
  19365. source: "./media/characters/jayne-folest/hand.svg"
  19366. }
  19367. },
  19368. foot: {
  19369. height: math.unit(1 / 0.918, "feet"),
  19370. name: "Foot",
  19371. image: {
  19372. source: "./media/characters/jayne-folest/foot.svg"
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Micro",
  19379. height: math.unit(4, "cm")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(1.75, "meters")
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(47.5, "meters"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(180, "cm"),
  19397. weight: math.unit(70, "kg"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/algier/front.svg",
  19401. extra: 596 / 572,
  19402. bottom: 0.04
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(180, "cm"),
  19407. weight: math.unit(70, "kg"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/algier/back.svg",
  19411. extra: 596 / 572,
  19412. bottom: 0.025
  19413. }
  19414. },
  19415. frontdressed: {
  19416. height: math.unit(180, "cm"),
  19417. weight: math.unit(150, "kg"),
  19418. name: "Front-dressed",
  19419. image: {
  19420. source: "./media/characters/algier/front-dressed.svg",
  19421. extra: 596 / 572,
  19422. bottom: 0.038
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Micro",
  19429. height: math.unit(5, "cm")
  19430. },
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(180, "cm"),
  19434. default: true
  19435. },
  19436. {
  19437. name: "Macro",
  19438. height: math.unit(64, "m")
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19444. {
  19445. upright: {
  19446. height: math.unit(7, "feet"),
  19447. weight: math.unit(300, "lb"),
  19448. name: "Upright",
  19449. image: {
  19450. source: "./media/characters/pretzel/upright.svg",
  19451. extra: 534 / 522,
  19452. bottom: 0.065
  19453. }
  19454. },
  19455. sprawling: {
  19456. height: math.unit(3.75, "feet"),
  19457. weight: math.unit(300, "lb"),
  19458. name: "Sprawling",
  19459. image: {
  19460. source: "./media/characters/pretzel/sprawling.svg",
  19461. extra: 314 / 281,
  19462. bottom: 0.1
  19463. }
  19464. },
  19465. tongue: {
  19466. height: math.unit(2, "feet"),
  19467. name: "Tongue",
  19468. image: {
  19469. source: "./media/characters/pretzel/tongue.svg"
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(7, "feet"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Oversized",
  19481. height: math.unit(15, "feet")
  19482. },
  19483. {
  19484. name: "Huge",
  19485. height: math.unit(30, "feet")
  19486. },
  19487. {
  19488. name: "Macro",
  19489. height: math.unit(250, "feet")
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19495. {
  19496. sideFront: {
  19497. height: math.unit(5 + 2 / 12, "feet"),
  19498. weight: math.unit(120, "lb"),
  19499. name: "Front Side",
  19500. image: {
  19501. source: "./media/characters/roxi/side-front.svg",
  19502. extra: 2924 / 2717,
  19503. bottom: 0.08
  19504. }
  19505. },
  19506. sideBack: {
  19507. height: math.unit(5 + 2 / 12, "feet"),
  19508. weight: math.unit(120, "lb"),
  19509. name: "Back Side",
  19510. image: {
  19511. source: "./media/characters/roxi/side-back.svg",
  19512. extra: 2904 / 2693,
  19513. bottom: 0.06
  19514. }
  19515. },
  19516. front: {
  19517. height: math.unit(5 + 2 / 12, "feet"),
  19518. weight: math.unit(120, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/roxi/front.svg",
  19522. extra: 2028 / 1907,
  19523. bottom: 0.01
  19524. }
  19525. },
  19526. frontAlt: {
  19527. height: math.unit(5 + 2 / 12, "feet"),
  19528. weight: math.unit(120, "lb"),
  19529. name: "Front (Alt)",
  19530. image: {
  19531. source: "./media/characters/roxi/front-alt.svg",
  19532. extra: 1828 / 1798,
  19533. bottom: 0.01
  19534. }
  19535. },
  19536. sitting: {
  19537. height: math.unit(2.8, "feet"),
  19538. weight: math.unit(120, "lb"),
  19539. name: "Sitting",
  19540. image: {
  19541. source: "./media/characters/roxi/sitting.svg",
  19542. extra: 2660 / 2462,
  19543. bottom: 0.1
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(5 + 2 / 12, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19557. {
  19558. side: {
  19559. height: math.unit(55, "feet"),
  19560. weight: math.unit(153, "tons"),
  19561. name: "Side",
  19562. image: {
  19563. source: "./media/characters/shadow/side.svg",
  19564. extra: 701 / 628,
  19565. bottom: 0.02
  19566. }
  19567. },
  19568. flying: {
  19569. height: math.unit(145, "feet"),
  19570. weight: math.unit(153, "tons"),
  19571. name: "Flying",
  19572. image: {
  19573. source: "./media/characters/shadow/flying.svg"
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(55, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(6, "feet"),
  19590. weight: math.unit(200, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/marcie/front.svg",
  19594. extra: 960 / 876,
  19595. bottom: 58 / 1017.87
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(1, "mile"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(7, "feet"),
  19612. weight: math.unit(200, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/kachina/front.svg",
  19616. extra: 1290.68 / 1119,
  19617. bottom: 36.5 / 1327.18
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(7, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19631. {
  19632. looking: {
  19633. height: math.unit(2, "meters"),
  19634. weight: math.unit(300, "kg"),
  19635. name: "Looking",
  19636. image: {
  19637. source: "./media/characters/kash/looking.svg",
  19638. extra: 474 / 344,
  19639. bottom: 0.03
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(2, "meters"),
  19644. weight: math.unit(300, "kg"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/kash/side.svg",
  19648. extra: 302 / 251,
  19649. bottom: 0.03
  19650. }
  19651. },
  19652. front: {
  19653. height: math.unit(2, "meters"),
  19654. weight: math.unit(300, "kg"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/kash/front.svg",
  19658. extra: 495 / 360,
  19659. bottom: 0.015
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(2, "meters"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Big",
  19671. height: math.unit(3, "meters")
  19672. },
  19673. {
  19674. name: "Large",
  19675. height: math.unit(5, "meters")
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19681. {
  19682. feeding: {
  19683. height: math.unit(6.7, "feet"),
  19684. weight: math.unit(350, "lb"),
  19685. name: "Feeding",
  19686. image: {
  19687. source: "./media/characters/lalim/feeding.svg",
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(6.7, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(9.5, "feet"),
  19704. weight: math.unit(600, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/de'vout/front.svg",
  19708. extra: 1443 / 1328,
  19709. bottom: 0.025
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(9.5, "feet"),
  19714. weight: math.unit(600, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/de'vout/back.svg",
  19718. extra: 1443 / 1328
  19719. }
  19720. },
  19721. frontDressed: {
  19722. height: math.unit(9.5, "feet"),
  19723. weight: math.unit(600, "lb"),
  19724. name: "Front (Dressed",
  19725. image: {
  19726. source: "./media/characters/de'vout/front-dressed.svg",
  19727. extra: 1443 / 1328,
  19728. bottom: 0.025
  19729. }
  19730. },
  19731. backDressed: {
  19732. height: math.unit(9.5, "feet"),
  19733. weight: math.unit(600, "lb"),
  19734. name: "Back (Dressed",
  19735. image: {
  19736. source: "./media/characters/de'vout/back-dressed.svg",
  19737. extra: 1443 / 1328
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(9.5, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19751. {
  19752. front: {
  19753. height: math.unit(8, "feet"),
  19754. weight: math.unit(225, "lb"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/talana/front.svg",
  19758. extra: 1410 / 1300,
  19759. bottom: 0.015
  19760. }
  19761. },
  19762. frontDressed: {
  19763. height: math.unit(8, "feet"),
  19764. weight: math.unit(225, "lb"),
  19765. name: "Front (Dressed",
  19766. image: {
  19767. source: "./media/characters/talana/front-dressed.svg",
  19768. extra: 1410 / 1300,
  19769. bottom: 0.015
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(8, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19783. {
  19784. side: {
  19785. height: math.unit(7.2, "feet"),
  19786. weight: math.unit(150, "lb"),
  19787. name: "Side",
  19788. image: {
  19789. source: "./media/characters/xeauvok/side.svg",
  19790. extra: 1975 / 1523,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(7.2, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19805. {
  19806. side: {
  19807. height: math.unit(4, "meters"),
  19808. weight: math.unit(2200, "kg"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/zara/side.svg",
  19812. extra: 765/744,
  19813. bottom: 156/921
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(4, "meters"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19827. {
  19828. side: {
  19829. height: math.unit(6, "feet"),
  19830. weight: math.unit(150, "lb"),
  19831. name: "Side",
  19832. image: {
  19833. source: "./media/characters/richard-dragon/side.svg",
  19834. extra: 845 / 340,
  19835. bottom: 0.017
  19836. }
  19837. },
  19838. maw: {
  19839. height: math.unit(2.97, "feet"),
  19840. name: "Maw",
  19841. image: {
  19842. source: "./media/characters/richard-dragon/maw.svg"
  19843. }
  19844. },
  19845. },
  19846. [
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(4, "feet"),
  19854. weight: math.unit(100, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/richard-smeargle/front.svg",
  19858. extra: 2952 / 2820,
  19859. bottom: 0.028
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(4, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Dynamax",
  19871. height: math.unit(20, "meters")
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19877. {
  19878. front: {
  19879. height: math.unit(6, "feet"),
  19880. weight: math.unit(110, "lb"),
  19881. name: "Front",
  19882. image: {
  19883. source: "./media/characters/klay/front.svg",
  19884. extra: 962 / 883,
  19885. bottom: 0.04
  19886. }
  19887. },
  19888. back: {
  19889. height: math.unit(6, "feet"),
  19890. weight: math.unit(110, "lb"),
  19891. name: "Back",
  19892. image: {
  19893. source: "./media/characters/klay/back.svg",
  19894. extra: 962 / 883
  19895. }
  19896. },
  19897. beans: {
  19898. height: math.unit(1.15, "feet"),
  19899. name: "Beans",
  19900. image: {
  19901. source: "./media/characters/klay/beans.svg"
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Micro",
  19908. height: math.unit(6, "inches")
  19909. },
  19910. {
  19911. name: "Mini",
  19912. height: math.unit(3, "feet")
  19913. },
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(6, "feet"),
  19917. default: true
  19918. },
  19919. {
  19920. name: "Big",
  19921. height: math.unit(25, "feet")
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(100, "feet")
  19926. },
  19927. {
  19928. name: "Megamacro",
  19929. height: math.unit(400, "feet")
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(6, "feet"),
  19938. weight: math.unit(160, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/marcus/front.svg",
  19942. extra: 734 / 676,
  19943. bottom: 0.03
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Little",
  19950. height: math.unit(6, "feet")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(110, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(250, "feet")
  19960. },
  19961. {
  19962. name: "Megamacro",
  19963. height: math.unit(1000, "feet")
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(7, "feet"),
  19972. weight: math.unit(275, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/claude-delroute/front.svg",
  19976. extra: 902/827,
  19977. bottom: 26/928
  19978. }
  19979. },
  19980. side: {
  19981. height: math.unit(7, "feet"),
  19982. weight: math.unit(275, "lb"),
  19983. name: "Side",
  19984. image: {
  19985. source: "./media/characters/claude-delroute/side.svg",
  19986. extra: 908/853,
  19987. bottom: 16/924
  19988. }
  19989. },
  19990. back: {
  19991. height: math.unit(7, "feet"),
  19992. weight: math.unit(275, "lb"),
  19993. name: "Back",
  19994. image: {
  19995. source: "./media/characters/claude-delroute/back.svg",
  19996. extra: 911/829,
  19997. bottom: 18/929
  19998. }
  19999. },
  20000. maw: {
  20001. height: math.unit(0.6407, "meters"),
  20002. name: "Maw",
  20003. image: {
  20004. source: "./media/characters/claude-delroute/maw.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(7, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Lorge",
  20016. height: math.unit(20, "feet")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(8 + 4 / 12, "feet"),
  20025. weight: math.unit(600, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/dragonien/front.svg",
  20029. extra: 100 / 94,
  20030. bottom: 3.3 / 103.3445
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(8 + 4 / 12, "feet"),
  20035. weight: math.unit(600, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/dragonien/back.svg",
  20039. extra: 776 / 746,
  20040. bottom: 6.4 / 782.0616
  20041. }
  20042. },
  20043. foot: {
  20044. height: math.unit(1.54, "feet"),
  20045. name: "Foot",
  20046. image: {
  20047. source: "./media/characters/dragonien/foot.svg",
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(8 + 4 / 12, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(200, "feet")
  20060. },
  20061. {
  20062. name: "Megamacro",
  20063. height: math.unit(1, "mile")
  20064. },
  20065. {
  20066. name: "Gigamacro",
  20067. height: math.unit(1000, "miles")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 2 / 12, "feet"),
  20076. weight: math.unit(110, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/desta/front.svg",
  20080. extra: 767 / 726,
  20081. bottom: 11.7 / 779
  20082. }
  20083. },
  20084. back: {
  20085. height: math.unit(5 + 2 / 12, "feet"),
  20086. weight: math.unit(110, "lb"),
  20087. name: "Back",
  20088. image: {
  20089. source: "./media/characters/desta/back.svg",
  20090. extra: 777 / 728,
  20091. bottom: 6 / 784
  20092. }
  20093. },
  20094. frontAlt: {
  20095. height: math.unit(5 + 2 / 12, "feet"),
  20096. weight: math.unit(110, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/desta/front-alt.svg",
  20100. extra: 1482 / 1417
  20101. }
  20102. },
  20103. side: {
  20104. height: math.unit(5 + 2 / 12, "feet"),
  20105. weight: math.unit(110, "lb"),
  20106. name: "Side",
  20107. image: {
  20108. source: "./media/characters/desta/side.svg",
  20109. extra: 2579 / 2491,
  20110. bottom: 0.053
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Micro",
  20117. height: math.unit(6, "inches")
  20118. },
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(5 + 2 / 12, "feet"),
  20122. default: true
  20123. },
  20124. {
  20125. name: "Macro",
  20126. height: math.unit(62, "feet")
  20127. },
  20128. {
  20129. name: "Megamacro",
  20130. height: math.unit(1800, "feet")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(10, "feet"),
  20139. weight: math.unit(700, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/storm-alystar/front.svg",
  20143. extra: 2112 / 1898,
  20144. bottom: 0.034
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Micro",
  20151. height: math.unit(3.5, "inches")
  20152. },
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(10, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(400, "feet")
  20161. },
  20162. {
  20163. name: "Deific",
  20164. height: math.unit(60, "miles")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(2.35, "meters"),
  20173. weight: math.unit(119, "kg"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/ilia/front.svg",
  20177. extra: 1285 / 1255,
  20178. bottom: 0.06
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(2.35, "meters")
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(140, "meters"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(100, "miles")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(6 + 5 / 12, "feet"),
  20203. weight: math.unit(190, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/kingdead/front.svg",
  20207. extra: 1228 / 1177
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Micro",
  20214. height: math.unit(7, "inches")
  20215. },
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6 + 5 / 12, "feet")
  20219. },
  20220. {
  20221. name: "Macro",
  20222. height: math.unit(150, "feet"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Megamacro",
  20227. height: math.unit(200, "miles")
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20233. {
  20234. front: {
  20235. height: math.unit(8, "feet"),
  20236. weight: math.unit(600, "lb"),
  20237. name: "Front",
  20238. image: {
  20239. source: "./media/characters/kyrehx/front.svg",
  20240. extra: 1195 / 1095,
  20241. bottom: 0.034
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(2, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(8, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(255, "feet")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20266. weight: math.unit(184, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/xang/front.svg",
  20270. extra: 845 / 755
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20278. default: true
  20279. },
  20280. {
  20281. name: "Macro",
  20282. height: math.unit(0.935 * 146, "feet")
  20283. },
  20284. {
  20285. name: "Megamacro",
  20286. height: math.unit(0.935 * 3, "miles")
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20292. {
  20293. frontDressed: {
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. weight: math.unit(140, "lb"),
  20296. name: "Front (Dressed)",
  20297. image: {
  20298. source: "./media/characters/doc-weardno/front-dressed.svg",
  20299. extra: 263 / 234
  20300. }
  20301. },
  20302. backDressed: {
  20303. height: math.unit(5 + 7 / 12, "feet"),
  20304. weight: math.unit(140, "lb"),
  20305. name: "Back (Dressed)",
  20306. image: {
  20307. source: "./media/characters/doc-weardno/back-dressed.svg",
  20308. extra: 266 / 238
  20309. }
  20310. },
  20311. front: {
  20312. height: math.unit(5 + 7 / 12, "feet"),
  20313. weight: math.unit(140, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/doc-weardno/front.svg",
  20317. extra: 254 / 233
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Micro",
  20324. height: math.unit(3, "inches")
  20325. },
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(5 + 7 / 12, "feet"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(25, "feet")
  20334. },
  20335. {
  20336. name: "Megamacro",
  20337. height: math.unit(2, "miles")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20343. {
  20344. front: {
  20345. height: math.unit(6 + 2 / 12, "feet"),
  20346. weight: math.unit(153, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/seth-whilst/front.svg",
  20350. bottom: 0.07
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Micro",
  20357. height: math.unit(5, "inches")
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(6 + 2 / 12, "feet"),
  20362. default: true
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(3, "inches"),
  20371. weight: math.unit(8, "grams"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/pocket-jabari/front.svg",
  20375. extra: 1024 / 974,
  20376. bottom: 0.039
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Minimicro",
  20383. height: math.unit(8, "mm")
  20384. },
  20385. {
  20386. name: "Micro",
  20387. height: math.unit(3, "inches"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(3, "feet")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20398. {
  20399. frontDressed: {
  20400. height: math.unit(15, "feet"),
  20401. weight: math.unit(3280, "lb"),
  20402. name: "Front (Dressed)",
  20403. image: {
  20404. source: "./media/characters/sapphy/front-dressed.svg",
  20405. extra: 1951/1654,
  20406. bottom: 194/2145
  20407. },
  20408. form: "anthro",
  20409. default: true
  20410. },
  20411. backDressed: {
  20412. height: math.unit(15, "feet"),
  20413. weight: math.unit(3280, "lb"),
  20414. name: "Back (Dressed)",
  20415. image: {
  20416. source: "./media/characters/sapphy/back-dressed.svg",
  20417. extra: 2058/1918,
  20418. bottom: 125/2183
  20419. },
  20420. form: "anthro"
  20421. },
  20422. frontNude: {
  20423. height: math.unit(15, "feet"),
  20424. weight: math.unit(3280, "lb"),
  20425. name: "Front (Nude)",
  20426. image: {
  20427. source: "./media/characters/sapphy/front-nude.svg",
  20428. extra: 1951/1654,
  20429. bottom: 194/2145
  20430. },
  20431. form: "anthro"
  20432. },
  20433. backNude: {
  20434. height: math.unit(15, "feet"),
  20435. weight: math.unit(3280, "lb"),
  20436. name: "Back (Nude)",
  20437. image: {
  20438. source: "./media/characters/sapphy/back-nude.svg",
  20439. extra: 2058/1918,
  20440. bottom: 125/2183
  20441. },
  20442. form: "anthro"
  20443. },
  20444. full: {
  20445. height: math.unit(15, "feet"),
  20446. weight: math.unit(3280, "lb"),
  20447. name: "Full",
  20448. image: {
  20449. source: "./media/characters/sapphy/full.svg",
  20450. extra: 1396/1317,
  20451. bottom: 44/1440
  20452. },
  20453. form: "anthro"
  20454. },
  20455. dick: {
  20456. height: math.unit(3.8, "feet"),
  20457. name: "Dick",
  20458. image: {
  20459. source: "./media/characters/sapphy/dick.svg"
  20460. },
  20461. form: "anthro"
  20462. },
  20463. feral: {
  20464. height: math.unit(35, "feet"),
  20465. weight: math.unit(160, "tons"),
  20466. name: "Feral",
  20467. image: {
  20468. source: "./media/characters/sapphy/feral.svg",
  20469. extra: 1050/573,
  20470. bottom: 60/1110
  20471. },
  20472. form: "feral",
  20473. default: true
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(15, "feet"),
  20480. form: "anthro"
  20481. },
  20482. {
  20483. name: "Casual Macro",
  20484. height: math.unit(120, "feet"),
  20485. form: "anthro"
  20486. },
  20487. {
  20488. name: "Macro",
  20489. height: math.unit(2150, "feet"),
  20490. default: true,
  20491. form: "anthro"
  20492. },
  20493. {
  20494. name: "Megamacro",
  20495. height: math.unit(8, "miles"),
  20496. form: "anthro"
  20497. },
  20498. {
  20499. name: "Galaxy Mom",
  20500. height: math.unit(6, "megalightyears"),
  20501. form: "anthro"
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(35, "feet"),
  20506. form: "feral",
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(300, "feet"),
  20512. form: "feral"
  20513. },
  20514. {
  20515. name: "Galaxy Mom",
  20516. height: math.unit(10, "megalightyears"),
  20517. form: "feral"
  20518. },
  20519. ],
  20520. {
  20521. "anthro": {
  20522. name: "Anthro",
  20523. default: true
  20524. },
  20525. "feral": {
  20526. name: "Feral"
  20527. }
  20528. }
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20532. {
  20533. hyenaFront: {
  20534. height: math.unit(6, "feet"),
  20535. weight: math.unit(190, "lb"),
  20536. name: "Front",
  20537. image: {
  20538. source: "./media/characters/kiro/hyena-front.svg",
  20539. extra: 927/839,
  20540. bottom: 91/1018
  20541. },
  20542. form: "hyena",
  20543. default: true
  20544. },
  20545. front: {
  20546. height: math.unit(6, "feet"),
  20547. weight: math.unit(170, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/kiro/front.svg",
  20551. extra: 1064 / 1012,
  20552. bottom: 0.052
  20553. },
  20554. form: "folf",
  20555. default: true
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Micro",
  20561. height: math.unit(6, "inches"),
  20562. form: "folf"
  20563. },
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(6, "feet"),
  20567. form: "folf",
  20568. default: true
  20569. },
  20570. {
  20571. name: "Macro",
  20572. height: math.unit(72, "feet"),
  20573. form: "folf"
  20574. },
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(6, "inches"),
  20578. form: "hyena"
  20579. },
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(6, "feet"),
  20583. form: "hyena",
  20584. default: true
  20585. },
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(72, "feet"),
  20589. form: "hyena"
  20590. },
  20591. ],
  20592. {
  20593. "hyena": {
  20594. name: "Hyena",
  20595. default: true
  20596. },
  20597. "folf": {
  20598. name: "Folf",
  20599. },
  20600. }
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(5 + 9 / 12, "feet"),
  20607. weight: math.unit(175, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/irishfox/front.svg",
  20611. extra: 1912 / 1680,
  20612. bottom: 0.02
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Nano",
  20619. height: math.unit(1, "mm")
  20620. },
  20621. {
  20622. name: "Micro",
  20623. height: math.unit(2, "inches")
  20624. },
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 9 / 12, "feet"),
  20628. default: true
  20629. },
  20630. {
  20631. name: "Macro",
  20632. height: math.unit(45, "feet")
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(6 + 1 / 12, "feet"),
  20641. weight: math.unit(75, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/aronai-sieyes/front.svg",
  20645. extra: 1532/1450,
  20646. bottom: 42/1574
  20647. }
  20648. },
  20649. side: {
  20650. height: math.unit(6 + 1 / 12, "feet"),
  20651. weight: math.unit(75, "lb"),
  20652. name: "Side",
  20653. image: {
  20654. source: "./media/characters/aronai-sieyes/side.svg",
  20655. extra: 1422/1365,
  20656. bottom: 148/1570
  20657. }
  20658. },
  20659. back: {
  20660. height: math.unit(6 + 1 / 12, "feet"),
  20661. weight: math.unit(75, "lb"),
  20662. name: "Back",
  20663. image: {
  20664. source: "./media/characters/aronai-sieyes/back.svg",
  20665. extra: 1526/1464,
  20666. bottom: 51/1577
  20667. }
  20668. },
  20669. dressed: {
  20670. height: math.unit(6 + 1 / 12, "feet"),
  20671. weight: math.unit(75, "lb"),
  20672. name: "Dressed",
  20673. image: {
  20674. source: "./media/characters/aronai-sieyes/dressed.svg",
  20675. extra: 1559/1483,
  20676. bottom: 39/1598
  20677. }
  20678. },
  20679. slit: {
  20680. height: math.unit(1.3, "feet"),
  20681. name: "Slit",
  20682. image: {
  20683. source: "./media/characters/aronai-sieyes/slit.svg"
  20684. }
  20685. },
  20686. slitSpread: {
  20687. height: math.unit(0.9, "feet"),
  20688. name: "Slit (Spread)",
  20689. image: {
  20690. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20691. }
  20692. },
  20693. rump: {
  20694. height: math.unit(1.3, "feet"),
  20695. name: "Rump",
  20696. image: {
  20697. source: "./media/characters/aronai-sieyes/rump.svg"
  20698. }
  20699. },
  20700. maw: {
  20701. height: math.unit(1.25, "feet"),
  20702. name: "Maw",
  20703. image: {
  20704. source: "./media/characters/aronai-sieyes/maw.svg"
  20705. }
  20706. },
  20707. feral: {
  20708. height: math.unit(18, "feet"),
  20709. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20710. name: "Feral",
  20711. image: {
  20712. source: "./media/characters/aronai-sieyes/feral.svg",
  20713. extra: 1530 / 1240,
  20714. bottom: 0.035
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(2, "inches")
  20722. },
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 1 / 12, "feet"),
  20726. default: true
  20727. }
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(12, "feet"),
  20735. weight: math.unit(410, "kg"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/xuna/front.svg",
  20739. extra: 2184 / 1980
  20740. }
  20741. },
  20742. side: {
  20743. height: math.unit(12, "feet"),
  20744. weight: math.unit(410, "kg"),
  20745. name: "Side",
  20746. image: {
  20747. source: "./media/characters/xuna/side.svg",
  20748. extra: 2184 / 1980
  20749. }
  20750. },
  20751. back: {
  20752. height: math.unit(12, "feet"),
  20753. weight: math.unit(410, "kg"),
  20754. name: "Back",
  20755. image: {
  20756. source: "./media/characters/xuna/back.svg",
  20757. extra: 2184 / 1980
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Nano glow",
  20764. height: math.unit(10, "nm")
  20765. },
  20766. {
  20767. name: "Micro floof",
  20768. height: math.unit(0.3, "m")
  20769. },
  20770. {
  20771. name: "Huggable softy boi",
  20772. height: math.unit(3.6576, "m"),
  20773. default: true
  20774. },
  20775. {
  20776. name: "Admirable floof",
  20777. height: math.unit(80, "meters")
  20778. },
  20779. {
  20780. name: "Gentle macro",
  20781. height: math.unit(300, "meters")
  20782. },
  20783. {
  20784. name: "Very careful floof",
  20785. height: math.unit(3200, "meters")
  20786. },
  20787. {
  20788. name: "The mega floof",
  20789. height: math.unit(36000, "meters")
  20790. },
  20791. {
  20792. name: "Giga-fur-Wicker",
  20793. height: math.unit(4800000, "meters")
  20794. },
  20795. {
  20796. name: "Licky world",
  20797. height: math.unit(20000000, "meters")
  20798. },
  20799. {
  20800. name: "Floofy cyan sun",
  20801. height: math.unit(1500000000, "meters")
  20802. },
  20803. {
  20804. name: "Milky Wicker",
  20805. height: math.unit(1000000000000000000000, "meters")
  20806. },
  20807. {
  20808. name: "The observing Wicker",
  20809. height: math.unit(999999999999999999999999999, "meters")
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 9 / 12, "feet"),
  20818. weight: math.unit(150, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/arokha-sieyes/front.svg",
  20822. extra: 1425 / 1284,
  20823. bottom: 0.05
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 9 / 12, "feet")
  20831. },
  20832. {
  20833. name: "Macro",
  20834. height: math.unit(30, "meters"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6, "feet"),
  20844. weight: math.unit(180, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/arokh-sieyes/front.svg",
  20848. extra: 1830 / 1769,
  20849. bottom: 0.01
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6, "feet")
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(30, "meters"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20867. {
  20868. side: {
  20869. height: math.unit(13 + 1 / 12, "feet"),
  20870. weight: math.unit(8.5, "tonnes"),
  20871. preyCapacity: math.unit(36, "people"),
  20872. name: "Side",
  20873. image: {
  20874. source: "./media/characters/goldeneye/side.svg",
  20875. extra: 1139/741,
  20876. bottom: 98/1237
  20877. }
  20878. },
  20879. front: {
  20880. height: math.unit(5.1, "feet"),
  20881. weight: math.unit(8.5, "tonnes"),
  20882. preyCapacity: math.unit(36, "people"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/goldeneye/front.svg",
  20886. extra: 635/365,
  20887. bottom: 598/1233
  20888. }
  20889. },
  20890. maw: {
  20891. height: math.unit(6.6, "feet"),
  20892. name: "Maw",
  20893. image: {
  20894. source: "./media/characters/goldeneye/maw.svg"
  20895. }
  20896. },
  20897. headFront: {
  20898. height: math.unit(8, "feet"),
  20899. name: "Head (Front)",
  20900. image: {
  20901. source: "./media/characters/goldeneye/head-front.svg"
  20902. }
  20903. },
  20904. headSide: {
  20905. height: math.unit(6, "feet"),
  20906. name: "Head (Side)",
  20907. image: {
  20908. source: "./media/characters/goldeneye/head-side.svg"
  20909. }
  20910. },
  20911. headBack: {
  20912. height: math.unit(8, "feet"),
  20913. name: "Head (Back)",
  20914. image: {
  20915. source: "./media/characters/goldeneye/head-back.svg"
  20916. }
  20917. },
  20918. paw: {
  20919. height: math.unit(3.4, "feet"),
  20920. name: "Paw",
  20921. image: {
  20922. source: "./media/characters/goldeneye/paw.svg"
  20923. }
  20924. },
  20925. toering: {
  20926. height: math.unit(0.45, "feet"),
  20927. name: "Toering",
  20928. image: {
  20929. source: "./media/characters/goldeneye/toering.svg"
  20930. }
  20931. },
  20932. eyes: {
  20933. height: math.unit(0.5, "feet"),
  20934. name: "Eyes",
  20935. image: {
  20936. source: "./media/characters/goldeneye/eyes.svg"
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(13 + 1 / 12, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20950. {
  20951. front: {
  20952. height: math.unit(6 + 1 / 12, "feet"),
  20953. weight: math.unit(210, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/leonardo-lycheborne/front.svg",
  20957. extra: 776/723,
  20958. bottom: 34/810
  20959. }
  20960. },
  20961. side: {
  20962. height: math.unit(6 + 1 / 12, "feet"),
  20963. weight: math.unit(210, "lb"),
  20964. name: "Side",
  20965. image: {
  20966. source: "./media/characters/leonardo-lycheborne/side.svg",
  20967. extra: 780/728,
  20968. bottom: 12/792
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(6 + 1 / 12, "feet"),
  20973. weight: math.unit(210, "lb"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/leonardo-lycheborne/back.svg",
  20977. extra: 775/721,
  20978. bottom: 17/792
  20979. }
  20980. },
  20981. hand: {
  20982. height: math.unit(1.08, "feet"),
  20983. name: "Hand",
  20984. image: {
  20985. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20986. }
  20987. },
  20988. foot: {
  20989. height: math.unit(1.32, "feet"),
  20990. name: "Foot",
  20991. image: {
  20992. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20993. }
  20994. },
  20995. maw: {
  20996. height: math.unit(1, "feet"),
  20997. name: "Maw",
  20998. image: {
  20999. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21000. }
  21001. },
  21002. were: {
  21003. height: math.unit(20, "feet"),
  21004. weight: math.unit(7800, "lb"),
  21005. name: "Were",
  21006. image: {
  21007. source: "./media/characters/leonardo-lycheborne/were.svg",
  21008. extra: 1224/1165,
  21009. bottom: 72/1296
  21010. }
  21011. },
  21012. feral: {
  21013. height: math.unit(7.5, "feet"),
  21014. weight: math.unit(600, "lb"),
  21015. name: "Feral",
  21016. image: {
  21017. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21018. extra: 797/702,
  21019. bottom: 139/936
  21020. }
  21021. },
  21022. taur: {
  21023. height: math.unit(11, "feet"),
  21024. weight: math.unit(3300, "lb"),
  21025. name: "Taur",
  21026. image: {
  21027. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21028. extra: 1271/1197,
  21029. bottom: 47/1318
  21030. }
  21031. },
  21032. barghest: {
  21033. height: math.unit(11, "feet"),
  21034. weight: math.unit(1300, "lb"),
  21035. name: "Barghest",
  21036. image: {
  21037. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21038. extra: 1291/1204,
  21039. bottom: 37/1328
  21040. }
  21041. },
  21042. dick: {
  21043. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21044. name: "Dick",
  21045. image: {
  21046. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21047. }
  21048. },
  21049. dickWere: {
  21050. height: math.unit((20) / 3.8, "feet"),
  21051. name: "Dick (Were)",
  21052. image: {
  21053. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(6 + 1 / 12, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(10, "feet"),
  21070. weight: math.unit(350, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/jet/front.svg",
  21074. extra: 2050 / 1980,
  21075. bottom: 0.013
  21076. }
  21077. },
  21078. back: {
  21079. height: math.unit(10, "feet"),
  21080. weight: math.unit(350, "lb"),
  21081. name: "Back",
  21082. image: {
  21083. source: "./media/characters/jet/back.svg",
  21084. extra: 2050 / 1980,
  21085. bottom: 0.013
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(6, "inches")
  21093. },
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(10, "feet"),
  21097. default: true
  21098. },
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(100, "feet")
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(15, "feet"),
  21110. weight: math.unit(2800, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/tanarath/front.svg",
  21114. extra: 2392 / 2220,
  21115. bottom: 0.03
  21116. }
  21117. },
  21118. back: {
  21119. height: math.unit(15, "feet"),
  21120. weight: math.unit(2800, "lb"),
  21121. name: "Back",
  21122. image: {
  21123. source: "./media/characters/tanarath/back.svg",
  21124. extra: 2392 / 2220,
  21125. bottom: 0.03
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(15, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(7 + 1 / 12, "feet"),
  21142. weight: math.unit(175, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/patty-cattybatty/front.svg",
  21146. extra: 908 / 874,
  21147. bottom: 0.025
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Micro",
  21154. height: math.unit(1, "inch")
  21155. },
  21156. {
  21157. name: "Normal",
  21158. height: math.unit(7 + 1 / 12, "feet")
  21159. },
  21160. {
  21161. name: "Mini Macro",
  21162. height: math.unit(155, "feet")
  21163. },
  21164. {
  21165. name: "Macro",
  21166. height: math.unit(1077, "feet")
  21167. },
  21168. {
  21169. name: "Mega Macro",
  21170. height: math.unit(47650, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Giga Macro",
  21175. height: math.unit(440, "miles")
  21176. },
  21177. {
  21178. name: "Tera Macro",
  21179. height: math.unit(8700, "miles")
  21180. },
  21181. {
  21182. name: "Planetary Macro",
  21183. height: math.unit(32700, "miles")
  21184. },
  21185. {
  21186. name: "Solar Macro",
  21187. height: math.unit(550000, "miles")
  21188. },
  21189. {
  21190. name: "Celestial Macro",
  21191. height: math.unit(2.5, "AU")
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(4 + 5 / 12, "feet"),
  21200. weight: math.unit(90, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/cappu/front.svg",
  21204. extra: 1247 / 1152,
  21205. bottom: 0.012
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(4 + 5 / 12, "feet"),
  21213. default: true
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21219. {
  21220. frontDressed: {
  21221. height: math.unit(70, "cm"),
  21222. weight: math.unit(6, "kg"),
  21223. name: "Front (Dressed)",
  21224. image: {
  21225. source: "./media/characters/sebi/front-dressed.svg",
  21226. extra: 713.5 / 686.5,
  21227. bottom: 0.003
  21228. }
  21229. },
  21230. front: {
  21231. height: math.unit(70, "cm"),
  21232. weight: math.unit(5, "kg"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/sebi/front.svg",
  21236. extra: 713.5 / 686.5,
  21237. bottom: 0.003
  21238. }
  21239. }
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(70, "cm"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(8, "meters")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(6, "feet"),
  21258. weight: math.unit(150, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/typhek/front.svg",
  21262. extra: 1948 / 1929,
  21263. bottom: 0.025
  21264. }
  21265. },
  21266. side: {
  21267. height: math.unit(6, "feet"),
  21268. weight: math.unit(150, "lb"),
  21269. name: "Side",
  21270. image: {
  21271. source: "./media/characters/typhek/side.svg",
  21272. extra: 2034 / 2010,
  21273. bottom: 0.003
  21274. }
  21275. },
  21276. back: {
  21277. height: math.unit(6, "feet"),
  21278. weight: math.unit(150, "lb"),
  21279. name: "Back",
  21280. image: {
  21281. source: "./media/characters/typhek/back.svg",
  21282. extra: 2005 / 1978,
  21283. bottom: 0.004
  21284. }
  21285. },
  21286. palm: {
  21287. height: math.unit(1.2, "feet"),
  21288. name: "Palm",
  21289. image: {
  21290. source: "./media/characters/typhek/palm.svg"
  21291. }
  21292. },
  21293. fist: {
  21294. height: math.unit(1.1, "feet"),
  21295. name: "Fist",
  21296. image: {
  21297. source: "./media/characters/typhek/fist.svg"
  21298. }
  21299. },
  21300. foot: {
  21301. height: math.unit(1.57, "feet"),
  21302. name: "Foot",
  21303. image: {
  21304. source: "./media/characters/typhek/foot.svg"
  21305. }
  21306. },
  21307. sole: {
  21308. height: math.unit(2.05, "feet"),
  21309. name: "Sole",
  21310. image: {
  21311. source: "./media/characters/typhek/sole.svg"
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Macro",
  21318. height: math.unit(40, "stories"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Megamacro",
  21323. height: math.unit(1, "mile")
  21324. },
  21325. {
  21326. name: "Gigamacro",
  21327. height: math.unit(4000, "solarradii")
  21328. },
  21329. {
  21330. name: "Universal",
  21331. height: math.unit(1.1, "universes")
  21332. }
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21337. {
  21338. side: {
  21339. height: math.unit(5 + 7 / 12, "feet"),
  21340. weight: math.unit(150, "lb"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/kassy/side.svg",
  21344. extra: 1280 / 1225,
  21345. bottom: 0.002
  21346. }
  21347. },
  21348. front: {
  21349. height: math.unit(5 + 7 / 12, "feet"),
  21350. weight: math.unit(150, "lb"),
  21351. name: "Front",
  21352. image: {
  21353. source: "./media/characters/kassy/front.svg",
  21354. extra: 1280 / 1225,
  21355. bottom: 0.025
  21356. }
  21357. },
  21358. back: {
  21359. height: math.unit(5 + 7 / 12, "feet"),
  21360. weight: math.unit(150, "lb"),
  21361. name: "Back",
  21362. image: {
  21363. source: "./media/characters/kassy/back.svg",
  21364. extra: 1280 / 1225,
  21365. bottom: 0.002
  21366. }
  21367. },
  21368. foot: {
  21369. height: math.unit(1.266, "feet"),
  21370. name: "Foot",
  21371. image: {
  21372. source: "./media/characters/kassy/foot.svg"
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(5 + 7 / 12, "feet")
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(137, "feet"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Megamacro",
  21388. height: math.unit(1, "mile")
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(6 + 1 / 12, "feet"),
  21397. weight: math.unit(200, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/neil/front.svg",
  21401. extra: 1326 / 1250,
  21402. bottom: 0.023
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(6 + 1 / 12, "feet"),
  21410. default: true
  21411. },
  21412. {
  21413. name: "Macro",
  21414. height: math.unit(200, "feet")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 9 / 12, "feet"),
  21423. weight: math.unit(190, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/atticus/front.svg",
  21427. extra: 2934 / 2785,
  21428. bottom: 0.025
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(5 + 9 / 12, "feet"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Macro",
  21440. height: math.unit(180, "feet")
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21446. {
  21447. side: {
  21448. height: math.unit(9, "feet"),
  21449. weight: math.unit(650, "lb"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/milo/side.svg",
  21453. extra: 2644 / 2310,
  21454. bottom: 0.032
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(9, "feet"),
  21462. default: true
  21463. },
  21464. {
  21465. name: "Macro",
  21466. height: math.unit(300, "feet")
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21472. {
  21473. side: {
  21474. height: math.unit(8, "meters"),
  21475. weight: math.unit(90000, "kg"),
  21476. name: "Side",
  21477. image: {
  21478. source: "./media/characters/ijzer/side.svg",
  21479. extra: 2756 / 1600,
  21480. bottom: 0.01
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Small",
  21487. height: math.unit(3, "meters")
  21488. },
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(8, "meters"),
  21492. default: true
  21493. },
  21494. {
  21495. name: "Normal+",
  21496. height: math.unit(10, "meters")
  21497. },
  21498. {
  21499. name: "Bigger",
  21500. height: math.unit(24, "meters")
  21501. },
  21502. {
  21503. name: "Huge",
  21504. height: math.unit(80, "meters")
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(6 + 2 / 12, "feet"),
  21513. weight: math.unit(153, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/luca-cervicum/front.svg",
  21517. extra: 370 / 327,
  21518. bottom: 0.015
  21519. }
  21520. },
  21521. back: {
  21522. height: math.unit(6 + 2 / 12, "feet"),
  21523. weight: math.unit(153, "lb"),
  21524. name: "Back",
  21525. image: {
  21526. source: "./media/characters/luca-cervicum/back.svg",
  21527. extra: 367 / 333,
  21528. bottom: 0.005
  21529. }
  21530. },
  21531. frontGear: {
  21532. height: math.unit(6 + 2 / 12, "feet"),
  21533. weight: math.unit(173, "lb"),
  21534. name: "Front (Gear)",
  21535. image: {
  21536. source: "./media/characters/luca-cervicum/front-gear.svg",
  21537. extra: 377 / 333,
  21538. bottom: 0.006
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(6 + 2 / 12, "feet"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(6 + 1 / 12, "feet"),
  21555. weight: math.unit(304, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/oliver/front.svg",
  21559. extra: 157 / 143,
  21560. bottom: 0.08
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(6 + 1 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(5 + 7 / 12, "feet"),
  21577. weight: math.unit(140, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/shane/front.svg",
  21581. extra: 304 / 289,
  21582. bottom: 0.005
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(5 + 7 / 12, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5 + 9 / 12, "feet"),
  21599. weight: math.unit(178, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/shin/front.svg",
  21603. extra: 159 / 151,
  21604. bottom: 0.015
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5 + 9 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(5 + 10 / 12, "feet"),
  21621. weight: math.unit(168, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/xerxes/front.svg",
  21625. extra: 282 / 260,
  21626. bottom: 0.045
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(5 + 10 / 12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(6 + 7 / 12, "feet"),
  21643. weight: math.unit(208, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/chaska/front.svg",
  21647. extra: 332 / 319,
  21648. bottom: 0.015
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(6 + 7 / 12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(5 + 8 / 12, "feet"),
  21665. weight: math.unit(208, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/enuk/front.svg",
  21669. extra: 437 / 406,
  21670. bottom: 0.02
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(5 + 8 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(5 + 10 / 12, "feet"),
  21687. weight: math.unit(252, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/bruun/front.svg",
  21691. extra: 197 / 187,
  21692. bottom: 0.012
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(5 + 10 / 12, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(6 + 10 / 12, "feet"),
  21709. weight: math.unit(255, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/alexeev/front.svg",
  21713. extra: 213 / 200,
  21714. bottom: 0.05
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(6 + 10 / 12, "feet"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(2 + 8 / 12, "feet"),
  21731. weight: math.unit(22, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/evelyn/front.svg",
  21735. extra: 208 / 180
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(2 + 8 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 9 / 12, "feet"),
  21752. weight: math.unit(139, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/inca/front.svg",
  21756. extra: 294 / 291,
  21757. bottom: 0.03
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 9 / 12, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6 + 3 / 12, "feet"),
  21774. weight: math.unit(185, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/mera/front.svg",
  21778. extra: 291 / 277,
  21779. bottom: 0.03
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(6 + 3 / 12, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(6 + 7 / 12, "feet"),
  21796. weight: math.unit(160, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/ceres/front.svg",
  21800. extra: 1023 / 950,
  21801. bottom: 0.027
  21802. }
  21803. },
  21804. back: {
  21805. height: math.unit(6 + 7 / 12, "feet"),
  21806. weight: math.unit(160, "lb"),
  21807. name: "Back",
  21808. image: {
  21809. source: "./media/characters/ceres/back.svg",
  21810. extra: 1023 / 950
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Normal",
  21817. height: math.unit(6 + 7 / 12, "feet"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 10 / 12, "feet"),
  21827. weight: math.unit(150, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/kris/front.svg",
  21831. extra: 885 / 803,
  21832. bottom: 0.03
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(5 + 10 / 12, "feet"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(7, "feet"),
  21849. weight: math.unit(120, "kg"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/taluthus/front.svg",
  21853. extra: 903 / 833,
  21854. bottom: 0.015
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(7, "feet"),
  21862. default: true
  21863. },
  21864. {
  21865. name: "Macro",
  21866. height: math.unit(300, "feet")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(5 + 9 / 12, "feet"),
  21875. weight: math.unit(145, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/dawn/front.svg",
  21879. extra: 2094 / 2016,
  21880. bottom: 0.025
  21881. }
  21882. },
  21883. back: {
  21884. height: math.unit(5 + 9 / 12, "feet"),
  21885. weight: math.unit(160, "lb"),
  21886. name: "Back",
  21887. image: {
  21888. source: "./media/characters/dawn/back.svg",
  21889. extra: 2112 / 2080,
  21890. bottom: 0.005
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(6 + 7 / 12, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21904. {
  21905. anthro: {
  21906. height: math.unit(8 + 3 / 12, "feet"),
  21907. weight: math.unit(450, "lb"),
  21908. name: "Anthro",
  21909. image: {
  21910. source: "./media/characters/arador/anthro.svg",
  21911. extra: 1835 / 1718,
  21912. bottom: 0.025
  21913. }
  21914. },
  21915. feral: {
  21916. height: math.unit(4, "feet"),
  21917. weight: math.unit(200, "lb"),
  21918. name: "Feral",
  21919. image: {
  21920. source: "./media/characters/arador/feral.svg",
  21921. extra: 1683 / 1514,
  21922. bottom: 0.07
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(8 + 3 / 12, "feet")
  21930. },
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(82.5, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(5 + 10 / 12, "feet"),
  21943. weight: math.unit(125, "lb"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/dharsi/front.svg",
  21947. extra: 716 / 630,
  21948. bottom: 0.035
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Nano",
  21955. height: math.unit(100, "nm")
  21956. },
  21957. {
  21958. name: "Micro",
  21959. height: math.unit(2, "inches")
  21960. },
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(5 + 10 / 12, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(1000, "feet")
  21969. },
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(10, "miles")
  21973. },
  21974. {
  21975. name: "Gigamacro",
  21976. height: math.unit(3000, "miles")
  21977. },
  21978. {
  21979. name: "Teramacro",
  21980. height: math.unit(500000, "miles")
  21981. },
  21982. {
  21983. name: "Teramacro+",
  21984. height: math.unit(30, "galaxies")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(6, "feet"),
  21993. weight: math.unit(150, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/deathy/front.svg",
  21997. extra: 1552 / 1463,
  21998. bottom: 0.025
  21999. }
  22000. },
  22001. side: {
  22002. height: math.unit(6, "feet"),
  22003. weight: math.unit(150, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/deathy/side.svg",
  22007. extra: 1604 / 1455,
  22008. bottom: 0.025
  22009. }
  22010. },
  22011. back: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(150, "lb"),
  22014. name: "Back",
  22015. image: {
  22016. source: "./media/characters/deathy/back.svg",
  22017. extra: 1580 / 1463,
  22018. bottom: 0.005
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Micro",
  22025. height: math.unit(5, "millimeters")
  22026. },
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(6 + 5 / 12, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22036. {
  22037. front: {
  22038. height: math.unit(16, "feet"),
  22039. weight: math.unit(4000, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/juniper/front.svg",
  22043. bottom: 0.04
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(16, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22057. {
  22058. front: {
  22059. height: math.unit(6, "feet"),
  22060. weight: math.unit(150, "lb"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/hipster/front.svg",
  22064. extra: 1312 / 1209,
  22065. bottom: 0.025
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(6, "feet"),
  22070. weight: math.unit(150, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/hipster/back.svg",
  22074. extra: 1281 / 1196,
  22075. bottom: 0.01
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Micro",
  22082. height: math.unit(1, "mm")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(4, "inches"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(500, "feet")
  22092. },
  22093. {
  22094. name: "Megamacro",
  22095. height: math.unit(1000, "miles")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(6, "feet"),
  22104. weight: math.unit(150, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/tendirmuldr/front.svg",
  22108. extra: 1878 / 1772,
  22109. bottom: 0.015
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Megamacro",
  22116. height: math.unit(1500, "miles"),
  22117. default: true
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22123. {
  22124. front: {
  22125. height: math.unit(14, "feet"),
  22126. weight: math.unit(12000, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/mort/front.svg",
  22130. extra: 365 / 318,
  22131. bottom: 0.01
  22132. }
  22133. },
  22134. side: {
  22135. height: math.unit(14, "feet"),
  22136. weight: math.unit(12000, "lb"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/mort/side.svg",
  22140. extra: 365 / 318,
  22141. bottom: 0.052
  22142. },
  22143. default: true
  22144. },
  22145. back: {
  22146. height: math.unit(14, "feet"),
  22147. weight: math.unit(12000, "lb"),
  22148. name: "Back",
  22149. image: {
  22150. source: "./media/characters/mort/back.svg",
  22151. extra: 371 / 332,
  22152. bottom: 0.18
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(14, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22166. {
  22167. front: {
  22168. height: math.unit(8, "feet"),
  22169. weight: math.unit(1, "ton"),
  22170. name: "Front",
  22171. image: {
  22172. source: "./media/characters/lycoa/front.svg",
  22173. extra: 1836/1728,
  22174. bottom: 81/1917
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(8, "feet"),
  22179. weight: math.unit(1, "ton"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/lycoa/back.svg",
  22183. extra: 1785/1720,
  22184. bottom: 91/1876
  22185. }
  22186. },
  22187. head: {
  22188. height: math.unit(1.6243, "feet"),
  22189. name: "Head",
  22190. image: {
  22191. source: "./media/characters/lycoa/head.svg",
  22192. extra: 1011/782,
  22193. bottom: 0/1011
  22194. }
  22195. },
  22196. tailmaw: {
  22197. height: math.unit(1.9, "feet"),
  22198. name: "Tailmaw",
  22199. image: {
  22200. source: "./media/characters/lycoa/tailmaw.svg"
  22201. }
  22202. },
  22203. tentacles: {
  22204. height: math.unit(2.1, "feet"),
  22205. name: "Tentacles",
  22206. image: {
  22207. source: "./media/characters/lycoa/tentacles.svg"
  22208. }
  22209. },
  22210. dick: {
  22211. height: math.unit(1.73, "feet"),
  22212. name: "Dick",
  22213. image: {
  22214. source: "./media/characters/lycoa/dick.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(8, "feet"),
  22222. default: true
  22223. },
  22224. {
  22225. name: "Macro",
  22226. height: math.unit(30, "feet")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22232. {
  22233. front: {
  22234. height: math.unit(4 + 2 / 12, "feet"),
  22235. weight: math.unit(70, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/naldara/front.svg",
  22239. extra: 1664/1387,
  22240. bottom: 81/1745
  22241. },
  22242. form: "anthro",
  22243. default: true
  22244. },
  22245. naga: {
  22246. height: math.unit(20, "feet"),
  22247. weight: math.unit(15000, "kg"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/naldara/naga.svg",
  22251. extra: 1590/1396,
  22252. bottom: 285/1875
  22253. },
  22254. form: "naga",
  22255. default: true
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(4 + 2 / 12, "feet"),
  22262. form: "anthro",
  22263. default: true
  22264. },
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(20, "feet"),
  22268. form: "naga",
  22269. default: true
  22270. },
  22271. ],
  22272. {
  22273. "anthro": {
  22274. name: "Anthro",
  22275. default: true
  22276. },
  22277. "naga": {
  22278. name: "Naga"
  22279. }
  22280. }
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(13 + 7 / 12, "feet"),
  22287. weight: math.unit(1500, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/briar/front.svg",
  22291. extra: 1223/1157,
  22292. bottom: 123/1346
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(13 + 7 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22306. {
  22307. side: {
  22308. height: math.unit(16, "feet"),
  22309. weight: math.unit(500, "lb"),
  22310. name: "Side",
  22311. image: {
  22312. source: "./media/characters/vanguard/side.svg",
  22313. extra: 1022/914,
  22314. bottom: 30/1052
  22315. }
  22316. },
  22317. sideAlt: {
  22318. height: math.unit(10, "feet"),
  22319. weight: math.unit(500, "lb"),
  22320. name: "Side (Alt)",
  22321. image: {
  22322. source: "./media/characters/vanguard/side-alt.svg",
  22323. extra: 502 / 425,
  22324. bottom: 0.087
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(17.71, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(7.5, "feet"),
  22341. weight: math.unit(2, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/artemis/work-safe-front.svg",
  22345. extra: 1192 / 1075,
  22346. bottom: 0.07
  22347. },
  22348. form: "work-safe",
  22349. default: true
  22350. },
  22351. frontNsfw: {
  22352. height: math.unit(7.5, "feet"),
  22353. weight: math.unit(2, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/artemis/calibrating-front.svg",
  22357. extra: 1192 / 1075,
  22358. bottom: 0.07
  22359. },
  22360. form: "calibrating",
  22361. default: true
  22362. },
  22363. frontNsfwer: {
  22364. height: math.unit(7.5, "feet"),
  22365. weight: math.unit(2, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/artemis/oversize-load-front.svg",
  22369. extra: 1192 / 1075,
  22370. bottom: 0.07
  22371. },
  22372. form: "oversize-load",
  22373. default: true
  22374. },
  22375. side: {
  22376. height: math.unit(7.5, "feet"),
  22377. weight: math.unit(2, "lb"),
  22378. name: "Side",
  22379. image: {
  22380. source: "./media/characters/artemis/work-safe-side.svg",
  22381. extra: 1192 / 1075,
  22382. bottom: 0.07
  22383. },
  22384. form: "work-safe"
  22385. },
  22386. sideNsfw: {
  22387. height: math.unit(7.5, "feet"),
  22388. weight: math.unit(2, "lb"),
  22389. name: "Side",
  22390. image: {
  22391. source: "./media/characters/artemis/calibrating-side.svg",
  22392. extra: 1192 / 1075,
  22393. bottom: 0.07
  22394. },
  22395. form: "calibrating"
  22396. },
  22397. sideNsfwer: {
  22398. height: math.unit(7.5, "feet"),
  22399. weight: math.unit(2, "lb"),
  22400. name: "Side",
  22401. image: {
  22402. source: "./media/characters/artemis/oversize-load-side.svg",
  22403. extra: 1192 / 1075,
  22404. bottom: 0.07
  22405. },
  22406. form: "oversize-load"
  22407. },
  22408. maw: {
  22409. height: math.unit(1.1, "feet"),
  22410. name: "Maw",
  22411. image: {
  22412. source: "./media/characters/artemis/maw.svg"
  22413. },
  22414. form: "work-safe"
  22415. },
  22416. stomach: {
  22417. height: math.unit(0.95, "feet"),
  22418. name: "Stomach",
  22419. image: {
  22420. source: "./media/characters/artemis/stomach.svg"
  22421. },
  22422. form: "work-safe"
  22423. },
  22424. dickCanine: {
  22425. height: math.unit(1, "feet"),
  22426. name: "Dick (Canine)",
  22427. image: {
  22428. source: "./media/characters/artemis/dick-canine.svg"
  22429. },
  22430. form: "calibrating"
  22431. },
  22432. dickEquine: {
  22433. height: math.unit(0.85, "feet"),
  22434. name: "Dick (Equine)",
  22435. image: {
  22436. source: "./media/characters/artemis/dick-equine.svg"
  22437. },
  22438. form: "calibrating"
  22439. },
  22440. dickExotic: {
  22441. height: math.unit(0.85, "feet"),
  22442. name: "Dick (Exotic)",
  22443. image: {
  22444. source: "./media/characters/artemis/dick-exotic.svg"
  22445. },
  22446. form: "calibrating"
  22447. },
  22448. dickCanineBigger: {
  22449. height: math.unit(1 * 1.33, "feet"),
  22450. name: "Dick (Canine)",
  22451. image: {
  22452. source: "./media/characters/artemis/dick-canine.svg"
  22453. },
  22454. form: "oversize-load"
  22455. },
  22456. dickEquineBigger: {
  22457. height: math.unit(0.85 * 1.33, "feet"),
  22458. name: "Dick (Equine)",
  22459. image: {
  22460. source: "./media/characters/artemis/dick-equine.svg"
  22461. },
  22462. form: "oversize-load"
  22463. },
  22464. dickExoticBigger: {
  22465. height: math.unit(0.85 * 1.33, "feet"),
  22466. name: "Dick (Exotic)",
  22467. image: {
  22468. source: "./media/characters/artemis/dick-exotic.svg"
  22469. },
  22470. form: "oversize-load"
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(7.5, "feet"),
  22477. form: "work-safe",
  22478. default: true
  22479. },
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(7.5, "feet"),
  22483. form: "calibrating",
  22484. default: true
  22485. },
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(7.5, "feet"),
  22489. form: "oversize-load",
  22490. default: true
  22491. },
  22492. {
  22493. name: "Enlarged",
  22494. height: math.unit(12, "feet"),
  22495. form: "work-safe",
  22496. },
  22497. {
  22498. name: "Enlarged",
  22499. height: math.unit(12, "feet"),
  22500. form: "calibrating",
  22501. },
  22502. {
  22503. name: "Enlarged",
  22504. height: math.unit(12, "feet"),
  22505. form: "oversize-load",
  22506. },
  22507. ],
  22508. {
  22509. "work-safe": {
  22510. name: "Work-Safe",
  22511. default: true
  22512. },
  22513. "calibrating": {
  22514. name: "Calibrating"
  22515. },
  22516. "oversize-load": {
  22517. name: "Oversize Load"
  22518. }
  22519. }
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(5 + 3 / 12, "feet"),
  22526. weight: math.unit(160, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/kira/front.svg",
  22530. extra: 906 / 786,
  22531. bottom: 0.01
  22532. }
  22533. },
  22534. back: {
  22535. height: math.unit(5 + 3 / 12, "feet"),
  22536. weight: math.unit(160, "lb"),
  22537. name: "Back",
  22538. image: {
  22539. source: "./media/characters/kira/back.svg",
  22540. extra: 882 / 757,
  22541. bottom: 0.005
  22542. }
  22543. },
  22544. frontDressed: {
  22545. height: math.unit(5 + 3 / 12, "feet"),
  22546. weight: math.unit(160, "lb"),
  22547. name: "Front (Dressed)",
  22548. image: {
  22549. source: "./media/characters/kira/front-dressed.svg",
  22550. extra: 906 / 786,
  22551. bottom: 0.01
  22552. }
  22553. },
  22554. beans: {
  22555. height: math.unit(0.92, "feet"),
  22556. name: "Beans",
  22557. image: {
  22558. source: "./media/characters/kira/beans.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(5 + 3 / 12, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(5 + 4 / 12, "feet"),
  22575. weight: math.unit(145, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/scramble/front.svg",
  22579. extra: 763 / 727,
  22580. bottom: 0.05
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(5 + 4 / 12, "feet"),
  22585. weight: math.unit(145, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/scramble/back.svg",
  22589. extra: 826 / 737,
  22590. bottom: 0.002
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(5 + 4 / 12, "feet"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22604. {
  22605. side: {
  22606. height: math.unit(6 + 2 / 12, "feet"),
  22607. weight: math.unit(190, "lb"),
  22608. name: "Side",
  22609. image: {
  22610. source: "./media/characters/biscuit/side.svg",
  22611. extra: 858 / 791,
  22612. bottom: 0.044
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(6 + 2 / 12, "feet"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 2 / 12, "feet"),
  22629. weight: math.unit(120, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/poffin/front.svg",
  22633. extra: 786 / 680,
  22634. bottom: 0.005
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(5 + 2 / 12, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6 + 3 / 12, "feet"),
  22651. weight: math.unit(519, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/dhari/front.svg",
  22655. extra: 1048 / 946,
  22656. bottom: 0.015
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(6 + 3 / 12, "feet"),
  22661. weight: math.unit(519, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/dhari/back.svg",
  22665. extra: 1048 / 931,
  22666. bottom: 0.005
  22667. }
  22668. },
  22669. frontDressed: {
  22670. height: math.unit(6 + 3 / 12, "feet"),
  22671. weight: math.unit(519, "lb"),
  22672. name: "Front (Dressed)",
  22673. image: {
  22674. source: "./media/characters/dhari/front-dressed.svg",
  22675. extra: 1713 / 1546,
  22676. bottom: 0.02
  22677. }
  22678. },
  22679. backDressed: {
  22680. height: math.unit(6 + 3 / 12, "feet"),
  22681. weight: math.unit(519, "lb"),
  22682. name: "Back (Dressed)",
  22683. image: {
  22684. source: "./media/characters/dhari/back-dressed.svg",
  22685. extra: 1699 / 1537,
  22686. bottom: 0.01
  22687. }
  22688. },
  22689. maw: {
  22690. height: math.unit(0.95, "feet"),
  22691. name: "Maw",
  22692. image: {
  22693. source: "./media/characters/dhari/maw.svg"
  22694. }
  22695. },
  22696. wereFront: {
  22697. height: math.unit(12 + 8 / 12, "feet"),
  22698. weight: math.unit(4000, "lb"),
  22699. name: "Front (Were)",
  22700. image: {
  22701. source: "./media/characters/dhari/were-front.svg",
  22702. extra: 1065 / 969,
  22703. bottom: 0.015
  22704. }
  22705. },
  22706. wereBack: {
  22707. height: math.unit(12 + 8 / 12, "feet"),
  22708. weight: math.unit(4000, "lb"),
  22709. name: "Back (Were)",
  22710. image: {
  22711. source: "./media/characters/dhari/were-back.svg",
  22712. extra: 1065 / 969,
  22713. bottom: 0.012
  22714. }
  22715. },
  22716. wereMaw: {
  22717. height: math.unit(0.625, "meters"),
  22718. name: "Maw (Were)",
  22719. image: {
  22720. source: "./media/characters/dhari/were-maw.svg"
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(6 + 3 / 12, "feet"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22734. {
  22735. anthro: {
  22736. height: math.unit(5 + 7 / 12, "feet"),
  22737. weight: math.unit(175, "lb"),
  22738. name: "Anthro",
  22739. image: {
  22740. source: "./media/characters/rena-dyne/anthro.svg",
  22741. extra: 1849 / 1785,
  22742. bottom: 0.005
  22743. }
  22744. },
  22745. taur: {
  22746. height: math.unit(15 + 6 / 12, "feet"),
  22747. weight: math.unit(8000, "lb"),
  22748. name: "Taur",
  22749. image: {
  22750. source: "./media/characters/rena-dyne/taur.svg",
  22751. extra: 2315 / 2234,
  22752. bottom: 0.033
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(5 + 7 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(8, "feet"),
  22769. weight: math.unit(600, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/weremeep/front.svg",
  22773. extra: 970/849,
  22774. bottom: 7/977
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(8, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Lorg",
  22786. height: math.unit(12, "feet")
  22787. },
  22788. {
  22789. name: "Oh Lawd She Comin'",
  22790. height: math.unit(20, "feet")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22796. {
  22797. front: {
  22798. height: math.unit(4, "feet"),
  22799. weight: math.unit(90, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/reza/front.svg",
  22803. extra: 1183 / 1111,
  22804. bottom: 0.017
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(4, "feet"),
  22809. weight: math.unit(90, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/reza/back.svg",
  22813. extra: 1183 / 1111,
  22814. bottom: 0.01
  22815. }
  22816. },
  22817. drake: {
  22818. height: math.unit(30, "feet"),
  22819. weight: math.unit(246960, "lb"),
  22820. name: "Drake",
  22821. image: {
  22822. source: "./media/characters/reza/drake.svg",
  22823. extra: 2350 / 2024,
  22824. bottom: 60.7 / 2403
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(4, "feet"),
  22832. default: true
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22838. {
  22839. side: {
  22840. height: math.unit(15, "feet"),
  22841. weight: math.unit(14, "tons"),
  22842. name: "Side",
  22843. image: {
  22844. source: "./media/characters/athea/side.svg",
  22845. extra: 960 / 540,
  22846. bottom: 0.003
  22847. }
  22848. },
  22849. sitting: {
  22850. height: math.unit(6 * 2.85, "feet"),
  22851. weight: math.unit(14, "tons"),
  22852. name: "Sitting",
  22853. image: {
  22854. source: "./media/characters/athea/sitting.svg",
  22855. extra: 621 / 581,
  22856. bottom: 0.075
  22857. }
  22858. },
  22859. maw: {
  22860. height: math.unit(7.59498031496063, "feet"),
  22861. name: "Maw",
  22862. image: {
  22863. source: "./media/characters/athea/maw.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Lap Cat",
  22870. height: math.unit(2.5, "feet")
  22871. },
  22872. {
  22873. name: "Minimacro",
  22874. height: math.unit(15, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(120, "feet")
  22880. },
  22881. {
  22882. name: "Macro+",
  22883. height: math.unit(640, "feet")
  22884. },
  22885. {
  22886. name: "Colossus",
  22887. height: math.unit(2.2, "miles")
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(8 + 8 / 12, "feet"),
  22896. weight: math.unit(130, "kg"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/seroko/front.svg",
  22900. extra: 1385 / 1280,
  22901. bottom: 0.025
  22902. }
  22903. },
  22904. back: {
  22905. height: math.unit(8 + 8 / 12, "feet"),
  22906. weight: math.unit(130, "kg"),
  22907. name: "Back",
  22908. image: {
  22909. source: "./media/characters/seroko/back.svg",
  22910. extra: 1369 / 1238,
  22911. bottom: 0.018
  22912. }
  22913. },
  22914. frontDressed: {
  22915. height: math.unit(8 + 8 / 12, "feet"),
  22916. weight: math.unit(130, "kg"),
  22917. name: "Front (Dressed)",
  22918. image: {
  22919. source: "./media/characters/seroko/front-dressed.svg",
  22920. extra: 1366 / 1275,
  22921. bottom: 0.03
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(8 + 8 / 12, "feet"),
  22929. default: true
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(5.5, "feet"),
  22938. weight: math.unit(160, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/quatzi/front.svg",
  22942. extra: 2346 / 2242,
  22943. bottom: 0.015
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(5.5, "feet"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Big",
  22955. height: math.unit(7.7, "feet")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(5 + 11 / 12, "feet"),
  22964. weight: math.unit(180, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/sen/front.svg",
  22968. extra: 1321 / 1254,
  22969. bottom: 0.015
  22970. }
  22971. },
  22972. side: {
  22973. height: math.unit(5 + 11 / 12, "feet"),
  22974. weight: math.unit(180, "lb"),
  22975. name: "Side",
  22976. image: {
  22977. source: "./media/characters/sen/side.svg",
  22978. extra: 1321 / 1254,
  22979. bottom: 0.007
  22980. }
  22981. },
  22982. back: {
  22983. height: math.unit(5 + 11 / 12, "feet"),
  22984. weight: math.unit(180, "lb"),
  22985. name: "Back",
  22986. image: {
  22987. source: "./media/characters/sen/back.svg",
  22988. extra: 1321 / 1254
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(5 + 11 / 12, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(166.6, "cm"),
  23005. weight: math.unit(66.6, "kg"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/fruity/front.svg",
  23009. extra: 1510 / 1386,
  23010. bottom: 0.04
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(166.6, "cm"),
  23015. weight: math.unit(66.6, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/fruity/back.svg",
  23019. extra: 1563 / 1435,
  23020. bottom: 0.005
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(166.6, "cm"),
  23028. default: true
  23029. },
  23030. {
  23031. name: "Demonic",
  23032. height: math.unit(166.6, "feet")
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23038. {
  23039. side: {
  23040. height: math.unit(10, "feet"),
  23041. weight: math.unit(500, "lb"),
  23042. name: "Side",
  23043. image: {
  23044. source: "./media/characters/zost/side.svg",
  23045. extra: 2870/2533,
  23046. bottom: 252/3122
  23047. }
  23048. },
  23049. mawFront: {
  23050. height: math.unit(1.08, "meters"),
  23051. name: "Maw (Front)",
  23052. image: {
  23053. source: "./media/characters/zost/maw-front.svg"
  23054. }
  23055. },
  23056. mawSide: {
  23057. height: math.unit(2.66, "feet"),
  23058. name: "Maw (Side)",
  23059. image: {
  23060. source: "./media/characters/zost/maw-side.svg"
  23061. }
  23062. },
  23063. wingspan: {
  23064. height: math.unit(7.4, "feet"),
  23065. name: "Wingspan",
  23066. image: {
  23067. source: "./media/characters/zost/wingspan.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(10, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(5 + 4 / 12, "feet"),
  23084. weight: math.unit(120, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/luci/front.svg",
  23088. extra: 1985 / 1884,
  23089. bottom: 0.04
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(5 + 4 / 12, "feet"),
  23094. weight: math.unit(120, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/luci/back.svg",
  23098. extra: 1892 / 1791,
  23099. bottom: 0.002
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(5 + 4 / 12, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(1500, "feet"),
  23116. weight: math.unit(3.8e6, "tons"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/2th/front.svg",
  23120. extra: 3489 / 3350,
  23121. bottom: 0.1
  23122. }
  23123. },
  23124. foot: {
  23125. height: math.unit(461, "feet"),
  23126. name: "Foot",
  23127. image: {
  23128. source: "./media/characters/2th/foot.svg"
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "\"Micro\"",
  23135. height: math.unit(15 + 7 / 12, "feet")
  23136. },
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(1500, "feet"),
  23140. default: true
  23141. },
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(5000, "feet")
  23145. },
  23146. {
  23147. name: "Megamacro",
  23148. height: math.unit(15, "miles")
  23149. },
  23150. {
  23151. name: "Gigamacro",
  23152. height: math.unit(4000, "miles")
  23153. },
  23154. {
  23155. name: "Galactic",
  23156. height: math.unit(50, "AU")
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(5 + 6 / 12, "feet"),
  23165. weight: math.unit(220, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/amethyst/front.svg",
  23169. extra: 2078 / 2040,
  23170. bottom: 0.045
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(5 + 6 / 12, "feet"),
  23175. weight: math.unit(220, "lb"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/amethyst/back.svg",
  23179. extra: 2021 / 1989,
  23180. bottom: 0.02
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(5 + 6 / 12, "feet"),
  23188. default: true
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23194. {
  23195. front: {
  23196. height: math.unit(4 + 11 / 12, "feet"),
  23197. weight: math.unit(120, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/yumi-akiyama/front.svg",
  23201. extra: 1327 / 1235,
  23202. bottom: 0.02
  23203. }
  23204. },
  23205. back: {
  23206. height: math.unit(4 + 11 / 12, "feet"),
  23207. weight: math.unit(120, "lb"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/yumi-akiyama/back.svg",
  23211. extra: 1287 / 1245,
  23212. bottom: 0.002
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Galactic",
  23219. height: math.unit(50, "galaxies"),
  23220. default: true
  23221. },
  23222. {
  23223. name: "Universal",
  23224. height: math.unit(100, "universes")
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(8, "feet"),
  23233. weight: math.unit(500, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/rifter-yrmori/front.svg",
  23237. extra: 1180 / 1125,
  23238. bottom: 0.02
  23239. }
  23240. },
  23241. back: {
  23242. height: math.unit(8, "feet"),
  23243. weight: math.unit(500, "lb"),
  23244. name: "Back",
  23245. image: {
  23246. source: "./media/characters/rifter-yrmori/back.svg",
  23247. extra: 1190 / 1145,
  23248. bottom: 0.001
  23249. }
  23250. },
  23251. wings: {
  23252. height: math.unit(7.75, "feet"),
  23253. weight: math.unit(500, "lb"),
  23254. name: "Wings",
  23255. image: {
  23256. source: "./media/characters/rifter-yrmori/wings.svg",
  23257. extra: 1357 / 1285
  23258. }
  23259. },
  23260. maw: {
  23261. height: math.unit(0.8, "feet"),
  23262. name: "Maw",
  23263. image: {
  23264. source: "./media/characters/rifter-yrmori/maw.svg"
  23265. }
  23266. },
  23267. mawfront: {
  23268. height: math.unit(1.45, "feet"),
  23269. name: "Maw (Front)",
  23270. image: {
  23271. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(8, "feet"),
  23279. default: true
  23280. },
  23281. {
  23282. name: "Macro",
  23283. height: math.unit(42, "meters")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23289. {
  23290. were: {
  23291. height: math.unit(25 + 6 / 12, "feet"),
  23292. weight: math.unit(10000, "lb"),
  23293. name: "Were",
  23294. image: {
  23295. source: "./media/characters/tahajin/were.svg",
  23296. extra: 801 / 770,
  23297. bottom: 0.042
  23298. }
  23299. },
  23300. aquatic: {
  23301. height: math.unit(6 + 4 / 12, "feet"),
  23302. weight: math.unit(160, "lb"),
  23303. name: "Aquatic",
  23304. image: {
  23305. source: "./media/characters/tahajin/aquatic.svg",
  23306. extra: 572 / 542,
  23307. bottom: 0.04
  23308. }
  23309. },
  23310. chow: {
  23311. height: math.unit(8 + 11 / 12, "feet"),
  23312. weight: math.unit(450, "lb"),
  23313. name: "Chow",
  23314. image: {
  23315. source: "./media/characters/tahajin/chow.svg",
  23316. extra: 660 / 640,
  23317. bottom: 0.015
  23318. }
  23319. },
  23320. demiNaga: {
  23321. height: math.unit(6 + 8 / 12, "feet"),
  23322. weight: math.unit(300, "lb"),
  23323. name: "Demi Naga",
  23324. image: {
  23325. source: "./media/characters/tahajin/demi-naga.svg",
  23326. extra: 643 / 615,
  23327. bottom: 0.1
  23328. }
  23329. },
  23330. data: {
  23331. height: math.unit(5, "inches"),
  23332. weight: math.unit(0.1, "lb"),
  23333. name: "Data",
  23334. image: {
  23335. source: "./media/characters/tahajin/data.svg"
  23336. }
  23337. },
  23338. fluu: {
  23339. height: math.unit(5 + 7 / 12, "feet"),
  23340. weight: math.unit(140, "lb"),
  23341. name: "Fluu",
  23342. image: {
  23343. source: "./media/characters/tahajin/fluu.svg",
  23344. extra: 628 / 592,
  23345. bottom: 0.02
  23346. }
  23347. },
  23348. starWarrior: {
  23349. height: math.unit(4 + 5 / 12, "feet"),
  23350. weight: math.unit(50, "lb"),
  23351. name: "Star Warrior",
  23352. image: {
  23353. source: "./media/characters/tahajin/star-warrior.svg"
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(25 + 6 / 12, "feet"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(8, "feet"),
  23370. weight: math.unit(350, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/gabira/front.svg",
  23374. extra: 1261/1154,
  23375. bottom: 51/1312
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(8, "feet"),
  23380. weight: math.unit(350, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/gabira/back.svg",
  23384. extra: 1265/1163,
  23385. bottom: 46/1311
  23386. }
  23387. },
  23388. head: {
  23389. height: math.unit(2.85, "feet"),
  23390. name: "Head",
  23391. image: {
  23392. source: "./media/characters/gabira/head.svg"
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(8, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23406. {
  23407. front: {
  23408. height: math.unit(5 + 3 / 12, "feet"),
  23409. weight: math.unit(137, "lb"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/sasha-katraine/front.svg",
  23413. extra: 1745/1694,
  23414. bottom: 37/1782
  23415. }
  23416. },
  23417. back: {
  23418. height: math.unit(5 + 3 / 12, "feet"),
  23419. weight: math.unit(137, "lb"),
  23420. name: "Back",
  23421. image: {
  23422. source: "./media/characters/sasha-katraine/back.svg",
  23423. extra: 1776/1699,
  23424. bottom: 26/1802
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Micro",
  23431. height: math.unit(5, "inches")
  23432. },
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(5 + 3 / 12, "feet"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23442. {
  23443. side: {
  23444. height: math.unit(4, "inches"),
  23445. weight: math.unit(200, "grams"),
  23446. name: "Side",
  23447. image: {
  23448. source: "./media/characters/der/side.svg",
  23449. extra: 719 / 400,
  23450. bottom: 30.6 / 749.9187
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Micro",
  23457. height: math.unit(4, "inches"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23464. {
  23465. side: {
  23466. height: math.unit(30, "meters"),
  23467. weight: math.unit(700, "tonnes"),
  23468. name: "Side",
  23469. image: {
  23470. source: "./media/characters/fixerdragon/side.svg",
  23471. extra: (1293.0514 - 116.03) / 1106.86,
  23472. bottom: 116.03 / 1293.0514
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Planck",
  23479. height: math.unit(1.6e-35, "meters")
  23480. },
  23481. {
  23482. name: "Micro",
  23483. height: math.unit(0.4, "meters")
  23484. },
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(30, "meters"),
  23488. default: true
  23489. },
  23490. {
  23491. name: "Megamacro",
  23492. height: math.unit(1.2, "megameters")
  23493. },
  23494. {
  23495. name: "Teramacro",
  23496. height: math.unit(130, "terameters")
  23497. },
  23498. {
  23499. name: "Yottamacro",
  23500. height: math.unit(6200, "yottameters")
  23501. },
  23502. ]
  23503. ));
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(8, "feet"),
  23509. weight: math.unit(250, "lb"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/kite/front.svg",
  23513. extra: 2796 / 2659,
  23514. bottom: 0.002
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(8, "feet"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(360, "feet")
  23527. },
  23528. {
  23529. name: "Megamacro",
  23530. height: math.unit(1500, "feet")
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(5 + 11/12, "feet"),
  23539. weight: math.unit(170, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/poojawa-vynar/front.svg",
  23543. extra: 1735/1585,
  23544. bottom: 96/1831
  23545. }
  23546. },
  23547. back: {
  23548. height: math.unit(5 + 11/12, "feet"),
  23549. weight: math.unit(170, "lb"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/poojawa-vynar/back.svg",
  23553. extra: 1749/1607,
  23554. bottom: 28/1777
  23555. }
  23556. },
  23557. male: {
  23558. height: math.unit(5 + 11/12, "feet"),
  23559. weight: math.unit(170, "lb"),
  23560. name: "Male",
  23561. image: {
  23562. source: "./media/characters/poojawa-vynar/male.svg",
  23563. extra: 1855/1713,
  23564. bottom: 63/1918
  23565. }
  23566. },
  23567. taur: {
  23568. height: math.unit(5 + 11/12, "feet"),
  23569. weight: math.unit(170, "lb"),
  23570. name: "Taur",
  23571. image: {
  23572. source: "./media/characters/poojawa-vynar/taur.svg",
  23573. extra: 1151/1059,
  23574. bottom: 356/1507
  23575. }
  23576. },
  23577. frontDressed: {
  23578. height: math.unit(5 + 11/12, "feet"),
  23579. weight: math.unit(170, "lb"),
  23580. name: "Front (Dressed)",
  23581. image: {
  23582. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23583. extra: 1735/1585,
  23584. bottom: 96/1831
  23585. }
  23586. },
  23587. backDressed: {
  23588. height: math.unit(5 + 11/12, "feet"),
  23589. weight: math.unit(170, "lb"),
  23590. name: "Back (Dressed)",
  23591. image: {
  23592. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23593. extra: 1749/1607,
  23594. bottom: 28/1777
  23595. }
  23596. },
  23597. maleDressed: {
  23598. height: math.unit(5 + 11/12, "feet"),
  23599. weight: math.unit(170, "lb"),
  23600. name: "Male (Dressed)",
  23601. image: {
  23602. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23603. extra: 1855/1713,
  23604. bottom: 63/1918
  23605. }
  23606. },
  23607. taurDressed: {
  23608. height: math.unit(5 + 11/12, "feet"),
  23609. weight: math.unit(170, "lb"),
  23610. name: "Taur (Dressed)",
  23611. image: {
  23612. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23613. extra: 1151/1059,
  23614. bottom: 356/1507
  23615. }
  23616. },
  23617. maw: {
  23618. height: math.unit(1.46, "feet"),
  23619. name: "Maw",
  23620. image: {
  23621. source: "./media/characters/poojawa-vynar/maw.svg"
  23622. }
  23623. },
  23624. head: {
  23625. height: math.unit(2.34, "feet"),
  23626. name: "Head",
  23627. image: {
  23628. source: "./media/characters/poojawa-vynar/head.svg"
  23629. }
  23630. },
  23631. paw: {
  23632. height: math.unit(1.61, "feet"),
  23633. name: "Paw",
  23634. image: {
  23635. source: "./media/characters/poojawa-vynar/paw.svg"
  23636. }
  23637. },
  23638. pawToering: {
  23639. height: math.unit(1.72, "feet"),
  23640. name: "Paw (Toering)",
  23641. image: {
  23642. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23643. }
  23644. },
  23645. toering: {
  23646. height: math.unit(2.9, "inches"),
  23647. name: "Toering",
  23648. image: {
  23649. source: "./media/characters/poojawa-vynar/toering.svg"
  23650. }
  23651. },
  23652. shaft: {
  23653. height: math.unit(0.625, "feet"),
  23654. name: "Shaft",
  23655. image: {
  23656. source: "./media/characters/poojawa-vynar/shaft.svg"
  23657. }
  23658. },
  23659. spade: {
  23660. height: math.unit(0.42, "feet"),
  23661. name: "Spade",
  23662. image: {
  23663. source: "./media/characters/poojawa-vynar/spade.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shortstack",
  23670. height: math.unit(4, "feet")
  23671. },
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(5 + 11 / 12, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Tauric",
  23679. height: math.unit(4, "meters")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(293, "meters"),
  23688. weight: math.unit(70400, "tons"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/violette/front.svg",
  23692. extra: 1227 / 1180,
  23693. bottom: 0.005
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(293, "meters"),
  23698. weight: math.unit(70400, "tons"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/violette/back.svg",
  23702. extra: 1227 / 1180,
  23703. bottom: 0.005
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(293, "meters"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(1050, "feet"),
  23720. weight: math.unit(200000, "tons"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/alessandra/front.svg",
  23724. extra: 960 / 912,
  23725. bottom: 0.06
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(1050, "feet")
  23733. },
  23734. {
  23735. name: "Macro+",
  23736. height: math.unit(900, "meters"),
  23737. default: true
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(5, "feet"),
  23746. weight: math.unit(187, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/person/front.svg",
  23750. extra: 3087 / 2945,
  23751. bottom: 91 / 3181
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Micro",
  23758. height: math.unit(3, "inches")
  23759. },
  23760. {
  23761. name: "Normal",
  23762. height: math.unit(5, "feet"),
  23763. default: true
  23764. },
  23765. {
  23766. name: "Macro",
  23767. height: math.unit(90, "feet")
  23768. },
  23769. {
  23770. name: "Max Size",
  23771. height: math.unit(280, "feet")
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23777. {
  23778. front: {
  23779. height: math.unit(4.5, "meters"),
  23780. weight: math.unit(3200, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/ty/front.svg",
  23784. extra: 1038 / 960,
  23785. bottom: 31.156 / 1068
  23786. }
  23787. },
  23788. back: {
  23789. height: math.unit(4.5, "meters"),
  23790. weight: math.unit(3200, "lb"),
  23791. name: "Back",
  23792. image: {
  23793. source: "./media/characters/ty/back.svg",
  23794. extra: 1044 / 966,
  23795. bottom: 7.48 / 1049
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Normal",
  23802. height: math.unit(4.5, "meters"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(5 + 4 / 12, "feet"),
  23812. weight: math.unit(115, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/rocky/front.svg",
  23816. extra: 1012 / 975,
  23817. bottom: 54 / 1066
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(5 + 4 / 12, "feet"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23831. {
  23832. upright: {
  23833. height: math.unit(6, "meters"),
  23834. weight: math.unit(4000, "kg"),
  23835. name: "Upright",
  23836. image: {
  23837. source: "./media/characters/ruin/upright.svg",
  23838. extra: 668 / 661,
  23839. bottom: 42 / 799.8396
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(6, "meters"),
  23847. default: true
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(5, "feet"),
  23856. weight: math.unit(106, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/robin/front.svg",
  23860. extra: 862 / 799,
  23861. bottom: 42.4 / 914.8856
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(5, "feet"),
  23869. default: true
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23875. {
  23876. side: {
  23877. height: math.unit(3, "feet"),
  23878. weight: math.unit(225, "lb"),
  23879. name: "Side",
  23880. image: {
  23881. source: "./media/characters/saian/side.svg",
  23882. extra: 566 / 356,
  23883. bottom: 79.7 / 643
  23884. }
  23885. },
  23886. maw: {
  23887. height: math.unit(2.85, "feet"),
  23888. name: "Maw",
  23889. image: {
  23890. source: "./media/characters/saian/maw.svg"
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Normal",
  23897. height: math.unit(3, "feet"),
  23898. default: true
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23904. {
  23905. side: {
  23906. height: math.unit(8, "feet"),
  23907. weight: math.unit(300, "lb"),
  23908. name: "Side",
  23909. image: {
  23910. source: "./media/characters/equus-silvermane/side.svg",
  23911. extra: 2176 / 2050,
  23912. bottom: 65.7 / 2245
  23913. }
  23914. },
  23915. front: {
  23916. height: math.unit(8, "feet"),
  23917. weight: math.unit(300, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/equus-silvermane/front.svg",
  23921. extra: 4633 / 4400,
  23922. bottom: 71.3 / 4706.915
  23923. }
  23924. },
  23925. sideStepping: {
  23926. height: math.unit(8, "feet"),
  23927. weight: math.unit(300, "lb"),
  23928. name: "Side (Stepping)",
  23929. image: {
  23930. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23931. extra: 1968 / 1860,
  23932. bottom: 16.4 / 1989
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(8, "feet")
  23940. },
  23941. {
  23942. name: "Minimacro",
  23943. height: math.unit(75, "feet"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(150, "feet")
  23949. },
  23950. {
  23951. name: "Macro+",
  23952. height: math.unit(1000, "feet")
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(1, "mile")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23962. {
  23963. side: {
  23964. height: math.unit(20, "feet"),
  23965. weight: math.unit(30000, "kg"),
  23966. name: "Side",
  23967. image: {
  23968. source: "./media/characters/windar/side.svg",
  23969. extra: 1491 / 1248,
  23970. bottom: 82.56 / 1568
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(20, "feet"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23984. {
  23985. side: {
  23986. height: math.unit(15.66, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Side",
  23989. image: {
  23990. source: "./media/characters/melody/side.svg",
  23991. extra: 1097 / 944,
  23992. bottom: 11.8 / 1109
  23993. }
  23994. },
  23995. sideOutfit: {
  23996. height: math.unit(15.66, "feet"),
  23997. weight: math.unit(150, "lb"),
  23998. name: "Side (Outfit)",
  23999. image: {
  24000. source: "./media/characters/melody/side-outfit.svg",
  24001. extra: 1097 / 944,
  24002. bottom: 11.8 / 1109
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(15.66, "feet"),
  24010. default: true
  24011. },
  24012. ]
  24013. ))
  24014. characterMakers.push(() => makeCharacter(
  24015. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24016. {
  24017. armoredFront: {
  24018. height: math.unit(8, "feet"),
  24019. weight: math.unit(325, "lb"),
  24020. name: "Front",
  24021. image: {
  24022. source: "./media/characters/windera/armored-front.svg",
  24023. extra: 1830/1598,
  24024. bottom: 151/1981
  24025. },
  24026. form: "armored",
  24027. default: true
  24028. },
  24029. macroFront: {
  24030. height: math.unit(70, "feet"),
  24031. weight: math.unit(315453, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/windera/macro-front.svg",
  24035. extra: 963/883,
  24036. bottom: 23/986
  24037. },
  24038. form: "macro",
  24039. default: true
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(8, "feet"),
  24046. default: true,
  24047. form: "armored"
  24048. },
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(70, "feet"),
  24052. default: true,
  24053. form: "macro"
  24054. },
  24055. ],
  24056. {
  24057. "armored": {
  24058. name: "Armored",
  24059. default: true
  24060. },
  24061. "macro": {
  24062. name: "Macro",
  24063. },
  24064. }
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24068. {
  24069. front: {
  24070. height: math.unit(28.75, "feet"),
  24071. weight: math.unit(2000, "kg"),
  24072. name: "Front",
  24073. image: {
  24074. source: "./media/characters/sonear/front.svg",
  24075. extra: 1041.1 / 964.9,
  24076. bottom: 53.7 / 1096.6
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(28.75, "feet"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24090. {
  24091. side: {
  24092. height: math.unit(25.5, "feet"),
  24093. weight: math.unit(23000, "kg"),
  24094. name: "Side",
  24095. image: {
  24096. source: "./media/characters/kanara/side.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(25.5, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24110. {
  24111. side: {
  24112. height: math.unit(10, "feet"),
  24113. weight: math.unit(1000, "kg"),
  24114. name: "Side",
  24115. image: {
  24116. source: "./media/characters/ereus/side.svg",
  24117. extra: 1157 / 959,
  24118. bottom: 153 / 1312.5
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(10, "feet"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24132. {
  24133. side: {
  24134. height: math.unit(4.5, "feet"),
  24135. weight: math.unit(500, "lb"),
  24136. name: "Side",
  24137. image: {
  24138. source: "./media/characters/e-ter/side.svg",
  24139. extra: 1550 / 1248,
  24140. bottom: 146 / 1694
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(4.5, "feet"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24154. {
  24155. side: {
  24156. height: math.unit(9.7, "feet"),
  24157. weight: math.unit(4000, "kg"),
  24158. name: "Side",
  24159. image: {
  24160. source: "./media/characters/yamie/side.svg"
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(9.7, "feet"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(50, "feet"),
  24177. weight: math.unit(50000, "kg"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/anders/front.svg",
  24181. extra: 570 / 539,
  24182. bottom: 14.7 / 586.7
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Large",
  24189. height: math.unit(50, "feet")
  24190. },
  24191. {
  24192. name: "Macro",
  24193. height: math.unit(2000, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(12, "miles")
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(7 + 2 / 12, "feet"),
  24207. weight: math.unit(300, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/reban/front.svg",
  24211. extra: 1287/1212,
  24212. bottom: 148/1435
  24213. }
  24214. },
  24215. head: {
  24216. height: math.unit(1.95, "feet"),
  24217. name: "Head",
  24218. image: {
  24219. source: "./media/characters/reban/head.svg"
  24220. }
  24221. },
  24222. maw: {
  24223. height: math.unit(0.95, "feet"),
  24224. name: "Maw",
  24225. image: {
  24226. source: "./media/characters/reban/maw.svg"
  24227. }
  24228. },
  24229. foot: {
  24230. height: math.unit(1.65, "feet"),
  24231. name: "Foot",
  24232. image: {
  24233. source: "./media/characters/reban/foot.svg"
  24234. }
  24235. },
  24236. dick: {
  24237. height: math.unit(7 / 5, "feet"),
  24238. name: "Dick",
  24239. image: {
  24240. source: "./media/characters/reban/dick.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Natural Height",
  24247. height: math.unit(7 + 2 / 12, "feet")
  24248. },
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(500, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Canon Height",
  24256. height: math.unit(50, "AU")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(150, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/terrance-keayes/front.svg",
  24269. extra: 1.005,
  24270. bottom: 151 / 1615
  24271. }
  24272. },
  24273. side: {
  24274. height: math.unit(6, "feet"),
  24275. weight: math.unit(150, "lb"),
  24276. name: "Side",
  24277. image: {
  24278. source: "./media/characters/terrance-keayes/side.svg",
  24279. extra: 1.005,
  24280. bottom: 129.4 / 1544
  24281. }
  24282. },
  24283. back: {
  24284. height: math.unit(6, "feet"),
  24285. weight: math.unit(150, "lb"),
  24286. name: "Back",
  24287. image: {
  24288. source: "./media/characters/terrance-keayes/back.svg",
  24289. extra: 1.005,
  24290. bottom: 58.4 / 1557.3
  24291. }
  24292. },
  24293. dick: {
  24294. height: math.unit(6 * 0.208, "feet"),
  24295. name: "Dick",
  24296. image: {
  24297. source: "./media/characters/terrance-keayes/dick.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Canon Height",
  24304. height: math.unit(35, "miles"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(6, "feet"),
  24314. weight: math.unit(150, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/ofelia/front.svg",
  24318. extra: 1130/1117,
  24319. bottom: 91/1221
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(6, "feet"),
  24324. weight: math.unit(150, "lb"),
  24325. name: "Back",
  24326. image: {
  24327. source: "./media/characters/ofelia/back.svg",
  24328. extra: 1172/1159,
  24329. bottom: 28/1200
  24330. }
  24331. },
  24332. maw: {
  24333. height: math.unit(1, "feet"),
  24334. name: "Maw",
  24335. image: {
  24336. source: "./media/characters/ofelia/maw.svg"
  24337. }
  24338. },
  24339. foot: {
  24340. height: math.unit(1.949, "feet"),
  24341. name: "Foot",
  24342. image: {
  24343. source: "./media/characters/ofelia/foot.svg"
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Canon Height",
  24350. height: math.unit(2000, "miles"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(150, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/samuel/front.svg",
  24364. extra: 265 / 258,
  24365. bottom: 2 / 266.1566
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(100, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Full Size",
  24377. height: math.unit(1000, "miles")
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(6, "feet"),
  24386. weight: math.unit(300, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/beishir-kiel/front.svg",
  24390. extra: 569 / 547,
  24391. bottom: 41.9 / 609
  24392. }
  24393. },
  24394. maw: {
  24395. height: math.unit(6 * 0.202, "feet"),
  24396. name: "Maw",
  24397. image: {
  24398. source: "./media/characters/beishir-kiel/maw.svg"
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(300, "feet"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(5 + 7/12, "feet"),
  24415. weight: math.unit(120, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/logan-grey/front.svg",
  24419. extra: 1836/1738,
  24420. bottom: 108/1944
  24421. }
  24422. },
  24423. back: {
  24424. height: math.unit(5 + 7/12, "feet"),
  24425. weight: math.unit(120, "lb"),
  24426. name: "Back",
  24427. image: {
  24428. source: "./media/characters/logan-grey/back.svg",
  24429. extra: 1880/1794,
  24430. bottom: 24/1904
  24431. }
  24432. },
  24433. frontSfw: {
  24434. height: math.unit(5 + 7/12, "feet"),
  24435. weight: math.unit(120, "lb"),
  24436. name: "Front (SFW)",
  24437. image: {
  24438. source: "./media/characters/logan-grey/front-sfw.svg",
  24439. extra: 1836/1738,
  24440. bottom: 108/1944
  24441. }
  24442. },
  24443. backSfw: {
  24444. height: math.unit(5 + 7/12, "feet"),
  24445. weight: math.unit(120, "lb"),
  24446. name: "Back (SFW)",
  24447. image: {
  24448. source: "./media/characters/logan-grey/back-sfw.svg",
  24449. extra: 1880/1794,
  24450. bottom: 24/1904
  24451. }
  24452. },
  24453. hands: {
  24454. height: math.unit(0.84, "feet"),
  24455. name: "Hands",
  24456. image: {
  24457. source: "./media/characters/logan-grey/hands.svg"
  24458. }
  24459. },
  24460. paws: {
  24461. height: math.unit(0.72, "feet"),
  24462. name: "Paws",
  24463. image: {
  24464. source: "./media/characters/logan-grey/paws.svg"
  24465. }
  24466. },
  24467. cock: {
  24468. height: math.unit(1.45, "feet"),
  24469. name: "Cock",
  24470. image: {
  24471. source: "./media/characters/logan-grey/cock.svg"
  24472. }
  24473. },
  24474. cockAlt: {
  24475. height: math.unit(1.437, "feet"),
  24476. name: "Cock (alt)",
  24477. image: {
  24478. source: "./media/characters/logan-grey/cock-alt.svg"
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5 + 8 / 12, "feet")
  24486. },
  24487. {
  24488. name: "The 500 Foot Femboy",
  24489. height: math.unit(500, "feet"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Megmacro",
  24494. height: math.unit(20, "miles")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(8 + 2 / 12, "feet"),
  24503. weight: math.unit(275, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/draganta/front.svg",
  24507. extra: 1177 / 1135,
  24508. bottom: 33.46 / 1212.1
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(8 + 6 / 12, "feet"),
  24516. default: true
  24517. },
  24518. {
  24519. name: "Macro",
  24520. height: math.unit(150, "feet")
  24521. },
  24522. {
  24523. name: "Megamacro",
  24524. height: math.unit(1000, "miles")
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(1.72, "m"),
  24533. weight: math.unit(80, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/voski/front.svg",
  24537. extra: 2076.22 / 2022.4,
  24538. bottom: 102.7 / 2177.3866
  24539. }
  24540. },
  24541. frontFlaccid: {
  24542. height: math.unit(1.72, "m"),
  24543. weight: math.unit(80, "lb"),
  24544. name: "Front (Flaccid)",
  24545. image: {
  24546. source: "./media/characters/voski/front-flaccid.svg",
  24547. extra: 2076.22 / 2022.4,
  24548. bottom: 102.7 / 2177.3866
  24549. }
  24550. },
  24551. frontErect: {
  24552. height: math.unit(1.72, "m"),
  24553. weight: math.unit(80, "lb"),
  24554. name: "Front (Erect)",
  24555. image: {
  24556. source: "./media/characters/voski/front-erect.svg",
  24557. extra: 2076.22 / 2022.4,
  24558. bottom: 102.7 / 2177.3866
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(1.72, "m"),
  24563. weight: math.unit(80, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/voski/back.svg",
  24567. extra: 2104 / 2051,
  24568. bottom: 10.45 / 2113.63
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(1.72, "m")
  24576. },
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(55, "m"),
  24580. default: true
  24581. },
  24582. {
  24583. name: "Macro+",
  24584. height: math.unit(300, "m")
  24585. },
  24586. {
  24587. name: "Macro++",
  24588. height: math.unit(700, "m")
  24589. },
  24590. {
  24591. name: "Macro+++",
  24592. height: math.unit(4500, "m")
  24593. },
  24594. {
  24595. name: "Macro++++",
  24596. height: math.unit(45, "km")
  24597. },
  24598. {
  24599. name: "Macro+++++",
  24600. height: math.unit(1220, "km")
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(2.3, "m"),
  24609. weight: math.unit(304, "kg"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/icowom-lee/front.svg",
  24613. extra: 985 / 955,
  24614. bottom: 25.4 / 1012
  24615. }
  24616. },
  24617. fronttentacles: {
  24618. height: math.unit(2.3, "m"),
  24619. weight: math.unit(304, "kg"),
  24620. name: "Front-tentacles",
  24621. image: {
  24622. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24623. extra: 985 / 955,
  24624. bottom: 25.4 / 1012
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(2.3, "m"),
  24629. weight: math.unit(304, "kg"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/icowom-lee/back.svg",
  24633. extra: 975 / 954,
  24634. bottom: 9.5 / 985
  24635. }
  24636. },
  24637. backtentacles: {
  24638. height: math.unit(2.3, "m"),
  24639. weight: math.unit(304, "kg"),
  24640. name: "Back-tentacles",
  24641. image: {
  24642. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24643. extra: 975 / 954,
  24644. bottom: 9.5 / 985
  24645. }
  24646. },
  24647. frontDressed: {
  24648. height: math.unit(2.3, "m"),
  24649. weight: math.unit(304, "kg"),
  24650. name: "Front (Dressed)",
  24651. image: {
  24652. source: "./media/characters/icowom-lee/front-dressed.svg",
  24653. extra: 3076 / 2933,
  24654. bottom: 51.4 / 3125.1889
  24655. }
  24656. },
  24657. rump: {
  24658. height: math.unit(0.776, "meters"),
  24659. name: "Rump",
  24660. image: {
  24661. source: "./media/characters/icowom-lee/rump.svg"
  24662. }
  24663. },
  24664. genitals: {
  24665. height: math.unit(0.78, "meters"),
  24666. name: "Genitals",
  24667. image: {
  24668. source: "./media/characters/icowom-lee/genitals.svg"
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(2.3, "meters"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(94, "meters"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(22, "meters"),
  24690. weight: math.unit(21000, "kg"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/shock-diamond/front.svg",
  24694. extra: 2204 / 2053,
  24695. bottom: 65 / 2239.47
  24696. }
  24697. },
  24698. frontNude: {
  24699. height: math.unit(22, "meters"),
  24700. weight: math.unit(21000, "kg"),
  24701. name: "Front (Nude)",
  24702. image: {
  24703. source: "./media/characters/shock-diamond/front-nude.svg",
  24704. extra: 2514 / 2285,
  24705. bottom: 13 / 2527.56
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(3, "meters")
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(22, "meters"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(5 + 4/12, "feet"),
  24726. weight: math.unit(125, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/rory/front.svg",
  24730. extra: 1790/1681,
  24731. bottom: 66/1856
  24732. },
  24733. form: "normal",
  24734. default: true
  24735. },
  24736. back: {
  24737. height: math.unit(5 + 4/12, "feet"),
  24738. weight: math.unit(125, "lb"),
  24739. name: "Back",
  24740. image: {
  24741. source: "./media/characters/rory/back.svg",
  24742. extra: 1805/1690,
  24743. bottom: 56/1861
  24744. },
  24745. form: "normal"
  24746. },
  24747. frontDressed: {
  24748. height: math.unit(5 + 4/12, "feet"),
  24749. weight: math.unit(125, "lb"),
  24750. name: "Front (Dressed)",
  24751. image: {
  24752. source: "./media/characters/rory/front-dressed.svg",
  24753. extra: 1790/1681,
  24754. bottom: 66/1856
  24755. },
  24756. form: "normal"
  24757. },
  24758. backDressed: {
  24759. height: math.unit(5 + 4/12, "feet"),
  24760. weight: math.unit(125, "lb"),
  24761. name: "Back (Dressed)",
  24762. image: {
  24763. source: "./media/characters/rory/back-dressed.svg",
  24764. extra: 1805/1690,
  24765. bottom: 56/1861
  24766. },
  24767. form: "normal"
  24768. },
  24769. frontNsfw: {
  24770. height: math.unit(5 + 4/12, "feet"),
  24771. weight: math.unit(125, "lb"),
  24772. name: "Front (NSFW)",
  24773. image: {
  24774. source: "./media/characters/rory/front-nsfw.svg",
  24775. extra: 1790/1681,
  24776. bottom: 66/1856
  24777. },
  24778. form: "normal"
  24779. },
  24780. backNsfw: {
  24781. height: math.unit(5 + 4/12, "feet"),
  24782. weight: math.unit(125, "lb"),
  24783. name: "Back (NSFW)",
  24784. image: {
  24785. source: "./media/characters/rory/back-nsfw.svg",
  24786. extra: 1805/1690,
  24787. bottom: 56/1861
  24788. },
  24789. form: "normal"
  24790. },
  24791. dick: {
  24792. height: math.unit(0.8, "feet"),
  24793. name: "Dick",
  24794. image: {
  24795. source: "./media/characters/rory/dick.svg"
  24796. },
  24797. form: "normal"
  24798. },
  24799. thicc_front: {
  24800. height: math.unit(5 + 4/12, "feet"),
  24801. weight: math.unit(195, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/rory/thicc-front.svg",
  24805. extra: 1220/1100,
  24806. bottom: 103/1323
  24807. },
  24808. form: "thicc",
  24809. default: true
  24810. },
  24811. thicc_back: {
  24812. height: math.unit(5 + 4/12, "feet"),
  24813. weight: math.unit(195, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/rory/thicc-back.svg",
  24817. extra: 1166/1086,
  24818. bottom: 35/1201
  24819. },
  24820. form: "thicc"
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Micro",
  24826. height: math.unit(3, "inches"),
  24827. allForms: true
  24828. },
  24829. {
  24830. name: "Normal",
  24831. height: math.unit(5 + 4/12, "feet"),
  24832. allForms: true,
  24833. default: true
  24834. },
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(90, "feet"),
  24838. allForms: true
  24839. },
  24840. {
  24841. name: "Supercharged",
  24842. height: math.unit(270, "feet"),
  24843. allForms: true
  24844. },
  24845. ],
  24846. {
  24847. "normal": {
  24848. name: "Normal",
  24849. default: true
  24850. },
  24851. "thicc": {
  24852. name: "Thicc",
  24853. },
  24854. }
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(5 + 9 / 12, "feet"),
  24861. weight: math.unit(190, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/sprisk/front.svg",
  24865. extra: 1225 / 1180,
  24866. bottom: 42.7 / 1266.4
  24867. }
  24868. },
  24869. frontNsfw: {
  24870. height: math.unit(5 + 9 / 12, "feet"),
  24871. weight: math.unit(190, "lb"),
  24872. name: "Front (NSFW)",
  24873. image: {
  24874. source: "./media/characters/sprisk/front-nsfw.svg",
  24875. extra: 1225 / 1180,
  24876. bottom: 42.7 / 1266.4
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(5 + 9 / 12, "feet"),
  24881. weight: math.unit(190, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/sprisk/back.svg",
  24885. extra: 1247 / 1200,
  24886. bottom: 5.6 / 1253.04
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Tiny",
  24893. height: math.unit(2, "inches")
  24894. },
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(5 + 9 / 12, "feet"),
  24898. default: true
  24899. },
  24900. {
  24901. name: "Mini Macro",
  24902. height: math.unit(18, "feet")
  24903. },
  24904. {
  24905. name: "Macro",
  24906. height: math.unit(100, "feet")
  24907. },
  24908. {
  24909. name: "MACRO",
  24910. height: math.unit(50, "miles")
  24911. },
  24912. {
  24913. name: "M A C R O",
  24914. height: math.unit(300, "miles")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24920. {
  24921. side: {
  24922. height: math.unit(15.6, "meters"),
  24923. weight: math.unit(700000, "kg"),
  24924. name: "Side",
  24925. image: {
  24926. source: "./media/characters/bunsen/side.svg",
  24927. extra: 1644 / 358
  24928. }
  24929. },
  24930. foot: {
  24931. height: math.unit(1.611 * 1644 / 358, "meter"),
  24932. name: "Foot",
  24933. image: {
  24934. source: "./media/characters/bunsen/foot.svg"
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Small",
  24941. height: math.unit(10, "feet")
  24942. },
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(15.6, "meters"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(4 + 11 / 12, "feet"),
  24955. weight: math.unit(140, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/sesh/front.svg",
  24959. extra: 3420 / 3231,
  24960. bottom: 72 / 3949.5
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(4 + 11 / 12, "feet")
  24968. },
  24969. {
  24970. name: "Grown",
  24971. height: math.unit(15, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Macro",
  24976. height: math.unit(1500, "feet")
  24977. },
  24978. {
  24979. name: "Megamacro",
  24980. height: math.unit(30, "miles")
  24981. },
  24982. {
  24983. name: "Continental",
  24984. height: math.unit(3000, "miles")
  24985. },
  24986. {
  24987. name: "Gravity Mass",
  24988. height: math.unit(300000, "miles")
  24989. },
  24990. {
  24991. name: "Planet Buster",
  24992. height: math.unit(30000000, "miles")
  24993. },
  24994. {
  24995. name: "Big",
  24996. height: math.unit(3000000000, "miles")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(9, "feet"),
  25005. weight: math.unit(350, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/pepper/front.svg",
  25009. extra: 1448 / 1312,
  25010. bottom: 9.4 / 1457.88
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(9, "feet"),
  25015. weight: math.unit(350, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/pepper/back.svg",
  25019. extra: 1423 / 1300,
  25020. bottom: 4.6 / 1429
  25021. }
  25022. },
  25023. maw: {
  25024. height: math.unit(0.932, "feet"),
  25025. name: "Maw",
  25026. image: {
  25027. source: "./media/characters/pepper/maw.svg"
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(9, "feet"),
  25035. default: true
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(6, "feet"),
  25044. weight: math.unit(150, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/maelstrom/front.svg",
  25048. extra: 2100 / 1883,
  25049. bottom: 94 / 2196.7
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Less Kaiju",
  25056. height: math.unit(200, "feet")
  25057. },
  25058. {
  25059. name: "Kaiju",
  25060. height: math.unit(400, "feet"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Kaiju-er",
  25065. height: math.unit(600, "feet")
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(6 + 5 / 12, "feet"),
  25074. weight: math.unit(180, "lb"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/lexir/front.svg",
  25078. extra: 180 / 172,
  25079. bottom: 12 / 192
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(6 + 5 / 12, "feet"),
  25084. weight: math.unit(180, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/lexir/back.svg",
  25088. extra: 1273/1201,
  25089. bottom: 39/1312
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Very Smal",
  25096. height: math.unit(1, "nm")
  25097. },
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(6 + 5 / 12, "feet"),
  25101. default: true
  25102. },
  25103. {
  25104. name: "Macro",
  25105. height: math.unit(1, "mile")
  25106. },
  25107. {
  25108. name: "Megamacro",
  25109. height: math.unit(50, "miles")
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25115. {
  25116. front: {
  25117. height: math.unit(1.5, "meters"),
  25118. weight: math.unit(100, "lb"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/maksio/front.svg",
  25122. extra: 1549 / 1531,
  25123. bottom: 123.7 / 1674.5429
  25124. }
  25125. },
  25126. back: {
  25127. height: math.unit(1.5, "meters"),
  25128. weight: math.unit(100, "lb"),
  25129. name: "Back",
  25130. image: {
  25131. source: "./media/characters/maksio/back.svg",
  25132. extra: 1541 / 1509,
  25133. bottom: 97 / 1639
  25134. }
  25135. },
  25136. hand: {
  25137. height: math.unit(0.621, "feet"),
  25138. name: "Hand",
  25139. image: {
  25140. source: "./media/characters/maksio/hand.svg"
  25141. }
  25142. },
  25143. foot: {
  25144. height: math.unit(1.611, "feet"),
  25145. name: "Foot",
  25146. image: {
  25147. source: "./media/characters/maksio/foot.svg"
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Shrunken",
  25154. height: math.unit(10, "cm")
  25155. },
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(150, "cm"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(100, "feet"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/erza-bear/front.svg",
  25171. extra: 2449 / 2390,
  25172. bottom: 46 / 2494
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(100, "feet"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/erza-bear/back.svg",
  25180. extra: 2489 / 2430,
  25181. bottom: 85.4 / 2480
  25182. }
  25183. },
  25184. tail: {
  25185. height: math.unit(42, "feet"),
  25186. name: "Tail",
  25187. image: {
  25188. source: "./media/characters/erza-bear/tail.svg"
  25189. }
  25190. },
  25191. tongue: {
  25192. height: math.unit(8, "feet"),
  25193. name: "Tongue",
  25194. image: {
  25195. source: "./media/characters/erza-bear/tongue.svg"
  25196. }
  25197. },
  25198. dick: {
  25199. height: math.unit(10.5, "feet"),
  25200. name: "Dick",
  25201. image: {
  25202. source: "./media/characters/erza-bear/dick.svg"
  25203. }
  25204. },
  25205. dickVertical: {
  25206. height: math.unit(16.9, "feet"),
  25207. name: "Dick (Vertical)",
  25208. image: {
  25209. source: "./media/characters/erza-bear/dick-vertical.svg"
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(100, "feet"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(172, "cm"),
  25226. weight: math.unit(73, "kg"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/violet-flor/front.svg",
  25230. extra: 1530 / 1442,
  25231. bottom: 61.9 / 1588.8
  25232. }
  25233. },
  25234. back: {
  25235. height: math.unit(180, "cm"),
  25236. weight: math.unit(73, "kg"),
  25237. name: "Back",
  25238. image: {
  25239. source: "./media/characters/violet-flor/back.svg",
  25240. extra: 1692 / 1630,
  25241. bottom: 20 / 1712
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(172, "cm"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(6, "feet"),
  25258. weight: math.unit(220, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/lynn-rhea/front.svg",
  25262. extra: 310 / 273
  25263. }
  25264. },
  25265. back: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(220, "lb"),
  25268. name: "Back",
  25269. image: {
  25270. source: "./media/characters/lynn-rhea/back.svg",
  25271. extra: 310 / 273
  25272. }
  25273. },
  25274. dicks: {
  25275. height: math.unit(0.9, "feet"),
  25276. name: "Dicks",
  25277. image: {
  25278. source: "./media/characters/lynn-rhea/dicks.svg"
  25279. }
  25280. },
  25281. slit: {
  25282. height: math.unit(0.4, "feet"),
  25283. name: "Slit",
  25284. image: {
  25285. source: "./media/characters/lynn-rhea/slit.svg"
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Micro",
  25292. height: math.unit(1, "inch")
  25293. },
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(60, "feet"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Megamacro",
  25301. height: math.unit(2, "miles")
  25302. },
  25303. {
  25304. name: "Gigamacro",
  25305. height: math.unit(3, "earths")
  25306. },
  25307. {
  25308. name: "Galactic",
  25309. height: math.unit(0.8, "galaxies")
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25315. {
  25316. front: {
  25317. height: math.unit(1600, "feet"),
  25318. weight: math.unit(85758785169, "kg"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/valathos/front.svg",
  25322. extra: 1451 / 1339
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Macro",
  25329. height: math.unit(1600, "feet"),
  25330. default: true
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25336. {
  25337. front: {
  25338. height: math.unit(7 + 5 / 12, "feet"),
  25339. weight: math.unit(300, "lb"),
  25340. name: "Front",
  25341. image: {
  25342. source: "./media/characters/azula/front.svg",
  25343. extra: 3208 / 2880,
  25344. bottom: 80.2 / 3277
  25345. }
  25346. },
  25347. back: {
  25348. height: math.unit(7 + 5 / 12, "feet"),
  25349. weight: math.unit(300, "lb"),
  25350. name: "Back",
  25351. image: {
  25352. source: "./media/characters/azula/back.svg",
  25353. extra: 3169 / 2822,
  25354. bottom: 150.6 / 3321
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(7 + 5 / 12, "feet"),
  25362. default: true
  25363. },
  25364. {
  25365. name: "Big",
  25366. height: math.unit(20, "feet")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(5 + 1 / 12, "feet"),
  25375. weight: math.unit(110, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/rupert/front.svg",
  25379. extra: 1549 / 1495,
  25380. bottom: 54.2 / 1604.4
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(5 + 1 / 12, "feet"),
  25388. default: true
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25394. {
  25395. front: {
  25396. height: math.unit(8 + 4 / 12, "feet"),
  25397. weight: math.unit(350, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/sheera-castellar/front.svg",
  25401. extra: 1957 / 1894,
  25402. bottom: 26.97 / 1975.017
  25403. }
  25404. },
  25405. side: {
  25406. height: math.unit(8 + 4 / 12, "feet"),
  25407. weight: math.unit(350, "lb"),
  25408. name: "Side",
  25409. image: {
  25410. source: "./media/characters/sheera-castellar/side.svg",
  25411. extra: 1957 / 1894
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(8 + 4 / 12, "feet"),
  25416. weight: math.unit(350, "lb"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/sheera-castellar/back.svg",
  25420. extra: 1957 / 1894
  25421. }
  25422. },
  25423. angled: {
  25424. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25425. weight: math.unit(350, "lb"),
  25426. name: "Angled",
  25427. image: {
  25428. source: "./media/characters/sheera-castellar/angled.svg",
  25429. extra: 1807 / 1707,
  25430. bottom: 68 / 1875
  25431. }
  25432. },
  25433. genitals: {
  25434. height: math.unit(2.2, "feet"),
  25435. name: "Genitals",
  25436. image: {
  25437. source: "./media/characters/sheera-castellar/genitals.svg"
  25438. }
  25439. },
  25440. taur: {
  25441. height: math.unit(10 + 6/12, "feet"),
  25442. name: "Taur",
  25443. image: {
  25444. source: "./media/characters/sheera-castellar/taur.svg",
  25445. extra: 2017/1909,
  25446. bottom: 185/2202
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Normal",
  25453. height: math.unit(8 + 4 / 12, "feet")
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(150, "feet"),
  25458. default: true
  25459. },
  25460. {
  25461. name: "Macro+",
  25462. height: math.unit(800, "feet")
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(6, "feet"),
  25471. weight: math.unit(150, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/jaipur/front.svg",
  25475. extra: 3860 / 3731,
  25476. bottom: 287 / 4140
  25477. }
  25478. },
  25479. back: {
  25480. height: math.unit(6, "feet"),
  25481. weight: math.unit(150, "lb"),
  25482. name: "Back",
  25483. image: {
  25484. source: "./media/characters/jaipur/back.svg",
  25485. extra: 1637/1561,
  25486. bottom: 154/1791
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(1.85, "meters"),
  25494. default: true
  25495. },
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(150, "meters")
  25499. },
  25500. {
  25501. name: "Macro+",
  25502. height: math.unit(0.5, "miles")
  25503. },
  25504. {
  25505. name: "Macro++",
  25506. height: math.unit(2.5, "miles")
  25507. },
  25508. {
  25509. name: "Macro+++",
  25510. height: math.unit(12, "miles")
  25511. },
  25512. {
  25513. name: "Macro++++",
  25514. height: math.unit(120, "miles")
  25515. },
  25516. {
  25517. name: "Macro+++++",
  25518. height: math.unit(1200, "miles")
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(6, "feet"),
  25527. weight: math.unit(150, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/sheila-wolf/front.svg",
  25531. extra: 1931 / 1808,
  25532. bottom: 29.5 / 1960
  25533. }
  25534. },
  25535. dick: {
  25536. height: math.unit(1.464, "feet"),
  25537. name: "Dick",
  25538. image: {
  25539. source: "./media/characters/sheila-wolf/dick.svg"
  25540. }
  25541. },
  25542. muzzle: {
  25543. height: math.unit(0.513, "feet"),
  25544. name: "Muzzle",
  25545. image: {
  25546. source: "./media/characters/sheila-wolf/muzzle.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(70, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25560. {
  25561. front: {
  25562. height: math.unit(32, "meters"),
  25563. weight: math.unit(300000, "kg"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/almor/front.svg",
  25567. extra: 1408 / 1322,
  25568. bottom: 94.6 / 1506.5
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Macro",
  25575. height: math.unit(32, "meters"),
  25576. default: true
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25582. {
  25583. front: {
  25584. height: math.unit(7, "feet"),
  25585. weight: math.unit(200, "lb"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/silver/front.svg",
  25589. extra: 472.1 / 450.5,
  25590. bottom: 26.5 / 499.424
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(7, "feet"),
  25598. default: true
  25599. },
  25600. {
  25601. name: "Macro",
  25602. height: math.unit(800, "feet")
  25603. },
  25604. {
  25605. name: "Megamacro",
  25606. height: math.unit(250, "miles")
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25612. {
  25613. front: {
  25614. height: math.unit(6, "feet"),
  25615. weight: math.unit(150, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/pliskin/front.svg",
  25619. extra: 1469 / 1359,
  25620. bottom: 70 / 1540
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Micro",
  25627. height: math.unit(3, "inches")
  25628. },
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(5 + 11 / 12, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Macro",
  25636. height: math.unit(120, "feet")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(6, "feet"),
  25645. weight: math.unit(150, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/sammy/front.svg",
  25649. extra: 1193 / 1089,
  25650. bottom: 30.5 / 1226
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Macro",
  25657. height: math.unit(1700, "feet"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Examacro",
  25662. height: math.unit(2.5e9, "lightyears")
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(21, "meters"),
  25671. weight: math.unit(12, "tonnes"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/kuru/front.svg",
  25675. extra: 4301 / 3785,
  25676. bottom: 371.3 / 4691
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Macro",
  25683. height: math.unit(21, "meters"),
  25684. default: true
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25690. {
  25691. front: {
  25692. height: math.unit(23, "meters"),
  25693. weight: math.unit(12.2, "tonnes"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/rakka/front.svg",
  25697. extra: 4670 / 4169,
  25698. bottom: 301 / 4968.7
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Macro",
  25705. height: math.unit(23, "meters"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(6, "feet"),
  25715. weight: math.unit(150, "lb"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/rhys-feline/front.svg",
  25719. extra: 2488 / 2308,
  25720. bottom: 35.67 / 2519.19
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Really Small",
  25727. height: math.unit(1, "nm")
  25728. },
  25729. {
  25730. name: "Micro",
  25731. height: math.unit(4, "inches")
  25732. },
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(4 + 10 / 12, "feet"),
  25736. default: true
  25737. },
  25738. {
  25739. name: "Macro",
  25740. height: math.unit(100, "feet")
  25741. },
  25742. {
  25743. name: "Megamacto",
  25744. height: math.unit(50, "miles")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25750. {
  25751. side: {
  25752. height: math.unit(30, "feet"),
  25753. weight: math.unit(35000, "kg"),
  25754. name: "Side",
  25755. image: {
  25756. source: "./media/characters/alydar/side.svg",
  25757. extra: 234 / 222,
  25758. bottom: 6.5 / 241
  25759. }
  25760. },
  25761. front: {
  25762. height: math.unit(30, "feet"),
  25763. weight: math.unit(35000, "kg"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/alydar/front.svg",
  25767. extra: 223.37 / 210.2,
  25768. bottom: 22.3 / 246.76
  25769. }
  25770. },
  25771. top: {
  25772. height: math.unit(64.54, "feet"),
  25773. weight: math.unit(35000, "kg"),
  25774. name: "Top",
  25775. image: {
  25776. source: "./media/characters/alydar/top.svg"
  25777. }
  25778. },
  25779. anthro: {
  25780. height: math.unit(30, "feet"),
  25781. weight: math.unit(9000, "kg"),
  25782. name: "Anthro",
  25783. image: {
  25784. source: "./media/characters/alydar/anthro.svg",
  25785. extra: 432 / 421,
  25786. bottom: 7.18 / 440
  25787. }
  25788. },
  25789. maw: {
  25790. height: math.unit(11.693, "feet"),
  25791. name: "Maw",
  25792. image: {
  25793. source: "./media/characters/alydar/maw.svg"
  25794. }
  25795. },
  25796. head: {
  25797. height: math.unit(11.693, "feet"),
  25798. name: "Head",
  25799. image: {
  25800. source: "./media/characters/alydar/head.svg"
  25801. }
  25802. },
  25803. headAlt: {
  25804. height: math.unit(12.861, "feet"),
  25805. name: "Head (Alt)",
  25806. image: {
  25807. source: "./media/characters/alydar/head-alt.svg"
  25808. }
  25809. },
  25810. wing: {
  25811. height: math.unit(20.712, "feet"),
  25812. name: "Wing",
  25813. image: {
  25814. source: "./media/characters/alydar/wing.svg"
  25815. }
  25816. },
  25817. wingFeather: {
  25818. height: math.unit(9.662, "feet"),
  25819. name: "Wing Feather",
  25820. image: {
  25821. source: "./media/characters/alydar/wing-feather.svg"
  25822. }
  25823. },
  25824. countourFeather: {
  25825. height: math.unit(4.154, "feet"),
  25826. name: "Contour Feather",
  25827. image: {
  25828. source: "./media/characters/alydar/contour-feather.svg"
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Diplomatic",
  25835. height: math.unit(13, "feet"),
  25836. default: true
  25837. },
  25838. {
  25839. name: "Small",
  25840. height: math.unit(30, "feet")
  25841. },
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(95, "feet"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Large",
  25849. height: math.unit(285, "feet")
  25850. },
  25851. {
  25852. name: "Incomprehensible",
  25853. height: math.unit(450, "megameters")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25859. {
  25860. side: {
  25861. height: math.unit(11, "feet"),
  25862. weight: math.unit(1750, "kg"),
  25863. name: "Side",
  25864. image: {
  25865. source: "./media/characters/selicia/side.svg",
  25866. extra: 440 / 396,
  25867. bottom: 24.8 / 465.979
  25868. }
  25869. },
  25870. maw: {
  25871. height: math.unit(4.665, "feet"),
  25872. name: "Maw",
  25873. image: {
  25874. source: "./media/characters/selicia/maw.svg"
  25875. }
  25876. },
  25877. },
  25878. [
  25879. {
  25880. name: "Normal",
  25881. height: math.unit(11, "feet"),
  25882. default: true
  25883. },
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25888. {
  25889. side: {
  25890. height: math.unit(2 + 6 / 12, "feet"),
  25891. weight: math.unit(30, "lb"),
  25892. name: "Side",
  25893. image: {
  25894. source: "./media/characters/layla/side.svg",
  25895. extra: 244 / 188,
  25896. bottom: 18.2 / 262.1
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(2 + 6 / 12, "feet"),
  25901. weight: math.unit(30, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/layla/back.svg",
  25905. extra: 308 / 241.5,
  25906. bottom: 8.9 / 316.8
  25907. }
  25908. },
  25909. cumming: {
  25910. height: math.unit(2 + 6 / 12, "feet"),
  25911. weight: math.unit(30, "lb"),
  25912. name: "Cumming",
  25913. image: {
  25914. source: "./media/characters/layla/cumming.svg",
  25915. extra: 342 / 279,
  25916. bottom: 595 / 938
  25917. }
  25918. },
  25919. dickFlaccid: {
  25920. height: math.unit(2.595, "feet"),
  25921. name: "Flaccid Genitals",
  25922. image: {
  25923. source: "./media/characters/layla/dick-flaccid.svg"
  25924. }
  25925. },
  25926. dickErect: {
  25927. height: math.unit(2.359, "feet"),
  25928. name: "Erect Genitals",
  25929. image: {
  25930. source: "./media/characters/layla/dick-erect.svg"
  25931. }
  25932. },
  25933. dragon: {
  25934. height: math.unit(40, "feet"),
  25935. name: "Dragon",
  25936. image: {
  25937. source: "./media/characters/layla/dragon.svg",
  25938. extra: 610/535,
  25939. bottom: 367/977
  25940. }
  25941. },
  25942. taur: {
  25943. height: math.unit(30, "feet"),
  25944. name: "Taur",
  25945. image: {
  25946. source: "./media/characters/layla/taur.svg",
  25947. extra: 1268/1199,
  25948. bottom: 112/1380
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Micro",
  25955. height: math.unit(1, "inch")
  25956. },
  25957. {
  25958. name: "Small",
  25959. height: math.unit(1, "foot")
  25960. },
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(2 + 6 / 12, "feet"),
  25964. default: true
  25965. },
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(200, "feet")
  25969. },
  25970. {
  25971. name: "Megamacro",
  25972. height: math.unit(1000, "miles")
  25973. },
  25974. {
  25975. name: "Planetary",
  25976. height: math.unit(8000, "miles")
  25977. },
  25978. {
  25979. name: "True Layla",
  25980. height: math.unit(200000 * 7, "multiverses")
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25986. {
  25987. back: {
  25988. height: math.unit(10.5, "feet"),
  25989. weight: math.unit(800, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/knox/back.svg",
  25993. extra: 1486 / 1089,
  25994. bottom: 107 / 1601.4
  25995. }
  25996. },
  25997. side: {
  25998. height: math.unit(10.5, "feet"),
  25999. weight: math.unit(800, "lb"),
  26000. name: "Side",
  26001. image: {
  26002. source: "./media/characters/knox/side.svg",
  26003. extra: 244 / 218,
  26004. bottom: 14 / 260
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Compact",
  26011. height: math.unit(10.5, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Dynamax",
  26016. height: math.unit(210, "feet")
  26017. },
  26018. {
  26019. name: "Full Macro",
  26020. height: math.unit(850, "feet")
  26021. },
  26022. ]
  26023. ))
  26024. characterMakers.push(() => makeCharacter(
  26025. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26026. {
  26027. front: {
  26028. height: math.unit(28, "feet"),
  26029. weight: math.unit(10500, "lb"),
  26030. name: "Front",
  26031. image: {
  26032. source: "./media/characters/kayda/front.svg",
  26033. extra: 1536 / 1428,
  26034. bottom: 68.7 / 1603
  26035. }
  26036. },
  26037. back: {
  26038. height: math.unit(28, "feet"),
  26039. weight: math.unit(10500, "lb"),
  26040. name: "Back",
  26041. image: {
  26042. source: "./media/characters/kayda/back.svg",
  26043. extra: 1557 / 1464,
  26044. bottom: 39.5 / 1597.49
  26045. }
  26046. },
  26047. dick: {
  26048. height: math.unit(3.858, "feet"),
  26049. name: "Dick",
  26050. image: {
  26051. source: "./media/characters/kayda/dick.svg"
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(28, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(10 + 11 / 12, "feet"),
  26068. weight: math.unit(1400, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/brian/front.svg",
  26072. extra: 737 / 692,
  26073. bottom: 55.4 / 785
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Normal",
  26080. height: math.unit(10 + 11 / 12, "feet"),
  26081. default: true
  26082. },
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26087. {
  26088. front: {
  26089. height: math.unit(5 + 8 / 12, "feet"),
  26090. weight: math.unit(140, "lb"),
  26091. name: "Front",
  26092. image: {
  26093. source: "./media/characters/khemri/front.svg",
  26094. extra: 4780 / 4059,
  26095. bottom: 80.1 / 4859.25
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Micro",
  26102. height: math.unit(6, "inches")
  26103. },
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(5 + 8 / 12, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26113. {
  26114. front: {
  26115. height: math.unit(13, "feet"),
  26116. weight: math.unit(1700, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/felix-braveheart/front.svg",
  26120. extra: 1222 / 1157,
  26121. bottom: 53.2 / 1280
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(13, "feet"),
  26126. weight: math.unit(1700, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/felix-braveheart/back.svg",
  26130. extra: 1277 / 1203,
  26131. bottom: 50.2 / 1327
  26132. }
  26133. },
  26134. feral: {
  26135. height: math.unit(6, "feet"),
  26136. weight: math.unit(400, "lb"),
  26137. name: "Feral",
  26138. image: {
  26139. source: "./media/characters/felix-braveheart/feral.svg",
  26140. extra: 682 / 625,
  26141. bottom: 6.9 / 688
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(13, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26155. {
  26156. side: {
  26157. height: math.unit(5 + 11 / 12, "feet"),
  26158. weight: math.unit(1400, "lb"),
  26159. name: "Side",
  26160. image: {
  26161. source: "./media/characters/shadow-blade/side.svg",
  26162. extra: 1726 / 1267,
  26163. bottom: 58.4 / 1785
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(5 + 11 / 12, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(1 + 6 / 12, "feet"),
  26180. weight: math.unit(25, "lb"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/karla-halldor/front.svg",
  26184. extra: 1459 / 1383,
  26185. bottom: 12 / 1472
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(1 + 6 / 12, "feet"),
  26193. default: true
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(6 + 2 / 12, "feet"),
  26202. weight: math.unit(160, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/ariam/front.svg",
  26206. extra: 1073/976,
  26207. bottom: 52/1125
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(6 + 2/12, "feet"),
  26212. weight: math.unit(160, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/ariam/back.svg",
  26216. extra: 1103/1023,
  26217. bottom: 9/1112
  26218. }
  26219. },
  26220. dressed: {
  26221. height: math.unit(6 + 2/12, "feet"),
  26222. weight: math.unit(160, "lb"),
  26223. name: "Dressed",
  26224. image: {
  26225. source: "./media/characters/ariam/dressed.svg",
  26226. extra: 1099/1009,
  26227. bottom: 25/1124
  26228. }
  26229. },
  26230. squatting: {
  26231. height: math.unit(4.1, "feet"),
  26232. weight: math.unit(160, "lb"),
  26233. name: "Squatting",
  26234. image: {
  26235. source: "./media/characters/ariam/squatting.svg",
  26236. extra: 2617 / 2112,
  26237. bottom: 61.2 / 2681,
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(6 + 2 / 12, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Normal+",
  26249. height: math.unit(4, "meters")
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(50, "meters")
  26254. },
  26255. {
  26256. name: "Macro+",
  26257. height: math.unit(100, "meters")
  26258. },
  26259. {
  26260. name: "Megamacro",
  26261. height: math.unit(20, "km")
  26262. },
  26263. {
  26264. name: "Caretaker",
  26265. height: math.unit(444, "megameters")
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(1.67, "meters"),
  26274. weight: math.unit(140, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26278. extra: 438 / 410,
  26279. bottom: 0.75 / 439
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Shrunken",
  26286. height: math.unit(7.6, "cm")
  26287. },
  26288. {
  26289. name: "Human Scale",
  26290. height: math.unit(1.67, "meters")
  26291. },
  26292. {
  26293. name: "Wolxi Scale",
  26294. height: math.unit(36.7, "meters"),
  26295. default: true
  26296. },
  26297. ]
  26298. ))
  26299. characterMakers.push(() => makeCharacter(
  26300. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26301. {
  26302. front: {
  26303. height: math.unit(1.73, "meters"),
  26304. weight: math.unit(240, "lb"),
  26305. name: "Front",
  26306. image: {
  26307. source: "./media/characters/izue-two-mothers/front.svg",
  26308. extra: 469 / 437,
  26309. bottom: 1.24 / 470.6
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Shrunken",
  26316. height: math.unit(7.86, "cm")
  26317. },
  26318. {
  26319. name: "Human Scale",
  26320. height: math.unit(1.73, "meters")
  26321. },
  26322. {
  26323. name: "Wolxi Scale",
  26324. height: math.unit(38, "meters"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(1.55, "meters"),
  26334. weight: math.unit(120, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/teeku-love-shack/front.svg",
  26338. extra: 387 / 362,
  26339. bottom: 1.51 / 388
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Shrunken",
  26346. height: math.unit(7, "cm")
  26347. },
  26348. {
  26349. name: "Human Scale",
  26350. height: math.unit(1.55, "meters")
  26351. },
  26352. {
  26353. name: "Wolxi Scale",
  26354. height: math.unit(34.1, "meters"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(1.83, "meters"),
  26364. weight: math.unit(135, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/dejma-the-red/front.svg",
  26368. extra: 480 / 458,
  26369. bottom: 1.8 / 482
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Shrunken",
  26376. height: math.unit(8.3, "cm")
  26377. },
  26378. {
  26379. name: "Human Scale",
  26380. height: math.unit(1.83, "meters")
  26381. },
  26382. {
  26383. name: "Wolxi Scale",
  26384. height: math.unit(40, "meters"),
  26385. default: true
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(1.78, "meters"),
  26394. weight: math.unit(65, "kg"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/aki/front.svg",
  26398. extra: 452 / 415
  26399. }
  26400. },
  26401. frontNsfw: {
  26402. height: math.unit(1.78, "meters"),
  26403. weight: math.unit(65, "kg"),
  26404. name: "Front (NSFW)",
  26405. image: {
  26406. source: "./media/characters/aki/front-nsfw.svg",
  26407. extra: 452 / 415
  26408. }
  26409. },
  26410. back: {
  26411. height: math.unit(1.78, "meters"),
  26412. weight: math.unit(65, "kg"),
  26413. name: "Back",
  26414. image: {
  26415. source: "./media/characters/aki/back.svg",
  26416. extra: 452 / 415
  26417. }
  26418. },
  26419. rump: {
  26420. height: math.unit(2.05, "feet"),
  26421. name: "Rump",
  26422. image: {
  26423. source: "./media/characters/aki/rump.svg"
  26424. }
  26425. },
  26426. dick: {
  26427. height: math.unit(0.95, "feet"),
  26428. name: "Dick",
  26429. image: {
  26430. source: "./media/characters/aki/dick.svg"
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Micro",
  26437. height: math.unit(15, "cm")
  26438. },
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(178, "cm"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(214, "m")
  26447. },
  26448. {
  26449. name: "Macro+",
  26450. height: math.unit(534, "m")
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(5 + 5 / 12, "feet"),
  26459. weight: math.unit(120, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/ari/front.svg",
  26463. extra: 1550/1471,
  26464. bottom: 39/1589
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(5 + 5 / 12, "feet")
  26472. },
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(100, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(100, "miles")
  26481. },
  26482. {
  26483. name: "Gigamacro",
  26484. height: math.unit(80000, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(9, "feet"),
  26493. weight: math.unit(400, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/bolt/side.svg",
  26497. extra: 1126 / 896,
  26498. bottom: 60 / 1187.3,
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Micro",
  26505. height: math.unit(5, "inches")
  26506. },
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(9, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(700, "feet")
  26515. },
  26516. {
  26517. name: "Max Size",
  26518. height: math.unit(1.52e22, "yottameters")
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(4.3, "meters"),
  26527. weight: math.unit(3, "tons"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/draekon-sylviar/front.svg",
  26531. extra: 2072/1512,
  26532. bottom: 74/2146
  26533. }
  26534. },
  26535. back: {
  26536. height: math.unit(4.3, "meters"),
  26537. weight: math.unit(3, "tons"),
  26538. name: "Back",
  26539. image: {
  26540. source: "./media/characters/draekon-sylviar/back.svg",
  26541. extra: 1639/1483,
  26542. bottom: 41/1680
  26543. }
  26544. },
  26545. feral: {
  26546. height: math.unit(1.15, "meters"),
  26547. weight: math.unit(3, "tons"),
  26548. name: "Feral",
  26549. image: {
  26550. source: "./media/characters/draekon-sylviar/feral.svg",
  26551. extra: 1033/395,
  26552. bottom: 130/1163
  26553. }
  26554. },
  26555. maw: {
  26556. height: math.unit(1.3, "meters"),
  26557. name: "Maw",
  26558. image: {
  26559. source: "./media/characters/draekon-sylviar/maw.svg"
  26560. }
  26561. },
  26562. mawSeparated: {
  26563. height: math.unit(1.53, "meters"),
  26564. name: "Separated Maw",
  26565. image: {
  26566. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26567. }
  26568. },
  26569. tail: {
  26570. height: math.unit(1.15, "meters"),
  26571. name: "Tail",
  26572. image: {
  26573. source: "./media/characters/draekon-sylviar/tail.svg"
  26574. }
  26575. },
  26576. tailDick: {
  26577. height: math.unit(1.15, "meters"),
  26578. name: "Tail (Dick)",
  26579. image: {
  26580. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26581. }
  26582. },
  26583. tailDickSeparated: {
  26584. height: math.unit(1.19, "meters"),
  26585. name: "Tail (Separated Dick)",
  26586. image: {
  26587. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26588. }
  26589. },
  26590. slit: {
  26591. height: math.unit(1, "meters"),
  26592. name: "Slit",
  26593. image: {
  26594. source: "./media/characters/draekon-sylviar/slit.svg"
  26595. }
  26596. },
  26597. dick: {
  26598. height: math.unit(1.15, "meters"),
  26599. name: "Dick",
  26600. image: {
  26601. source: "./media/characters/draekon-sylviar/dick.svg"
  26602. }
  26603. },
  26604. dickSeparated: {
  26605. height: math.unit(1.1, "meters"),
  26606. name: "Separated Dick",
  26607. image: {
  26608. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26609. }
  26610. },
  26611. sheath: {
  26612. height: math.unit(1.15, "meters"),
  26613. name: "Sheath",
  26614. image: {
  26615. source: "./media/characters/draekon-sylviar/sheath.svg"
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Small",
  26622. height: math.unit(4.53 / 2, "meters"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(4.53, "meters"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Large",
  26632. height: math.unit(4.53 * 2, "meters"),
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(6 + 2 / 12, "feet"),
  26641. weight: math.unit(180, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/brawler/front.svg",
  26645. extra: 3301 / 3027,
  26646. bottom: 138 / 3439
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(6 + 2 / 12, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(11, "feet"),
  26663. weight: math.unit(1000, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/alex/front.svg",
  26667. bottom: 44.5 / 620
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Micro",
  26674. height: math.unit(5, "inches")
  26675. },
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(11, "feet"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(9.5e9, "feet")
  26684. },
  26685. {
  26686. name: "Max Size",
  26687. height: math.unit(1.4e283, "yottameters")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26693. {
  26694. female: {
  26695. height: math.unit(29.9, "m"),
  26696. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26697. name: "Female",
  26698. image: {
  26699. source: "./media/characters/zenari/female.svg",
  26700. extra: 3281.6 / 3217,
  26701. bottom: 72.2 / 3353
  26702. }
  26703. },
  26704. male: {
  26705. height: math.unit(27.7, "m"),
  26706. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26707. name: "Male",
  26708. image: {
  26709. source: "./media/characters/zenari/male.svg",
  26710. extra: 3008 / 2991,
  26711. bottom: 54.6 / 3069
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(29.7, "meters"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26725. {
  26726. female: {
  26727. height: math.unit(23.8, "m"),
  26728. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26729. name: "Female",
  26730. image: {
  26731. source: "./media/characters/mactarian/female.svg",
  26732. extra: 2662 / 2569,
  26733. bottom: 73 / 2736
  26734. }
  26735. },
  26736. male: {
  26737. height: math.unit(23.8, "m"),
  26738. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26739. name: "Male",
  26740. image: {
  26741. source: "./media/characters/mactarian/male.svg",
  26742. extra: 2673 / 2600,
  26743. bottom: 76 / 2750
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Macro",
  26750. height: math.unit(23.8, "meters"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26757. {
  26758. female: {
  26759. height: math.unit(19.3, "m"),
  26760. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26761. name: "Female",
  26762. image: {
  26763. source: "./media/characters/umok/female.svg",
  26764. extra: 2186 / 2078,
  26765. bottom: 87 / 2277
  26766. }
  26767. },
  26768. male: {
  26769. height: math.unit(19.5, "m"),
  26770. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26771. name: "Male",
  26772. image: {
  26773. source: "./media/characters/umok/male.svg",
  26774. extra: 2233 / 2140,
  26775. bottom: 24.4 / 2258
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Macro",
  26782. height: math.unit(19.3, "meters"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26789. {
  26790. female: {
  26791. height: math.unit(26.15, "m"),
  26792. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26793. name: "Female",
  26794. image: {
  26795. source: "./media/characters/joraxian/female.svg",
  26796. extra: 2912 / 2824,
  26797. bottom: 36 / 2956
  26798. }
  26799. },
  26800. male: {
  26801. height: math.unit(25.4, "m"),
  26802. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26803. name: "Male",
  26804. image: {
  26805. source: "./media/characters/joraxian/male.svg",
  26806. extra: 2877 / 2721,
  26807. bottom: 82 / 2967
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(26.15, "meters"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26821. {
  26822. female: {
  26823. height: math.unit(21.6, "m"),
  26824. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26825. name: "Female",
  26826. image: {
  26827. source: "./media/characters/sthara/female.svg",
  26828. extra: 2516 / 2347,
  26829. bottom: 21.5 / 2537
  26830. }
  26831. },
  26832. male: {
  26833. height: math.unit(24, "m"),
  26834. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26835. name: "Male",
  26836. image: {
  26837. source: "./media/characters/sthara/male.svg",
  26838. extra: 2732 / 2607,
  26839. bottom: 23 / 2732
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Macro",
  26846. height: math.unit(21.6, "meters"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(6 + 4 / 12, "feet"),
  26856. weight: math.unit(175, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/luka-bryzant/front.svg",
  26860. extra: 311 / 289,
  26861. bottom: 4 / 315
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(6 + 4 / 12, "feet"),
  26866. weight: math.unit(175, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/luka-bryzant/back.svg",
  26870. extra: 311 / 289,
  26871. bottom: 3.8 / 313.7
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Micro",
  26878. height: math.unit(10, "inches")
  26879. },
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(6 + 4 / 12, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Large",
  26887. height: math.unit(12, "feet")
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(5 + 7 / 12, "feet"),
  26896. weight: math.unit(185, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/aman-aquila/front.svg",
  26900. extra: 1013 / 976,
  26901. bottom: 45.6 / 1057
  26902. }
  26903. },
  26904. side: {
  26905. height: math.unit(5 + 7 / 12, "feet"),
  26906. weight: math.unit(185, "lb"),
  26907. name: "Side",
  26908. image: {
  26909. source: "./media/characters/aman-aquila/side.svg",
  26910. extra: 1054 / 1011,
  26911. bottom: 15 / 1070
  26912. }
  26913. },
  26914. back: {
  26915. height: math.unit(5 + 7 / 12, "feet"),
  26916. weight: math.unit(185, "lb"),
  26917. name: "Back",
  26918. image: {
  26919. source: "./media/characters/aman-aquila/back.svg",
  26920. extra: 1026 / 970,
  26921. bottom: 12 / 1039
  26922. }
  26923. },
  26924. head: {
  26925. height: math.unit(1.211, "feet"),
  26926. name: "Head",
  26927. image: {
  26928. source: "./media/characters/aman-aquila/head.svg",
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Minimicro",
  26935. height: math.unit(0.057, "inches")
  26936. },
  26937. {
  26938. name: "Micro",
  26939. height: math.unit(7, "inches")
  26940. },
  26941. {
  26942. name: "Mini",
  26943. height: math.unit(3 + 7 / 12, "feet")
  26944. },
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(5 + 7 / 12, "feet"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(157 + 7 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Megamacro",
  26956. height: math.unit(1557 + 7 / 12, "feet")
  26957. },
  26958. {
  26959. name: "Gigamacro",
  26960. height: math.unit(15557 + 7 / 12, "feet")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(3 + 2 / 12, "inches"),
  26969. weight: math.unit(0.3, "ounces"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/hiphae/front.svg",
  26973. extra: 1931 / 1683,
  26974. bottom: 24 / 1955
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(3 + 1 / 2, "inches"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(5 + 10 / 12, "feet"),
  26991. weight: math.unit(165, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/nicky/front.svg",
  26995. extra: 3144 / 2886,
  26996. bottom: 45.6 / 3192
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(5 + 10 / 12, "feet"),
  27001. weight: math.unit(165, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/nicky/back.svg",
  27005. extra: 3055 / 2804,
  27006. bottom: 28.4 / 3087
  27007. }
  27008. },
  27009. frontclothed: {
  27010. height: math.unit(5 + 10 / 12, "feet"),
  27011. weight: math.unit(165, "lb"),
  27012. name: "Front-clothed",
  27013. image: {
  27014. source: "./media/characters/nicky/front-clothed.svg",
  27015. extra: 3184.9 / 2926.9,
  27016. bottom: 86.5 / 3239.9
  27017. }
  27018. },
  27019. foot: {
  27020. height: math.unit(1.16, "feet"),
  27021. name: "Foot",
  27022. image: {
  27023. source: "./media/characters/nicky/foot.svg"
  27024. }
  27025. },
  27026. feet: {
  27027. height: math.unit(1.34, "feet"),
  27028. name: "Feet",
  27029. image: {
  27030. source: "./media/characters/nicky/feet.svg"
  27031. }
  27032. },
  27033. maw: {
  27034. height: math.unit(0.9, "feet"),
  27035. name: "Maw",
  27036. image: {
  27037. source: "./media/characters/nicky/maw.svg"
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(5 + 10 / 12, "feet"),
  27045. default: true
  27046. },
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(60, "feet")
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(1, "mile")
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27059. {
  27060. side: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(600, "lb"),
  27063. name: "Side",
  27064. image: {
  27065. source: "./media/characters/blair/side.svg",
  27066. bottom: 16.6 / 475,
  27067. extra: 458 / 431
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Micro",
  27074. height: math.unit(8, "inches")
  27075. },
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(10, "feet"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Macro",
  27083. height: math.unit(180, "feet")
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(5 + 4 / 12, "feet"),
  27092. weight: math.unit(125, "lb"),
  27093. name: "Front",
  27094. image: {
  27095. source: "./media/characters/fisher/front.svg",
  27096. extra: 444 / 390,
  27097. bottom: 2 / 444.8
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Micro",
  27104. height: math.unit(4, "inches")
  27105. },
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(5 + 4 / 12, "feet"),
  27109. default: true
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(100, "feet")
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(6.71, "feet"),
  27122. weight: math.unit(200, "lb"),
  27123. preyCapacity: math.unit(1000000, "people"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/gliss/front.svg",
  27127. extra: 2347 / 2231,
  27128. bottom: 113 / 2462
  27129. }
  27130. },
  27131. hammerspaceSize: {
  27132. height: math.unit(6.71 * 717, "feet"),
  27133. weight: math.unit(200, "lb"),
  27134. preyCapacity: math.unit(1000000, "people"),
  27135. name: "Hammerspace Size",
  27136. image: {
  27137. source: "./media/characters/gliss/front.svg",
  27138. extra: 2347 / 2231,
  27139. bottom: 113 / 2462
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(6.71, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27153. {
  27154. side: {
  27155. height: math.unit(1.44, "m"),
  27156. weight: math.unit(80, "kg"),
  27157. name: "Side",
  27158. image: {
  27159. source: "./media/characters/dune-anderson/side.svg",
  27160. bottom: 49 / 1426
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Wolf-sized",
  27167. height: math.unit(1.44, "meters")
  27168. },
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(5.05, "meters"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Big",
  27176. height: math.unit(14.4, "meters")
  27177. },
  27178. {
  27179. name: "Huge",
  27180. height: math.unit(144, "meters")
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(7, "feet"),
  27189. weight: math.unit(425, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/hind/front.svg",
  27193. extra: 2091 / 1860,
  27194. bottom: 129 / 2220
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(7, "feet"),
  27199. weight: math.unit(425, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/hind/back.svg",
  27203. extra: 2091 / 1860,
  27204. bottom: 24.6 / 2309
  27205. }
  27206. },
  27207. tail: {
  27208. height: math.unit(2.8, "feet"),
  27209. name: "Tail",
  27210. image: {
  27211. source: "./media/characters/hind/tail.svg"
  27212. }
  27213. },
  27214. head: {
  27215. height: math.unit(2.55, "feet"),
  27216. name: "Head",
  27217. image: {
  27218. source: "./media/characters/hind/head.svg"
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "XS",
  27225. height: math.unit(0.7, "feet")
  27226. },
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(7, "feet"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "XL",
  27234. height: math.unit(70, "feet")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(2.1, "meters"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/tharquench-sizestealer/front.svg",
  27247. extra: 1605/1470,
  27248. bottom: 36/1641
  27249. }
  27250. },
  27251. frontAlt: {
  27252. height: math.unit(2.1, "meters"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front (Alt)",
  27255. image: {
  27256. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27257. extra: 2318 / 2063,
  27258. bottom: 93.4 / 2410
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Nano",
  27265. height: math.unit(1, "mm")
  27266. },
  27267. {
  27268. name: "Micro",
  27269. height: math.unit(1, "cm")
  27270. },
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(2.1, "meters"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(7 + 5 / 12, "feet"),
  27283. weight: math.unit(357, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/solex-draconov/front.svg",
  27287. extra: 1993 / 1865,
  27288. bottom: 117 / 2111
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Natural Height",
  27295. height: math.unit(7 + 5 / 12, "feet"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Macro",
  27300. height: math.unit(350, "feet")
  27301. },
  27302. {
  27303. name: "Macro+",
  27304. height: math.unit(1000, "feet")
  27305. },
  27306. {
  27307. name: "Megamacro",
  27308. height: math.unit(20, "km")
  27309. },
  27310. {
  27311. name: "Megamacro+",
  27312. height: math.unit(1000, "km")
  27313. },
  27314. {
  27315. name: "Gigamacro",
  27316. height: math.unit(2.5, "Gm")
  27317. },
  27318. {
  27319. name: "Teramacro",
  27320. height: math.unit(15, "Tm")
  27321. },
  27322. {
  27323. name: "Galactic",
  27324. height: math.unit(30, "Zm")
  27325. },
  27326. {
  27327. name: "Universal",
  27328. height: math.unit(21000, "Ym")
  27329. },
  27330. {
  27331. name: "Omniversal",
  27332. height: math.unit(9.861e50, "Ym")
  27333. },
  27334. {
  27335. name: "Existential",
  27336. height: math.unit(1e300, "meters")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27342. {
  27343. side: {
  27344. height: math.unit(25, "feet"),
  27345. weight: math.unit(90000, "lb"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/mandarax/side.svg",
  27349. extra: 614 / 332,
  27350. bottom: 55 / 630
  27351. }
  27352. },
  27353. lounging: {
  27354. height: math.unit(15.4, "feet"),
  27355. weight: math.unit(90000, "lb"),
  27356. name: "Lounging",
  27357. image: {
  27358. source: "./media/characters/mandarax/lounging.svg",
  27359. extra: 817/609,
  27360. bottom: 685/1502
  27361. }
  27362. },
  27363. head: {
  27364. height: math.unit(11.4, "feet"),
  27365. name: "Head",
  27366. image: {
  27367. source: "./media/characters/mandarax/head.svg"
  27368. }
  27369. },
  27370. belly: {
  27371. height: math.unit(33, "feet"),
  27372. name: "Belly",
  27373. preyCapacity: math.unit(500, "people"),
  27374. image: {
  27375. source: "./media/characters/mandarax/belly.svg"
  27376. }
  27377. },
  27378. dick: {
  27379. height: math.unit(8.46, "feet"),
  27380. name: "Dick",
  27381. image: {
  27382. source: "./media/characters/mandarax/dick.svg"
  27383. }
  27384. },
  27385. top: {
  27386. height: math.unit(28, "meters"),
  27387. name: "Top",
  27388. image: {
  27389. source: "./media/characters/mandarax/top.svg"
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(25, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27403. {
  27404. front: {
  27405. height: math.unit(5, "feet"),
  27406. weight: math.unit(90, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/pixil/front.svg",
  27410. extra: 2000 / 1618,
  27411. bottom: 12.3 / 2011
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(5, "feet"),
  27419. default: true
  27420. },
  27421. {
  27422. name: "Megamacro",
  27423. height: math.unit(10, "miles"),
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(7 + 2 / 12, "feet"),
  27432. weight: math.unit(200, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/angel/front.svg",
  27436. extra: 1830 / 1737,
  27437. bottom: 22.6 / 1854,
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Normal",
  27444. height: math.unit(7 + 2 / 12, "feet"),
  27445. default: true
  27446. },
  27447. {
  27448. name: "Macro",
  27449. height: math.unit(1000, "feet")
  27450. },
  27451. {
  27452. name: "Megamacro",
  27453. height: math.unit(2, "miles")
  27454. },
  27455. {
  27456. name: "Gigamacro",
  27457. height: math.unit(20, "earths")
  27458. },
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(5, "feet"),
  27466. weight: math.unit(180, "lb"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/mekana/front.svg",
  27470. extra: 1671 / 1605,
  27471. bottom: 3.5 / 1691
  27472. }
  27473. },
  27474. side: {
  27475. height: math.unit(5, "feet"),
  27476. weight: math.unit(180, "lb"),
  27477. name: "Side",
  27478. image: {
  27479. source: "./media/characters/mekana/side.svg",
  27480. extra: 1671 / 1605,
  27481. bottom: 3.5 / 1691
  27482. }
  27483. },
  27484. back: {
  27485. height: math.unit(5, "feet"),
  27486. weight: math.unit(180, "lb"),
  27487. name: "Back",
  27488. image: {
  27489. source: "./media/characters/mekana/back.svg",
  27490. extra: 1671 / 1605,
  27491. bottom: 3.5 / 1691
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(5, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(4 + 6 / 12, "feet"),
  27508. weight: math.unit(80, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/pixie/front.svg",
  27512. extra: 1924 / 1825,
  27513. bottom: 22.4 / 1946
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(4 + 6 / 12, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(40, "feet")
  27526. },
  27527. ]
  27528. ))
  27529. characterMakers.push(() => makeCharacter(
  27530. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27531. {
  27532. front: {
  27533. height: math.unit(2.1, "meters"),
  27534. weight: math.unit(200, "lb"),
  27535. name: "Front",
  27536. image: {
  27537. source: "./media/characters/the-lascivious/front.svg",
  27538. extra: 1 / 0.893,
  27539. bottom: 3.5 / 573.7
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Human Scale",
  27546. height: math.unit(2.1, "meters")
  27547. },
  27548. {
  27549. name: "Wolxi Scale",
  27550. height: math.unit(46.2, "m"),
  27551. default: true
  27552. },
  27553. {
  27554. name: "Boinker of Buildings",
  27555. height: math.unit(10, "km")
  27556. },
  27557. {
  27558. name: "Shagger of Skyscrapers",
  27559. height: math.unit(40, "km")
  27560. },
  27561. {
  27562. name: "Banger of Boroughs",
  27563. height: math.unit(4000, "km")
  27564. },
  27565. {
  27566. name: "Screwer of States",
  27567. height: math.unit(100000, "km")
  27568. },
  27569. {
  27570. name: "Pounder of Planets",
  27571. height: math.unit(2000000, "km")
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(6, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/aj/front.svg",
  27584. extra: 2039 / 1562,
  27585. bottom: 40 / 2079
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(11 + 6 / 12, "feet"),
  27593. default: true
  27594. },
  27595. {
  27596. name: "Megamacro",
  27597. height: math.unit(60, "megameters")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27603. {
  27604. side: {
  27605. height: math.unit(31 + 8 / 12, "feet"),
  27606. weight: math.unit(75000, "kg"),
  27607. name: "Side",
  27608. image: {
  27609. source: "./media/characters/koros/side.svg",
  27610. extra: 1442 / 1297,
  27611. bottom: 122.7 / 1562
  27612. }
  27613. },
  27614. dicksKingsCrown: {
  27615. height: math.unit(6, "feet"),
  27616. name: "Dicks (King's Crown)",
  27617. image: {
  27618. source: "./media/characters/koros/dicks-kings-crown.svg"
  27619. }
  27620. },
  27621. dicksTailSet: {
  27622. height: math.unit(3, "feet"),
  27623. name: "Dicks (Tail Set)",
  27624. image: {
  27625. source: "./media/characters/koros/dicks-tail-set.svg"
  27626. }
  27627. },
  27628. dickCumming: {
  27629. height: math.unit(7.98, "feet"),
  27630. name: "Dick (Cumming)",
  27631. image: {
  27632. source: "./media/characters/koros/dick-cumming.svg"
  27633. }
  27634. },
  27635. dicksBack: {
  27636. height: math.unit(5.9, "feet"),
  27637. name: "Dicks (Back)",
  27638. image: {
  27639. source: "./media/characters/koros/dicks-back.svg"
  27640. }
  27641. },
  27642. dicksFront: {
  27643. height: math.unit(3.72, "feet"),
  27644. name: "Dicks (Front)",
  27645. image: {
  27646. source: "./media/characters/koros/dicks-front.svg"
  27647. }
  27648. },
  27649. dicksPeeking: {
  27650. height: math.unit(3.0, "feet"),
  27651. name: "Dicks (Peeking)",
  27652. image: {
  27653. source: "./media/characters/koros/dicks-peeking.svg"
  27654. }
  27655. },
  27656. eye: {
  27657. height: math.unit(1.7, "feet"),
  27658. name: "Eye",
  27659. image: {
  27660. source: "./media/characters/koros/eye.svg"
  27661. }
  27662. },
  27663. headFront: {
  27664. height: math.unit(11.69, "feet"),
  27665. name: "Head (Front)",
  27666. image: {
  27667. source: "./media/characters/koros/head-front.svg"
  27668. }
  27669. },
  27670. headSide: {
  27671. height: math.unit(14, "feet"),
  27672. name: "Head (Side)",
  27673. image: {
  27674. source: "./media/characters/koros/head-side.svg"
  27675. }
  27676. },
  27677. leg: {
  27678. height: math.unit(17, "feet"),
  27679. name: "Leg",
  27680. image: {
  27681. source: "./media/characters/koros/leg.svg"
  27682. }
  27683. },
  27684. mawSide: {
  27685. height: math.unit(12.8, "feet"),
  27686. name: "Maw (Side)",
  27687. image: {
  27688. source: "./media/characters/koros/maw-side.svg"
  27689. }
  27690. },
  27691. mawSpitting: {
  27692. height: math.unit(17, "feet"),
  27693. name: "Maw (Spitting)",
  27694. image: {
  27695. source: "./media/characters/koros/maw-spitting.svg"
  27696. }
  27697. },
  27698. slit: {
  27699. height: math.unit(2.8, "feet"),
  27700. name: "Slit",
  27701. image: {
  27702. source: "./media/characters/koros/slit.svg"
  27703. }
  27704. },
  27705. stomach: {
  27706. height: math.unit(6.8, "feet"),
  27707. preyCapacity: math.unit(20, "people"),
  27708. name: "Stomach",
  27709. image: {
  27710. source: "./media/characters/koros/stomach.svg"
  27711. }
  27712. },
  27713. wingspanBottom: {
  27714. height: math.unit(114, "feet"),
  27715. name: "Wingspan (Bottom)",
  27716. image: {
  27717. source: "./media/characters/koros/wingspan-bottom.svg"
  27718. }
  27719. },
  27720. wingspanTop: {
  27721. height: math.unit(104, "feet"),
  27722. name: "Wingspan (Top)",
  27723. image: {
  27724. source: "./media/characters/koros/wingspan-top.svg"
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(31 + 8 / 12, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(18 + 5 / 12, "feet"),
  27741. weight: math.unit(3750, "kg"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/vexx/front.svg",
  27745. extra: 426 / 396,
  27746. bottom: 31.5 / 458
  27747. }
  27748. },
  27749. maw: {
  27750. height: math.unit(6, "feet"),
  27751. name: "Maw",
  27752. image: {
  27753. source: "./media/characters/vexx/maw.svg"
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(18 + 5 / 12, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(17 + 6 / 12, "feet"),
  27770. weight: math.unit(150, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/baadra/front.svg",
  27774. extra: 1694/1553,
  27775. bottom: 179/1873
  27776. }
  27777. },
  27778. frontAlt: {
  27779. height: math.unit(17 + 6 / 12, "feet"),
  27780. weight: math.unit(150, "lb"),
  27781. name: "Front (Alt)",
  27782. image: {
  27783. source: "./media/characters/baadra/front-alt.svg",
  27784. extra: 3137 / 2890,
  27785. bottom: 168.4 / 3305
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(17 + 6 / 12, "feet"),
  27790. weight: math.unit(150, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/baadra/back.svg",
  27794. extra: 3142 / 2890,
  27795. bottom: 220 / 3371
  27796. }
  27797. },
  27798. head: {
  27799. height: math.unit(5.45, "feet"),
  27800. name: "Head",
  27801. image: {
  27802. source: "./media/characters/baadra/head.svg"
  27803. }
  27804. },
  27805. headAngry: {
  27806. height: math.unit(4.95, "feet"),
  27807. name: "Head (Angry)",
  27808. image: {
  27809. source: "./media/characters/baadra/head-angry.svg"
  27810. }
  27811. },
  27812. headOpen: {
  27813. height: math.unit(6, "feet"),
  27814. name: "Head (Open)",
  27815. image: {
  27816. source: "./media/characters/baadra/head-open.svg"
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(17 + 6 / 12, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(7 + 3 / 12, "feet"),
  27833. weight: math.unit(180, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/juri/front.svg",
  27837. extra: 1401 / 1237,
  27838. bottom: 18.5 / 1418
  27839. }
  27840. },
  27841. side: {
  27842. height: math.unit(7 + 3 / 12, "feet"),
  27843. weight: math.unit(180, "lb"),
  27844. name: "Side",
  27845. image: {
  27846. source: "./media/characters/juri/side.svg",
  27847. extra: 1424 / 1242,
  27848. bottom: 18.5 / 1447
  27849. }
  27850. },
  27851. sitting: {
  27852. height: math.unit(6, "feet"),
  27853. weight: math.unit(180, "lb"),
  27854. name: "Sitting",
  27855. image: {
  27856. source: "./media/characters/juri/sitting.svg",
  27857. extra: 1270 / 1143,
  27858. bottom: 100 / 1343
  27859. }
  27860. },
  27861. back: {
  27862. height: math.unit(7 + 3 / 12, "feet"),
  27863. weight: math.unit(180, "lb"),
  27864. name: "Back",
  27865. image: {
  27866. source: "./media/characters/juri/back.svg",
  27867. extra: 1377 / 1240,
  27868. bottom: 23.7 / 1405
  27869. }
  27870. },
  27871. maw: {
  27872. height: math.unit(2.8, "feet"),
  27873. name: "Maw",
  27874. image: {
  27875. source: "./media/characters/juri/maw.svg"
  27876. }
  27877. },
  27878. stomach: {
  27879. height: math.unit(0.89, "feet"),
  27880. preyCapacity: math.unit(4, "liters"),
  27881. name: "Stomach",
  27882. image: {
  27883. source: "./media/characters/juri/stomach.svg"
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(7 + 3 / 12, "feet"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27897. {
  27898. fox: {
  27899. height: math.unit(5 + 6 / 12, "feet"),
  27900. weight: math.unit(140, "lb"),
  27901. name: "Fox",
  27902. image: {
  27903. source: "./media/characters/maxene-sita/fox.svg",
  27904. extra: 146 / 138,
  27905. bottom: 2.1 / 148.19
  27906. }
  27907. },
  27908. foxLaying: {
  27909. height: math.unit(1.70, "feet"),
  27910. weight: math.unit(140, "lb"),
  27911. name: "Fox (Laying)",
  27912. image: {
  27913. source: "./media/characters/maxene-sita/fox-laying.svg",
  27914. extra: 910 / 572,
  27915. bottom: 71 / 981
  27916. }
  27917. },
  27918. kitsune: {
  27919. height: math.unit(10, "feet"),
  27920. weight: math.unit(800, "lb"),
  27921. name: "Kitsune",
  27922. image: {
  27923. source: "./media/characters/maxene-sita/kitsune.svg",
  27924. extra: 185 / 176,
  27925. bottom: 4.7 / 189.9
  27926. }
  27927. },
  27928. hellhound: {
  27929. height: math.unit(10, "feet"),
  27930. weight: math.unit(700, "lb"),
  27931. name: "Hellhound",
  27932. image: {
  27933. source: "./media/characters/maxene-sita/hellhound.svg",
  27934. extra: 1600 / 1545,
  27935. bottom: 81 / 1681
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Normal",
  27942. height: math.unit(5 + 6 / 12, "feet"),
  27943. default: true
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27949. {
  27950. front: {
  27951. height: math.unit(3 + 4 / 12, "feet"),
  27952. weight: math.unit(70, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/maia/front.svg",
  27956. extra: 227 / 219.5,
  27957. bottom: 40 / 267
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(3 + 4 / 12, "feet"),
  27962. weight: math.unit(70, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/maia/back.svg",
  27966. extra: 237 / 225
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(3 + 4 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(5 + 10 / 12, "feet"),
  27983. weight: math.unit(197, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/jabaro/front.svg",
  27987. extra: 225 / 216,
  27988. bottom: 5.06 / 230
  27989. }
  27990. },
  27991. back: {
  27992. height: math.unit(5 + 10 / 12, "feet"),
  27993. weight: math.unit(197, "lb"),
  27994. name: "Back",
  27995. image: {
  27996. source: "./media/characters/jabaro/back.svg",
  27997. extra: 225 / 219,
  27998. bottom: 1.9 / 227
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5 + 10 / 12, "feet"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(5 + 8 / 12, "feet"),
  28015. weight: math.unit(139, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/risa/front.svg",
  28019. extra: 270 / 260,
  28020. bottom: 11.2 / 282
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(5 + 8 / 12, "feet"),
  28025. weight: math.unit(139, "lb"),
  28026. name: "Back",
  28027. image: {
  28028. source: "./media/characters/risa/back.svg",
  28029. extra: 264 / 255,
  28030. bottom: 4 / 268
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(5 + 8 / 12, "feet"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(2 + 11 / 12, "feet"),
  28047. weight: math.unit(30, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/weatley/front.svg",
  28051. bottom: 10.7 / 414,
  28052. extra: 403.5 / 362
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(2 + 11 / 12, "feet"),
  28057. weight: math.unit(30, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/weatley/back.svg",
  28061. bottom: 10.7 / 414,
  28062. extra: 403.5 / 362
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(2 + 11 / 12, "feet"),
  28070. default: true
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(5 + 2 / 12, "feet"),
  28079. weight: math.unit(50, "kg"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/mercury-crescent/front.svg",
  28083. extra: 1088 / 1033,
  28084. bottom: 18.9 / 1109
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(5 + 2 / 12, "feet"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28098. {
  28099. front: {
  28100. height: math.unit(2, "feet"),
  28101. weight: math.unit(15, "kg"),
  28102. name: "Front",
  28103. image: {
  28104. source: "./media/characters/diamond-jones/front.svg",
  28105. extra: 727/723,
  28106. bottom: 46/773
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Normal",
  28113. height: math.unit(2, "feet"),
  28114. default: true
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(3, "feet"),
  28123. weight: math.unit(30, "kg"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/sweet-bit/front.svg",
  28127. extra: 675 / 567,
  28128. bottom: 27.7 / 703
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(3, "feet"),
  28136. default: true
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28142. {
  28143. side: {
  28144. height: math.unit(9.178, "feet"),
  28145. weight: math.unit(500, "lb"),
  28146. name: "Side",
  28147. image: {
  28148. source: "./media/characters/umbrazen/side.svg",
  28149. extra: 1730 / 1473,
  28150. bottom: 34.6 / 1765
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(9.178, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(10, "feet"),
  28167. weight: math.unit(750, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/arlist/front.svg",
  28171. extra: 961 / 778,
  28172. bottom: 6.2 / 986
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Normal",
  28179. height: math.unit(10, "feet"),
  28180. default: true
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28186. {
  28187. front: {
  28188. height: math.unit(5 + 1 / 12, "feet"),
  28189. weight: math.unit(110, "lb"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/aradel/front.svg",
  28193. extra: 324 / 303,
  28194. bottom: 3.6 / 329.4
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(5 + 1 / 12, "feet"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28208. {
  28209. dressed: {
  28210. height: math.unit(3 + 8 / 12, "feet"),
  28211. weight: math.unit(50, "lb"),
  28212. name: "Dressed",
  28213. image: {
  28214. source: "./media/characters/serryn/dressed.svg",
  28215. extra: 1792 / 1656,
  28216. bottom: 43.5 / 1840
  28217. }
  28218. },
  28219. nude: {
  28220. height: math.unit(3 + 8 / 12, "feet"),
  28221. weight: math.unit(50, "lb"),
  28222. name: "Nude",
  28223. image: {
  28224. source: "./media/characters/serryn/nude.svg",
  28225. extra: 1792 / 1656,
  28226. bottom: 43.5 / 1840
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(3 + 8 / 12, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(7 + 10 / 12, "feet"),
  28243. weight: math.unit(255, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/xavier-thyme/front.svg",
  28247. extra: 3733 / 3642,
  28248. bottom: 131 / 3869
  28249. }
  28250. },
  28251. frontRaven: {
  28252. height: math.unit(7 + 10 / 12, "feet"),
  28253. weight: math.unit(255, "lb"),
  28254. name: "Front (Raven)",
  28255. image: {
  28256. source: "./media/characters/xavier-thyme/front-raven.svg",
  28257. extra: 4385 / 3642,
  28258. bottom: 131 / 4517
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(7 + 10 / 12, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(1.6, "m"),
  28275. weight: math.unit(50, "kg"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/kiki/front.svg",
  28279. extra: 4682 / 3610,
  28280. bottom: 115 / 4777
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(1.6, "meters"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(50, "m"),
  28297. weight: math.unit(500, "tonnes"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/ryoko/front.svg",
  28301. extra: 4632 / 3926,
  28302. bottom: 193 / 4823
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(50, "meters"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(30, "m"),
  28319. weight: math.unit(22, "tonnes"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/elio/front.svg",
  28323. extra: 4582 / 3720,
  28324. bottom: 236 / 4828
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(30, "meters"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(6 + 3 / 12, "feet"),
  28341. weight: math.unit(120, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/azura/front.svg",
  28345. extra: 1149 / 1135,
  28346. bottom: 45 / 1194
  28347. }
  28348. },
  28349. frontClothed: {
  28350. height: math.unit(6 + 3 / 12, "feet"),
  28351. weight: math.unit(120, "lb"),
  28352. name: "Front (Clothed)",
  28353. image: {
  28354. source: "./media/characters/azura/front-clothed.svg",
  28355. extra: 1149 / 1135,
  28356. bottom: 45 / 1194
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(6 + 3 / 12, "feet"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(20 + 6 / 12, "feet")
  28369. },
  28370. {
  28371. name: "Megamacro",
  28372. height: math.unit(12, "miles")
  28373. },
  28374. {
  28375. name: "Gigamacro",
  28376. height: math.unit(10000, "miles")
  28377. },
  28378. {
  28379. name: "Teramacro",
  28380. height: math.unit(900000, "miles")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(12, "feet"),
  28389. weight: math.unit(1, "ton"),
  28390. capacity: math.unit(660000, "gallons"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/zeus/front.svg",
  28394. extra: 5005 / 4717,
  28395. bottom: 363 / 5388
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(12, "feet")
  28403. },
  28404. {
  28405. name: "Preferred Size",
  28406. height: math.unit(0.5, "miles"),
  28407. default: true
  28408. },
  28409. {
  28410. name: "Giga Horse",
  28411. height: math.unit(300, "miles")
  28412. },
  28413. {
  28414. name: "Riding Planets",
  28415. height: math.unit(30, "megameters")
  28416. },
  28417. {
  28418. name: "Cosmic Giant",
  28419. height: math.unit(3, "zettameters")
  28420. },
  28421. {
  28422. name: "Breeding God",
  28423. height: math.unit(9.92e22, "yottameters")
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28429. {
  28430. side: {
  28431. height: math.unit(9, "feet"),
  28432. weight: math.unit(1500, "kg"),
  28433. name: "Side",
  28434. image: {
  28435. source: "./media/characters/fang/side.svg",
  28436. extra: 924 / 866,
  28437. bottom: 47.5 / 972.3
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(9, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(75 + 6 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Teramacro",
  28453. height: math.unit(50000, "miles")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(10, "feet"),
  28462. weight: math.unit(2, "tons"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/rekhit/front.svg",
  28466. extra: 2796 / 2590,
  28467. bottom: 225 / 3022
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(10, "feet"),
  28475. default: true
  28476. },
  28477. {
  28478. name: "Macro",
  28479. height: math.unit(500, "feet")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(7 + 6.451 / 12, "feet"),
  28488. weight: math.unit(310, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/dahlia-verrick/front.svg",
  28492. extra: 1488 / 1365,
  28493. bottom: 6.2 / 1495
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(7 + 6.451 / 12, "feet"),
  28498. weight: math.unit(310, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/dahlia-verrick/back.svg",
  28502. extra: 1472 / 1351,
  28503. bottom: 5.28 / 1477
  28504. }
  28505. },
  28506. frontBusiness: {
  28507. height: math.unit(7 + 6.451 / 12, "feet"),
  28508. weight: math.unit(200, "lb"),
  28509. name: "Front (Business)",
  28510. image: {
  28511. source: "./media/characters/dahlia-verrick/front-business.svg",
  28512. extra: 1478 / 1381,
  28513. bottom: 5.5 / 1484
  28514. }
  28515. },
  28516. frontCasual: {
  28517. height: math.unit(7 + 6.451 / 12, "feet"),
  28518. weight: math.unit(200, "lb"),
  28519. name: "Front (Casual)",
  28520. image: {
  28521. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28522. extra: 1478 / 1381,
  28523. bottom: 5.5 / 1484
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Travel-Sized",
  28530. height: math.unit(7.45, "inches")
  28531. },
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(7 + 6.451 / 12, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Hitting the Town",
  28539. height: math.unit(37 + 8 / 12, "feet")
  28540. },
  28541. {
  28542. name: "Stomp in the Suburbs",
  28543. height: math.unit(964 + 9.728 / 12, "feet")
  28544. },
  28545. {
  28546. name: "Sit on the City",
  28547. height: math.unit(61747 + 10.592 / 12, "feet")
  28548. },
  28549. {
  28550. name: "Glomp the Globe",
  28551. height: math.unit(252919327 + 4.832 / 12, "feet")
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(6 + 4 / 12, "feet"),
  28560. weight: math.unit(320, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/balina-mahigan/front.svg",
  28564. extra: 447 / 428,
  28565. bottom: 18 / 466
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(6 + 4 / 12, "feet"),
  28570. weight: math.unit(320, "lb"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/balina-mahigan/back.svg",
  28574. extra: 445 / 428,
  28575. bottom: 4.07 / 448
  28576. }
  28577. },
  28578. arm: {
  28579. height: math.unit(1.88, "feet"),
  28580. name: "Arm",
  28581. image: {
  28582. source: "./media/characters/balina-mahigan/arm.svg"
  28583. }
  28584. },
  28585. backPort: {
  28586. height: math.unit(0.685, "feet"),
  28587. name: "Back Port",
  28588. image: {
  28589. source: "./media/characters/balina-mahigan/back-port.svg"
  28590. }
  28591. },
  28592. hoofpaw: {
  28593. height: math.unit(1.41, "feet"),
  28594. name: "Hoofpaw",
  28595. image: {
  28596. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28597. }
  28598. },
  28599. leftHandBack: {
  28600. height: math.unit(0.938, "feet"),
  28601. name: "Left Hand (Back)",
  28602. image: {
  28603. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28604. }
  28605. },
  28606. leftHandFront: {
  28607. height: math.unit(0.938, "feet"),
  28608. name: "Left Hand (Front)",
  28609. image: {
  28610. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28611. }
  28612. },
  28613. rightHandBack: {
  28614. height: math.unit(0.95, "feet"),
  28615. name: "Right Hand (Back)",
  28616. image: {
  28617. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28618. }
  28619. },
  28620. rightHandFront: {
  28621. height: math.unit(0.95, "feet"),
  28622. name: "Right Hand (Front)",
  28623. image: {
  28624. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Normal",
  28631. height: math.unit(6 + 4 / 12, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(320, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/balina-mejeri/front.svg",
  28645. extra: 517 / 488,
  28646. bottom: 44.2 / 561
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(6 + 4 / 12, "feet")
  28654. },
  28655. {
  28656. name: "Business",
  28657. height: math.unit(155, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28664. {
  28665. kneeling: {
  28666. height: math.unit(6 + 4 / 12, "feet"),
  28667. weight: math.unit(300 * 20, "lb"),
  28668. name: "Kneeling",
  28669. image: {
  28670. source: "./media/characters/balbarian/kneeling.svg",
  28671. extra: 922 / 862,
  28672. bottom: 42.4 / 965
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Normal",
  28679. height: math.unit(6 + 4 / 12, "feet")
  28680. },
  28681. {
  28682. name: "Treasured",
  28683. height: math.unit(18 + 9 / 12, "feet"),
  28684. default: true
  28685. },
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(900, "feet")
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(6 + 4 / 12, "feet"),
  28697. weight: math.unit(325, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/balina-amarini/front.svg",
  28701. extra: 415 / 403,
  28702. bottom: 19 / 433.4
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(6 + 4 / 12, "feet"),
  28707. weight: math.unit(325, "lb"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/balina-amarini/back.svg",
  28711. extra: 415 / 403,
  28712. bottom: 13.5 / 432
  28713. }
  28714. },
  28715. overdrive: {
  28716. height: math.unit(6 + 4 / 12, "feet"),
  28717. weight: math.unit(400, "lb"),
  28718. name: "Overdrive",
  28719. image: {
  28720. source: "./media/characters/balina-amarini/overdrive.svg",
  28721. extra: 269 / 259,
  28722. bottom: 12 / 282
  28723. }
  28724. },
  28725. },
  28726. [
  28727. {
  28728. name: "Boom",
  28729. height: math.unit(9 + 10 / 12, "feet"),
  28730. default: true
  28731. },
  28732. {
  28733. name: "Macro",
  28734. height: math.unit(280, "feet")
  28735. },
  28736. ]
  28737. ))
  28738. characterMakers.push(() => makeCharacter(
  28739. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28740. {
  28741. goddess: {
  28742. height: math.unit(600, "feet"),
  28743. weight: math.unit(2000000, "tons"),
  28744. name: "Goddess",
  28745. image: {
  28746. source: "./media/characters/lady-kubwa/goddess.svg",
  28747. extra: 1240.5 / 1223,
  28748. bottom: 22 / 1263
  28749. }
  28750. },
  28751. goddesser: {
  28752. height: math.unit(900, "feet"),
  28753. weight: math.unit(20000000, "lb"),
  28754. name: "Goddess-er",
  28755. image: {
  28756. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28757. extra: 899 / 888,
  28758. bottom: 12.6 / 912
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Macro",
  28765. height: math.unit(600, "feet"),
  28766. default: true
  28767. },
  28768. {
  28769. name: "Megamacro",
  28770. height: math.unit(250, "miles")
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(7 + 7 / 12, "feet"),
  28779. weight: math.unit(250, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/tala-grovehorn/front.svg",
  28783. extra: 2636 / 2525,
  28784. bottom: 147 / 2781
  28785. }
  28786. },
  28787. back: {
  28788. height: math.unit(7 + 7 / 12, "feet"),
  28789. weight: math.unit(250, "lb"),
  28790. name: "Back",
  28791. image: {
  28792. source: "./media/characters/tala-grovehorn/back.svg",
  28793. extra: 2635 / 2539,
  28794. bottom: 100 / 2732.8
  28795. }
  28796. },
  28797. mouth: {
  28798. height: math.unit(1.15, "feet"),
  28799. name: "Mouth",
  28800. image: {
  28801. source: "./media/characters/tala-grovehorn/mouth.svg"
  28802. }
  28803. },
  28804. dick: {
  28805. height: math.unit(2.36, "feet"),
  28806. name: "Dick",
  28807. image: {
  28808. source: "./media/characters/tala-grovehorn/dick.svg"
  28809. }
  28810. },
  28811. slit: {
  28812. height: math.unit(0.61, "feet"),
  28813. name: "Slit",
  28814. image: {
  28815. source: "./media/characters/tala-grovehorn/slit.svg"
  28816. }
  28817. },
  28818. },
  28819. [
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(7 + 7 / 12, "feet"),
  28827. weight: math.unit(225, "lb"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/epona/front.svg",
  28831. extra: 2445 / 2290,
  28832. bottom: 251 / 2696
  28833. }
  28834. },
  28835. back: {
  28836. height: math.unit(7 + 7 / 12, "feet"),
  28837. weight: math.unit(225, "lb"),
  28838. name: "Back",
  28839. image: {
  28840. source: "./media/characters/epona/back.svg",
  28841. extra: 2546 / 2408,
  28842. bottom: 44 / 2589
  28843. }
  28844. },
  28845. genitals: {
  28846. height: math.unit(1.5, "feet"),
  28847. name: "Genitals",
  28848. image: {
  28849. source: "./media/characters/epona/genitals.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(7 + 7 / 12, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(7, "feet"),
  28866. weight: math.unit(518, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/avia-bloodbourn/front.svg",
  28870. extra: 1466 / 1350,
  28871. bottom: 65 / 1527
  28872. }
  28873. },
  28874. },
  28875. [
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(9.35, "feet"),
  28883. weight: math.unit(600, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/amera/front.svg",
  28887. extra: 891 / 818,
  28888. bottom: 30 / 922.7
  28889. }
  28890. },
  28891. back: {
  28892. height: math.unit(9.35, "feet"),
  28893. weight: math.unit(600, "lb"),
  28894. name: "Back",
  28895. image: {
  28896. source: "./media/characters/amera/back.svg",
  28897. extra: 876 / 824,
  28898. bottom: 6.8 / 884
  28899. }
  28900. },
  28901. dick: {
  28902. height: math.unit(2.14, "feet"),
  28903. name: "Dick",
  28904. image: {
  28905. source: "./media/characters/amera/dick.svg"
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(9.35, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28919. {
  28920. kneeling: {
  28921. height: math.unit(3 + 4 / 12, "feet"),
  28922. weight: math.unit(90, "lb"),
  28923. name: "Kneeling",
  28924. image: {
  28925. source: "./media/characters/rosewen/kneeling.svg",
  28926. extra: 1835 / 1571,
  28927. bottom: 27.7 / 1862
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(3 + 4 / 12, "feet"),
  28935. default: true
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(5 + 10 / 12, "feet"),
  28944. weight: math.unit(200, "lb"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/sabah/front.svg",
  28948. extra: 849 / 763,
  28949. bottom: 33.9 / 881
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(5 + 10 / 12, "feet"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28963. {
  28964. front: {
  28965. height: math.unit(3 + 5 / 12, "feet"),
  28966. weight: math.unit(40, "kg"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/purple-flame/front.svg",
  28970. extra: 1577 / 1412,
  28971. bottom: 97 / 1694
  28972. }
  28973. },
  28974. frontDressed: {
  28975. height: math.unit(3 + 5 / 12, "feet"),
  28976. weight: math.unit(40, "kg"),
  28977. name: "Front (Dressed)",
  28978. image: {
  28979. source: "./media/characters/purple-flame/front-dressed.svg",
  28980. extra: 1577 / 1412,
  28981. bottom: 97 / 1694
  28982. }
  28983. },
  28984. headphones: {
  28985. height: math.unit(0.85, "feet"),
  28986. name: "Headphones",
  28987. image: {
  28988. source: "./media/characters/purple-flame/headphones.svg"
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Really Small",
  28995. height: math.unit(5, "cm")
  28996. },
  28997. {
  28998. name: "Micro",
  28999. height: math.unit(1 + 5 / 12, "feet")
  29000. },
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(3 + 5 / 12, "feet"),
  29004. default: true
  29005. },
  29006. {
  29007. name: "Minimacro",
  29008. height: math.unit(125, "feet")
  29009. },
  29010. {
  29011. name: "Macro",
  29012. height: math.unit(0.5, "miles")
  29013. },
  29014. {
  29015. name: "Megamacro",
  29016. height: math.unit(50, "miles")
  29017. },
  29018. {
  29019. name: "Gigantic",
  29020. height: math.unit(750, "miles")
  29021. },
  29022. {
  29023. name: "Planetary",
  29024. height: math.unit(15000, "miles")
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(14, "feet"),
  29033. weight: math.unit(959, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/arsenal/front.svg",
  29037. extra: 2357 / 2157,
  29038. bottom: 93 / 2458
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(14, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/adira/front.svg",
  29059. extra: 1078 / 1029,
  29060. bottom: 87 / 1166
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Micro",
  29067. height: math.unit(4, "inches"),
  29068. default: true
  29069. },
  29070. {
  29071. name: "Macro",
  29072. height: math.unit(50, "feet")
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(16, "feet"),
  29081. weight: math.unit(1000, "lb"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/grim/front.svg",
  29085. extra: 622 / 614,
  29086. bottom: 18.1 / 642
  29087. }
  29088. },
  29089. back: {
  29090. height: math.unit(16, "feet"),
  29091. weight: math.unit(1000, "lb"),
  29092. name: "Back",
  29093. image: {
  29094. source: "./media/characters/grim/back.svg",
  29095. extra: 610.6 / 602,
  29096. bottom: 40.8 / 652
  29097. }
  29098. },
  29099. hunched: {
  29100. height: math.unit(9.75, "feet"),
  29101. weight: math.unit(1000, "lb"),
  29102. name: "Hunched",
  29103. image: {
  29104. source: "./media/characters/grim/hunched.svg",
  29105. extra: 304 / 297,
  29106. bottom: 35.4 / 394
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(16, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(2.3, "meters"),
  29123. weight: math.unit(300, "lb"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/sinja/front-sfw.svg",
  29127. extra: 1393 / 1294,
  29128. bottom: 70 / 1463
  29129. }
  29130. },
  29131. frontNsfw: {
  29132. height: math.unit(2.3, "meters"),
  29133. weight: math.unit(300, "lb"),
  29134. name: "Front (NSFW)",
  29135. image: {
  29136. source: "./media/characters/sinja/front-nsfw.svg",
  29137. extra: 1393 / 1294,
  29138. bottom: 70 / 1463
  29139. }
  29140. },
  29141. back: {
  29142. height: math.unit(2.3, "meters"),
  29143. weight: math.unit(300, "lb"),
  29144. name: "Back",
  29145. image: {
  29146. source: "./media/characters/sinja/back.svg",
  29147. extra: 1393 / 1294,
  29148. bottom: 70 / 1463
  29149. }
  29150. },
  29151. head: {
  29152. height: math.unit(1.771, "feet"),
  29153. name: "Head",
  29154. image: {
  29155. source: "./media/characters/sinja/head.svg"
  29156. }
  29157. },
  29158. slit: {
  29159. height: math.unit(0.8, "feet"),
  29160. name: "Slit",
  29161. image: {
  29162. source: "./media/characters/sinja/slit.svg"
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(2.3, "meters")
  29170. },
  29171. {
  29172. name: "Macro",
  29173. height: math.unit(91, "meters"),
  29174. default: true
  29175. },
  29176. {
  29177. name: "Megamacro",
  29178. height: math.unit(91440, "meters")
  29179. },
  29180. {
  29181. name: "Gigamacro",
  29182. height: math.unit(60960000, "meters")
  29183. },
  29184. {
  29185. name: "Teramacro",
  29186. height: math.unit(9144000000, "meters")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(1.7, "meters"),
  29195. weight: math.unit(130, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/kyu/front.svg",
  29199. extra: 415 / 395,
  29200. bottom: 5 / 420
  29201. }
  29202. },
  29203. head: {
  29204. height: math.unit(1.75, "feet"),
  29205. name: "Head",
  29206. image: {
  29207. source: "./media/characters/kyu/head.svg"
  29208. }
  29209. },
  29210. foot: {
  29211. height: math.unit(0.81, "feet"),
  29212. name: "Foot",
  29213. image: {
  29214. source: "./media/characters/kyu/foot.svg"
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(1.7, "meters")
  29222. },
  29223. {
  29224. name: "Macro",
  29225. height: math.unit(131, "feet"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Megamacro",
  29230. height: math.unit(91440, "meters")
  29231. },
  29232. {
  29233. name: "Gigamacro",
  29234. height: math.unit(60960000, "meters")
  29235. },
  29236. {
  29237. name: "Teramacro",
  29238. height: math.unit(9144000000, "meters")
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(7 + 1 / 12, "feet"),
  29247. weight: math.unit(250, "lb"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/joey/front.svg",
  29251. extra: 1791 / 1537,
  29252. bottom: 28 / 1816
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Micro",
  29259. height: math.unit(3, "inches")
  29260. },
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(7 + 1 / 12, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(165, "cm"),
  29273. weight: math.unit(140, "lb"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/sam-evans/front.svg",
  29277. extra: 3417 / 3230,
  29278. bottom: 41.3 / 3417
  29279. }
  29280. },
  29281. frontSixTails: {
  29282. height: math.unit(165, "cm"),
  29283. weight: math.unit(140, "lb"),
  29284. name: "Front-six-tails",
  29285. image: {
  29286. source: "./media/characters/sam-evans/front-six-tails.svg",
  29287. extra: 3417 / 3230,
  29288. bottom: 41.3 / 3417
  29289. }
  29290. },
  29291. back: {
  29292. height: math.unit(165, "cm"),
  29293. weight: math.unit(140, "lb"),
  29294. name: "Back",
  29295. image: {
  29296. source: "./media/characters/sam-evans/back.svg",
  29297. extra: 3227 / 3032,
  29298. bottom: 6.8 / 3234
  29299. }
  29300. },
  29301. face: {
  29302. height: math.unit(0.68, "feet"),
  29303. name: "Face",
  29304. image: {
  29305. source: "./media/characters/sam-evans/face.svg"
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(165, "cm"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(100, "meters")
  29318. },
  29319. {
  29320. name: "Macro+",
  29321. height: math.unit(800, "meters")
  29322. },
  29323. {
  29324. name: "Macro++",
  29325. height: math.unit(3, "km")
  29326. },
  29327. {
  29328. name: "Macro+++",
  29329. height: math.unit(30, "km")
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(10, "feet"),
  29338. weight: math.unit(750, "lb"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/juliet-a/front.svg",
  29342. extra: 1766 / 1720,
  29343. bottom: 43 / 1809
  29344. }
  29345. },
  29346. back: {
  29347. height: math.unit(10, "feet"),
  29348. weight: math.unit(750, "lb"),
  29349. name: "Back",
  29350. image: {
  29351. source: "./media/characters/juliet-a/back.svg",
  29352. extra: 1781 / 1734,
  29353. bottom: 35 / 1810,
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(10, "feet"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Dragon Form",
  29365. height: math.unit(250, "feet")
  29366. },
  29367. {
  29368. name: "Macro",
  29369. height: math.unit(1000, "feet")
  29370. },
  29371. {
  29372. name: "Megamacro",
  29373. height: math.unit(10000, "feet")
  29374. }
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29379. {
  29380. regular: {
  29381. height: math.unit(7 + 3 / 12, "feet"),
  29382. weight: math.unit(260, "lb"),
  29383. name: "Regular",
  29384. image: {
  29385. source: "./media/characters/wild/regular.svg",
  29386. extra: 97.45 / 92,
  29387. bottom: 6.8 / 104.3
  29388. }
  29389. },
  29390. biggums: {
  29391. height: math.unit(8 + 6 / 12, "feet"),
  29392. weight: math.unit(425, "lb"),
  29393. name: "Biggums",
  29394. image: {
  29395. source: "./media/characters/wild/biggums.svg",
  29396. extra: 97.45 / 92,
  29397. bottom: 7.5 / 132.34
  29398. }
  29399. },
  29400. mawRegular: {
  29401. height: math.unit(1.24, "feet"),
  29402. name: "Maw (Regular)",
  29403. image: {
  29404. source: "./media/characters/wild/maw.svg"
  29405. }
  29406. },
  29407. mawBiggums: {
  29408. height: math.unit(1.47, "feet"),
  29409. name: "Maw (Biggums)",
  29410. image: {
  29411. source: "./media/characters/wild/maw.svg"
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(7 + 3 / 12, "feet"),
  29419. default: true
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29425. {
  29426. front: {
  29427. height: math.unit(2.5, "meters"),
  29428. weight: math.unit(200, "kg"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/vidar/front.svg",
  29432. extra: 2994 / 2795,
  29433. bottom: 56 / 3061
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(2.5, "meters"),
  29438. weight: math.unit(200, "kg"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/vidar/back.svg",
  29442. extra: 3131 / 2928,
  29443. bottom: 13.5 / 3141.5
  29444. }
  29445. },
  29446. feral: {
  29447. height: math.unit(2.5, "meters"),
  29448. weight: math.unit(2000, "kg"),
  29449. name: "Feral",
  29450. image: {
  29451. source: "./media/characters/vidar/feral.svg",
  29452. extra: 2790 / 1765,
  29453. bottom: 6 / 2796
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(2.5, "meters"),
  29461. default: true
  29462. },
  29463. {
  29464. name: "Macro",
  29465. height: math.unit(100, "meters")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(5 + 9 / 12, "feet"),
  29474. weight: math.unit(120, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/ash/front.svg",
  29478. extra: 2189 / 1961,
  29479. bottom: 5.2 / 2194
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Normal",
  29486. height: math.unit(5 + 9 / 12, "feet"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(9, "feet"),
  29496. weight: math.unit(10000, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/gygabite/front.svg",
  29500. bottom: 31.7 / 537.8,
  29501. extra: 505 / 370
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(9, "feet"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(12, "feet"),
  29518. weight: math.unit(4000, "lb"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/p0tat0/front.svg",
  29522. extra: 1065 / 921,
  29523. bottom: 55.7 / 1121.25
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(12, "feet"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29537. {
  29538. side: {
  29539. height: math.unit(6.5, "feet"),
  29540. weight: math.unit(800, "lb"),
  29541. name: "Side",
  29542. image: {
  29543. source: "./media/characters/dusk/side.svg",
  29544. extra: 615 / 373,
  29545. bottom: 53 / 664
  29546. }
  29547. },
  29548. sitting: {
  29549. height: math.unit(7, "feet"),
  29550. weight: math.unit(800, "lb"),
  29551. name: "Sitting",
  29552. image: {
  29553. source: "./media/characters/dusk/sitting.svg",
  29554. extra: 753 / 425,
  29555. bottom: 33 / 774
  29556. }
  29557. },
  29558. head: {
  29559. height: math.unit(6.1, "feet"),
  29560. name: "Head",
  29561. image: {
  29562. source: "./media/characters/dusk/head.svg"
  29563. }
  29564. },
  29565. },
  29566. [
  29567. {
  29568. name: "Normal",
  29569. height: math.unit(7, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(15, "feet"),
  29579. weight: math.unit(7000, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/jay-direwolf/front.svg",
  29583. extra: 1810 / 1732,
  29584. bottom: 66 / 1892
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(15, "feet"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(4 + 9 / 12, "feet"),
  29601. weight: math.unit(130, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/anchovie/front.svg",
  29605. extra: 382 / 350,
  29606. bottom: 25 / 409
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(4 + 9 / 12, "feet"),
  29611. weight: math.unit(130, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/anchovie/back.svg",
  29615. extra: 385 / 352,
  29616. bottom: 16.6 / 402
  29617. }
  29618. },
  29619. frontDressed: {
  29620. height: math.unit(4 + 9 / 12, "feet"),
  29621. weight: math.unit(130, "lb"),
  29622. name: "Front (Dressed)",
  29623. image: {
  29624. source: "./media/characters/anchovie/front-dressed.svg",
  29625. extra: 382 / 350,
  29626. bottom: 25 / 409
  29627. }
  29628. },
  29629. backDressed: {
  29630. height: math.unit(4 + 9 / 12, "feet"),
  29631. weight: math.unit(130, "lb"),
  29632. name: "Back (Dressed)",
  29633. image: {
  29634. source: "./media/characters/anchovie/back-dressed.svg",
  29635. extra: 385 / 352,
  29636. bottom: 16.6 / 402
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Micro",
  29643. height: math.unit(6.4, "inches")
  29644. },
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(4 + 9 / 12, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(2, "meters"),
  29657. weight: math.unit(180, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/acidrenamon/front.svg",
  29661. extra: 987 / 890,
  29662. bottom: 22.8 / 1009
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(2, "meters"),
  29667. weight: math.unit(180, "lb"),
  29668. name: "Back",
  29669. image: {
  29670. source: "./media/characters/acidrenamon/back.svg",
  29671. extra: 983 / 891,
  29672. bottom: 8.4 / 992
  29673. }
  29674. },
  29675. head: {
  29676. height: math.unit(1.92, "feet"),
  29677. name: "Head",
  29678. image: {
  29679. source: "./media/characters/acidrenamon/head.svg"
  29680. }
  29681. },
  29682. rump: {
  29683. height: math.unit(1.72, "feet"),
  29684. name: "Rump",
  29685. image: {
  29686. source: "./media/characters/acidrenamon/rump.svg"
  29687. }
  29688. },
  29689. tail: {
  29690. height: math.unit(4.2, "feet"),
  29691. name: "Tail",
  29692. image: {
  29693. source: "./media/characters/acidrenamon/tail.svg"
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(2, "meters"),
  29701. default: true
  29702. },
  29703. {
  29704. name: "Minimacro",
  29705. height: math.unit(7, "meters")
  29706. },
  29707. {
  29708. name: "Macro",
  29709. height: math.unit(200, "meters")
  29710. },
  29711. {
  29712. name: "Gigamacro",
  29713. height: math.unit(0.2, "earths")
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(152, "feet"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/kenzie-lee/front.svg",
  29725. extra: 1869/1774,
  29726. bottom: 128/1997
  29727. }
  29728. },
  29729. side: {
  29730. height: math.unit(86, "feet"),
  29731. name: "Side",
  29732. image: {
  29733. source: "./media/characters/kenzie-lee/side.svg",
  29734. extra: 930/815,
  29735. bottom: 177/1107
  29736. }
  29737. },
  29738. paw: {
  29739. height: math.unit(15, "feet"),
  29740. name: "Paw",
  29741. image: {
  29742. source: "./media/characters/kenzie-lee/paw.svg"
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Kenzie Flea",
  29749. height: math.unit(2, "mm"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Micro",
  29754. height: math.unit(2, "inches")
  29755. },
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(152, "feet")
  29759. },
  29760. {
  29761. name: "Megamacro",
  29762. height: math.unit(7, "miles")
  29763. },
  29764. {
  29765. name: "Gigamacro",
  29766. height: math.unit(8000, "miles")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(6, "feet"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/withers/front.svg",
  29778. extra: 1935/1760,
  29779. bottom: 72/2007
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(6, "feet"),
  29784. name: "Back",
  29785. image: {
  29786. source: "./media/characters/withers/back.svg",
  29787. extra: 1944/1792,
  29788. bottom: 12/1956
  29789. }
  29790. },
  29791. dressed: {
  29792. height: math.unit(6, "feet"),
  29793. name: "Dressed",
  29794. image: {
  29795. source: "./media/characters/withers/dressed.svg",
  29796. extra: 1937/1765,
  29797. bottom: 73/2010
  29798. }
  29799. },
  29800. phase1: {
  29801. height: math.unit(1.1, "feet"),
  29802. name: "Phase 1",
  29803. image: {
  29804. source: "./media/characters/withers/phase-1.svg",
  29805. extra: 1885/1232,
  29806. bottom: 0/1885
  29807. }
  29808. },
  29809. phase2: {
  29810. height: math.unit(1.05, "feet"),
  29811. name: "Phase 2",
  29812. image: {
  29813. source: "./media/characters/withers/phase-2.svg",
  29814. extra: 1792/1090,
  29815. bottom: 0/1792
  29816. }
  29817. },
  29818. partyWipe: {
  29819. height: math.unit(1.1, "feet"),
  29820. name: "Party Wipe",
  29821. image: {
  29822. source: "./media/characters/withers/party-wipe.svg",
  29823. extra: 1864/1207,
  29824. bottom: 0/1864
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Macro",
  29831. height: math.unit(167, "feet"),
  29832. default: true
  29833. },
  29834. {
  29835. name: "Megamacro",
  29836. height: math.unit(15, "miles")
  29837. }
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(6 + 7 / 12, "feet"),
  29845. weight: math.unit(250, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/nemoskii/front.svg",
  29849. extra: 2270 / 1734,
  29850. bottom: 86 / 2354
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(6 + 7 / 12, "feet"),
  29855. weight: math.unit(250, "lb"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/nemoskii/back.svg",
  29859. extra: 1845 / 1788,
  29860. bottom: 10.5 / 1852
  29861. }
  29862. },
  29863. head: {
  29864. height: math.unit(1.31, "feet"),
  29865. name: "Head",
  29866. image: {
  29867. source: "./media/characters/nemoskii/head.svg"
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Micro",
  29874. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29875. },
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(6 + 7 / 12, "feet"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Macro",
  29883. height: math.unit((6 + 7 / 12) * 150, "feet")
  29884. },
  29885. {
  29886. name: "Macro+",
  29887. height: math.unit((6 + 7 / 12) * 500, "feet")
  29888. },
  29889. {
  29890. name: "Megamacro",
  29891. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(1, "mile"),
  29900. weight: math.unit(265261.9, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/shui/front.svg",
  29904. extra: 1633 / 1564,
  29905. bottom: 91.5 / 1726
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Macro",
  29912. height: math.unit(1, "mile"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(12 + 6 / 12, "feet"),
  29922. weight: math.unit(1342, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/arokh-takakura/front.svg",
  29926. extra: 1089 / 1043,
  29927. bottom: 77.4 / 1176.7
  29928. }
  29929. },
  29930. back: {
  29931. height: math.unit(12 + 6 / 12, "feet"),
  29932. weight: math.unit(1342, "lb"),
  29933. name: "Back",
  29934. image: {
  29935. source: "./media/characters/arokh-takakura/back.svg",
  29936. extra: 1046 / 1019,
  29937. bottom: 102 / 1150
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Big",
  29944. height: math.unit(12 + 6 / 12, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(5 + 6 / 12, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/theo/front.svg",
  29958. extra: 1184 / 1131,
  29959. bottom: 7.4 / 1191
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Micro",
  29966. height: math.unit(5, "inches")
  29967. },
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(5 + 6 / 12, "feet"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(5 + 9 / 12, "feet"),
  29980. weight: math.unit(130, "lb"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/cecelia-swift/front.svg",
  29984. extra: 502 / 484,
  29985. bottom: 23 / 523
  29986. }
  29987. },
  29988. back: {
  29989. height: math.unit(5 + 9 / 12, "feet"),
  29990. weight: math.unit(130, "lb"),
  29991. name: "Back",
  29992. image: {
  29993. source: "./media/characters/cecelia-swift/back.svg",
  29994. extra: 499 / 485,
  29995. bottom: 12 / 511
  29996. }
  29997. },
  29998. head: {
  29999. height: math.unit(0.90, "feet"),
  30000. name: "Head",
  30001. image: {
  30002. source: "./media/characters/cecelia-swift/head.svg"
  30003. }
  30004. },
  30005. rump: {
  30006. height: math.unit(1.75, "feet"),
  30007. name: "Rump",
  30008. image: {
  30009. source: "./media/characters/cecelia-swift/rump.svg"
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Normal",
  30016. height: math.unit(5 + 9 / 12, "feet"),
  30017. default: true
  30018. },
  30019. {
  30020. name: "Big",
  30021. height: math.unit(50, "feet")
  30022. },
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(100, "feet")
  30026. },
  30027. {
  30028. name: "Macro+",
  30029. height: math.unit(500, "feet")
  30030. },
  30031. {
  30032. name: "Macro++",
  30033. height: math.unit(1000, "feet")
  30034. },
  30035. ]
  30036. ))
  30037. characterMakers.push(() => makeCharacter(
  30038. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30039. {
  30040. front: {
  30041. height: math.unit(6, "feet"),
  30042. weight: math.unit(150, "lb"),
  30043. name: "Front",
  30044. image: {
  30045. source: "./media/characters/kaunan/front.svg",
  30046. extra: 2890 / 2523,
  30047. bottom: 49 / 2939
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Macro",
  30054. height: math.unit(150, "feet"),
  30055. default: true
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30061. {
  30062. dressed: {
  30063. height: math.unit(175, "cm"),
  30064. weight: math.unit(60, "kg"),
  30065. name: "Dressed",
  30066. image: {
  30067. source: "./media/characters/fei/dressed.svg",
  30068. extra: 1402/1278,
  30069. bottom: 27/1429
  30070. }
  30071. },
  30072. nude: {
  30073. height: math.unit(175, "cm"),
  30074. weight: math.unit(60, "kg"),
  30075. name: "Nude",
  30076. image: {
  30077. source: "./media/characters/fei/nude.svg",
  30078. extra: 1402/1278,
  30079. bottom: 27/1429
  30080. }
  30081. },
  30082. heels: {
  30083. height: math.unit(0.466, "feet"),
  30084. name: "Heels",
  30085. image: {
  30086. source: "./media/characters/fei/heels.svg",
  30087. extra: 156/152,
  30088. bottom: 28/184
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Mortal",
  30095. height: math.unit(175, "cm")
  30096. },
  30097. {
  30098. name: "Normal",
  30099. height: math.unit(3500, "m")
  30100. },
  30101. {
  30102. name: "Stroll",
  30103. height: math.unit(18.4, "km"),
  30104. default: true
  30105. },
  30106. {
  30107. name: "Showoff",
  30108. height: math.unit(175, "km")
  30109. },
  30110. ]
  30111. ))
  30112. characterMakers.push(() => makeCharacter(
  30113. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30114. {
  30115. front: {
  30116. height: math.unit(7, "feet"),
  30117. weight: math.unit(1000, "kg"),
  30118. name: "Front",
  30119. image: {
  30120. source: "./media/characters/edrax/front.svg",
  30121. extra: 2838 / 2550,
  30122. bottom: 130 / 2968
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Small",
  30129. height: math.unit(7, "feet")
  30130. },
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(1500, "meters")
  30134. },
  30135. {
  30136. name: "Mega",
  30137. height: math.unit(12000000, "km"),
  30138. default: true
  30139. },
  30140. {
  30141. name: "Megamacro",
  30142. height: math.unit(10600000, "lightyears")
  30143. },
  30144. {
  30145. name: "Hypermacro",
  30146. height: math.unit(256, "yottameters")
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(10, "feet"),
  30155. weight: math.unit(750, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/clove/front.svg",
  30159. extra: 1918/1751,
  30160. bottom: 52/1970
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(10, "feet"),
  30165. weight: math.unit(750, "lb"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/clove/back.svg",
  30169. extra: 1912/1747,
  30170. bottom: 50/1962
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(10, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(4, "feet"),
  30187. weight: math.unit(50, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/alex-rabbit/front.svg",
  30191. extra: 507 / 458,
  30192. bottom: 18.5 / 527
  30193. }
  30194. },
  30195. back: {
  30196. height: math.unit(4, "feet"),
  30197. weight: math.unit(50, "lb"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/alex-rabbit/back.svg",
  30201. extra: 502 / 460,
  30202. bottom: 18.9 / 521
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(4, "feet"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(1 + 3 / 12, "feet"),
  30219. weight: math.unit(80, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/zander-rose/front.svg",
  30223. extra: 916 / 797,
  30224. bottom: 17 / 933
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(1 + 3 / 12, "feet"),
  30229. weight: math.unit(80, "lb"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/zander-rose/back.svg",
  30233. extra: 903 / 779,
  30234. bottom: 31 / 934
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(1 + 3 / 12, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30248. {
  30249. anthro: {
  30250. height: math.unit(6, "feet"),
  30251. weight: math.unit(150, "lb"),
  30252. name: "Anthro",
  30253. image: {
  30254. source: "./media/characters/razz/anthro.svg",
  30255. extra: 1437 / 1343,
  30256. bottom: 48 / 1485
  30257. }
  30258. },
  30259. feral: {
  30260. height: math.unit(6, "feet"),
  30261. weight: math.unit(150, "lb"),
  30262. name: "Feral",
  30263. image: {
  30264. source: "./media/characters/razz/feral.svg",
  30265. extra: 2569 / 1385,
  30266. bottom: 95 / 2664
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "Normal",
  30273. height: math.unit(6, "feet"),
  30274. default: true
  30275. },
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(9 + 4 / 12, "feet"),
  30283. weight: math.unit(500, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/morrigan/front.svg",
  30287. extra: 2707 / 2579,
  30288. bottom: 156 / 2863
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(9 + 4 / 12, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(5, "stories"),
  30305. weight: math.unit(4000, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/jenene/front.svg",
  30309. extra: 1780 / 1710,
  30310. bottom: 57 / 1837
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Normal",
  30317. height: math.unit(5, "stories"),
  30318. default: true
  30319. },
  30320. ]
  30321. ))
  30322. characterMakers.push(() => makeCharacter(
  30323. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30324. {
  30325. taurSfw: {
  30326. height: math.unit(10, "meters"),
  30327. weight: math.unit(17500, "kg"),
  30328. name: "Taur",
  30329. image: {
  30330. source: "./media/characters/faey/taur-sfw.svg",
  30331. extra: 1200 / 968,
  30332. bottom: 41 / 1241
  30333. }
  30334. },
  30335. chestmaw: {
  30336. height: math.unit(2.01, "meters"),
  30337. name: "Chestmaw",
  30338. image: {
  30339. source: "./media/characters/faey/chestmaw.svg"
  30340. }
  30341. },
  30342. foot: {
  30343. height: math.unit(2.43, "meters"),
  30344. name: "Foot",
  30345. image: {
  30346. source: "./media/characters/faey/foot.svg"
  30347. }
  30348. },
  30349. jaws: {
  30350. height: math.unit(1.66, "meters"),
  30351. name: "Jaws",
  30352. image: {
  30353. source: "./media/characters/faey/jaws.svg"
  30354. }
  30355. },
  30356. tongues: {
  30357. height: math.unit(2.01, "meters"),
  30358. name: "Tongues",
  30359. image: {
  30360. source: "./media/characters/faey/tongues.svg"
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Small",
  30367. height: math.unit(10, "meters"),
  30368. default: true
  30369. },
  30370. {
  30371. name: "Big",
  30372. height: math.unit(500000, "km")
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(7, "feet"),
  30381. weight: math.unit(275, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/roku/front.svg",
  30385. extra: 903 / 878,
  30386. bottom: 37 / 940
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(7, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Macro",
  30398. height: math.unit(500, "feet")
  30399. },
  30400. {
  30401. name: "Megamacro",
  30402. height: math.unit(200, "miles")
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(6 + 2 / 12, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/lira/front.svg",
  30415. extra: 1727 / 1605,
  30416. bottom: 26 / 1753
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(6 + 2 / 12, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/lira/back.svg",
  30425. extra: 1713/1621,
  30426. bottom: 20/1733
  30427. }
  30428. },
  30429. hand: {
  30430. height: math.unit(0.75, "feet"),
  30431. name: "Hand",
  30432. image: {
  30433. source: "./media/characters/lira/hand.svg"
  30434. }
  30435. },
  30436. maw: {
  30437. height: math.unit(0.65, "feet"),
  30438. name: "Maw",
  30439. image: {
  30440. source: "./media/characters/lira/maw.svg"
  30441. }
  30442. },
  30443. pawDigi: {
  30444. height: math.unit(1.6, "feet"),
  30445. name: "Paw Digi",
  30446. image: {
  30447. source: "./media/characters/lira/paw-digi.svg"
  30448. }
  30449. },
  30450. pawPlanti: {
  30451. height: math.unit(1.4, "feet"),
  30452. name: "Paw Planti",
  30453. image: {
  30454. source: "./media/characters/lira/paw-planti.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(6 + 2 / 12, "feet"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Macro",
  30466. height: math.unit(100, "feet")
  30467. },
  30468. {
  30469. name: "Macro²",
  30470. height: math.unit(1600, "feet")
  30471. },
  30472. {
  30473. name: "Planetary",
  30474. height: math.unit(20, "earths")
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6, "feet"),
  30483. weight: math.unit(150, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/hadjet/front.svg",
  30487. extra: 1480 / 1346,
  30488. bottom: 26 / 1506
  30489. }
  30490. },
  30491. frontNsfw: {
  30492. height: math.unit(6, "feet"),
  30493. weight: math.unit(150, "lb"),
  30494. name: "Front (NSFW)",
  30495. image: {
  30496. source: "./media/characters/hadjet/front-nsfw.svg",
  30497. extra: 1440 / 1358,
  30498. bottom: 52 / 1492
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(10, "stories"),
  30506. default: true
  30507. },
  30508. {
  30509. name: "Megamacro",
  30510. height: math.unit(1.5, "miles")
  30511. },
  30512. {
  30513. name: "Megamacro+",
  30514. height: math.unit(5, "miles")
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30520. {
  30521. side: {
  30522. height: math.unit(106, "feet"),
  30523. weight: math.unit(500, "tonnes"),
  30524. name: "Side",
  30525. image: {
  30526. source: "./media/characters/kodran/side.svg",
  30527. extra: 553 / 480,
  30528. bottom: 33 / 586
  30529. }
  30530. },
  30531. front: {
  30532. height: math.unit(132, "feet"),
  30533. weight: math.unit(500, "tonnes"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/kodran/front.svg",
  30537. extra: 667 / 643,
  30538. bottom: 42 / 709
  30539. }
  30540. },
  30541. flying: {
  30542. height: math.unit(350, "feet"),
  30543. weight: math.unit(500, "tonnes"),
  30544. name: "Flying",
  30545. image: {
  30546. source: "./media/characters/kodran/flying.svg"
  30547. }
  30548. },
  30549. foot: {
  30550. height: math.unit(33, "feet"),
  30551. name: "Foot",
  30552. image: {
  30553. source: "./media/characters/kodran/foot.svg"
  30554. }
  30555. },
  30556. footFront: {
  30557. height: math.unit(19, "feet"),
  30558. name: "Foot (Front)",
  30559. image: {
  30560. source: "./media/characters/kodran/foot-front.svg",
  30561. extra: 261 / 261,
  30562. bottom: 91 / 352
  30563. }
  30564. },
  30565. headFront: {
  30566. height: math.unit(53, "feet"),
  30567. name: "Head (Front)",
  30568. image: {
  30569. source: "./media/characters/kodran/head-front.svg"
  30570. }
  30571. },
  30572. headSide: {
  30573. height: math.unit(65, "feet"),
  30574. name: "Head (Side)",
  30575. image: {
  30576. source: "./media/characters/kodran/head-side.svg"
  30577. }
  30578. },
  30579. throat: {
  30580. height: math.unit(79, "feet"),
  30581. name: "Throat",
  30582. image: {
  30583. source: "./media/characters/kodran/throat.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Large",
  30590. height: math.unit(106, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30597. {
  30598. side: {
  30599. height: math.unit(11, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Side",
  30602. image: {
  30603. source: "./media/characters/pyxaron/side.svg",
  30604. extra: 305 / 195,
  30605. bottom: 17 / 322
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(11, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6, "feet"),
  30622. weight: math.unit(150, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/meep/front.svg",
  30626. extra: 88 / 80,
  30627. bottom: 6 / 94
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Fun Sized",
  30634. height: math.unit(2, "inches"),
  30635. default: true
  30636. },
  30637. {
  30638. name: "Friend Sized",
  30639. height: math.unit(8, "inches")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30645. {
  30646. front: {
  30647. height: math.unit(15, "feet"),
  30648. weight: math.unit(2500, "lb"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/holly-rabbit/front.svg",
  30652. extra: 1433 / 1233,
  30653. bottom: 125 / 1558
  30654. }
  30655. },
  30656. dick: {
  30657. height: math.unit(4.6, "feet"),
  30658. name: "Dick",
  30659. image: {
  30660. source: "./media/characters/holly-rabbit/dick.svg"
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(15, "feet"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(250, "feet")
  30673. },
  30674. {
  30675. name: "Macro+",
  30676. height: math.unit(2500, "feet")
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30682. {
  30683. front: {
  30684. height: math.unit(3.02, "meters"),
  30685. weight: math.unit(500, "kg"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/drena/front.svg",
  30689. extra: 282 / 243,
  30690. bottom: 8 / 290
  30691. }
  30692. },
  30693. side: {
  30694. height: math.unit(3.02, "meters"),
  30695. weight: math.unit(500, "kg"),
  30696. name: "Side",
  30697. image: {
  30698. source: "./media/characters/drena/side.svg",
  30699. extra: 280 / 245,
  30700. bottom: 10 / 290
  30701. }
  30702. },
  30703. back: {
  30704. height: math.unit(3.02, "meters"),
  30705. weight: math.unit(500, "kg"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/drena/back.svg",
  30709. extra: 278 / 243,
  30710. bottom: 2 / 280
  30711. }
  30712. },
  30713. foot: {
  30714. height: math.unit(0.75, "meters"),
  30715. name: "Foot",
  30716. image: {
  30717. source: "./media/characters/drena/foot.svg"
  30718. }
  30719. },
  30720. maw: {
  30721. height: math.unit(0.82, "meters"),
  30722. name: "Maw",
  30723. image: {
  30724. source: "./media/characters/drena/maw.svg"
  30725. }
  30726. },
  30727. eating: {
  30728. height: math.unit(0.75, "meters"),
  30729. name: "Eating",
  30730. image: {
  30731. source: "./media/characters/drena/eating.svg"
  30732. }
  30733. },
  30734. rump: {
  30735. height: math.unit(0.93, "meters"),
  30736. name: "Rump",
  30737. image: {
  30738. source: "./media/characters/drena/rump.svg"
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(3.02, "meters"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6 + 4 / 12, "feet"),
  30755. weight: math.unit(250, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/remmyzilla/front.svg",
  30759. extra: 4033 / 3588,
  30760. bottom: 123 / 4156
  30761. }
  30762. },
  30763. back: {
  30764. height: math.unit(6 + 4 / 12, "feet"),
  30765. weight: math.unit(250, "lb"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/remmyzilla/back.svg",
  30769. extra: 2687 / 2555,
  30770. bottom: 48 / 2735
  30771. }
  30772. },
  30773. paw: {
  30774. height: math.unit(1.73, "feet"),
  30775. name: "Paw",
  30776. image: {
  30777. source: "./media/characters/remmyzilla/paw.svg"
  30778. },
  30779. extraAttributes: {
  30780. "toeSize": {
  30781. name: "Toe Size",
  30782. power: 2,
  30783. type: "area",
  30784. base: math.unit(0.0035, "m^2")
  30785. },
  30786. "padSize": {
  30787. name: "Pad Size",
  30788. power: 2,
  30789. type: "area",
  30790. base: math.unit(0.015, "m^2")
  30791. },
  30792. "pawsize": {
  30793. name: "Paw Size",
  30794. power: 2,
  30795. type: "area",
  30796. base: math.unit(0.072, "m^2")
  30797. },
  30798. }
  30799. },
  30800. maw: {
  30801. height: math.unit(1.73, "feet"),
  30802. name: "Maw",
  30803. image: {
  30804. source: "./media/characters/remmyzilla/maw.svg"
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(6 + 4 / 12, "feet")
  30812. },
  30813. {
  30814. name: "Minimacro",
  30815. height: math.unit(12 + 8 / 12, "feet")
  30816. },
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(640, "feet"),
  30820. default: true
  30821. },
  30822. {
  30823. name: "Megamacro",
  30824. height: math.unit(6400, "feet")
  30825. },
  30826. {
  30827. name: "Gigamacro",
  30828. height: math.unit(64000, "miles")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(2.5, "meters"),
  30837. weight: math.unit(300, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/lawrence/front.svg",
  30841. extra: 357 / 335,
  30842. bottom: 30 / 387
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(2.5, "meters"),
  30847. weight: math.unit(300, "lb"),
  30848. name: "Back",
  30849. image: {
  30850. source: "./media/characters/lawrence/back.svg",
  30851. extra: 357 / 338,
  30852. bottom: 16 / 373
  30853. }
  30854. },
  30855. head: {
  30856. height: math.unit(0.9, "meter"),
  30857. name: "Head",
  30858. image: {
  30859. source: "./media/characters/lawrence/head.svg"
  30860. }
  30861. },
  30862. maw: {
  30863. height: math.unit(0.7, "meter"),
  30864. name: "Maw",
  30865. image: {
  30866. source: "./media/characters/lawrence/maw.svg"
  30867. }
  30868. },
  30869. footBottom: {
  30870. height: math.unit(0.5, "meter"),
  30871. name: "Foot (Bottom)",
  30872. image: {
  30873. source: "./media/characters/lawrence/foot-bottom.svg"
  30874. }
  30875. },
  30876. footTop: {
  30877. height: math.unit(0.5, "meter"),
  30878. name: "Foot (Top)",
  30879. image: {
  30880. source: "./media/characters/lawrence/foot-top.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(2.5, "meters"),
  30888. default: true
  30889. },
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(95, "meters")
  30893. },
  30894. {
  30895. name: "Megamacro",
  30896. height: math.unit(150, "km")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30902. {
  30903. front: {
  30904. height: math.unit(4.2, "meters"),
  30905. preyCapacity: math.unit(50, "m^3"),
  30906. weight: math.unit(30, "tonnes"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/sydney/front.svg",
  30910. extra: 1177/1129,
  30911. bottom: 197/1374
  30912. },
  30913. extraAttributes: {
  30914. "length": {
  30915. name: "Length",
  30916. power: 1,
  30917. type: "length",
  30918. base: math.unit(21, "meters")
  30919. },
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(4.2, "meters"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30933. {
  30934. back: {
  30935. height: math.unit(201, "feet"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/jessica/back.svg",
  30939. extra: 273 / 259,
  30940. bottom: 7 / 280
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Normal",
  30947. height: math.unit(201, "feet"),
  30948. default: true
  30949. },
  30950. {
  30951. name: "Megamacro",
  30952. height: math.unit(8, "miles")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30958. {
  30959. side: {
  30960. height: math.unit(5.6, "m"),
  30961. weight: math.unit(8000, "kg"),
  30962. name: "Side",
  30963. image: {
  30964. source: "./media/characters/victoria/side.svg",
  30965. extra: 1542/1229,
  30966. bottom: 124/1666
  30967. }
  30968. },
  30969. maw: {
  30970. height: math.unit(7.14, "feet"),
  30971. name: "Maw",
  30972. image: {
  30973. source: "./media/characters/victoria/maw.svg"
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(5.6, "m"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30987. {
  30988. front: {
  30989. height: math.unit(5 + 6 / 12, "feet"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/cat/front.svg",
  30993. extra: 1449/1295,
  30994. bottom: 34/1483
  30995. },
  30996. form: "cat",
  30997. default: true
  30998. },
  30999. back: {
  31000. height: math.unit(5 + 6 / 12, "feet"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/cat/back.svg",
  31004. extra: 1466/1301,
  31005. bottom: 19/1485
  31006. },
  31007. form: "cat"
  31008. },
  31009. taur: {
  31010. height: math.unit(7, "feet"),
  31011. name: "Taur",
  31012. image: {
  31013. source: "./media/characters/cat/taur.svg",
  31014. extra: 1389/1233,
  31015. bottom: 83/1472
  31016. },
  31017. form: "taur",
  31018. default: true
  31019. },
  31020. lucarioFront: {
  31021. height: math.unit(4, "feet"),
  31022. name: "Lucario (Front)",
  31023. image: {
  31024. source: "./media/characters/cat/lucario-front.svg",
  31025. extra: 1149/1019,
  31026. bottom: 84/1233
  31027. },
  31028. form: "lucario",
  31029. default: true
  31030. },
  31031. lucarioBack: {
  31032. height: math.unit(4, "feet"),
  31033. name: "Lucario (Back)",
  31034. image: {
  31035. source: "./media/characters/cat/lucario-back.svg",
  31036. extra: 1190/1059,
  31037. bottom: 33/1223
  31038. },
  31039. form: "lucario"
  31040. },
  31041. megaLucario: {
  31042. height: math.unit(4, "feet"),
  31043. name: "Mega Lucario",
  31044. image: {
  31045. source: "./media/characters/cat/mega-lucario.svg",
  31046. extra: 1515 / 1319,
  31047. bottom: 63 / 1578
  31048. },
  31049. form: "lucario"
  31050. },
  31051. nickit: {
  31052. height: math.unit(2, "feet"),
  31053. name: "Nickit",
  31054. image: {
  31055. source: "./media/characters/cat/nickit.svg",
  31056. extra: 1980 / 1585,
  31057. bottom: 102 / 2082
  31058. },
  31059. form: "nickit",
  31060. default: true
  31061. },
  31062. lopunnyFront: {
  31063. height: math.unit(5, "feet"),
  31064. name: "Lopunny (Front)",
  31065. image: {
  31066. source: "./media/characters/cat/lopunny-front.svg",
  31067. extra: 1782 / 1469,
  31068. bottom: 38 / 1820
  31069. },
  31070. form: "lopunny",
  31071. default: true
  31072. },
  31073. lopunnyBack: {
  31074. height: math.unit(5, "feet"),
  31075. name: "Lopunny (Back)",
  31076. image: {
  31077. source: "./media/characters/cat/lopunny-back.svg",
  31078. extra: 1660 / 1490,
  31079. bottom: 25 / 1685
  31080. },
  31081. form: "lopunny"
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Really small",
  31087. height: math.unit(1, "nm")
  31088. },
  31089. {
  31090. name: "Micro",
  31091. height: math.unit(5, "inches")
  31092. },
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(5 + 6 / 12, "feet"),
  31096. default: true
  31097. },
  31098. {
  31099. name: "Macro",
  31100. height: math.unit(50, "feet")
  31101. },
  31102. {
  31103. name: "Macro+",
  31104. height: math.unit(150, "feet")
  31105. },
  31106. {
  31107. name: "Megamacro",
  31108. height: math.unit(100, "miles")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(63.4, "meters"),
  31117. weight: math.unit(3.28349e+6, "kilograms"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/kirina-violet/front.svg",
  31121. extra: 2812 / 2725,
  31122. bottom: 0 / 2812
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(63.4, "meters"),
  31127. weight: math.unit(3.28349e+6, "kilograms"),
  31128. name: "Back",
  31129. image: {
  31130. source: "./media/characters/kirina-violet/back.svg",
  31131. extra: 2812 / 2725,
  31132. bottom: 0 / 2812
  31133. }
  31134. },
  31135. mouth: {
  31136. height: math.unit(4.35, "meters"),
  31137. name: "Mouth",
  31138. image: {
  31139. source: "./media/characters/kirina-violet/mouth.svg"
  31140. }
  31141. },
  31142. paw: {
  31143. height: math.unit(5.6, "meters"),
  31144. name: "Paw",
  31145. image: {
  31146. source: "./media/characters/kirina-violet/paw.svg"
  31147. }
  31148. },
  31149. tail: {
  31150. height: math.unit(18, "meters"),
  31151. name: "Tail",
  31152. image: {
  31153. source: "./media/characters/kirina-violet/tail.svg"
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Macro",
  31160. height: math.unit(63.4, "meters"),
  31161. default: true
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(75, "feet"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/cat-gigachu/front.svg",
  31173. extra: 1239/1027,
  31174. bottom: 32/1271
  31175. }
  31176. },
  31177. back: {
  31178. height: math.unit(75, "feet"),
  31179. name: "Back",
  31180. image: {
  31181. source: "./media/characters/cat-gigachu/back.svg",
  31182. extra: 1229/1030,
  31183. bottom: 9/1238
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Dynamax",
  31190. height: math.unit(75, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(6, "feet"),
  31200. weight: math.unit(150, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/sfaiyan/front.svg",
  31204. extra: 999 / 978,
  31205. bottom: 5 / 1004
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(1.82, "meters")
  31213. },
  31214. {
  31215. name: "Giant",
  31216. height: math.unit(2.27, "km"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(179, "cm"),
  31226. weight: math.unit(100, "kg"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/raunehkeli/front.svg",
  31230. extra: 1934 / 1926,
  31231. bottom: 0 / 1934
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(179, "cm")
  31239. },
  31240. {
  31241. name: "Maximum",
  31242. height: math.unit(575, "meters"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(6, "feet"),
  31252. weight: math.unit(150, "lb"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31256. extra: 2625 / 2518,
  31257. bottom: 60 / 2685
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(6 + 2 / 12, "feet")
  31265. },
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(1180, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(5 + 6 / 12, "feet"),
  31278. weight: math.unit(108, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/lilith-zott/front.svg",
  31282. extra: 2510 / 2238,
  31283. bottom: 100 / 2610
  31284. }
  31285. },
  31286. frontDressed: {
  31287. height: math.unit(5 + 6 / 12, "feet"),
  31288. weight: math.unit(108, "lb"),
  31289. name: "Front (Dressed)",
  31290. image: {
  31291. source: "./media/characters/lilith-zott/front-dressed.svg",
  31292. extra: 2510 / 2238,
  31293. bottom: 100 / 2610
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(5 + 6 / 12, "feet")
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(1030, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(150, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31318. extra: 2567 / 2435,
  31319. bottom: 39 / 2606
  31320. }
  31321. },
  31322. frontSuper: {
  31323. height: math.unit(6, "feet"),
  31324. name: "Front (Super)",
  31325. image: {
  31326. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31327. extra: 2567 / 2435,
  31328. bottom: 39 / 2606
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(5 + 10 / 12, "feet")
  31336. },
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(1100, "feet"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(100, "miles"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/sona/front.svg",
  31352. extra: 2433 / 2201,
  31353. bottom: 53 / 2486
  31354. }
  31355. },
  31356. foot: {
  31357. height: math.unit(16.1, "miles"),
  31358. name: "Foot",
  31359. image: {
  31360. source: "./media/characters/sona/foot.svg"
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(100, "miles"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(150, "lb"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/bailey/front.svg",
  31381. extra: 1778 / 1724,
  31382. bottom: 30 / 1808
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Micro",
  31389. height: math.unit(4, "inches")
  31390. },
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(5 + 5 / 12, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(250, "feet")
  31399. },
  31400. {
  31401. name: "Megamacro",
  31402. height: math.unit(100, "miles")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(5 + 2 / 12, "feet"),
  31411. weight: math.unit(120, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/snaps/front.svg",
  31415. extra: 2370 / 2177,
  31416. bottom: 48 / 2418
  31417. }
  31418. },
  31419. back: {
  31420. height: math.unit(5 + 2 / 12, "feet"),
  31421. weight: math.unit(120, "lb"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/snaps/back.svg",
  31425. extra: 2408 / 2258,
  31426. bottom: 15 / 2423
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Micro",
  31433. height: math.unit(9, "inches")
  31434. },
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(5 + 2 / 12, "feet"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Mini Macro",
  31442. height: math.unit(10, "feet")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(1.8, "meters"),
  31451. weight: math.unit(85, "kg"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/azteck/front.svg",
  31455. extra: 2815 / 2625,
  31456. bottom: 89 / 2904
  31457. }
  31458. },
  31459. back: {
  31460. height: math.unit(1.8, "meters"),
  31461. weight: math.unit(85, "kg"),
  31462. name: "Back",
  31463. image: {
  31464. source: "./media/characters/azteck/back.svg",
  31465. extra: 2856 / 2648,
  31466. bottom: 85 / 2941
  31467. }
  31468. },
  31469. frontDressed: {
  31470. height: math.unit(1.8, "meters"),
  31471. weight: math.unit(85, "kg"),
  31472. name: "Front (Dressed)",
  31473. image: {
  31474. source: "./media/characters/azteck/front-dressed.svg",
  31475. extra: 2147 / 2003,
  31476. bottom: 68 / 2215
  31477. }
  31478. },
  31479. head: {
  31480. height: math.unit(0.47, "meters"),
  31481. weight: math.unit(85, "kg"),
  31482. name: "Head",
  31483. image: {
  31484. source: "./media/characters/azteck/head.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Bite sized",
  31491. height: math.unit(16, "cm")
  31492. },
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(1.8, "meters"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(6, "feet"),
  31505. weight: math.unit(150, "lb"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/pidge/front.svg",
  31509. extra: 1936/1820,
  31510. bottom: 0/1936
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(6, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/pidge/back.svg",
  31519. extra: 1938/1843,
  31520. bottom: 0/1938
  31521. }
  31522. },
  31523. casual: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(150, "lb"),
  31526. name: "Casual",
  31527. image: {
  31528. source: "./media/characters/pidge/casual.svg",
  31529. extra: 1936/1820,
  31530. bottom: 0/1936
  31531. }
  31532. },
  31533. tech: {
  31534. height: math.unit(6, "feet"),
  31535. weight: math.unit(150, "lb"),
  31536. name: "Tech",
  31537. image: {
  31538. source: "./media/characters/pidge/tech.svg",
  31539. extra: 1802/1682,
  31540. bottom: 0/1802
  31541. }
  31542. },
  31543. head: {
  31544. height: math.unit(1.61, "feet"),
  31545. name: "Head",
  31546. image: {
  31547. source: "./media/characters/pidge/head.svg"
  31548. }
  31549. },
  31550. collar: {
  31551. height: math.unit(0.82, "feet"),
  31552. name: "Collar",
  31553. image: {
  31554. source: "./media/characters/pidge/collar.svg"
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(2, "mile"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "PUPPY",
  31566. height: math.unit(20, "miles")
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31572. {
  31573. front: {
  31574. height: math.unit(6, "feet"),
  31575. weight: math.unit(150, "lb"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/en/front.svg",
  31579. extra: 1697 / 1563,
  31580. bottom: 103 / 1800
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(6, "feet"),
  31585. weight: math.unit(150, "lb"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/en/back.svg",
  31589. extra: 1700 / 1570,
  31590. bottom: 51 / 1751
  31591. }
  31592. },
  31593. frontDressed: {
  31594. height: math.unit(6, "feet"),
  31595. weight: math.unit(150, "lb"),
  31596. name: "Front (Dressed)",
  31597. image: {
  31598. source: "./media/characters/en/front-dressed.svg",
  31599. extra: 1697 / 1563,
  31600. bottom: 103 / 1800
  31601. }
  31602. },
  31603. backDressed: {
  31604. height: math.unit(6, "feet"),
  31605. weight: math.unit(150, "lb"),
  31606. name: "Back (Dressed)",
  31607. image: {
  31608. source: "./media/characters/en/back-dressed.svg",
  31609. extra: 1700 / 1570,
  31610. bottom: 51 / 1751
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Macro",
  31617. height: math.unit(210, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(6, "feet"),
  31627. weight: math.unit(150, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/haze-orris/front.svg",
  31631. extra: 3975 / 3525,
  31632. bottom: 137 / 4112
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Micro",
  31639. height: math.unit(150, "mm"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(6, "feet"),
  31649. weight: math.unit(150, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/casselene-yaro/front.svg",
  31653. extra: 4721 / 4541,
  31654. bottom: 82 / 4803
  31655. }
  31656. },
  31657. back: {
  31658. height: math.unit(6, "feet"),
  31659. weight: math.unit(150, "lb"),
  31660. name: "Back",
  31661. image: {
  31662. source: "./media/characters/casselene-yaro/back.svg",
  31663. extra: 4569 / 4377,
  31664. bottom: 69 / 4638
  31665. }
  31666. },
  31667. dressed: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(150, "lb"),
  31670. name: "Dressed",
  31671. image: {
  31672. source: "./media/characters/casselene-yaro/dressed.svg",
  31673. extra: 4721 / 4541,
  31674. bottom: 82 / 4803
  31675. }
  31676. },
  31677. maw: {
  31678. height: math.unit(1, "feet"),
  31679. name: "Maw",
  31680. image: {
  31681. source: "./media/characters/casselene-yaro/maw.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(190, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(10, "feet"),
  31698. weight: math.unit(15015, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/platine/front.svg",
  31702. extra: 1741/1650,
  31703. bottom: 84/1825
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(10, "feet"),
  31708. weight: math.unit(15015, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/platine/side.svg",
  31712. extra: 1790/1705,
  31713. bottom: 29/1819
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(10, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(100, "feet")
  31726. },
  31727. {
  31728. name: "Megamacro",
  31729. height: math.unit(1000, "feet")
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(15 + 5 / 12, "feet"),
  31738. weight: math.unit(4600, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/neapolitan-ananassa/front.svg",
  31742. extra: 2903 / 2736,
  31743. bottom: 0 / 2903
  31744. }
  31745. },
  31746. side: {
  31747. height: math.unit(15 + 5 / 12, "feet"),
  31748. weight: math.unit(4600, "lb"),
  31749. name: "Side",
  31750. image: {
  31751. source: "./media/characters/neapolitan-ananassa/side.svg",
  31752. extra: 2925 / 2719,
  31753. bottom: 0 / 2925
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(15 + 5 / 12, "feet"),
  31758. weight: math.unit(4600, "lb"),
  31759. name: "Back",
  31760. image: {
  31761. source: "./media/characters/neapolitan-ananassa/back.svg",
  31762. extra: 2903 / 2736,
  31763. bottom: 0 / 2903
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(15 + 5 / 12, "feet"),
  31771. default: true
  31772. },
  31773. {
  31774. name: "Post-Millenium",
  31775. height: math.unit(35 + 5 / 12, "feet")
  31776. },
  31777. {
  31778. name: "Post-Era",
  31779. height: math.unit(450 + 5 / 12, "feet")
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(300, "meters"),
  31788. weight: math.unit(125000, "tonnes"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/pazuzu/front.svg",
  31792. extra: 877 / 794,
  31793. bottom: 47 / 924
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(300, "meters"),
  31801. default: true
  31802. },
  31803. ]
  31804. ))
  31805. characterMakers.push(() => makeCharacter(
  31806. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31807. {
  31808. side: {
  31809. height: math.unit(10 + 7 / 12, "feet"),
  31810. weight: math.unit(2.5, "tons"),
  31811. name: "Side",
  31812. image: {
  31813. source: "./media/characters/aasha/side.svg",
  31814. extra: 1345 / 1245,
  31815. bottom: 111 / 1456
  31816. }
  31817. },
  31818. back: {
  31819. height: math.unit(10 + 7 / 12, "feet"),
  31820. weight: math.unit(2.5, "tons"),
  31821. name: "Back",
  31822. image: {
  31823. source: "./media/characters/aasha/back.svg",
  31824. extra: 1133 / 1057,
  31825. bottom: 257 / 1390
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(10 + 7 / 12, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(6 + 3 / 12, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/nevan/front.svg",
  31845. extra: 704 / 704,
  31846. bottom: 28 / 732
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(6 + 3 / 12, "feet"),
  31851. name: "Back",
  31852. image: {
  31853. source: "./media/characters/nevan/back.svg",
  31854. extra: 714 / 714,
  31855. bottom: 21 / 735
  31856. }
  31857. },
  31858. frontFlaccid: {
  31859. height: math.unit(6 + 3 / 12, "feet"),
  31860. name: "Front (Flaccid)",
  31861. image: {
  31862. source: "./media/characters/nevan/front-flaccid.svg",
  31863. extra: 704 / 704,
  31864. bottom: 28 / 732
  31865. }
  31866. },
  31867. frontErect: {
  31868. height: math.unit(6 + 3 / 12, "feet"),
  31869. name: "Front (Erect)",
  31870. image: {
  31871. source: "./media/characters/nevan/front-erect.svg",
  31872. extra: 704 / 704,
  31873. bottom: 28 / 732
  31874. }
  31875. },
  31876. backFlaccid: {
  31877. height: math.unit(6 + 3 / 12, "feet"),
  31878. name: "Back (Flaccid)",
  31879. image: {
  31880. source: "./media/characters/nevan/back-flaccid.svg",
  31881. extra: 714 / 714,
  31882. bottom: 21 / 735
  31883. }
  31884. },
  31885. },
  31886. [
  31887. {
  31888. name: "Normal",
  31889. height: math.unit(6 + 3 / 12, "feet"),
  31890. default: true
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31896. {
  31897. front: {
  31898. height: math.unit(4, "feet"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/arhan/front.svg",
  31902. extra: 3368 / 3133,
  31903. bottom: 0 / 3368
  31904. }
  31905. },
  31906. side: {
  31907. height: math.unit(4, "feet"),
  31908. name: "Side",
  31909. image: {
  31910. source: "./media/characters/arhan/side.svg",
  31911. extra: 3347 / 3105,
  31912. bottom: 0 / 3347
  31913. }
  31914. },
  31915. tongue: {
  31916. height: math.unit(1.42, "feet"),
  31917. name: "Tongue",
  31918. image: {
  31919. source: "./media/characters/arhan/tongue.svg"
  31920. }
  31921. },
  31922. head: {
  31923. height: math.unit(0.85, "feet"),
  31924. name: "Head",
  31925. image: {
  31926. source: "./media/characters/arhan/head.svg"
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(4, "feet"),
  31934. default: true
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31940. {
  31941. front: {
  31942. height: math.unit(5 + 7.5 / 12, "feet"),
  31943. weight: math.unit(120, "lb"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/digi-duncan/front.svg",
  31947. extra: 330 / 326,
  31948. bottom: 16 / 346
  31949. }
  31950. },
  31951. side: {
  31952. height: math.unit(5 + 7.5 / 12, "feet"),
  31953. weight: math.unit(120, "lb"),
  31954. name: "Side",
  31955. image: {
  31956. source: "./media/characters/digi-duncan/side.svg",
  31957. extra: 341 / 337,
  31958. bottom: 1 / 342
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(5 + 7.5 / 12, "feet"),
  31963. weight: math.unit(120, "lb"),
  31964. name: "Back",
  31965. image: {
  31966. source: "./media/characters/digi-duncan/back.svg",
  31967. extra: 330 / 326,
  31968. bottom: 12 / 342
  31969. }
  31970. },
  31971. },
  31972. [
  31973. {
  31974. name: "Speck",
  31975. height: math.unit(0.25, "mm")
  31976. },
  31977. {
  31978. name: "Micro",
  31979. height: math.unit(5, "mm")
  31980. },
  31981. {
  31982. name: "Tiny",
  31983. height: math.unit(0.5, "inches"),
  31984. default: true
  31985. },
  31986. {
  31987. name: "Human",
  31988. height: math.unit(5 + 7.5 / 12, "feet")
  31989. },
  31990. {
  31991. name: "Minigiant",
  31992. height: math.unit(8 + 5.25, "feet")
  31993. },
  31994. {
  31995. name: "Giant",
  31996. height: math.unit(2000, "feet")
  31997. },
  31998. {
  31999. name: "Mega",
  32000. height: math.unit(371.1, "miles")
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32006. {
  32007. front: {
  32008. height: math.unit(2, "meters"),
  32009. weight: math.unit(350, "kg"),
  32010. name: "Front",
  32011. image: {
  32012. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32013. extra: 898 / 838,
  32014. bottom: 9 / 907
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Micro",
  32021. height: math.unit(8, "meters")
  32022. },
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(50, "meters"),
  32026. default: true
  32027. },
  32028. {
  32029. name: "Macro",
  32030. height: math.unit(500, "meters")
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6 + 6 / 12, "feet"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/khardesh/front.svg",
  32042. extra: 1788/1596,
  32043. bottom: 66/1854
  32044. }
  32045. },
  32046. back: {
  32047. height: math.unit(6 + 6 / 12, "feet"),
  32048. name: "Back",
  32049. image: {
  32050. source: "./media/characters/khardesh/back.svg",
  32051. extra: 1781/1584,
  32052. bottom: 68/1849
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(6 + 6 / 12, "feet"),
  32060. default: true
  32061. },
  32062. {
  32063. name: "Normal+",
  32064. height: math.unit(4, "meters")
  32065. },
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(50, "meters")
  32069. },
  32070. {
  32071. name: "Macro+",
  32072. height: math.unit(100, "meters")
  32073. },
  32074. {
  32075. name: "Megamacro",
  32076. height: math.unit(20, "km")
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(6, "feet"),
  32085. weight: math.unit(150, "lb"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/kosho/front.svg",
  32089. extra: 1847 / 1847,
  32090. bottom: 86 / 1933
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Second-stage micro",
  32097. height: math.unit(0.5, "inches")
  32098. },
  32099. {
  32100. name: "First-stage micro",
  32101. height: math.unit(6, "inches")
  32102. },
  32103. {
  32104. name: "Normal",
  32105. height: math.unit(6, "feet"),
  32106. default: true
  32107. },
  32108. {
  32109. name: "First-stage macro",
  32110. height: math.unit(72, "feet")
  32111. },
  32112. {
  32113. name: "Second-stage macro",
  32114. height: math.unit(864, "feet")
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32120. {
  32121. normal: {
  32122. height: math.unit(4 + 6 / 12, "feet"),
  32123. name: "Normal",
  32124. image: {
  32125. source: "./media/characters/hydra/normal.svg",
  32126. extra: 2833 / 2634,
  32127. bottom: 68 / 2901
  32128. }
  32129. },
  32130. smol: {
  32131. height: math.unit(0.705, "inches"),
  32132. name: "Smol",
  32133. image: {
  32134. source: "./media/characters/hydra/smol.svg",
  32135. extra: 2715 / 2540,
  32136. bottom: 0 / 2715
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Normal",
  32143. height: math.unit(4 + 6 / 12, "feet"),
  32144. default: true
  32145. }
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(0.6, "cm"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/daz/front.svg",
  32156. extra: 1682 / 1164,
  32157. bottom: 42 / 1724
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(0.6, "cm"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(6, "feet"),
  32174. weight: math.unit(235, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/theo-pangolin/front.svg",
  32178. extra: 1996 / 1969,
  32179. bottom: 115 / 2111
  32180. }
  32181. },
  32182. back: {
  32183. height: math.unit(6, "feet"),
  32184. weight: math.unit(235, "lb"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/theo-pangolin/back.svg",
  32188. extra: 1979 / 1979,
  32189. bottom: 40 / 2019
  32190. }
  32191. },
  32192. feral: {
  32193. height: math.unit(2, "feet"),
  32194. weight: math.unit(30, "lb"),
  32195. name: "Feral",
  32196. image: {
  32197. source: "./media/characters/theo-pangolin/feral.svg",
  32198. extra: 803 / 791,
  32199. bottom: 181 / 984
  32200. }
  32201. },
  32202. footFive: {
  32203. height: math.unit(1.43, "feet"),
  32204. name: "Foot (Five Toes)",
  32205. image: {
  32206. source: "./media/characters/theo-pangolin/foot-five.svg"
  32207. }
  32208. },
  32209. footFour: {
  32210. height: math.unit(1.43, "feet"),
  32211. name: "Foot (Four Toes)",
  32212. image: {
  32213. source: "./media/characters/theo-pangolin/foot-four.svg"
  32214. }
  32215. },
  32216. handFour: {
  32217. height: math.unit(0.81, "feet"),
  32218. name: "Hand (Four Fingers)",
  32219. image: {
  32220. source: "./media/characters/theo-pangolin/hand-four.svg"
  32221. }
  32222. },
  32223. handThree: {
  32224. height: math.unit(0.81, "feet"),
  32225. name: "Hand (Three Fingers)",
  32226. image: {
  32227. source: "./media/characters/theo-pangolin/hand-three.svg"
  32228. }
  32229. },
  32230. headFront: {
  32231. height: math.unit(1.37, "feet"),
  32232. name: "Head (Front)",
  32233. image: {
  32234. source: "./media/characters/theo-pangolin/head-front.svg"
  32235. }
  32236. },
  32237. headSide: {
  32238. height: math.unit(1.43, "feet"),
  32239. name: "Head (Side)",
  32240. image: {
  32241. source: "./media/characters/theo-pangolin/head-side.svg"
  32242. }
  32243. },
  32244. tongue: {
  32245. height: math.unit(2.29, "feet"),
  32246. name: "Tongue",
  32247. image: {
  32248. source: "./media/characters/theo-pangolin/tongue.svg"
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(6, "feet")
  32256. },
  32257. {
  32258. name: "Macro",
  32259. height: math.unit(400, "feet"),
  32260. default: true
  32261. },
  32262. ]
  32263. ))
  32264. characterMakers.push(() => makeCharacter(
  32265. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32266. {
  32267. front: {
  32268. height: math.unit(6, "inches"),
  32269. weight: math.unit(0.036, "kg"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/renée/front.svg",
  32273. extra: 900 / 886,
  32274. bottom: 8 / 908
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Nano",
  32281. height: math.unit(1, "nm")
  32282. },
  32283. {
  32284. name: "Micro",
  32285. height: math.unit(1, "mm")
  32286. },
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(6, "inches")
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(2000, "feet"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Megamacro",
  32298. height: math.unit(2, "km")
  32299. },
  32300. {
  32301. name: "Gigamacro",
  32302. height: math.unit(2000, "km")
  32303. },
  32304. {
  32305. name: "Teramacro",
  32306. height: math.unit(250000, "km")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(4, "meters"),
  32315. weight: math.unit(150, "kg"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/caledvwlch/front.svg",
  32319. extra: 1757/1537,
  32320. bottom: 31/1788
  32321. }
  32322. },
  32323. side: {
  32324. height: math.unit(4, "meters"),
  32325. weight: math.unit(150, "kg"),
  32326. name: "Side",
  32327. image: {
  32328. source: "./media/characters/caledvwlch/side.svg",
  32329. extra: 1605 / 1536,
  32330. bottom: 31 / 1636
  32331. }
  32332. },
  32333. back: {
  32334. height: math.unit(4, "meters"),
  32335. weight: math.unit(150, "kg"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/caledvwlch/back.svg",
  32339. extra: 1635 / 1565,
  32340. bottom: 27 / 1662
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "\"Incognito\"",
  32347. height: math.unit(4, "meters")
  32348. },
  32349. {
  32350. name: "Small rampage",
  32351. height: math.unit(600, "meters")
  32352. },
  32353. {
  32354. name: "Mega",
  32355. height: math.unit(30, "km")
  32356. },
  32357. {
  32358. name: "Home-size",
  32359. height: math.unit(50, "km"),
  32360. default: true
  32361. },
  32362. {
  32363. name: "Giga",
  32364. height: math.unit(300, "km")
  32365. },
  32366. {
  32367. name: "Lounging",
  32368. height: math.unit(11000, "km")
  32369. },
  32370. {
  32371. name: "Planet snacking",
  32372. height: math.unit(2000000, "km")
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32378. {
  32379. front: {
  32380. height: math.unit(6, "feet"),
  32381. weight: math.unit(215, "lb"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/sapphire-svell/front.svg",
  32385. extra: 495 / 455,
  32386. bottom: 20 / 515
  32387. }
  32388. },
  32389. back: {
  32390. height: math.unit(6, "feet"),
  32391. weight: math.unit(216, "lb"),
  32392. name: "Back",
  32393. image: {
  32394. source: "./media/characters/sapphire-svell/back.svg",
  32395. extra: 497 / 477,
  32396. bottom: 7 / 504
  32397. }
  32398. },
  32399. maw: {
  32400. height: math.unit(1.57, "feet"),
  32401. name: "Maw",
  32402. image: {
  32403. source: "./media/characters/sapphire-svell/maw.svg"
  32404. }
  32405. },
  32406. foot: {
  32407. height: math.unit(1.07, "feet"),
  32408. name: "Foot",
  32409. image: {
  32410. source: "./media/characters/sapphire-svell/foot.svg"
  32411. }
  32412. },
  32413. toering: {
  32414. height: math.unit(1.7, "inch"),
  32415. name: "Toering",
  32416. image: {
  32417. source: "./media/characters/sapphire-svell/toering.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(300, "feet"),
  32425. default: true
  32426. },
  32427. {
  32428. name: "Augmented",
  32429. height: math.unit(1250, "feet")
  32430. },
  32431. {
  32432. name: "Unleashed",
  32433. height: math.unit(3000, "feet")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32439. {
  32440. side: {
  32441. height: math.unit(2 + 3 / 12, "feet"),
  32442. weight: math.unit(110, "lb"),
  32443. name: "Side",
  32444. image: {
  32445. source: "./media/characters/glitch-flux/side.svg",
  32446. extra: 997 / 805,
  32447. bottom: 20 / 1017
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(2 + 3 / 12, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(4, "meters"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/mid/front.svg",
  32467. extra: 507 / 476,
  32468. bottom: 17 / 524
  32469. }
  32470. },
  32471. back: {
  32472. height: math.unit(4, "meters"),
  32473. name: "Back",
  32474. image: {
  32475. source: "./media/characters/mid/back.svg",
  32476. extra: 519 / 487,
  32477. bottom: 7 / 526
  32478. }
  32479. },
  32480. stuck: {
  32481. height: math.unit(2.2, "meters"),
  32482. name: "Stuck",
  32483. image: {
  32484. source: "./media/characters/mid/stuck.svg",
  32485. extra: 1951 / 1869,
  32486. bottom: 88 / 2039
  32487. }
  32488. }
  32489. },
  32490. [
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(4, "meters"),
  32494. default: true
  32495. },
  32496. {
  32497. name: "Big",
  32498. height: math.unit(10, "meters")
  32499. },
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(800, "meters")
  32503. },
  32504. {
  32505. name: "Megamacro",
  32506. height: math.unit(100, "km")
  32507. },
  32508. {
  32509. name: "Overgrown",
  32510. height: math.unit(1, "parsec")
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(2.5, "meters"),
  32519. weight: math.unit(225, "kg"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/iris/front.svg",
  32523. extra: 3348 / 3251,
  32524. bottom: 205 / 3553
  32525. }
  32526. },
  32527. maw: {
  32528. height: math.unit(0.56, "meter"),
  32529. name: "Maw",
  32530. image: {
  32531. source: "./media/characters/iris/maw.svg"
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Mewter cat",
  32538. height: math.unit(1.2, "meters")
  32539. },
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(2.5, "meters"),
  32543. default: true
  32544. },
  32545. {
  32546. name: "Minimacro",
  32547. height: math.unit(18, "feet")
  32548. },
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(140, "feet")
  32552. },
  32553. {
  32554. name: "Macro+",
  32555. height: math.unit(180, "meters")
  32556. },
  32557. {
  32558. name: "Megamacro",
  32559. height: math.unit(2746, "meters")
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(135, "lb"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/axel/front.svg",
  32572. extra: 908 / 908,
  32573. bottom: 58 / 966
  32574. }
  32575. },
  32576. side: {
  32577. height: math.unit(6, "feet"),
  32578. weight: math.unit(135, "lb"),
  32579. name: "Side",
  32580. image: {
  32581. source: "./media/characters/axel/side.svg",
  32582. extra: 958 / 958,
  32583. bottom: 11 / 969
  32584. }
  32585. },
  32586. back: {
  32587. height: math.unit(6, "feet"),
  32588. weight: math.unit(135, "lb"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/axel/back.svg",
  32592. extra: 887 / 887,
  32593. bottom: 34 / 921
  32594. }
  32595. },
  32596. head: {
  32597. height: math.unit(1.07, "feet"),
  32598. name: "Head",
  32599. image: {
  32600. source: "./media/characters/axel/head.svg"
  32601. }
  32602. },
  32603. beak: {
  32604. height: math.unit(1.4, "feet"),
  32605. name: "Beak",
  32606. image: {
  32607. source: "./media/characters/axel/beak.svg"
  32608. }
  32609. },
  32610. beakSide: {
  32611. height: math.unit(1.4, "feet"),
  32612. name: "Beak Side",
  32613. image: {
  32614. source: "./media/characters/axel/beak-side.svg"
  32615. }
  32616. },
  32617. sheath: {
  32618. height: math.unit(0.5, "feet"),
  32619. name: "Sheath",
  32620. image: {
  32621. source: "./media/characters/axel/sheath.svg"
  32622. }
  32623. },
  32624. dick: {
  32625. height: math.unit(0.98, "feet"),
  32626. name: "Dick",
  32627. image: {
  32628. source: "./media/characters/axel/dick.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Macro",
  32635. height: math.unit(68, "meters"),
  32636. default: true
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32642. {
  32643. front: {
  32644. height: math.unit(3.5, "meters"),
  32645. weight: math.unit(1200, "kg"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/joanna/front.svg",
  32649. extra: 1596 / 1488,
  32650. bottom: 29 / 1625
  32651. }
  32652. },
  32653. back: {
  32654. height: math.unit(3.5, "meters"),
  32655. weight: math.unit(1200, "kg"),
  32656. name: "Back",
  32657. image: {
  32658. source: "./media/characters/joanna/back.svg",
  32659. extra: 1594 / 1495,
  32660. bottom: 26 / 1620
  32661. }
  32662. },
  32663. frontShorts: {
  32664. height: math.unit(3.5, "meters"),
  32665. weight: math.unit(1200, "kg"),
  32666. name: "Front (Shorts)",
  32667. image: {
  32668. source: "./media/characters/joanna/front-shorts.svg",
  32669. extra: 1596 / 1488,
  32670. bottom: 29 / 1625
  32671. }
  32672. },
  32673. frontBiker: {
  32674. height: math.unit(3.5, "meters"),
  32675. weight: math.unit(1200, "kg"),
  32676. name: "Front (Biker)",
  32677. image: {
  32678. source: "./media/characters/joanna/front-biker.svg",
  32679. extra: 1596 / 1488,
  32680. bottom: 29 / 1625
  32681. }
  32682. },
  32683. backBiker: {
  32684. height: math.unit(3.5, "meters"),
  32685. weight: math.unit(1200, "kg"),
  32686. name: "Back (Biker)",
  32687. image: {
  32688. source: "./media/characters/joanna/back-biker.svg",
  32689. extra: 1594 / 1495,
  32690. bottom: 88 / 1682
  32691. }
  32692. },
  32693. bikeLeft: {
  32694. height: math.unit(2.4, "meters"),
  32695. weight: math.unit(1600, "kg"),
  32696. name: "Bike (Left)",
  32697. image: {
  32698. source: "./media/characters/joanna/bike-left.svg",
  32699. extra: 720 / 720,
  32700. bottom: 8 / 728
  32701. }
  32702. },
  32703. bikeRight: {
  32704. height: math.unit(2.4, "meters"),
  32705. weight: math.unit(1600, "kg"),
  32706. name: "Bike (Right)",
  32707. image: {
  32708. source: "./media/characters/joanna/bike-right.svg",
  32709. extra: 720 / 720,
  32710. bottom: 8 / 728
  32711. }
  32712. },
  32713. },
  32714. [
  32715. {
  32716. name: "Incognito",
  32717. height: math.unit(3.5, "meters")
  32718. },
  32719. {
  32720. name: "Casual Big",
  32721. height: math.unit(200, "meters")
  32722. },
  32723. {
  32724. name: "Macro",
  32725. height: math.unit(600, "meters")
  32726. },
  32727. {
  32728. name: "Original",
  32729. height: math.unit(20, "km"),
  32730. default: true
  32731. },
  32732. {
  32733. name: "Giga",
  32734. height: math.unit(400, "km")
  32735. },
  32736. {
  32737. name: "Lounging",
  32738. height: math.unit(1500, "km")
  32739. },
  32740. {
  32741. name: "Planetary",
  32742. height: math.unit(200000, "km")
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(6, "feet"),
  32751. weight: math.unit(150, "lb"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/hugo-sigil/front.svg",
  32755. extra: 522 / 500,
  32756. bottom: 2 / 524
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(6, "feet"),
  32761. weight: math.unit(150, "lb"),
  32762. name: "Back",
  32763. image: {
  32764. source: "./media/characters/hugo-sigil/back.svg",
  32765. extra: 519 / 495,
  32766. bottom: 5 / 524
  32767. }
  32768. },
  32769. maw: {
  32770. height: math.unit(1.4, "feet"),
  32771. weight: math.unit(150, "lb"),
  32772. name: "Maw",
  32773. image: {
  32774. source: "./media/characters/hugo-sigil/maw.svg"
  32775. }
  32776. },
  32777. feet: {
  32778. height: math.unit(1.56, "feet"),
  32779. weight: math.unit(150, "lb"),
  32780. name: "Feet",
  32781. image: {
  32782. source: "./media/characters/hugo-sigil/feet.svg",
  32783. extra: 177 / 177,
  32784. bottom: 12 / 189
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(6, "feet")
  32792. },
  32793. {
  32794. name: "Macro",
  32795. height: math.unit(200, "feet"),
  32796. default: true
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(6, "feet"),
  32805. weight: math.unit(150, "lb"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/peri/front.svg",
  32809. extra: 2354 / 2233,
  32810. bottom: 49 / 2403
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Really Small",
  32817. height: math.unit(1, "nm")
  32818. },
  32819. {
  32820. name: "Micro",
  32821. height: math.unit(4, "inches")
  32822. },
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(7, "inches"),
  32826. default: true
  32827. },
  32828. {
  32829. name: "Macro",
  32830. height: math.unit(400, "feet")
  32831. },
  32832. {
  32833. name: "Megamacro",
  32834. height: math.unit(100, "miles")
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32840. {
  32841. frontSlim: {
  32842. height: math.unit(7, "feet"),
  32843. name: "Front (Slim)",
  32844. image: {
  32845. source: "./media/characters/issilora/front-slim.svg",
  32846. extra: 529 / 449,
  32847. bottom: 53 / 582
  32848. }
  32849. },
  32850. sideSlim: {
  32851. height: math.unit(7, "feet"),
  32852. name: "Side (Slim)",
  32853. image: {
  32854. source: "./media/characters/issilora/side-slim.svg",
  32855. extra: 570 / 480,
  32856. bottom: 30 / 600
  32857. }
  32858. },
  32859. backSlim: {
  32860. height: math.unit(7, "feet"),
  32861. name: "Back (Slim)",
  32862. image: {
  32863. source: "./media/characters/issilora/back-slim.svg",
  32864. extra: 537 / 455,
  32865. bottom: 46 / 583
  32866. }
  32867. },
  32868. frontBuff: {
  32869. height: math.unit(7, "feet"),
  32870. name: "Front (Buff)",
  32871. image: {
  32872. source: "./media/characters/issilora/front-buff.svg",
  32873. extra: 2310 / 2035,
  32874. bottom: 335 / 2645
  32875. }
  32876. },
  32877. head: {
  32878. height: math.unit(1.94, "feet"),
  32879. name: "Head",
  32880. image: {
  32881. source: "./media/characters/issilora/head.svg"
  32882. }
  32883. },
  32884. },
  32885. [
  32886. {
  32887. name: "Minimum",
  32888. height: math.unit(7, "feet")
  32889. },
  32890. {
  32891. name: "Comfortable",
  32892. height: math.unit(17, "feet")
  32893. },
  32894. {
  32895. name: "Fun Size",
  32896. height: math.unit(47, "feet")
  32897. },
  32898. {
  32899. name: "Natural Macro",
  32900. height: math.unit(137, "feet"),
  32901. default: true
  32902. },
  32903. {
  32904. name: "Maximum Kaiju",
  32905. height: math.unit(397, "feet")
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32911. {
  32912. front: {
  32913. height: math.unit(50 + 9/12, "feet"),
  32914. weight: math.unit(32.8, "tons"),
  32915. name: "Front",
  32916. image: {
  32917. source: "./media/characters/irb'iiritaahn/front.svg",
  32918. extra: 1878/1826,
  32919. bottom: 326/2204
  32920. }
  32921. },
  32922. back: {
  32923. height: math.unit(50 + 9/12, "feet"),
  32924. weight: math.unit(32.8, "tons"),
  32925. name: "Back",
  32926. image: {
  32927. source: "./media/characters/irb'iiritaahn/back.svg",
  32928. extra: 2052/2018,
  32929. bottom: 152/2204
  32930. }
  32931. },
  32932. head: {
  32933. height: math.unit(12.86, "feet"),
  32934. name: "Head",
  32935. image: {
  32936. source: "./media/characters/irb'iiritaahn/head.svg"
  32937. }
  32938. },
  32939. maw: {
  32940. height: math.unit(9.66, "feet"),
  32941. name: "Maw",
  32942. image: {
  32943. source: "./media/characters/irb'iiritaahn/maw.svg"
  32944. }
  32945. },
  32946. frontDick: {
  32947. height: math.unit(8.78461, "feet"),
  32948. name: "Front Dick",
  32949. image: {
  32950. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32951. }
  32952. },
  32953. rearDick: {
  32954. height: math.unit(8.78461, "feet"),
  32955. name: "Rear Dick",
  32956. image: {
  32957. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32958. }
  32959. },
  32960. rearDickUnfolded: {
  32961. height: math.unit(8.78, "feet"),
  32962. name: "Rear Dick (Unfolded)",
  32963. image: {
  32964. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32965. }
  32966. },
  32967. wings: {
  32968. height: math.unit(43, "feet"),
  32969. name: "Wings",
  32970. image: {
  32971. source: "./media/characters/irb'iiritaahn/wings.svg"
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Macro",
  32978. height: math.unit(50 + 9/12, "feet"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(205, "cm"),
  32988. weight: math.unit(102, "kg"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/irbisgreif/front.svg",
  32992. extra: 785/706,
  32993. bottom: 13/798
  32994. }
  32995. },
  32996. back: {
  32997. height: math.unit(205, "cm"),
  32998. weight: math.unit(102, "kg"),
  32999. name: "Back",
  33000. image: {
  33001. source: "./media/characters/irbisgreif/back.svg",
  33002. extra: 713/701,
  33003. bottom: 26/739
  33004. }
  33005. },
  33006. frontDressed: {
  33007. height: math.unit(216, "cm"),
  33008. weight: math.unit(102, "kg"),
  33009. name: "Front-dressed",
  33010. image: {
  33011. source: "./media/characters/irbisgreif/front-dressed.svg",
  33012. extra: 902/776,
  33013. bottom: 14/916
  33014. }
  33015. },
  33016. sideDressed: {
  33017. height: math.unit(195, "cm"),
  33018. weight: math.unit(102, "kg"),
  33019. name: "Side-dressed",
  33020. image: {
  33021. source: "./media/characters/irbisgreif/side-dressed.svg",
  33022. extra: 788/688,
  33023. bottom: 21/809
  33024. }
  33025. },
  33026. backDressed: {
  33027. height: math.unit(216, "cm"),
  33028. weight: math.unit(102, "kg"),
  33029. name: "Back-dressed",
  33030. image: {
  33031. source: "./media/characters/irbisgreif/back-dressed.svg",
  33032. extra: 901/783,
  33033. bottom: 10/911
  33034. }
  33035. },
  33036. dick: {
  33037. height: math.unit(0.49, "feet"),
  33038. name: "Dick",
  33039. image: {
  33040. source: "./media/characters/irbisgreif/dick.svg"
  33041. }
  33042. },
  33043. wingTop: {
  33044. height: math.unit(1.93 , "feet"),
  33045. name: "Wing-top",
  33046. image: {
  33047. source: "./media/characters/irbisgreif/wing-top.svg"
  33048. }
  33049. },
  33050. wingBottom: {
  33051. height: math.unit(1.93 , "feet"),
  33052. name: "Wing-bottom",
  33053. image: {
  33054. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(216, "cm"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(6, "feet"),
  33071. weight: math.unit(150, "lb"),
  33072. name: "Front",
  33073. image: {
  33074. source: "./media/characters/pride/front.svg",
  33075. extra: 1299/1230,
  33076. bottom: 18/1317
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Normal",
  33083. height: math.unit(7, "feet")
  33084. },
  33085. {
  33086. name: "Mini-macro",
  33087. height: math.unit(11, "feet")
  33088. },
  33089. {
  33090. name: "Macro",
  33091. height: math.unit(15, "meters"),
  33092. default: true
  33093. },
  33094. {
  33095. name: "Macro+",
  33096. height: math.unit(40, "meters")
  33097. },
  33098. ]
  33099. ))
  33100. characterMakers.push(() => makeCharacter(
  33101. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33102. {
  33103. front: {
  33104. height: math.unit(4 + 2 / 12, "feet"),
  33105. weight: math.unit(95, "lb"),
  33106. name: "Front",
  33107. image: {
  33108. source: "./media/characters/vaelophis-nyx/front.svg",
  33109. extra: 2532/2330,
  33110. bottom: 0/2532
  33111. }
  33112. },
  33113. back: {
  33114. height: math.unit(4 + 2 / 12, "feet"),
  33115. weight: math.unit(95, "lb"),
  33116. name: "Back",
  33117. image: {
  33118. source: "./media/characters/vaelophis-nyx/back.svg",
  33119. extra: 2484/2361,
  33120. bottom: 0/2484
  33121. }
  33122. },
  33123. feralSide: {
  33124. height: math.unit(2 + 1/12, "feet"),
  33125. weight: math.unit(20, "lb"),
  33126. name: "Feral (Side)",
  33127. image: {
  33128. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33129. extra: 1721/1581,
  33130. bottom: 70/1791
  33131. }
  33132. },
  33133. feralLazing: {
  33134. height: math.unit(1.08, "feet"),
  33135. weight: math.unit(20, "lb"),
  33136. name: "Feral (Lazing)",
  33137. image: {
  33138. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33139. extra: 822/822,
  33140. bottom: 248/1070
  33141. }
  33142. },
  33143. ear: {
  33144. height: math.unit(0.416, "feet"),
  33145. name: "Ear",
  33146. image: {
  33147. source: "./media/characters/vaelophis-nyx/ear.svg"
  33148. }
  33149. },
  33150. eye: {
  33151. height: math.unit(0.0748, "feet"),
  33152. name: "Eye",
  33153. image: {
  33154. source: "./media/characters/vaelophis-nyx/eye.svg"
  33155. }
  33156. },
  33157. mouth: {
  33158. height: math.unit(0.378, "feet"),
  33159. name: "Mouth",
  33160. image: {
  33161. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33162. }
  33163. },
  33164. spade: {
  33165. height: math.unit(0.55, "feet"),
  33166. name: "Spade",
  33167. image: {
  33168. source: "./media/characters/vaelophis-nyx/spade.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(4 + 2/12, "feet"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33182. {
  33183. front: {
  33184. height: math.unit(7, "feet"),
  33185. weight: math.unit(231, "lb"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/flux/front.svg",
  33189. extra: 919/871,
  33190. bottom: 0/919
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(7, "feet"),
  33195. weight: math.unit(231, "lb"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/flux/back.svg",
  33199. extra: 1040/992,
  33200. bottom: 0/1040
  33201. }
  33202. },
  33203. frontDressed: {
  33204. height: math.unit(7, "feet"),
  33205. weight: math.unit(231, "lb"),
  33206. name: "Front (Dressed)",
  33207. image: {
  33208. source: "./media/characters/flux/front-dressed.svg",
  33209. extra: 919/871,
  33210. bottom: 0/919
  33211. }
  33212. },
  33213. feralSide: {
  33214. height: math.unit(5, "feet"),
  33215. weight: math.unit(150, "lb"),
  33216. name: "Feral (Side)",
  33217. image: {
  33218. source: "./media/characters/flux/feral-side.svg",
  33219. extra: 598/528,
  33220. bottom: 28/626
  33221. }
  33222. },
  33223. head: {
  33224. height: math.unit(1.585, "feet"),
  33225. name: "Head",
  33226. image: {
  33227. source: "./media/characters/flux/head.svg"
  33228. }
  33229. },
  33230. headSide: {
  33231. height: math.unit(1.74, "feet"),
  33232. name: "Head (Side)",
  33233. image: {
  33234. source: "./media/characters/flux/head-side.svg"
  33235. }
  33236. },
  33237. headSideFire: {
  33238. height: math.unit(1.76, "feet"),
  33239. name: "Head (Side, Fire)",
  33240. image: {
  33241. source: "./media/characters/flux/head-side-fire.svg"
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(7, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(9, "feet"),
  33258. weight: math.unit(1012, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/ulfra-lupae/front.svg",
  33262. extra: 1083/1011,
  33263. bottom: 67/1150
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Micro",
  33270. height: math.unit(6, "inches")
  33271. },
  33272. {
  33273. name: "Socializing",
  33274. height: math.unit(6 + 5/12, "feet")
  33275. },
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(9, "feet"),
  33279. default: true
  33280. },
  33281. {
  33282. name: "Macro",
  33283. height: math.unit(150, "feet")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(5 + 2/12, "feet"),
  33292. weight: math.unit(120, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/timber/front.svg",
  33296. extra: 2814/2705,
  33297. bottom: 181/2995
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(5 + 2/12, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(9, "feet"),
  33314. name: "Front",
  33315. image: {
  33316. source: "./media/characters/nicki/front.svg",
  33317. extra: 1240/990,
  33318. bottom: 45/1285
  33319. },
  33320. form: "anthro",
  33321. default: true
  33322. },
  33323. side: {
  33324. height: math.unit(9, "feet"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/nicki/side.svg",
  33328. extra: 1047/973,
  33329. bottom: 61/1108
  33330. },
  33331. form: "anthro"
  33332. },
  33333. back: {
  33334. height: math.unit(9, "feet"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/nicki/back.svg",
  33338. extra: 1006/965,
  33339. bottom: 39/1045
  33340. },
  33341. form: "anthro"
  33342. },
  33343. taur: {
  33344. height: math.unit(15, "feet"),
  33345. name: "Taur",
  33346. image: {
  33347. source: "./media/characters/nicki/taur.svg",
  33348. extra: 1592/1347,
  33349. bottom: 0/1592
  33350. },
  33351. form: "taur",
  33352. default: true
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(9, "feet"),
  33359. form: "anthro",
  33360. default: true
  33361. },
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(15, "feet"),
  33365. form: "taur",
  33366. default: true
  33367. }
  33368. ],
  33369. {
  33370. "anthro": {
  33371. name: "Anthro",
  33372. default: true
  33373. },
  33374. "taur": {
  33375. name: "Taur"
  33376. }
  33377. }
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(7 + 10/12, "feet"),
  33384. weight: math.unit(3.5, "tons"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/lee/front.svg",
  33388. extra: 1773/1615,
  33389. bottom: 86/1859
  33390. }
  33391. },
  33392. hand: {
  33393. height: math.unit(1.78, "feet"),
  33394. name: "Hand",
  33395. image: {
  33396. source: "./media/characters/lee/hand.svg"
  33397. }
  33398. },
  33399. maw: {
  33400. height: math.unit(1.18, "feet"),
  33401. name: "Maw",
  33402. image: {
  33403. source: "./media/characters/lee/maw.svg"
  33404. }
  33405. },
  33406. },
  33407. [
  33408. {
  33409. name: "Normal",
  33410. height: math.unit(7 + 10/12, "feet"),
  33411. default: true
  33412. },
  33413. ]
  33414. ))
  33415. characterMakers.push(() => makeCharacter(
  33416. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33417. {
  33418. front: {
  33419. height: math.unit(9, "feet"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/guti/front.svg",
  33423. extra: 4551/4355,
  33424. bottom: 123/4674
  33425. }
  33426. },
  33427. tongue: {
  33428. height: math.unit(1, "feet"),
  33429. name: "Tongue",
  33430. image: {
  33431. source: "./media/characters/guti/tongue.svg"
  33432. }
  33433. },
  33434. paw: {
  33435. height: math.unit(1.18, "feet"),
  33436. name: "Paw",
  33437. image: {
  33438. source: "./media/characters/guti/paw.svg"
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(9, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33452. {
  33453. side: {
  33454. height: math.unit(5, "meters"),
  33455. name: "Side",
  33456. image: {
  33457. source: "./media/characters/vesper/side.svg",
  33458. extra: 1605/1518,
  33459. bottom: 0/1605
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Small",
  33466. height: math.unit(5, "meters")
  33467. },
  33468. {
  33469. name: "Sage",
  33470. height: math.unit(100, "meters"),
  33471. default: true
  33472. },
  33473. {
  33474. name: "Fun Size",
  33475. height: math.unit(600, "meters")
  33476. },
  33477. {
  33478. name: "Goddess",
  33479. height: math.unit(20000, "km")
  33480. },
  33481. {
  33482. name: "Maximum",
  33483. height: math.unit(5, "galaxies")
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(6 + 3/12, "feet"),
  33492. weight: math.unit(190, "lb"),
  33493. name: "Front",
  33494. image: {
  33495. source: "./media/characters/gawain/front.svg",
  33496. extra: 2222/2139,
  33497. bottom: 90/2312
  33498. }
  33499. },
  33500. back: {
  33501. height: math.unit(6 + 3/12, "feet"),
  33502. weight: math.unit(190, "lb"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/gawain/back.svg",
  33506. extra: 2199/2111,
  33507. bottom: 73/2272
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(6 + 3/12, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33521. {
  33522. side: {
  33523. height: math.unit(3.5, "meters"),
  33524. weight: math.unit(16000, "lb"),
  33525. name: "Side",
  33526. image: {
  33527. source: "./media/characters/dascalti/side.svg",
  33528. extra: 392/273,
  33529. bottom: 47/439
  33530. }
  33531. },
  33532. breath: {
  33533. height: math.unit(7.4, "feet"),
  33534. name: "Breath",
  33535. image: {
  33536. source: "./media/characters/dascalti/breath.svg"
  33537. }
  33538. },
  33539. fed: {
  33540. height: math.unit(3.6, "meters"),
  33541. weight: math.unit(16000, "lb"),
  33542. name: "Fed",
  33543. image: {
  33544. source: "./media/characters/dascalti/fed.svg",
  33545. extra: 1419/820,
  33546. bottom: 95/1514
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(3.5, "meters"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(3 + 5/12, "feet"),
  33563. name: "Front",
  33564. image: {
  33565. source: "./media/characters/mauve/front.svg",
  33566. extra: 1126/1033,
  33567. bottom: 65/1191
  33568. }
  33569. },
  33570. side: {
  33571. height: math.unit(3 + 5/12, "feet"),
  33572. name: "Side",
  33573. image: {
  33574. source: "./media/characters/mauve/side.svg",
  33575. extra: 1089/1001,
  33576. bottom: 29/1118
  33577. }
  33578. },
  33579. back: {
  33580. height: math.unit(3 + 5/12, "feet"),
  33581. name: "Back",
  33582. image: {
  33583. source: "./media/characters/mauve/back.svg",
  33584. extra: 1173/1053,
  33585. bottom: 109/1282
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Normal",
  33592. height: math.unit(3 + 5/12, "feet"),
  33593. default: true
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(6 + 3/12, "feet"),
  33602. weight: math.unit(430, "lb"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/carlos/front.svg",
  33606. extra: 1964/1913,
  33607. bottom: 70/2034
  33608. }
  33609. },
  33610. },
  33611. [
  33612. {
  33613. name: "Normal",
  33614. height: math.unit(6 + 3/12, "feet"),
  33615. default: true
  33616. },
  33617. ]
  33618. ))
  33619. characterMakers.push(() => makeCharacter(
  33620. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33621. {
  33622. back: {
  33623. height: math.unit(5 + 10/12, "feet"),
  33624. weight: math.unit(200, "lb"),
  33625. name: "Back",
  33626. image: {
  33627. source: "./media/characters/jax/back.svg",
  33628. extra: 764/739,
  33629. bottom: 25/789
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(5 + 10/12, "feet"),
  33637. default: true
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(8, "feet"),
  33646. weight: math.unit(250, "lb"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/eikthynir/front.svg",
  33650. extra: 1332/1166,
  33651. bottom: 82/1414
  33652. }
  33653. },
  33654. back: {
  33655. height: math.unit(8, "feet"),
  33656. weight: math.unit(250, "lb"),
  33657. name: "Back",
  33658. image: {
  33659. source: "./media/characters/eikthynir/back.svg",
  33660. extra: 1342/1190,
  33661. bottom: 19/1361
  33662. }
  33663. },
  33664. dick: {
  33665. height: math.unit(2.35, "feet"),
  33666. name: "Dick",
  33667. image: {
  33668. source: "./media/characters/eikthynir/dick.svg"
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(8, "feet"),
  33676. default: true
  33677. },
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33682. {
  33683. front: {
  33684. height: math.unit(99, "meters"),
  33685. weight: math.unit(13000, "tons"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/zlmos/front.svg",
  33689. extra: 2202/1992,
  33690. bottom: 315/2517
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Macro",
  33697. height: math.unit(99, "meters"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(6 + 5/12, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/purri/front.svg",
  33710. extra: 1698/1610,
  33711. bottom: 32/1730
  33712. }
  33713. },
  33714. frontAlt: {
  33715. height: math.unit(6 + 5/12, "feet"),
  33716. name: "Front (Alt)",
  33717. image: {
  33718. source: "./media/characters/purri/front-alt.svg",
  33719. extra: 450/420,
  33720. bottom: 26/476
  33721. }
  33722. },
  33723. boots: {
  33724. height: math.unit(5.5, "feet"),
  33725. name: "Boots",
  33726. image: {
  33727. source: "./media/characters/purri/boots.svg",
  33728. extra: 905/853,
  33729. bottom: 18/923
  33730. }
  33731. },
  33732. lying: {
  33733. height: math.unit(2, "feet"),
  33734. name: "Lying",
  33735. image: {
  33736. source: "./media/characters/purri/lying.svg",
  33737. extra: 940/843,
  33738. bottom: 146/1086
  33739. }
  33740. },
  33741. devious: {
  33742. height: math.unit(1.77, "feet"),
  33743. name: "Devious",
  33744. image: {
  33745. source: "./media/characters/purri/devious.svg",
  33746. extra: 1440/1155,
  33747. bottom: 147/1587
  33748. }
  33749. },
  33750. bean: {
  33751. height: math.unit(1.94, "feet"),
  33752. name: "Bean",
  33753. image: {
  33754. source: "./media/characters/purri/bean.svg"
  33755. }
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Micro",
  33761. height: math.unit(1, "mm")
  33762. },
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(6 + 5/12, "feet"),
  33766. default: true
  33767. },
  33768. {
  33769. name: "Macro :3c",
  33770. height: math.unit(2, "miles")
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(6 + 2/12, "feet"),
  33779. weight: math.unit(250, "lb"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/moonlight/front.svg",
  33783. extra: 1044/908,
  33784. bottom: 56/1100
  33785. }
  33786. },
  33787. feral: {
  33788. height: math.unit(3 + 1/12, "feet"),
  33789. weight: math.unit(50, "kg"),
  33790. name: "Feral",
  33791. image: {
  33792. source: "./media/characters/moonlight/feral.svg",
  33793. extra: 3705/2791,
  33794. bottom: 145/3850
  33795. }
  33796. },
  33797. paw: {
  33798. height: math.unit(1, "feet"),
  33799. name: "Paw",
  33800. image: {
  33801. source: "./media/characters/moonlight/paw.svg"
  33802. }
  33803. },
  33804. paws: {
  33805. height: math.unit(0.98, "feet"),
  33806. name: "Paws",
  33807. image: {
  33808. source: "./media/characters/moonlight/paws.svg",
  33809. extra: 939/939,
  33810. bottom: 50/989
  33811. }
  33812. },
  33813. mouth: {
  33814. height: math.unit(0.48, "feet"),
  33815. name: "Mouth",
  33816. image: {
  33817. source: "./media/characters/moonlight/mouth.svg"
  33818. }
  33819. },
  33820. dick: {
  33821. height: math.unit(1.46, "feet"),
  33822. name: "Dick",
  33823. image: {
  33824. source: "./media/characters/moonlight/dick.svg"
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(6 + 2/12, "feet"),
  33832. default: true
  33833. },
  33834. {
  33835. name: "Macro",
  33836. height: math.unit(300, "feet")
  33837. },
  33838. {
  33839. name: "Macro+",
  33840. height: math.unit(1, "mile")
  33841. },
  33842. {
  33843. name: "Mt. Moon",
  33844. height: math.unit(5, "miles")
  33845. },
  33846. {
  33847. name: "Megamacro",
  33848. height: math.unit(15, "miles")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33854. {
  33855. back: {
  33856. height: math.unit(6, "feet"),
  33857. weight: math.unit(150, "lb"),
  33858. name: "Back",
  33859. image: {
  33860. source: "./media/characters/sylen/back.svg",
  33861. extra: 1335/1273,
  33862. bottom: 107/1442
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(5 + 5/12, "feet")
  33870. },
  33871. {
  33872. name: "Megamacro",
  33873. height: math.unit(3, "miles"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(6, "feet"),
  33883. weight: math.unit(190, "lb"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/huttser/front.svg",
  33887. extra: 1152/1058,
  33888. bottom: 23/1175
  33889. }
  33890. },
  33891. side: {
  33892. height: math.unit(6, "feet"),
  33893. weight: math.unit(190, "lb"),
  33894. name: "Side",
  33895. image: {
  33896. source: "./media/characters/huttser/side.svg",
  33897. extra: 1174/1065,
  33898. bottom: 18/1192
  33899. }
  33900. },
  33901. back: {
  33902. height: math.unit(6, "feet"),
  33903. weight: math.unit(190, "lb"),
  33904. name: "Back",
  33905. image: {
  33906. source: "./media/characters/huttser/back.svg",
  33907. extra: 1158/1056,
  33908. bottom: 12/1170
  33909. }
  33910. },
  33911. },
  33912. [
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33917. {
  33918. side: {
  33919. height: math.unit(12 + 9/12, "feet"),
  33920. weight: math.unit(15000, "lb"),
  33921. name: "Side",
  33922. image: {
  33923. source: "./media/characters/faan/side.svg",
  33924. extra: 2747/2697,
  33925. bottom: 0/2747
  33926. }
  33927. },
  33928. front: {
  33929. height: math.unit(12 + 9/12, "feet"),
  33930. weight: math.unit(15000, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/faan/front.svg",
  33934. extra: 607/571,
  33935. bottom: 24/631
  33936. }
  33937. },
  33938. head: {
  33939. height: math.unit(2.85, "feet"),
  33940. name: "Head",
  33941. image: {
  33942. source: "./media/characters/faan/head.svg"
  33943. }
  33944. },
  33945. headAlt: {
  33946. height: math.unit(3.13, "feet"),
  33947. name: "Head-alt",
  33948. image: {
  33949. source: "./media/characters/faan/head-alt.svg"
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(12 + 9/12, "feet"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(6, "feet"),
  33966. weight: math.unit(300, "lb"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/tanio/front.svg",
  33970. extra: 711/673,
  33971. bottom: 25/736
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(6, "feet"),
  33979. default: true
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(3, "inches"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/noboru/front.svg",
  33991. extra: 1039/932,
  33992. bottom: 18/1057
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Micro",
  33999. height: math.unit(3, "inches"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34006. {
  34007. front: {
  34008. height: math.unit(1.85, "meters"),
  34009. weight: math.unit(80, "kg"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/daniel-barrett/front.svg",
  34013. extra: 355/337,
  34014. bottom: 9/364
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Pico",
  34021. height: math.unit(0.0433, "mm")
  34022. },
  34023. {
  34024. name: "Nano",
  34025. height: math.unit(1.5, "mm")
  34026. },
  34027. {
  34028. name: "Micro",
  34029. height: math.unit(5.3, "cm"),
  34030. default: true
  34031. },
  34032. {
  34033. name: "Normal",
  34034. height: math.unit(1.85, "meters")
  34035. },
  34036. {
  34037. name: "Macro",
  34038. height: math.unit(64.7, "meters")
  34039. },
  34040. {
  34041. name: "Megamacro",
  34042. height: math.unit(2.26, "km")
  34043. },
  34044. {
  34045. name: "Gigamacro",
  34046. height: math.unit(79, "km")
  34047. },
  34048. {
  34049. name: "Teramacro",
  34050. height: math.unit(2765, "km")
  34051. },
  34052. {
  34053. name: "Petamacro",
  34054. height: math.unit(96678, "km")
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(30, "meters"),
  34063. weight: math.unit(400, "tons"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/zeel/front.svg",
  34067. extra: 2599/2599,
  34068. bottom: 226/2825
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Macro",
  34075. height: math.unit(30, "meters"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(6 + 7/12, "feet"),
  34085. weight: math.unit(210, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/tarn/front.svg",
  34089. extra: 3517/3220,
  34090. bottom: 91/3608
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(6 + 7/12, "feet"),
  34095. weight: math.unit(210, "lb"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/tarn/back.svg",
  34099. extra: 3566/3241,
  34100. bottom: 34/3600
  34101. }
  34102. },
  34103. dick: {
  34104. height: math.unit(1.65, "feet"),
  34105. name: "Dick",
  34106. image: {
  34107. source: "./media/characters/tarn/dick.svg"
  34108. }
  34109. },
  34110. paw: {
  34111. height: math.unit(1.80, "feet"),
  34112. name: "Paw",
  34113. image: {
  34114. source: "./media/characters/tarn/paw.svg"
  34115. }
  34116. },
  34117. tongue: {
  34118. height: math.unit(0.97, "feet"),
  34119. name: "Tongue",
  34120. image: {
  34121. source: "./media/characters/tarn/tongue.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(4, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6 + 7/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Macro",
  34137. height: math.unit(300, "feet")
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(5 + 7/12, "feet"),
  34146. weight: math.unit(80, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34150. extra: 3023/2865,
  34151. bottom: 33/3056
  34152. }
  34153. },
  34154. back: {
  34155. height: math.unit(5 + 7/12, "feet"),
  34156. weight: math.unit(80, "kg"),
  34157. name: "Back",
  34158. image: {
  34159. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34160. extra: 3020/2886,
  34161. bottom: 30/3050
  34162. }
  34163. },
  34164. dick: {
  34165. height: math.unit(0.98, "feet"),
  34166. name: "Dick",
  34167. image: {
  34168. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34169. }
  34170. },
  34171. anatomy: {
  34172. height: math.unit(2.86, "feet"),
  34173. name: "Anatomy",
  34174. image: {
  34175. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Really Small",
  34182. height: math.unit(2, "inches")
  34183. },
  34184. {
  34185. name: "Micro",
  34186. height: math.unit(5.583, "inches")
  34187. },
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(5 + 7/12, "feet"),
  34191. default: true
  34192. },
  34193. {
  34194. name: "Macro",
  34195. height: math.unit(67, "feet")
  34196. },
  34197. {
  34198. name: "Megamacro",
  34199. height: math.unit(134, "feet")
  34200. },
  34201. ]
  34202. ))
  34203. characterMakers.push(() => makeCharacter(
  34204. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34205. {
  34206. front: {
  34207. height: math.unit(9, "feet"),
  34208. weight: math.unit(120, "lb"),
  34209. name: "Front",
  34210. image: {
  34211. source: "./media/characters/sally/front.svg",
  34212. extra: 1506/1349,
  34213. bottom: 66/1572
  34214. }
  34215. },
  34216. },
  34217. [
  34218. {
  34219. name: "Normal",
  34220. height: math.unit(9, "feet"),
  34221. default: true
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34227. {
  34228. front: {
  34229. height: math.unit(8, "feet"),
  34230. weight: math.unit(900, "lb"),
  34231. name: "Front",
  34232. image: {
  34233. source: "./media/characters/owen/front.svg",
  34234. extra: 1761/1657,
  34235. bottom: 74/1835
  34236. }
  34237. },
  34238. side: {
  34239. height: math.unit(8, "feet"),
  34240. weight: math.unit(900, "lb"),
  34241. name: "Side",
  34242. image: {
  34243. source: "./media/characters/owen/side.svg",
  34244. extra: 1797/1734,
  34245. bottom: 30/1827
  34246. }
  34247. },
  34248. back: {
  34249. height: math.unit(8, "feet"),
  34250. weight: math.unit(900, "lb"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/owen/back.svg",
  34254. extra: 1796/1706,
  34255. bottom: 59/1855
  34256. }
  34257. },
  34258. maw: {
  34259. height: math.unit(1.76, "feet"),
  34260. name: "Maw",
  34261. image: {
  34262. source: "./media/characters/owen/maw.svg"
  34263. }
  34264. },
  34265. },
  34266. [
  34267. {
  34268. name: "Normal",
  34269. height: math.unit(8, "feet"),
  34270. default: true
  34271. },
  34272. ]
  34273. ))
  34274. characterMakers.push(() => makeCharacter(
  34275. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34276. {
  34277. front: {
  34278. height: math.unit(4, "feet"),
  34279. weight: math.unit(400, "lb"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/ryth/front.svg",
  34283. extra: 1920/1748,
  34284. bottom: 42/1962
  34285. }
  34286. },
  34287. back: {
  34288. height: math.unit(4, "feet"),
  34289. weight: math.unit(400, "lb"),
  34290. name: "Back",
  34291. image: {
  34292. source: "./media/characters/ryth/back.svg",
  34293. extra: 1897/1690,
  34294. bottom: 89/1986
  34295. }
  34296. },
  34297. mouth: {
  34298. height: math.unit(1.39, "feet"),
  34299. name: "Mouth",
  34300. image: {
  34301. source: "./media/characters/ryth/mouth.svg"
  34302. }
  34303. },
  34304. tailmaw: {
  34305. height: math.unit(1.23, "feet"),
  34306. name: "Tailmaw",
  34307. image: {
  34308. source: "./media/characters/ryth/tailmaw.svg"
  34309. }
  34310. },
  34311. goia: {
  34312. height: math.unit(4, "meters"),
  34313. weight: math.unit(10800, "lb"),
  34314. name: "Goia",
  34315. image: {
  34316. source: "./media/characters/ryth/goia.svg",
  34317. extra: 745/640,
  34318. bottom: 107/852
  34319. }
  34320. },
  34321. goiaFront: {
  34322. height: math.unit(4, "meters"),
  34323. weight: math.unit(10800, "lb"),
  34324. name: "Goia (Front)",
  34325. image: {
  34326. source: "./media/characters/ryth/goia-front.svg",
  34327. extra: 750/586,
  34328. bottom: 114/864
  34329. }
  34330. },
  34331. goiaMaw: {
  34332. height: math.unit(5.55, "feet"),
  34333. name: "Goia Maw",
  34334. image: {
  34335. source: "./media/characters/ryth/goia-maw.svg"
  34336. }
  34337. },
  34338. goiaForepaw: {
  34339. height: math.unit(3.5, "feet"),
  34340. name: "Goia Forepaw",
  34341. image: {
  34342. source: "./media/characters/ryth/goia-forepaw.svg"
  34343. }
  34344. },
  34345. goiaHindpaw: {
  34346. height: math.unit(5.55, "feet"),
  34347. name: "Goia Hindpaw",
  34348. image: {
  34349. source: "./media/characters/ryth/goia-hindpaw.svg"
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(4, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(7, "feet"),
  34366. weight: math.unit(180, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/necrolance/front.svg",
  34370. extra: 1062/947,
  34371. bottom: 41/1103
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(7, "feet"),
  34376. weight: math.unit(180, "lb"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/necrolance/back.svg",
  34380. extra: 1045/984,
  34381. bottom: 14/1059
  34382. }
  34383. },
  34384. wing: {
  34385. height: math.unit(2.67, "feet"),
  34386. name: "Wing",
  34387. image: {
  34388. source: "./media/characters/necrolance/wing.svg"
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(7, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34402. {
  34403. front: {
  34404. height: math.unit(76, "meters"),
  34405. weight: math.unit(30000, "tons"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/tyler/front.svg",
  34409. extra: 1640/1640,
  34410. bottom: 114/1754
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Macro",
  34417. height: math.unit(76, "meters"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(4 + 11/12, "feet"),
  34427. weight: math.unit(132, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/icey/front.svg",
  34431. extra: 2750/2550,
  34432. bottom: 33/2783
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(4 + 11/12, "feet"),
  34437. weight: math.unit(132, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/icey/back.svg",
  34441. extra: 2624/2481,
  34442. bottom: 35/2659
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(4 + 11/12, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(100, "feet"),
  34459. weight: math.unit(0, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/smile/front.svg",
  34463. extra: 2983/2912,
  34464. bottom: 162/3145
  34465. }
  34466. },
  34467. back: {
  34468. height: math.unit(100, "feet"),
  34469. weight: math.unit(0, "lb"),
  34470. name: "Back",
  34471. image: {
  34472. source: "./media/characters/smile/back.svg",
  34473. extra: 3143/3031,
  34474. bottom: 91/3234
  34475. }
  34476. },
  34477. head: {
  34478. height: math.unit(26.3, "feet"),
  34479. weight: math.unit(0, "lb"),
  34480. name: "Head",
  34481. image: {
  34482. source: "./media/characters/smile/head.svg"
  34483. }
  34484. },
  34485. collar: {
  34486. height: math.unit(5.3, "feet"),
  34487. weight: math.unit(0, "lb"),
  34488. name: "Collar",
  34489. image: {
  34490. source: "./media/characters/smile/collar.svg"
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Macro",
  34497. height: math.unit(100, "feet"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34504. {
  34505. dragon: {
  34506. height: math.unit(26, "feet"),
  34507. weight: math.unit(36, "tons"),
  34508. name: "Dragon",
  34509. image: {
  34510. source: "./media/characters/arimphae/dragon.svg",
  34511. extra: 1574/983,
  34512. bottom: 357/1931
  34513. }
  34514. },
  34515. drake: {
  34516. height: math.unit(9, "feet"),
  34517. weight: math.unit(1.5, "tons"),
  34518. name: "Drake",
  34519. image: {
  34520. source: "./media/characters/arimphae/drake.svg",
  34521. extra: 1120/925,
  34522. bottom: 435/1555
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Small",
  34529. height: math.unit(26*5/9, "feet")
  34530. },
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(26, "feet"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34540. {
  34541. front: {
  34542. height: math.unit(8 + 9/12, "feet"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/xander/front.svg",
  34546. extra: 1237/974,
  34547. bottom: 94/1331
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(8 + 9/12, "feet"),
  34555. default: true
  34556. },
  34557. {
  34558. name: "Gaze Grabber",
  34559. height: math.unit(13 + 8/12, "feet")
  34560. },
  34561. {
  34562. name: "Jaw Dropper",
  34563. height: math.unit(27, "feet")
  34564. },
  34565. {
  34566. name: "Show Stopper",
  34567. height: math.unit(136, "feet")
  34568. },
  34569. {
  34570. name: "Superstar",
  34571. height: math.unit(1.9e6, "miles")
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34577. {
  34578. side: {
  34579. height: math.unit(2100, "feet"),
  34580. name: "Side",
  34581. image: {
  34582. source: "./media/characters/osiris/side.svg",
  34583. extra: 1105/939,
  34584. bottom: 167/1272
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(2100, "feet"),
  34592. default: true
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(6 + 8/12, "feet"),
  34601. weight: math.unit(225, "lb"),
  34602. name: "Front",
  34603. image: {
  34604. source: "./media/characters/rhys-londe/front.svg",
  34605. extra: 2258/2141,
  34606. bottom: 188/2446
  34607. }
  34608. },
  34609. back: {
  34610. height: math.unit(6 + 8/12, "feet"),
  34611. weight: math.unit(225, "lb"),
  34612. name: "Back",
  34613. image: {
  34614. source: "./media/characters/rhys-londe/back.svg",
  34615. extra: 2237/2137,
  34616. bottom: 63/2300
  34617. }
  34618. },
  34619. frontNsfw: {
  34620. height: math.unit(6 + 8/12, "feet"),
  34621. weight: math.unit(225, "lb"),
  34622. name: "Front (NSFW)",
  34623. image: {
  34624. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34625. extra: 2258/2141,
  34626. bottom: 188/2446
  34627. }
  34628. },
  34629. backNsfw: {
  34630. height: math.unit(6 + 8/12, "feet"),
  34631. weight: math.unit(225, "lb"),
  34632. name: "Back (NSFW)",
  34633. image: {
  34634. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34635. extra: 2237/2137,
  34636. bottom: 63/2300
  34637. }
  34638. },
  34639. dick: {
  34640. height: math.unit(30, "inches"),
  34641. name: "Dick",
  34642. image: {
  34643. source: "./media/characters/rhys-londe/dick.svg"
  34644. }
  34645. },
  34646. maw: {
  34647. height: math.unit(1.6, "feet"),
  34648. name: "Maw",
  34649. image: {
  34650. source: "./media/characters/rhys-londe/maw.svg"
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(6 + 8/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(3 + 10/12, "feet"),
  34667. weight: math.unit(90, "lb"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/taivas-ensim/front.svg",
  34671. extra: 1327/1216,
  34672. bottom: 96/1423
  34673. }
  34674. },
  34675. back: {
  34676. height: math.unit(3 + 10/12, "feet"),
  34677. weight: math.unit(90, "lb"),
  34678. name: "Back",
  34679. image: {
  34680. source: "./media/characters/taivas-ensim/back.svg",
  34681. extra: 1355/1247,
  34682. bottom: 11/1366
  34683. }
  34684. },
  34685. frontNsfw: {
  34686. height: math.unit(3 + 10/12, "feet"),
  34687. weight: math.unit(90, "lb"),
  34688. name: "Front (NSFW)",
  34689. image: {
  34690. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34691. extra: 1327/1216,
  34692. bottom: 96/1423
  34693. }
  34694. },
  34695. backNsfw: {
  34696. height: math.unit(3 + 10/12, "feet"),
  34697. weight: math.unit(90, "lb"),
  34698. name: "Back (NSFW)",
  34699. image: {
  34700. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34701. extra: 1355/1247,
  34702. bottom: 11/1366
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(3 + 10/12, "feet"),
  34710. default: true
  34711. },
  34712. ]
  34713. ))
  34714. characterMakers.push(() => makeCharacter(
  34715. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34716. {
  34717. front: {
  34718. height: math.unit(9 + 6/12, "feet"),
  34719. weight: math.unit(940, "lb"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/byliss/front.svg",
  34723. extra: 1327/1290,
  34724. bottom: 82/1409
  34725. }
  34726. },
  34727. back: {
  34728. height: math.unit(9 + 6/12, "feet"),
  34729. weight: math.unit(940, "lb"),
  34730. name: "Back",
  34731. image: {
  34732. source: "./media/characters/byliss/back.svg",
  34733. extra: 1376/1349,
  34734. bottom: 9/1385
  34735. }
  34736. },
  34737. frontNsfw: {
  34738. height: math.unit(9 + 6/12, "feet"),
  34739. weight: math.unit(940, "lb"),
  34740. name: "Front (NSFW)",
  34741. image: {
  34742. source: "./media/characters/byliss/front-nsfw.svg",
  34743. extra: 1327/1290,
  34744. bottom: 82/1409
  34745. }
  34746. },
  34747. backNsfw: {
  34748. height: math.unit(9 + 6/12, "feet"),
  34749. weight: math.unit(940, "lb"),
  34750. name: "Back (NSFW)",
  34751. image: {
  34752. source: "./media/characters/byliss/back-nsfw.svg",
  34753. extra: 1376/1349,
  34754. bottom: 9/1385
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(9 + 6/12, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(5 + 2/12, "feet"),
  34771. weight: math.unit(200, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/noraly/front.svg",
  34775. extra: 4985/4773,
  34776. bottom: 150/5135
  34777. }
  34778. },
  34779. full: {
  34780. height: math.unit(5 + 2/12, "feet"),
  34781. weight: math.unit(164, "lb"),
  34782. name: "Full",
  34783. image: {
  34784. source: "./media/characters/noraly/full.svg",
  34785. extra: 1114/1059,
  34786. bottom: 35/1149
  34787. }
  34788. },
  34789. fuller: {
  34790. height: math.unit(5 + 2/12, "feet"),
  34791. weight: math.unit(230, "lb"),
  34792. name: "Fuller",
  34793. image: {
  34794. source: "./media/characters/noraly/fuller.svg",
  34795. extra: 1114/1059,
  34796. bottom: 35/1149
  34797. }
  34798. },
  34799. fullest: {
  34800. height: math.unit(5 + 2/12, "feet"),
  34801. weight: math.unit(300, "lb"),
  34802. name: "Fullest",
  34803. image: {
  34804. source: "./media/characters/noraly/fullest.svg",
  34805. extra: 1114/1059,
  34806. bottom: 35/1149
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(5 + 2/12, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34820. {
  34821. front: {
  34822. height: math.unit(5 + 2/12, "feet"),
  34823. weight: math.unit(210, "lb"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/pera/front.svg",
  34827. extra: 1560/1531,
  34828. bottom: 165/1725
  34829. }
  34830. },
  34831. back: {
  34832. height: math.unit(5 + 2/12, "feet"),
  34833. weight: math.unit(210, "lb"),
  34834. name: "Back",
  34835. image: {
  34836. source: "./media/characters/pera/back.svg",
  34837. extra: 1523/1493,
  34838. bottom: 152/1675
  34839. }
  34840. },
  34841. dick: {
  34842. height: math.unit(2.4, "feet"),
  34843. name: "Dick",
  34844. image: {
  34845. source: "./media/characters/pera/dick.svg"
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(5 + 2/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(12, "feet"),
  34862. weight: math.unit(3200, "lb"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/julian/front.svg",
  34866. extra: 2962/2701,
  34867. bottom: 184/3146
  34868. }
  34869. },
  34870. maw: {
  34871. height: math.unit(5.35, "feet"),
  34872. name: "Maw",
  34873. image: {
  34874. source: "./media/characters/julian/maw.svg"
  34875. }
  34876. },
  34877. paw: {
  34878. height: math.unit(3.07, "feet"),
  34879. name: "Paw",
  34880. image: {
  34881. source: "./media/characters/julian/paw.svg"
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Default",
  34888. height: math.unit(12, "feet"),
  34889. default: true
  34890. },
  34891. {
  34892. name: "Big",
  34893. height: math.unit(50, "feet")
  34894. },
  34895. {
  34896. name: "Really Big",
  34897. height: math.unit(1, "mile")
  34898. },
  34899. {
  34900. name: "Extremely Big",
  34901. height: math.unit(100, "miles")
  34902. },
  34903. {
  34904. name: "Planet Hugger",
  34905. height: math.unit(200, "megameters")
  34906. },
  34907. {
  34908. name: "Unreasonably Big",
  34909. height: math.unit(1e300, "meters")
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34915. {
  34916. solgooleo: {
  34917. height: math.unit(4, "meters"),
  34918. weight: math.unit(6000*1.5, "kg"),
  34919. volume: math.unit(6000, "liters"),
  34920. name: "Solgooleo",
  34921. image: {
  34922. source: "./media/characters/pi/solgooleo.svg",
  34923. extra: 388/331,
  34924. bottom: 29/417
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(4, "meters"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(8, "feet"),
  34941. weight: math.unit(4, "tons"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/shaun/front.svg",
  34945. extra: 503/495,
  34946. bottom: 20/523
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(8, "feet"),
  34951. weight: math.unit(4, "tons"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/shaun/back.svg",
  34955. extra: 487/480,
  34956. bottom: 20/507
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Lorg",
  34963. height: math.unit(8, "feet"),
  34964. default: true
  34965. },
  34966. ]
  34967. ))
  34968. characterMakers.push(() => makeCharacter(
  34969. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34970. {
  34971. frontAnthro: {
  34972. height: math.unit(7, "feet"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/sini/front-anthro.svg",
  34976. extra: 726/678,
  34977. bottom: 35/761
  34978. },
  34979. form: "anthro",
  34980. default: true
  34981. },
  34982. backAnthro: {
  34983. height: math.unit(7, "feet"),
  34984. name: "Back",
  34985. image: {
  34986. source: "./media/characters/sini/back-anthro.svg",
  34987. extra: 743/701,
  34988. bottom: 12/755
  34989. },
  34990. form: "anthro",
  34991. },
  34992. frontAnthroNsfw: {
  34993. height: math.unit(7, "feet"),
  34994. name: "Front (NSFW)",
  34995. image: {
  34996. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34997. extra: 726/678,
  34998. bottom: 35/761
  34999. },
  35000. form: "anthro"
  35001. },
  35002. backAnthroNsfw: {
  35003. height: math.unit(7, "feet"),
  35004. name: "Back (NSFW)",
  35005. image: {
  35006. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35007. extra: 743/701,
  35008. bottom: 12/755
  35009. },
  35010. form: "anthro",
  35011. },
  35012. mawAnthro: {
  35013. height: math.unit(2.14, "feet"),
  35014. name: "Maw",
  35015. image: {
  35016. source: "./media/characters/sini/maw-anthro.svg"
  35017. },
  35018. form: "anthro"
  35019. },
  35020. dick: {
  35021. height: math.unit(1.45, "feet"),
  35022. name: "Dick",
  35023. image: {
  35024. source: "./media/characters/sini/dick-anthro.svg"
  35025. },
  35026. form: "anthro"
  35027. },
  35028. feral: {
  35029. height: math.unit(16, "feet"),
  35030. name: "Feral",
  35031. image: {
  35032. source: "./media/characters/sini/feral.svg",
  35033. extra: 814/605,
  35034. bottom: 11/825
  35035. },
  35036. form: "feral",
  35037. default: true
  35038. },
  35039. feralNsfw: {
  35040. height: math.unit(16, "feet"),
  35041. name: "Feral (NSFW)",
  35042. image: {
  35043. source: "./media/characters/sini/feral-nsfw.svg",
  35044. extra: 814/605,
  35045. bottom: 11/825
  35046. },
  35047. form: "feral"
  35048. },
  35049. mawFeral: {
  35050. height: math.unit(5.66, "feet"),
  35051. name: "Maw",
  35052. image: {
  35053. source: "./media/characters/sini/maw-feral.svg"
  35054. },
  35055. form: "feral",
  35056. },
  35057. pawFeral: {
  35058. height: math.unit(5.17, "feet"),
  35059. name: "Paw",
  35060. image: {
  35061. source: "./media/characters/sini/paw-feral.svg"
  35062. },
  35063. form: "feral",
  35064. },
  35065. rumpFeral: {
  35066. height: math.unit(13.11, "feet"),
  35067. name: "Rump",
  35068. image: {
  35069. source: "./media/characters/sini/rump-feral.svg"
  35070. },
  35071. form: "feral",
  35072. },
  35073. dickFeral: {
  35074. height: math.unit(1, "feet"),
  35075. name: "Dick",
  35076. image: {
  35077. source: "./media/characters/sini/dick-feral.svg"
  35078. },
  35079. form: "feral",
  35080. },
  35081. eyeFeral: {
  35082. height: math.unit(1.23, "feet"),
  35083. name: "Eye",
  35084. image: {
  35085. source: "./media/characters/sini/eye-feral.svg"
  35086. },
  35087. form: "feral",
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(7, "feet"),
  35094. default: true,
  35095. form: "anthro"
  35096. },
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(16, "feet"),
  35100. default: true,
  35101. form: "feral"
  35102. },
  35103. ],
  35104. {
  35105. "anthro": {
  35106. name: "Anthro",
  35107. default: true
  35108. },
  35109. "feral": {
  35110. name: "Feral",
  35111. }
  35112. }
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35116. {
  35117. side: {
  35118. height: math.unit(47.2, "meters"),
  35119. weight: math.unit(10000, "tons"),
  35120. name: "Side",
  35121. image: {
  35122. source: "./media/characters/raylldo/side.svg",
  35123. extra: 2363/642,
  35124. bottom: 221/2584
  35125. }
  35126. },
  35127. top: {
  35128. height: math.unit(240, "meters"),
  35129. weight: math.unit(10000, "tons"),
  35130. name: "Top",
  35131. image: {
  35132. source: "./media/characters/raylldo/top.svg"
  35133. }
  35134. },
  35135. bottom: {
  35136. height: math.unit(240, "meters"),
  35137. weight: math.unit(10000, "tons"),
  35138. name: "Bottom",
  35139. image: {
  35140. source: "./media/characters/raylldo/bottom.svg"
  35141. }
  35142. },
  35143. head: {
  35144. height: math.unit(38.6, "meters"),
  35145. name: "Head",
  35146. image: {
  35147. source: "./media/characters/raylldo/head.svg",
  35148. extra: 1335/1112,
  35149. bottom: 0/1335
  35150. }
  35151. },
  35152. maw: {
  35153. height: math.unit(16.37, "meters"),
  35154. name: "Maw",
  35155. image: {
  35156. source: "./media/characters/raylldo/maw.svg",
  35157. extra: 883/660,
  35158. bottom: 0/883
  35159. },
  35160. extraAttributes: {
  35161. preyCapacity: {
  35162. name: "Capacity",
  35163. power: 3,
  35164. type: "volume",
  35165. base: math.unit(1000, "people")
  35166. },
  35167. tongueSize: {
  35168. name: "Tongue Size",
  35169. power: 2,
  35170. type: "area",
  35171. base: math.unit(21, "m^2")
  35172. }
  35173. }
  35174. },
  35175. forepaw: {
  35176. height: math.unit(18, "meters"),
  35177. name: "Forepaw",
  35178. image: {
  35179. source: "./media/characters/raylldo/forepaw.svg"
  35180. }
  35181. },
  35182. hindpaw: {
  35183. height: math.unit(23, "meters"),
  35184. name: "Hindpaw",
  35185. image: {
  35186. source: "./media/characters/raylldo/hindpaw.svg"
  35187. }
  35188. },
  35189. genitals: {
  35190. height: math.unit(42, "meters"),
  35191. name: "Genitals",
  35192. image: {
  35193. source: "./media/characters/raylldo/genitals.svg"
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(47.2, "meters"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35207. {
  35208. anthroFront: {
  35209. height: math.unit(9, "feet"),
  35210. weight: math.unit(600, "lb"),
  35211. name: "Anthro (Front)",
  35212. image: {
  35213. source: "./media/characters/glint/anthro-front.svg",
  35214. extra: 1097/1018,
  35215. bottom: 28/1125
  35216. }
  35217. },
  35218. anthroBack: {
  35219. height: math.unit(9, "feet"),
  35220. weight: math.unit(600, "lb"),
  35221. name: "Anthro (Back)",
  35222. image: {
  35223. source: "./media/characters/glint/anthro-back.svg",
  35224. extra: 1154/997,
  35225. bottom: 36/1190
  35226. }
  35227. },
  35228. feral: {
  35229. height: math.unit(11, "feet"),
  35230. weight: math.unit(50000, "lb"),
  35231. name: "Feral",
  35232. image: {
  35233. source: "./media/characters/glint/feral.svg",
  35234. extra: 3035/1585,
  35235. bottom: 1169/4204
  35236. }
  35237. },
  35238. dickAnthro: {
  35239. height: math.unit(0.7, "meters"),
  35240. name: "Dick (Anthro)",
  35241. image: {
  35242. source: "./media/characters/glint/dick-anthro.svg"
  35243. }
  35244. },
  35245. dickFeral: {
  35246. height: math.unit(2.65, "meters"),
  35247. name: "Dick (Feral)",
  35248. image: {
  35249. source: "./media/characters/glint/dick-feral.svg"
  35250. }
  35251. },
  35252. slitHidden: {
  35253. height: math.unit(5.85, "meters"),
  35254. name: "Slit (Hidden)",
  35255. image: {
  35256. source: "./media/characters/glint/slit-hidden.svg"
  35257. }
  35258. },
  35259. slitErect: {
  35260. height: math.unit(5.85, "meters"),
  35261. name: "Slit (Erect)",
  35262. image: {
  35263. source: "./media/characters/glint/slit-erect.svg"
  35264. }
  35265. },
  35266. mawAnthro: {
  35267. height: math.unit(0.63, "meters"),
  35268. name: "Maw (Anthro)",
  35269. image: {
  35270. source: "./media/characters/glint/maw.svg"
  35271. }
  35272. },
  35273. mawFeral: {
  35274. height: math.unit(2.89, "meters"),
  35275. name: "Maw (Feral)",
  35276. image: {
  35277. source: "./media/characters/glint/maw.svg"
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(9, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35291. {
  35292. side: {
  35293. height: math.unit(15, "feet"),
  35294. weight: math.unit(5000, "kg"),
  35295. name: "Side",
  35296. image: {
  35297. source: "./media/characters/kairne/side.svg",
  35298. extra: 979/811,
  35299. bottom: 13/992
  35300. }
  35301. },
  35302. front: {
  35303. height: math.unit(15, "feet"),
  35304. weight: math.unit(5000, "kg"),
  35305. name: "Front",
  35306. image: {
  35307. source: "./media/characters/kairne/front.svg",
  35308. extra: 908/814,
  35309. bottom: 26/934
  35310. }
  35311. },
  35312. sideNsfw: {
  35313. height: math.unit(15, "feet"),
  35314. weight: math.unit(5000, "kg"),
  35315. name: "Side (NSFW)",
  35316. image: {
  35317. source: "./media/characters/kairne/side-nsfw.svg",
  35318. extra: 979/811,
  35319. bottom: 13/992
  35320. }
  35321. },
  35322. frontNsfw: {
  35323. height: math.unit(15, "feet"),
  35324. weight: math.unit(5000, "kg"),
  35325. name: "Front (NSFW)",
  35326. image: {
  35327. source: "./media/characters/kairne/front-nsfw.svg",
  35328. extra: 908/814,
  35329. bottom: 26/934
  35330. }
  35331. },
  35332. dickCaged: {
  35333. height: math.unit(0.65, "meters"),
  35334. name: "Dick-caged",
  35335. image: {
  35336. source: "./media/characters/kairne/dick-caged.svg"
  35337. }
  35338. },
  35339. dick: {
  35340. height: math.unit(0.79, "meters"),
  35341. name: "Dick",
  35342. image: {
  35343. source: "./media/characters/kairne/dick.svg"
  35344. }
  35345. },
  35346. genitals: {
  35347. height: math.unit(1.29, "meters"),
  35348. name: "Genitals",
  35349. image: {
  35350. source: "./media/characters/kairne/genitals.svg"
  35351. }
  35352. },
  35353. maw: {
  35354. height: math.unit(1.73, "meters"),
  35355. name: "Maw",
  35356. image: {
  35357. source: "./media/characters/kairne/maw.svg"
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(15, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(5 + 8/12, "feet"),
  35374. weight: math.unit(139, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/biscuit-jackal/front.svg",
  35378. extra: 2106/1961,
  35379. bottom: 58/2164
  35380. }
  35381. },
  35382. back: {
  35383. height: math.unit(5 + 8/12, "feet"),
  35384. weight: math.unit(139, "lb"),
  35385. name: "Back",
  35386. image: {
  35387. source: "./media/characters/biscuit-jackal/back.svg",
  35388. extra: 2132/1976,
  35389. bottom: 57/2189
  35390. }
  35391. },
  35392. werejackal: {
  35393. height: math.unit(6 + 3/12, "feet"),
  35394. weight: math.unit(188, "lb"),
  35395. name: "Werejackal",
  35396. image: {
  35397. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35398. extra: 2373/2178,
  35399. bottom: 53/2426
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 8/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(140, "cm"),
  35416. weight: math.unit(45, "kg"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/tayra-white/front.svg",
  35420. extra: 2229/2192,
  35421. bottom: 75/2304
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(140, "cm"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(4 + 5/12, "feet"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/scoop/front.svg",
  35441. extra: 1257/1136,
  35442. bottom: 69/1326
  35443. }
  35444. },
  35445. back: {
  35446. height: math.unit(4 + 5/12, "feet"),
  35447. name: "Back",
  35448. image: {
  35449. source: "./media/characters/scoop/back.svg",
  35450. extra: 1321/1152,
  35451. bottom: 32/1353
  35452. }
  35453. },
  35454. maw: {
  35455. height: math.unit(0.68, "feet"),
  35456. name: "Maw",
  35457. image: {
  35458. source: "./media/characters/scoop/maw.svg"
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Really Small",
  35465. height: math.unit(1, "mm")
  35466. },
  35467. {
  35468. name: "Micro",
  35469. height: math.unit(1, "inch")
  35470. },
  35471. {
  35472. name: "Normal",
  35473. height: math.unit(4 + 5/12, "feet"),
  35474. default: true
  35475. },
  35476. {
  35477. name: "Macro",
  35478. height: math.unit(200, "feet")
  35479. },
  35480. {
  35481. name: "Megamacro",
  35482. height: math.unit(3240, "feet")
  35483. },
  35484. {
  35485. name: "Teramacro",
  35486. height: math.unit(2500, "miles")
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(15 + 7/12, "feet"),
  35495. weight: math.unit(1150, "tons"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/saphinara/front.svg",
  35499. extra: 1837/1643,
  35500. bottom: 84/1921
  35501. },
  35502. form: "normal",
  35503. default: true
  35504. },
  35505. side: {
  35506. height: math.unit(15 + 7/12, "feet"),
  35507. weight: math.unit(1150, "tons"),
  35508. name: "Side",
  35509. image: {
  35510. source: "./media/characters/saphinara/side.svg",
  35511. extra: 605/547,
  35512. bottom: 6/611
  35513. },
  35514. form: "normal"
  35515. },
  35516. back: {
  35517. height: math.unit(15 + 7/12, "feet"),
  35518. weight: math.unit(1150, "tons"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/saphinara/back.svg",
  35522. extra: 591/531,
  35523. bottom: 13/604
  35524. },
  35525. form: "normal"
  35526. },
  35527. frontTail: {
  35528. height: math.unit(15 + 7/12, "feet"),
  35529. weight: math.unit(1150, "tons"),
  35530. name: "Front (Full Tail)",
  35531. image: {
  35532. source: "./media/characters/saphinara/front-tail.svg",
  35533. extra: 2256/1630,
  35534. bottom: 261/2517
  35535. },
  35536. form: "normal"
  35537. },
  35538. insides: {
  35539. height: math.unit(11.92, "feet"),
  35540. name: "Insides",
  35541. image: {
  35542. source: "./media/characters/saphinara/insides.svg"
  35543. },
  35544. form: "normal"
  35545. },
  35546. head: {
  35547. height: math.unit(4.17, "feet"),
  35548. name: "Head",
  35549. image: {
  35550. source: "./media/characters/saphinara/head.svg"
  35551. },
  35552. form: "normal"
  35553. },
  35554. tongue: {
  35555. height: math.unit(4.60, "feet"),
  35556. name: "Tongue",
  35557. image: {
  35558. source: "./media/characters/saphinara/tongue.svg"
  35559. },
  35560. form: "normal"
  35561. },
  35562. headEnraged: {
  35563. height: math.unit(5.55, "feet"),
  35564. name: "Head (Enraged)",
  35565. image: {
  35566. source: "./media/characters/saphinara/head-enraged.svg"
  35567. },
  35568. form: "normal"
  35569. },
  35570. wings: {
  35571. height: math.unit(11.95, "feet"),
  35572. name: "Wings",
  35573. image: {
  35574. source: "./media/characters/saphinara/wings.svg"
  35575. },
  35576. form: "normal"
  35577. },
  35578. feathers: {
  35579. height: math.unit(8.92, "feet"),
  35580. name: "Feathers",
  35581. image: {
  35582. source: "./media/characters/saphinara/feathers.svg"
  35583. },
  35584. form: "normal"
  35585. },
  35586. shackles: {
  35587. height: math.unit(2, "feet"),
  35588. name: "Shackles",
  35589. image: {
  35590. source: "./media/characters/saphinara/shackles.svg"
  35591. },
  35592. form: "normal"
  35593. },
  35594. eyes: {
  35595. height: math.unit(1.331, "feet"),
  35596. name: "Eyes",
  35597. image: {
  35598. source: "./media/characters/saphinara/eyes.svg"
  35599. },
  35600. form: "normal"
  35601. },
  35602. eyesEnraged: {
  35603. height: math.unit(1.331, "feet"),
  35604. name: "Eyes (Enraged)",
  35605. image: {
  35606. source: "./media/characters/saphinara/eyes-enraged.svg"
  35607. },
  35608. form: "normal"
  35609. },
  35610. trueFormSide: {
  35611. height: math.unit(200, "feet"),
  35612. weight: math.unit(1e7, "tons"),
  35613. name: "Side",
  35614. image: {
  35615. source: "./media/characters/saphinara/true-form-side.svg",
  35616. extra: 1399/770,
  35617. bottom: 97/1496
  35618. },
  35619. form: "true-form",
  35620. default: true
  35621. },
  35622. trueFormMaw: {
  35623. height: math.unit(71.5, "feet"),
  35624. name: "Maw",
  35625. image: {
  35626. source: "./media/characters/saphinara/true-form-maw.svg",
  35627. extra: 2302/1453,
  35628. bottom: 0/2302
  35629. },
  35630. form: "true-form"
  35631. },
  35632. meowberusSide: {
  35633. height: math.unit(75, "feet"),
  35634. weight: math.unit(180000, "kg"),
  35635. preyCapacity: math.unit(50000, "people"),
  35636. name: "Side",
  35637. image: {
  35638. source: "./media/characters/saphinara/meowberus-side.svg",
  35639. extra: 1400/711,
  35640. bottom: 126/1526
  35641. },
  35642. form: "meowberus",
  35643. extraAttributes: {
  35644. "pawArea": {
  35645. name: "Paw Size",
  35646. power: 2,
  35647. type: "area",
  35648. base: math.unit(35, "m^2")
  35649. }
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(15 + 7/12, "feet"),
  35657. default: true,
  35658. form: "normal"
  35659. },
  35660. {
  35661. name: "Angry",
  35662. height: math.unit(30 + 6/12, "feet"),
  35663. form: "normal"
  35664. },
  35665. {
  35666. name: "Enraged",
  35667. height: math.unit(102 + 1/12, "feet"),
  35668. form: "normal"
  35669. },
  35670. {
  35671. name: "True",
  35672. height: math.unit(200, "feet"),
  35673. default: true,
  35674. form: "true-form"
  35675. },
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(75, "feet"),
  35679. default: true,
  35680. form: "meowberus"
  35681. },
  35682. ],
  35683. {
  35684. "normal": {
  35685. name: "Normal",
  35686. default: true
  35687. },
  35688. "true-form": {
  35689. name: "True Form"
  35690. },
  35691. "meowberus": {
  35692. name: "Meowberus",
  35693. },
  35694. }
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35698. {
  35699. front: {
  35700. height: math.unit(6 + 8/12, "feet"),
  35701. weight: math.unit(300, "lb"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/jrain/front.svg",
  35705. extra: 3039/2865,
  35706. bottom: 399/3438
  35707. }
  35708. },
  35709. back: {
  35710. height: math.unit(6 + 8/12, "feet"),
  35711. weight: math.unit(300, "lb"),
  35712. name: "Back",
  35713. image: {
  35714. source: "./media/characters/jrain/back.svg",
  35715. extra: 3089/2938,
  35716. bottom: 172/3261
  35717. }
  35718. },
  35719. head: {
  35720. height: math.unit(2.14, "feet"),
  35721. name: "Head",
  35722. image: {
  35723. source: "./media/characters/jrain/head.svg"
  35724. }
  35725. },
  35726. maw: {
  35727. height: math.unit(1.77, "feet"),
  35728. name: "Maw",
  35729. image: {
  35730. source: "./media/characters/jrain/maw.svg"
  35731. }
  35732. },
  35733. leftHand: {
  35734. height: math.unit(1.1, "feet"),
  35735. name: "Left Hand",
  35736. image: {
  35737. source: "./media/characters/jrain/left-hand.svg"
  35738. }
  35739. },
  35740. rightHand: {
  35741. height: math.unit(1.1, "feet"),
  35742. name: "Right Hand",
  35743. image: {
  35744. source: "./media/characters/jrain/right-hand.svg"
  35745. }
  35746. },
  35747. eye: {
  35748. height: math.unit(0.35, "feet"),
  35749. name: "Eye",
  35750. image: {
  35751. source: "./media/characters/jrain/eye.svg"
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(6 + 8/12, "feet"),
  35759. default: true
  35760. },
  35761. {
  35762. name: "Casually Large",
  35763. height: math.unit(25, "feet")
  35764. },
  35765. {
  35766. name: "Giant",
  35767. height: math.unit(100, "feet")
  35768. },
  35769. {
  35770. name: "Kaiju",
  35771. height: math.unit(300, "feet")
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35777. {
  35778. dragon: {
  35779. height: math.unit(5, "meters"),
  35780. name: "Dragon",
  35781. image: {
  35782. source: "./media/characters/sabrina/dragon.svg",
  35783. extra: 3670 / 2365,
  35784. bottom: 333 / 4003
  35785. }
  35786. },
  35787. gryphon: {
  35788. height: math.unit(3, "meters"),
  35789. name: "Gryphon",
  35790. image: {
  35791. source: "./media/characters/sabrina/gryphon.svg",
  35792. extra: 1576 / 945,
  35793. bottom: 71 / 1647
  35794. }
  35795. },
  35796. snake: {
  35797. height: math.unit(12, "meters"),
  35798. name: "Snake",
  35799. image: {
  35800. source: "./media/characters/sabrina/snake.svg",
  35801. extra: 1758 / 1320,
  35802. bottom: 186 / 1944
  35803. }
  35804. },
  35805. collar: {
  35806. height: math.unit(1.86, "meters"),
  35807. name: "Collar",
  35808. image: {
  35809. source: "./media/characters/sabrina/collar.svg"
  35810. }
  35811. },
  35812. eye: {
  35813. height: math.unit(0.53, "meters"),
  35814. name: "Eye",
  35815. image: {
  35816. source: "./media/characters/sabrina/eye.svg"
  35817. }
  35818. },
  35819. foot: {
  35820. height: math.unit(1.86, "meters"),
  35821. name: "Foot",
  35822. image: {
  35823. source: "./media/characters/sabrina/foot.svg"
  35824. }
  35825. },
  35826. hand: {
  35827. height: math.unit(1.32, "meters"),
  35828. name: "Hand",
  35829. image: {
  35830. source: "./media/characters/sabrina/hand.svg"
  35831. }
  35832. },
  35833. head: {
  35834. height: math.unit(2.44, "meters"),
  35835. name: "Head",
  35836. image: {
  35837. source: "./media/characters/sabrina/head.svg"
  35838. }
  35839. },
  35840. headAngry: {
  35841. height: math.unit(2.44, "meters"),
  35842. name: "Head (Angry))",
  35843. image: {
  35844. source: "./media/characters/sabrina/head-angry.svg"
  35845. }
  35846. },
  35847. maw: {
  35848. height: math.unit(1.65, "meters"),
  35849. name: "Maw",
  35850. image: {
  35851. source: "./media/characters/sabrina/maw.svg"
  35852. }
  35853. },
  35854. spikes: {
  35855. height: math.unit(1.69, "meters"),
  35856. name: "Spikes",
  35857. image: {
  35858. source: "./media/characters/sabrina/spikes.svg"
  35859. }
  35860. },
  35861. stomach: {
  35862. height: math.unit(1.15, "meters"),
  35863. name: "Stomach",
  35864. image: {
  35865. source: "./media/characters/sabrina/stomach.svg"
  35866. }
  35867. },
  35868. tongue: {
  35869. height: math.unit(1.27, "meters"),
  35870. name: "Tongue",
  35871. image: {
  35872. source: "./media/characters/sabrina/tongue.svg"
  35873. }
  35874. },
  35875. wingDorsal: {
  35876. height: math.unit(4.85, "meters"),
  35877. name: "Wing (Dorsal)",
  35878. image: {
  35879. source: "./media/characters/sabrina/wing-dorsal.svg"
  35880. }
  35881. },
  35882. wingVentral: {
  35883. height: math.unit(4.85, "meters"),
  35884. name: "Wing (Ventral)",
  35885. image: {
  35886. source: "./media/characters/sabrina/wing-ventral.svg"
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(5, "meters"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35900. {
  35901. frontMaid: {
  35902. height: math.unit(5 + 5/12, "feet"),
  35903. weight: math.unit(130, "lb"),
  35904. name: "Front (Maid)",
  35905. image: {
  35906. source: "./media/characters/midnight-tales/front-maid.svg",
  35907. extra: 489/454,
  35908. bottom: 61/550
  35909. }
  35910. },
  35911. frontFormal: {
  35912. height: math.unit(5 + 5/12, "feet"),
  35913. weight: math.unit(130, "lb"),
  35914. name: "Front (Formal)",
  35915. image: {
  35916. source: "./media/characters/midnight-tales/front-formal.svg",
  35917. extra: 489/454,
  35918. bottom: 61/550
  35919. }
  35920. },
  35921. back: {
  35922. height: math.unit(5 + 5/12, "feet"),
  35923. weight: math.unit(130, "lb"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/midnight-tales/back.svg",
  35927. extra: 498/456,
  35928. bottom: 33/531
  35929. }
  35930. },
  35931. frontBeast: {
  35932. height: math.unit(40, "feet"),
  35933. weight: math.unit(64000, "lb"),
  35934. name: "Front (Beast)",
  35935. image: {
  35936. source: "./media/characters/midnight-tales/front-beast.svg",
  35937. extra: 927/860,
  35938. bottom: 53/980
  35939. }
  35940. },
  35941. backBeast: {
  35942. height: math.unit(40, "feet"),
  35943. weight: math.unit(64000, "lb"),
  35944. name: "Back (Beast)",
  35945. image: {
  35946. source: "./media/characters/midnight-tales/back-beast.svg",
  35947. extra: 929/855,
  35948. bottom: 16/945
  35949. }
  35950. },
  35951. footBeast: {
  35952. height: math.unit(6.7, "feet"),
  35953. name: "Foot (Beast)",
  35954. image: {
  35955. source: "./media/characters/midnight-tales/foot-beast.svg"
  35956. }
  35957. },
  35958. headBeast: {
  35959. height: math.unit(8, "feet"),
  35960. name: "Head (Beast)",
  35961. image: {
  35962. source: "./media/characters/midnight-tales/head-beast.svg"
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(5 + 5 / 12, "feet"),
  35970. default: true
  35971. },
  35972. {
  35973. name: "Macro",
  35974. height: math.unit(25, "feet")
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(5 + 10/12, "feet"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/argon/front.svg",
  35986. extra: 2009/1935,
  35987. bottom: 118/2127
  35988. }
  35989. },
  35990. back: {
  35991. height: math.unit(5 + 10/12, "feet"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/argon/back.svg",
  35995. extra: 2047/1992,
  35996. bottom: 20/2067
  35997. }
  35998. },
  35999. frontDressed: {
  36000. height: math.unit(5 + 10/12, "feet"),
  36001. name: "Front (Dressed)",
  36002. image: {
  36003. source: "./media/characters/argon/front-dressed.svg",
  36004. extra: 2009/1935,
  36005. bottom: 118/2127
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(5 + 10/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(8 + 6/12, "feet"),
  36022. weight: math.unit(1150, "lb"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/kichi/front.svg",
  36026. extra: 1267/1164,
  36027. bottom: 61/1328
  36028. }
  36029. },
  36030. back: {
  36031. height: math.unit(8 + 6/12, "feet"),
  36032. weight: math.unit(1150, "lb"),
  36033. name: "Back",
  36034. image: {
  36035. source: "./media/characters/kichi/back.svg",
  36036. extra: 1273/1166,
  36037. bottom: 33/1306
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(8 + 6/12, "feet"),
  36045. default: true
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(6, "feet"),
  36054. weight: math.unit(210, "lb"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/manetel-greyscale/front.svg",
  36058. extra: 350/312,
  36059. bottom: 8/358
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Micro",
  36066. height: math.unit(2, "inches")
  36067. },
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(6, "feet"),
  36071. default: true
  36072. },
  36073. {
  36074. name: "Minimacro",
  36075. height: math.unit(17, "feet")
  36076. },
  36077. {
  36078. name: "Macro",
  36079. height: math.unit(117, "feet")
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36085. {
  36086. side: {
  36087. height: math.unit(5 + 1/12, "feet"),
  36088. weight: math.unit(418, "lb"),
  36089. name: "Side",
  36090. image: {
  36091. source: "./media/characters/softpurr/side.svg",
  36092. extra: 1993/1945,
  36093. bottom: 134/2127
  36094. }
  36095. },
  36096. front: {
  36097. height: math.unit(5 + 1/12, "feet"),
  36098. weight: math.unit(418, "lb"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/softpurr/front.svg",
  36102. extra: 1950/1856,
  36103. bottom: 174/2124
  36104. }
  36105. },
  36106. paw: {
  36107. height: math.unit(1, "feet"),
  36108. name: "Paw",
  36109. image: {
  36110. source: "./media/characters/softpurr/paw.svg"
  36111. }
  36112. },
  36113. },
  36114. [
  36115. {
  36116. name: "Normal",
  36117. height: math.unit(5 + 1/12, "feet"),
  36118. default: true
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(260, "meters"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/anahita/front.svg",
  36130. extra: 665/635,
  36131. bottom: 89/754
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Macro",
  36138. height: math.unit(260, "meters"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(4 + 10/12, "feet"),
  36148. weight: math.unit(160, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/chip-mouse/front.svg",
  36152. extra: 3528/3408,
  36153. bottom: 0/3528
  36154. }
  36155. },
  36156. frontNsfw: {
  36157. height: math.unit(4 + 10/12, "feet"),
  36158. weight: math.unit(160, "lb"),
  36159. name: "Front (NSFW)",
  36160. image: {
  36161. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36162. extra: 3528/3408,
  36163. bottom: 0/3528
  36164. }
  36165. },
  36166. },
  36167. [
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(4 + 10/12, "feet"),
  36171. default: true
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36177. {
  36178. side: {
  36179. height: math.unit(10, "feet"),
  36180. weight: math.unit(14000, "lb"),
  36181. name: "Side",
  36182. image: {
  36183. source: "./media/characters/kremm/side.svg",
  36184. extra: 1390/1053,
  36185. bottom: 90/1480
  36186. }
  36187. },
  36188. gut: {
  36189. height: math.unit(5.8, "feet"),
  36190. name: "Gut",
  36191. image: {
  36192. source: "./media/characters/kremm/gut.svg"
  36193. }
  36194. },
  36195. ass: {
  36196. height: math.unit(6.1, "feet"),
  36197. name: "Ass",
  36198. image: {
  36199. source: "./media/characters/kremm/ass.svg"
  36200. }
  36201. },
  36202. jaws: {
  36203. height: math.unit(2.2, "feet"),
  36204. name: "Jaws",
  36205. image: {
  36206. source: "./media/characters/kremm/jaws.svg"
  36207. }
  36208. },
  36209. dick: {
  36210. height: math.unit(4.26, "feet"),
  36211. name: "Dick",
  36212. image: {
  36213. source: "./media/characters/kremm/dick.svg"
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Normal",
  36220. height: math.unit(10, "feet"),
  36221. default: true
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(30, "stories"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/kai/front.svg",
  36233. extra: 1892/1718,
  36234. bottom: 162/2054
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Macro",
  36241. height: math.unit(30, "stories"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(6 + 4/12, "feet"),
  36251. weight: math.unit(145, "lb"),
  36252. name: "Front",
  36253. image: {
  36254. source: "./media/characters/sykes/front.svg",
  36255. extra: 1321 / 1187,
  36256. bottom: 66 / 1387
  36257. }
  36258. },
  36259. back: {
  36260. height: math.unit(6 + 4/12, "feet"),
  36261. weight: math.unit(145, "lb"),
  36262. name: "Back",
  36263. image: {
  36264. source: "./media/characters/sykes/back.svg",
  36265. extra: 1326/1181,
  36266. bottom: 31/1357
  36267. }
  36268. },
  36269. traditionalOutfit: {
  36270. height: math.unit(6 + 4/12, "feet"),
  36271. weight: math.unit(145, "lb"),
  36272. name: "Traditional Outfit",
  36273. image: {
  36274. source: "./media/characters/sykes/traditional-outfit.svg",
  36275. extra: 1321 / 1187,
  36276. bottom: 66 / 1387
  36277. }
  36278. },
  36279. adventureOutfit: {
  36280. height: math.unit(6 + 4/12, "feet"),
  36281. weight: math.unit(145, "lb"),
  36282. name: "Adventure Outfit",
  36283. image: {
  36284. source: "./media/characters/sykes/adventure-outfit.svg",
  36285. extra: 1321 / 1187,
  36286. bottom: 66 / 1387
  36287. }
  36288. },
  36289. handLeft: {
  36290. height: math.unit(0.9, "feet"),
  36291. name: "Hand (Left)",
  36292. image: {
  36293. source: "./media/characters/sykes/hand-left.svg"
  36294. }
  36295. },
  36296. handRight: {
  36297. height: math.unit(0.839, "feet"),
  36298. name: "Hand (Right)",
  36299. image: {
  36300. source: "./media/characters/sykes/hand-right.svg"
  36301. }
  36302. },
  36303. leftFoot: {
  36304. height: math.unit(1.2, "feet"),
  36305. name: "Foot (Left)",
  36306. image: {
  36307. source: "./media/characters/sykes/foot-left.svg"
  36308. }
  36309. },
  36310. rightFoot: {
  36311. height: math.unit(1.2, "feet"),
  36312. name: "Foot (Right)",
  36313. image: {
  36314. source: "./media/characters/sykes/foot-right.svg"
  36315. }
  36316. },
  36317. maw: {
  36318. height: math.unit(1.93, "feet"),
  36319. name: "Maw",
  36320. image: {
  36321. source: "./media/characters/sykes/maw.svg"
  36322. }
  36323. },
  36324. teeth: {
  36325. height: math.unit(0.51, "feet"),
  36326. name: "Teeth",
  36327. image: {
  36328. source: "./media/characters/sykes/teeth.svg"
  36329. }
  36330. },
  36331. tongue: {
  36332. height: math.unit(2.13, "feet"),
  36333. name: "Tongue",
  36334. image: {
  36335. source: "./media/characters/sykes/tongue.svg"
  36336. }
  36337. },
  36338. uvula: {
  36339. height: math.unit(0.16, "feet"),
  36340. name: "Uvula",
  36341. image: {
  36342. source: "./media/characters/sykes/uvula.svg"
  36343. }
  36344. },
  36345. collar: {
  36346. height: math.unit(0.287, "feet"),
  36347. name: "Collar",
  36348. image: {
  36349. source: "./media/characters/sykes/collar.svg"
  36350. }
  36351. },
  36352. tail: {
  36353. height: math.unit(3.8, "feet"),
  36354. name: "Tail",
  36355. image: {
  36356. source: "./media/characters/sykes/tail.svg"
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Shrunken",
  36363. height: math.unit(5, "inches")
  36364. },
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(6 + 4 / 12, "feet"),
  36368. default: true
  36369. },
  36370. {
  36371. name: "Big",
  36372. height: math.unit(15, "feet")
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(5 + 8/12, "feet"),
  36381. weight: math.unit(190, "lb"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/oven-otter/front.svg",
  36385. extra: 1809/1740,
  36386. bottom: 181/1990
  36387. }
  36388. },
  36389. back: {
  36390. height: math.unit(5 + 8/12, "feet"),
  36391. weight: math.unit(190, "lb"),
  36392. name: "Back",
  36393. image: {
  36394. source: "./media/characters/oven-otter/back.svg",
  36395. extra: 1709/1635,
  36396. bottom: 118/1827
  36397. }
  36398. },
  36399. hand: {
  36400. height: math.unit(1.07, "feet"),
  36401. name: "Hand",
  36402. image: {
  36403. source: "./media/characters/oven-otter/hand.svg"
  36404. }
  36405. },
  36406. beans: {
  36407. height: math.unit(1.74, "feet"),
  36408. name: "Beans",
  36409. image: {
  36410. source: "./media/characters/oven-otter/beans.svg"
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Micro",
  36417. height: math.unit(0.5, "inches")
  36418. },
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 8/12, "feet"),
  36422. default: true
  36423. },
  36424. {
  36425. name: "Macro",
  36426. height: math.unit(250, "feet")
  36427. },
  36428. {
  36429. name: "Really High",
  36430. height: math.unit(420, "feet")
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(5, "meters"),
  36439. weight: math.unit(292000000000000, "kg"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/devourer/front.svg",
  36443. extra: 1800/1733,
  36444. bottom: 211/2011
  36445. }
  36446. },
  36447. maw: {
  36448. height: math.unit(1.1, "meter"),
  36449. name: "Maw",
  36450. image: {
  36451. source: "./media/characters/devourer/maw.svg"
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Small",
  36458. height: math.unit(3, "meters")
  36459. },
  36460. {
  36461. name: "Large",
  36462. height: math.unit(5, "meters"),
  36463. default: true
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36469. {
  36470. front: {
  36471. height: math.unit(6, "feet"),
  36472. weight: math.unit(400, "lb"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/ellarby/front.svg",
  36476. extra: 1909/1763,
  36477. bottom: 80/1989
  36478. }
  36479. },
  36480. back: {
  36481. height: math.unit(6, "feet"),
  36482. weight: math.unit(400, "lb"),
  36483. name: "Back",
  36484. image: {
  36485. source: "./media/characters/ellarby/back.svg",
  36486. extra: 1914/1784,
  36487. bottom: 172/2086
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Mischief",
  36494. height: math.unit(18, "inches")
  36495. },
  36496. {
  36497. name: "Trouble",
  36498. height: math.unit(12, "feet")
  36499. },
  36500. {
  36501. name: "Havoc",
  36502. height: math.unit(200, "feet"),
  36503. default: true
  36504. },
  36505. {
  36506. name: "Pandemonium",
  36507. height: math.unit(1, "mile")
  36508. },
  36509. {
  36510. name: "Catastrophe",
  36511. height: math.unit(100, "miles")
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36517. {
  36518. front: {
  36519. height: math.unit(4.7, "meters"),
  36520. weight: math.unit(6500, "kg"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/vex/front.svg",
  36524. extra: 1288/1140,
  36525. bottom: 100/1388
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(4.7, "meters"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36539. {
  36540. normal: {
  36541. height: math.unit(6, "feet"),
  36542. weight: math.unit(350, "lb"),
  36543. name: "Normal",
  36544. image: {
  36545. source: "./media/characters/teshy/normal.svg",
  36546. extra: 1795/1735,
  36547. bottom: 16/1811
  36548. }
  36549. },
  36550. monsterFront: {
  36551. height: math.unit(12, "feet"),
  36552. weight: math.unit(4700, "lb"),
  36553. name: "Monster (Front)",
  36554. image: {
  36555. source: "./media/characters/teshy/monster-front.svg",
  36556. extra: 2042/2034,
  36557. bottom: 128/2170
  36558. }
  36559. },
  36560. monsterSide: {
  36561. height: math.unit(12, "feet"),
  36562. weight: math.unit(4700, "lb"),
  36563. name: "Monster (Side)",
  36564. image: {
  36565. source: "./media/characters/teshy/monster-side.svg",
  36566. extra: 2067/2056,
  36567. bottom: 70/2137
  36568. }
  36569. },
  36570. monsterBack: {
  36571. height: math.unit(12, "feet"),
  36572. weight: math.unit(4700, "lb"),
  36573. name: "Monster (Back)",
  36574. image: {
  36575. source: "./media/characters/teshy/monster-back.svg",
  36576. extra: 1921/1914,
  36577. bottom: 171/2092
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(6, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(6, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/ramey/front.svg",
  36597. extra: 790/787,
  36598. bottom: 27/817
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(5 + 5/12, "feet"),
  36615. weight: math.unit(120, "lb"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/phirae/front.svg",
  36619. extra: 2491/2436,
  36620. bottom: 38/2529
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(5 + 5/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36634. {
  36635. front: {
  36636. height: math.unit(5 + 3/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/stagglas/front.svg",
  36640. extra: 962/882,
  36641. bottom: 53/1015
  36642. }
  36643. },
  36644. feral: {
  36645. height: math.unit(335, "cm"),
  36646. name: "Feral",
  36647. image: {
  36648. source: "./media/characters/stagglas/feral.svg",
  36649. extra: 1732/1090,
  36650. bottom: 48/1780
  36651. }
  36652. },
  36653. },
  36654. [
  36655. {
  36656. name: "Normal",
  36657. height: math.unit(5 + 3/12, "feet"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36664. {
  36665. front: {
  36666. height: math.unit(5 + 4/12, "feet"),
  36667. weight: math.unit(145, "lb"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/starra/front.svg",
  36671. extra: 1790/1691,
  36672. bottom: 91/1881
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(5 + 4/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(3.5, "meters"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36692. extra: 1248/972,
  36693. bottom: 38/1286
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(3.5, "meters"),
  36701. default: true
  36702. },
  36703. ]
  36704. ))
  36705. characterMakers.push(() => makeCharacter(
  36706. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36707. {
  36708. side: {
  36709. height: math.unit(8 + 2/12, "feet"),
  36710. weight: math.unit(1240, "lb"),
  36711. name: "Side",
  36712. image: {
  36713. source: "./media/characters/mika-valentine/side.svg",
  36714. extra: 2670/2501,
  36715. bottom: 250/2920
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(8 + 2/12, "feet"),
  36723. default: true
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(7 + 2/12, "feet"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/xoltol/front.svg",
  36735. extra: 2212/2124,
  36736. bottom: 84/2296
  36737. }
  36738. },
  36739. side: {
  36740. height: math.unit(7 + 2/12, "feet"),
  36741. name: "Side",
  36742. image: {
  36743. source: "./media/characters/xoltol/side.svg",
  36744. extra: 2273/2197,
  36745. bottom: 26/2299
  36746. }
  36747. },
  36748. hand: {
  36749. height: math.unit(2.5, "feet"),
  36750. name: "Hand",
  36751. image: {
  36752. source: "./media/characters/xoltol/hand.svg"
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Small-ish",
  36759. height: math.unit(5 + 11/12, "feet")
  36760. },
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(7 + 2/12, "feet")
  36764. },
  36765. {
  36766. name: "\"Macro\"",
  36767. height: math.unit(14 + 9/12, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Alternate Height",
  36772. height: math.unit(20, "feet")
  36773. },
  36774. {
  36775. name: "Actually Macro",
  36776. height: math.unit(100, "feet")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(5 + 2/12, "feet"),
  36785. weight: math.unit(75, "kg"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/kotetsu-redwood/front.svg",
  36789. extra: 1053/942,
  36790. bottom: 60/1113
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(5 + 2/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(2.4, "meters"),
  36807. weight: math.unit(125, "kg"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/lilith/front.svg",
  36811. extra: 1590/1513,
  36812. bottom: 203/1793
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Humanoid",
  36819. height: math.unit(2.4, "meters")
  36820. },
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(6, "meters"),
  36824. default: true
  36825. },
  36826. {
  36827. name: "Largest",
  36828. height: math.unit(55, "meters")
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(8 + 4/12, "feet"),
  36837. weight: math.unit(535, "lb"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/beh'kah-bolger/front.svg",
  36841. extra: 1660/1603,
  36842. bottom: 37/1697
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(8 + 4/12, "feet"),
  36850. default: true
  36851. },
  36852. {
  36853. name: "Kaiju",
  36854. height: math.unit(250, "feet")
  36855. },
  36856. {
  36857. name: "Still Growing",
  36858. height: math.unit(10, "miles")
  36859. },
  36860. {
  36861. name: "Continental",
  36862. height: math.unit(5000, "miles")
  36863. },
  36864. {
  36865. name: "Final Form",
  36866. height: math.unit(2500000, "miles")
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(7 + 2/12, "feet"),
  36875. weight: math.unit(230, "kg"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/tatyana-milewska/front.svg",
  36879. extra: 1199/1150,
  36880. bottom: 86/1285
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(7 + 2/12, "feet"),
  36888. default: true
  36889. },
  36890. {
  36891. name: "Big",
  36892. height: math.unit(12, "feet")
  36893. },
  36894. {
  36895. name: "Minimacro",
  36896. height: math.unit(20, "feet")
  36897. },
  36898. {
  36899. name: "Macro",
  36900. height: math.unit(120, "feet")
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(7 + 8/12, "feet"),
  36909. weight: math.unit(152, "kg"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/helen-arri/front.svg",
  36913. extra: 440/423,
  36914. bottom: 14/454
  36915. }
  36916. },
  36917. back: {
  36918. height: math.unit(7 + 8/12, "feet"),
  36919. weight: math.unit(152, "kg"),
  36920. name: "Back",
  36921. image: {
  36922. source: "./media/characters/helen-arri/back.svg",
  36923. extra: 443/426,
  36924. bottom: 8/451
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Normal",
  36931. height: math.unit(7 + 8/12, "feet"),
  36932. default: true
  36933. },
  36934. {
  36935. name: "Big",
  36936. height: math.unit(14, "feet")
  36937. },
  36938. {
  36939. name: "Minimacro",
  36940. height: math.unit(24, "feet")
  36941. },
  36942. {
  36943. name: "Macro",
  36944. height: math.unit(140, "feet")
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(6, "meters"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/ehanu-rehu/front.svg",
  36956. extra: 1800/1800,
  36957. bottom: 59/1859
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(6, "meters"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(7 + 3/12, "feet"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/renholder/front.svg",
  36977. extra: 3096/2960,
  36978. bottom: 250/3346
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal Bat",
  36985. height: math.unit(7 + 3/12, "feet"),
  36986. default: true
  36987. },
  36988. {
  36989. name: "Slightly Tall Bat",
  36990. height: math.unit(100, "feet")
  36991. },
  36992. {
  36993. name: "Big Bat",
  36994. height: math.unit(1000, "feet")
  36995. },
  36996. {
  36997. name: "City-Sized Bat",
  36998. height: math.unit(200000, "feet")
  36999. },
  37000. {
  37001. name: "Bigger Bat",
  37002. height: math.unit(10000, "miles")
  37003. },
  37004. {
  37005. name: "Solar Sized Bat",
  37006. height: math.unit(100, "AU")
  37007. },
  37008. {
  37009. name: "Galactic Bat",
  37010. height: math.unit(200000, "lightyears")
  37011. },
  37012. {
  37013. name: "Universally Known Bat",
  37014. height: math.unit(1, "universe")
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(6 + 11/12, "feet"),
  37023. weight: math.unit(250, "lb"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/cookiecat/front.svg",
  37027. extra: 893/827,
  37028. bottom: 14/907
  37029. }
  37030. },
  37031. },
  37032. [
  37033. {
  37034. name: "Micro",
  37035. height: math.unit(3, "inches")
  37036. },
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(6 + 11/12, "feet"),
  37040. default: true
  37041. },
  37042. {
  37043. name: "Macro",
  37044. height: math.unit(100, "feet")
  37045. },
  37046. {
  37047. name: "Macro+",
  37048. height: math.unit(404, "feet")
  37049. },
  37050. {
  37051. name: "Megamacro",
  37052. height: math.unit(165, "miles")
  37053. },
  37054. {
  37055. name: "Planetary",
  37056. height: math.unit(4600, "miles")
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(10 + 3/12, "feet"),
  37065. weight: math.unit(1500, "lb"),
  37066. name: "Front",
  37067. image: {
  37068. source: "./media/characters/tux-kusanagi/front.svg",
  37069. extra: 944/840,
  37070. bottom: 39/983
  37071. }
  37072. },
  37073. back: {
  37074. height: math.unit(10 + 3/12, "feet"),
  37075. weight: math.unit(1500, "lb"),
  37076. name: "Back",
  37077. image: {
  37078. source: "./media/characters/tux-kusanagi/back.svg",
  37079. extra: 941/842,
  37080. bottom: 28/969
  37081. }
  37082. },
  37083. rump: {
  37084. height: math.unit(5.25, "feet"),
  37085. name: "Rump",
  37086. image: {
  37087. source: "./media/characters/tux-kusanagi/rump.svg"
  37088. }
  37089. },
  37090. beak: {
  37091. height: math.unit(1.54, "feet"),
  37092. name: "Beak",
  37093. image: {
  37094. source: "./media/characters/tux-kusanagi/beak.svg"
  37095. }
  37096. },
  37097. },
  37098. [
  37099. {
  37100. name: "Normal",
  37101. height: math.unit(10 + 3/12, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(58, "feet"),
  37111. weight: math.unit(200, "tons"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/uzarmazari/front.svg",
  37115. extra: 1575/1455,
  37116. bottom: 152/1727
  37117. }
  37118. },
  37119. back: {
  37120. height: math.unit(58, "feet"),
  37121. weight: math.unit(200, "tons"),
  37122. name: "Back",
  37123. image: {
  37124. source: "./media/characters/uzarmazari/back.svg",
  37125. extra: 1585/1510,
  37126. bottom: 157/1742
  37127. }
  37128. },
  37129. head: {
  37130. height: math.unit(26, "feet"),
  37131. name: "Head",
  37132. image: {
  37133. source: "./media/characters/uzarmazari/head.svg"
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(58, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37147. {
  37148. side: {
  37149. height: math.unit(15, "feet"),
  37150. name: "Side",
  37151. image: {
  37152. source: "./media/characters/akitu/side.svg",
  37153. extra: 1421/1321,
  37154. bottom: 157/1578
  37155. }
  37156. },
  37157. front: {
  37158. height: math.unit(15, "feet"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/akitu/front.svg",
  37162. extra: 1435/1326,
  37163. bottom: 232/1667
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(15, "feet"),
  37171. default: true
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(10 + 8/12, "feet"),
  37180. name: "Front",
  37181. image: {
  37182. source: "./media/characters/azalie-croixland/front.svg",
  37183. extra: 1972/1856,
  37184. bottom: 31/2003
  37185. }
  37186. },
  37187. },
  37188. [
  37189. {
  37190. name: "Original Height",
  37191. height: math.unit(5 + 4/12, "feet")
  37192. },
  37193. {
  37194. name: "Normal Height",
  37195. height: math.unit(10 + 8/12, "feet"),
  37196. default: true
  37197. },
  37198. ]
  37199. ))
  37200. characterMakers.push(() => makeCharacter(
  37201. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37202. {
  37203. side: {
  37204. height: math.unit(7 + 1/12, "feet"),
  37205. weight: math.unit(245, "lb"),
  37206. name: "Side",
  37207. image: {
  37208. source: "./media/characters/kavus-kazian/side.svg",
  37209. extra: 349/342,
  37210. bottom: 15/364
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(7 + 1/12, "feet"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37224. {
  37225. normalFront: {
  37226. height: math.unit(5 + 11/12, "feet"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/moonlight-rose/normal-front.svg",
  37230. extra: 1980/1825,
  37231. bottom: 18/1998
  37232. },
  37233. form: "normal",
  37234. default: true
  37235. },
  37236. normalBack: {
  37237. height: math.unit(5 + 11/12, "feet"),
  37238. name: "Back",
  37239. image: {
  37240. source: "./media/characters/moonlight-rose/normal-back.svg",
  37241. extra: 2010/1839,
  37242. bottom: 10/2020
  37243. },
  37244. form: "normal"
  37245. },
  37246. demonFront: {
  37247. height: math.unit(1.5, "earths"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/moonlight-rose/demon.svg",
  37251. extra: 1400/1294,
  37252. bottom: 45/1445
  37253. },
  37254. form: "demon",
  37255. default: true
  37256. },
  37257. terraFront: {
  37258. height: math.unit(1.5, "earths"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/moonlight-rose/terra.svg"
  37262. },
  37263. form: "terra",
  37264. default: true
  37265. },
  37266. jupiterFront: {
  37267. height: math.unit(69911*2, "km"),
  37268. name: "Front",
  37269. image: {
  37270. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37271. extra: 1367/1286,
  37272. bottom: 55/1422
  37273. },
  37274. form: "jupiter",
  37275. default: true
  37276. },
  37277. neptuneFront: {
  37278. height: math.unit(24622*2, "feet"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37282. extra: 1851/1712,
  37283. bottom: 0/1851
  37284. },
  37285. form: "neptune",
  37286. default: true
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "\"Natural\" Height",
  37292. height: math.unit(5 + 11/12, "feet"),
  37293. form: "normal"
  37294. },
  37295. {
  37296. name: "Smallest comfortable size",
  37297. height: math.unit(40, "meters"),
  37298. form: "normal"
  37299. },
  37300. {
  37301. name: "Common size",
  37302. height: math.unit(50, "km"),
  37303. form: "normal",
  37304. default: true
  37305. },
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(1.5, "earths"),
  37309. form: "demon",
  37310. default: true
  37311. },
  37312. {
  37313. name: "Universal",
  37314. height: math.unit(15, "universes"),
  37315. form: "demon"
  37316. },
  37317. {
  37318. name: "Earth",
  37319. height: math.unit(1.5, "earths"),
  37320. form: "terra",
  37321. default: true
  37322. },
  37323. {
  37324. name: "Super Earth",
  37325. height: math.unit(67.5, "earths"),
  37326. form: "terra"
  37327. },
  37328. {
  37329. name: "Doesn't fit in a solar system...",
  37330. height: math.unit(1, "galaxy"),
  37331. form: "terra"
  37332. },
  37333. {
  37334. name: "Saturn",
  37335. height: math.unit(58232*2, "km"),
  37336. form: "jupiter"
  37337. },
  37338. {
  37339. name: "Jupiter",
  37340. height: math.unit(69911*2, "km"),
  37341. form: "jupiter",
  37342. default: true
  37343. },
  37344. {
  37345. name: "HD 100546 b",
  37346. height: math.unit(482938, "km"),
  37347. form: "jupiter"
  37348. },
  37349. {
  37350. name: "Enceladus",
  37351. height: math.unit(513*2, "km"),
  37352. form: "neptune"
  37353. },
  37354. {
  37355. name: "Europe",
  37356. height: math.unit(1560*2, "km"),
  37357. form: "neptune"
  37358. },
  37359. {
  37360. name: "Neptune",
  37361. height: math.unit(24622*2, "km"),
  37362. form: "neptune",
  37363. default: true
  37364. },
  37365. {
  37366. name: "CoRoT-9b",
  37367. height: math.unit(75067*2, "km"),
  37368. form: "neptune"
  37369. },
  37370. ],
  37371. {
  37372. "normal": {
  37373. name: "Normal",
  37374. default: true
  37375. },
  37376. "demon": {
  37377. name: "Demon"
  37378. },
  37379. "terra": {
  37380. name: "Terra"
  37381. },
  37382. "jupiter": {
  37383. name: "Jupiter"
  37384. },
  37385. "neptune": {
  37386. name: "Neptune"
  37387. }
  37388. }
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(16, "feet"),
  37395. weight: math.unit(610, "kg"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/huckle/front.svg",
  37399. extra: 1731/1625,
  37400. bottom: 33/1764
  37401. }
  37402. },
  37403. back: {
  37404. height: math.unit(16, "feet"),
  37405. weight: math.unit(610, "kg"),
  37406. name: "Back",
  37407. image: {
  37408. source: "./media/characters/huckle/back.svg",
  37409. extra: 1738/1651,
  37410. bottom: 37/1775
  37411. }
  37412. },
  37413. laughing: {
  37414. height: math.unit(3.75, "feet"),
  37415. name: "Laughing",
  37416. image: {
  37417. source: "./media/characters/huckle/laughing.svg"
  37418. }
  37419. },
  37420. angry: {
  37421. height: math.unit(4.15, "feet"),
  37422. name: "Angry",
  37423. image: {
  37424. source: "./media/characters/huckle/angry.svg"
  37425. }
  37426. },
  37427. },
  37428. [
  37429. {
  37430. name: "Normal",
  37431. height: math.unit(16, "feet"),
  37432. default: true
  37433. },
  37434. {
  37435. name: "Mini Macro",
  37436. height: math.unit(463, "feet")
  37437. },
  37438. {
  37439. name: "Macro",
  37440. height: math.unit(1680, "meters")
  37441. },
  37442. {
  37443. name: "Mega Macro",
  37444. height: math.unit(175, "km")
  37445. },
  37446. {
  37447. name: "Terra Macro",
  37448. height: math.unit(32, "gigameters")
  37449. },
  37450. {
  37451. name: "Multiverse+",
  37452. height: math.unit(2.56e23, "yottameters")
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(6 + 9/12, "feet"),
  37461. weight: math.unit(280, "lb"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/candy/front.svg",
  37465. extra: 234/217,
  37466. bottom: 11/245
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Really Small",
  37473. height: math.unit(0.1, "nm")
  37474. },
  37475. {
  37476. name: "Micro",
  37477. height: math.unit(2, "inches")
  37478. },
  37479. {
  37480. name: "Normal",
  37481. height: math.unit(6 + 9/12, "feet"),
  37482. default: true
  37483. },
  37484. {
  37485. name: "Small Macro",
  37486. height: math.unit(69, "feet")
  37487. },
  37488. {
  37489. name: "Macro",
  37490. height: math.unit(160, "feet")
  37491. },
  37492. {
  37493. name: "Megamacro",
  37494. height: math.unit(22000, "miles")
  37495. },
  37496. {
  37497. name: "Gigamacro",
  37498. height: math.unit(50000, "miles")
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(4, "feet"),
  37507. weight: math.unit(90, "lb"),
  37508. name: "Front",
  37509. image: {
  37510. source: "./media/characters/joey-mcdonald/front.svg",
  37511. extra: 1059/852,
  37512. bottom: 33/1092
  37513. }
  37514. },
  37515. back: {
  37516. height: math.unit(4, "feet"),
  37517. weight: math.unit(90, "lb"),
  37518. name: "Back",
  37519. image: {
  37520. source: "./media/characters/joey-mcdonald/back.svg",
  37521. extra: 1077/879,
  37522. bottom: 5/1082
  37523. }
  37524. },
  37525. frontKobold: {
  37526. height: math.unit(4, "feet"),
  37527. weight: math.unit(100, "lb"),
  37528. name: "Front-kobold",
  37529. image: {
  37530. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37531. extra: 1480/1367,
  37532. bottom: 0/1480
  37533. }
  37534. },
  37535. backKobold: {
  37536. height: math.unit(4, "feet"),
  37537. weight: math.unit(100, "lb"),
  37538. name: "Back-kobold",
  37539. image: {
  37540. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37541. extra: 1449/1361,
  37542. bottom: 0/1449
  37543. }
  37544. },
  37545. },
  37546. [
  37547. {
  37548. name: "Normal",
  37549. height: math.unit(4, "feet"),
  37550. default: true
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(12 + 6/12, "feet"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/kass-lockheed/front.svg",
  37562. extra: 354/343,
  37563. bottom: 9/363
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(12 + 6/12, "feet"),
  37568. name: "Back",
  37569. image: {
  37570. source: "./media/characters/kass-lockheed/back.svg",
  37571. extra: 364/352,
  37572. bottom: 3/367
  37573. }
  37574. },
  37575. dick: {
  37576. height: math.unit(3.12, "feet"),
  37577. name: "Dick",
  37578. image: {
  37579. source: "./media/characters/kass-lockheed/dick.svg"
  37580. }
  37581. },
  37582. head: {
  37583. height: math.unit(2.6, "feet"),
  37584. name: "Head",
  37585. image: {
  37586. source: "./media/characters/kass-lockheed/head.svg"
  37587. }
  37588. },
  37589. bleh: {
  37590. height: math.unit(2.85, "feet"),
  37591. name: "Bleh",
  37592. image: {
  37593. source: "./media/characters/kass-lockheed/bleh.svg"
  37594. }
  37595. },
  37596. smug: {
  37597. height: math.unit(2.85, "feet"),
  37598. name: "Smug",
  37599. image: {
  37600. source: "./media/characters/kass-lockheed/smug.svg"
  37601. }
  37602. },
  37603. },
  37604. [
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(12 + 6/12, "feet"),
  37608. default: true
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(6 + 2/12, "feet"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/taylor/front.svg",
  37620. extra: 639/495,
  37621. bottom: 12/651
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Normal",
  37628. height: math.unit(6 + 2/12, "feet"),
  37629. default: true
  37630. },
  37631. {
  37632. name: "Big",
  37633. height: math.unit(15, "feet")
  37634. },
  37635. {
  37636. name: "Lorg",
  37637. height: math.unit(80, "feet")
  37638. },
  37639. {
  37640. name: "Too Lorg",
  37641. height: math.unit(120, "feet")
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(15, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/kaizer/front.svg",
  37653. extra: 1612/1436,
  37654. bottom: 43/1655
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(15, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(2, "feet"),
  37671. weight: math.unit(30, "lb"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/sandy/front.svg",
  37675. extra: 1439/1307,
  37676. bottom: 194/1633
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(2, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(3, "feet"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/mellvi/front.svg",
  37696. extra: 1831/1630,
  37697. bottom: 58/1889
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(3, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(5 + 11/12, "feet"),
  37714. weight: math.unit(200, "lb"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/shirou/front.svg",
  37718. extra: 2491/2383,
  37719. bottom: 189/2680
  37720. }
  37721. },
  37722. back: {
  37723. height: math.unit(5 + 11/12, "feet"),
  37724. weight: math.unit(200, "lb"),
  37725. name: "Back",
  37726. image: {
  37727. source: "./media/characters/shirou/back.svg",
  37728. extra: 2554/2450,
  37729. bottom: 76/2630
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Normal",
  37736. height: math.unit(5 + 11/12, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(6 + 3/12, "feet"),
  37746. weight: math.unit(177, "lb"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/noryu/front.svg",
  37750. extra: 973/885,
  37751. bottom: 10/983
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(6 + 3/12, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(5 + 6/12, "feet"),
  37768. weight: math.unit(170, "lb"),
  37769. name: "Front",
  37770. image: {
  37771. source: "./media/characters/mevolas-rubenido/front.svg",
  37772. extra: 2109/1901,
  37773. bottom: 96/2205
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(5 + 6/12, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37787. {
  37788. front: {
  37789. height: math.unit(100, "feet"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/dee/front.svg",
  37793. extra: 2153/2036,
  37794. bottom: 59/2212
  37795. }
  37796. },
  37797. back: {
  37798. height: math.unit(100, "feet"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/dee/back.svg",
  37802. extra: 2183/2058,
  37803. bottom: 75/2258
  37804. }
  37805. },
  37806. foot: {
  37807. height: math.unit(19.43, "feet"),
  37808. name: "Foot",
  37809. image: {
  37810. source: "./media/characters/dee/foot.svg"
  37811. }
  37812. },
  37813. hoof: {
  37814. height: math.unit(20.6, "feet"),
  37815. name: "Hoof",
  37816. image: {
  37817. source: "./media/characters/dee/hoof.svg"
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Macro",
  37824. height: math.unit(100, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(5 + 6/12, "feet"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/teh/front.svg",
  37837. extra: 1002/847,
  37838. bottom: 62/1064
  37839. }
  37840. },
  37841. },
  37842. [
  37843. {
  37844. name: "Normal",
  37845. height: math.unit(5 + 6/12, "feet"),
  37846. default: true
  37847. },
  37848. ]
  37849. ))
  37850. characterMakers.push(() => makeCharacter(
  37851. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37852. {
  37853. side: {
  37854. height: math.unit(6 + 1/12, "feet"),
  37855. weight: math.unit(204, "lb"),
  37856. name: "Side",
  37857. image: {
  37858. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37859. extra: 974/775,
  37860. bottom: 169/1143
  37861. }
  37862. },
  37863. sitting: {
  37864. height: math.unit(6 + 2/12, "feet"),
  37865. weight: math.unit(204, "lb"),
  37866. name: "Sitting",
  37867. image: {
  37868. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37869. extra: 1175/964,
  37870. bottom: 378/1553
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(6 + 1/12, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(6, "inches"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/tululi/front.svg",
  37890. extra: 1997/1876,
  37891. bottom: 20/2017
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(6, "inches"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(4 + 1/12, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/star/front.svg",
  37911. extra: 1493/1189,
  37912. bottom: 48/1541
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(4 + 1/12, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(6 + 3/12, "feet"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/comet/front.svg",
  37932. extra: 1681/1462,
  37933. bottom: 26/1707
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(6 + 3/12, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(950, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/vortex/front.svg",
  37953. extra: 1497/1434,
  37954. bottom: 56/1553
  37955. }
  37956. },
  37957. maw: {
  37958. height: math.unit(285, "feet"),
  37959. name: "Maw",
  37960. image: {
  37961. source: "./media/characters/vortex/maw.svg"
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Macro",
  37968. height: math.unit(950, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(600, "feet"),
  37978. weight: math.unit(0.02, "grams"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/doodle/front.svg",
  37982. extra: 1578/1413,
  37983. bottom: 37/1615
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Macro",
  37990. height: math.unit(600, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(6 + 6/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/jai/front.svg",
  38003. extra: 1645/1534,
  38004. bottom: 115/1760
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(6 + 6/12, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(6 + 8/12, "feet"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/pixel/front.svg",
  38024. extra: 1900/1735,
  38025. bottom: 63/1963
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(6 + 8/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38039. {
  38040. back: {
  38041. height: math.unit(4 + 1/12, "feet"),
  38042. weight: math.unit(75, "lb"),
  38043. name: "Back",
  38044. image: {
  38045. source: "./media/characters/rhett/back.svg",
  38046. extra: 930/878,
  38047. bottom: 25/955
  38048. }
  38049. },
  38050. front: {
  38051. height: math.unit(4 + 1/12, "feet"),
  38052. weight: math.unit(75, "lb"),
  38053. name: "Front",
  38054. image: {
  38055. source: "./media/characters/rhett/front.svg",
  38056. extra: 1682/1586,
  38057. bottom: 92/1774
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Micro",
  38064. height: math.unit(8, "inches")
  38065. },
  38066. {
  38067. name: "Tiny",
  38068. height: math.unit(2, "feet")
  38069. },
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(4 + 1/12, "feet"),
  38073. default: true
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(3 + 3/12, "feet"),
  38082. name: "Front",
  38083. image: {
  38084. source: "./media/characters/penny/front.svg",
  38085. extra: 1406/1311,
  38086. bottom: 26/1432
  38087. }
  38088. },
  38089. },
  38090. [
  38091. {
  38092. name: "Normal",
  38093. height: math.unit(3 + 3/12, "feet"),
  38094. default: true
  38095. },
  38096. ]
  38097. ))
  38098. characterMakers.push(() => makeCharacter(
  38099. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38100. {
  38101. front: {
  38102. height: math.unit(4 + 11/12, "feet"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/monty/front.svg",
  38106. extra: 1479/1209,
  38107. bottom: 0/1479
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(4 + 11/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(8 + 4/12, "feet"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/sterling/front.svg",
  38127. extra: 1420/1236,
  38128. bottom: 27/1447
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(8 + 4/12, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38142. {
  38143. front: {
  38144. height: math.unit(15, "feet"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/marble/front.svg",
  38148. extra: 973/937,
  38149. bottom: 32/1005
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(15, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38163. {
  38164. front: {
  38165. height: math.unit(3, "inches"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/powder/front.svg",
  38169. extra: 1504/1334,
  38170. bottom: 518/2022
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(3, "inches"),
  38178. default: true
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(4 + 5/12, "feet"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/joey-raccoon/front.svg",
  38190. extra: 1273/1197,
  38191. bottom: 0/1273
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(4 + 5/12, "feet"),
  38199. default: true
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(8 + 4/12, "feet"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/vick/front.svg",
  38211. extra: 2187/2118,
  38212. bottom: 47/2234
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(8 + 4/12, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(5 + 5/12, "feet"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/mitsy/front.svg",
  38232. extra: 1842/1695,
  38233. bottom: 0/1842
  38234. }
  38235. },
  38236. },
  38237. [
  38238. {
  38239. name: "Normal",
  38240. height: math.unit(5 + 5/12, "feet"),
  38241. default: true
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38247. {
  38248. front: {
  38249. height: math.unit(6 + 3/12, "feet"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/silvy/front.svg",
  38253. extra: 1995/1836,
  38254. bottom: 225/2220
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(6 + 3/12, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38268. {
  38269. front: {
  38270. height: math.unit(3 + 8/12, "feet"),
  38271. name: "Front",
  38272. image: {
  38273. source: "./media/characters/rodney/front.svg",
  38274. extra: 1956/1747,
  38275. bottom: 31/1987
  38276. }
  38277. },
  38278. frontDressed: {
  38279. height: math.unit(2.9, "feet"),
  38280. name: "Front (Dressed)",
  38281. image: {
  38282. source: "./media/characters/rodney/front-dressed.svg",
  38283. extra: 1382/1241,
  38284. bottom: 385/1767
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Normal",
  38291. height: math.unit(3 + 8/12, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(5 + 9/12, "feet"),
  38301. weight: math.unit(194, "lbs"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/zakail-sudekai/front.svg",
  38305. extra: 2696/2533,
  38306. bottom: 248/2944
  38307. }
  38308. },
  38309. maw: {
  38310. height: math.unit(1.35, "feet"),
  38311. name: "Maw",
  38312. image: {
  38313. source: "./media/characters/zakail-sudekai/maw.svg"
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(5 + 9/12, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(8 + 4/12, "feet"),
  38330. weight: math.unit(1200, "lb"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/eleanor/front.svg",
  38334. extra: 1226/1192,
  38335. bottom: 52/1278
  38336. }
  38337. },
  38338. back: {
  38339. height: math.unit(8 + 4/12, "feet"),
  38340. weight: math.unit(1200, "lb"),
  38341. name: "Back",
  38342. image: {
  38343. source: "./media/characters/eleanor/back.svg",
  38344. extra: 1242/1184,
  38345. bottom: 60/1302
  38346. }
  38347. },
  38348. head: {
  38349. height: math.unit(2.62, "feet"),
  38350. name: "Head",
  38351. image: {
  38352. source: "./media/characters/eleanor/head.svg"
  38353. }
  38354. },
  38355. },
  38356. [
  38357. {
  38358. name: "Normal",
  38359. height: math.unit(8 + 4/12, "feet"),
  38360. default: true
  38361. },
  38362. ]
  38363. ))
  38364. characterMakers.push(() => makeCharacter(
  38365. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38366. {
  38367. front: {
  38368. height: math.unit(8 + 4/12, "feet"),
  38369. weight: math.unit(750, "lb"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/tanya/front.svg",
  38373. extra: 1749/1615,
  38374. bottom: 33/1782
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(8 + 4/12, "feet"),
  38382. default: true
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(5, "feet"),
  38391. weight: math.unit(225, "lb"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/cindy/front.svg",
  38395. extra: 1320/1250,
  38396. bottom: 42/1362
  38397. }
  38398. },
  38399. frontDressed: {
  38400. height: math.unit(5, "feet"),
  38401. weight: math.unit(225, "lb"),
  38402. name: "Front (Dressed)",
  38403. image: {
  38404. source: "./media/characters/cindy/front-dressed.svg",
  38405. extra: 1320/1250,
  38406. bottom: 42/1362
  38407. }
  38408. },
  38409. back: {
  38410. height: math.unit(5, "feet"),
  38411. weight: math.unit(225, "lb"),
  38412. name: "Back",
  38413. image: {
  38414. source: "./media/characters/cindy/back.svg",
  38415. extra: 1384/1346,
  38416. bottom: 14/1398
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(5, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(6 + 9/12, "feet"),
  38433. weight: math.unit(440, "lb"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/wilbur-owen/front.svg",
  38437. extra: 1575/1448,
  38438. bottom: 72/1647
  38439. }
  38440. },
  38441. back: {
  38442. height: math.unit(6 + 9/12, "feet"),
  38443. weight: math.unit(440, "lb"),
  38444. name: "Back",
  38445. image: {
  38446. source: "./media/characters/wilbur-owen/back.svg",
  38447. extra: 1578/1445,
  38448. bottom: 36/1614
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Normal",
  38455. height: math.unit(6 + 9/12, "feet"),
  38456. default: true
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(6 + 5/12, "feet"),
  38465. weight: math.unit(650, "lb"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/keegan/front.svg",
  38469. extra: 2387/2198,
  38470. bottom: 33/2420
  38471. }
  38472. },
  38473. side: {
  38474. height: math.unit(6 + 5/12, "feet"),
  38475. weight: math.unit(650, "lb"),
  38476. name: "Side",
  38477. image: {
  38478. source: "./media/characters/keegan/side.svg",
  38479. extra: 2390/2202,
  38480. bottom: 47/2437
  38481. }
  38482. },
  38483. back: {
  38484. height: math.unit(6 + 5/12, "feet"),
  38485. weight: math.unit(650, "lb"),
  38486. name: "Back",
  38487. image: {
  38488. source: "./media/characters/keegan/back.svg",
  38489. extra: 2418/2268,
  38490. bottom: 15/2433
  38491. }
  38492. },
  38493. frontSfw: {
  38494. height: math.unit(6 + 5/12, "feet"),
  38495. weight: math.unit(650, "lb"),
  38496. name: "Front (SFW)",
  38497. image: {
  38498. source: "./media/characters/keegan/front-sfw.svg",
  38499. extra: 2387/2198,
  38500. bottom: 33/2420
  38501. }
  38502. },
  38503. beans: {
  38504. height: math.unit(1.85, "feet"),
  38505. name: "Beans",
  38506. image: {
  38507. source: "./media/characters/keegan/beans.svg"
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(6 + 5/12, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(9, "feet"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/colton/front.svg",
  38527. extra: 1589/1326,
  38528. bottom: 139/1728
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(9, "feet"),
  38536. default: true
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(2 + 9/12, "feet"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/bora/front.svg",
  38548. extra: 1265/1250,
  38549. bottom: 24/1289
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(2 + 9/12, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(8, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/myu-myu/front.svg",
  38569. extra: 1949/1857,
  38570. bottom: 90/2039
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(8, "feet"),
  38578. default: true
  38579. },
  38580. {
  38581. name: "Big",
  38582. height: math.unit(15, "feet")
  38583. },
  38584. {
  38585. name: "BIG",
  38586. height: math.unit(25, "feet")
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38592. {
  38593. side: {
  38594. height: math.unit(7 + 5/12, "feet"),
  38595. weight: math.unit(2800, "lb"),
  38596. name: "Side",
  38597. image: {
  38598. source: "./media/characters/haloren/side.svg",
  38599. extra: 1793/409,
  38600. bottom: 59/1852
  38601. }
  38602. },
  38603. frontPaw: {
  38604. height: math.unit(2.36, "feet"),
  38605. name: "Front paw",
  38606. image: {
  38607. source: "./media/characters/haloren/front-paw.svg"
  38608. }
  38609. },
  38610. hindPaw: {
  38611. height: math.unit(3.18, "feet"),
  38612. name: "Hind paw",
  38613. image: {
  38614. source: "./media/characters/haloren/hind-paw.svg"
  38615. }
  38616. },
  38617. maw: {
  38618. height: math.unit(5.05, "feet"),
  38619. name: "Maw",
  38620. image: {
  38621. source: "./media/characters/haloren/maw.svg"
  38622. }
  38623. },
  38624. dick: {
  38625. height: math.unit(2.90, "feet"),
  38626. name: "Dick",
  38627. image: {
  38628. source: "./media/characters/haloren/dick.svg"
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(7 + 5/12, "feet"),
  38636. default: true
  38637. },
  38638. {
  38639. name: "Enhanced",
  38640. height: math.unit(14 + 3/12, "feet")
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(171, "cm"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/kimmy/front.svg",
  38652. extra: 1491/1435,
  38653. bottom: 53/1544
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Small",
  38660. height: math.unit(9, "cm")
  38661. },
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(171, "cm"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(8, "feet"),
  38674. weight: math.unit(300, "lb"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/galeboomer/front.svg",
  38678. extra: 4651/4415,
  38679. bottom: 162/4813
  38680. }
  38681. },
  38682. back: {
  38683. height: math.unit(8, "feet"),
  38684. weight: math.unit(300, "lb"),
  38685. name: "Back",
  38686. image: {
  38687. source: "./media/characters/galeboomer/back.svg",
  38688. extra: 4544/4314,
  38689. bottom: 16/4560
  38690. }
  38691. },
  38692. frontAlt: {
  38693. height: math.unit(8, "feet"),
  38694. weight: math.unit(300, "lb"),
  38695. name: "Front (Alt)",
  38696. image: {
  38697. source: "./media/characters/galeboomer/front-alt.svg",
  38698. extra: 4458/4228,
  38699. bottom: 68/4526
  38700. }
  38701. },
  38702. maw: {
  38703. height: math.unit(1.2, "feet"),
  38704. name: "Maw",
  38705. image: {
  38706. source: "./media/characters/galeboomer/maw.svg"
  38707. }
  38708. },
  38709. },
  38710. [
  38711. {
  38712. name: "Normal",
  38713. height: math.unit(8, "feet"),
  38714. default: true
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(5 + 9/12, "feet"),
  38723. weight: math.unit(120, "lb"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/chyr/front.svg",
  38727. extra: 1323/1254,
  38728. bottom: 63/1386
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(5 + 9/12, "feet"),
  38733. weight: math.unit(120, "lb"),
  38734. name: "Back",
  38735. image: {
  38736. source: "./media/characters/chyr/back.svg",
  38737. extra: 1323/1252,
  38738. bottom: 48/1371
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(5 + 9/12, "feet"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(7, "feet"),
  38755. weight: math.unit(310, "lb"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/solarus/front.svg",
  38759. extra: 2415/2021,
  38760. bottom: 103/2518
  38761. }
  38762. },
  38763. back: {
  38764. height: math.unit(7, "feet"),
  38765. weight: math.unit(310, "lb"),
  38766. name: "Back",
  38767. image: {
  38768. source: "./media/characters/solarus/back.svg",
  38769. extra: 2463/2089,
  38770. bottom: 79/2542
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Normal",
  38777. height: math.unit(7, "feet"),
  38778. default: true
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38784. {
  38785. front: {
  38786. height: math.unit(16, "feet"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38790. extra: 1844/1780,
  38791. bottom: 58/1902
  38792. }
  38793. },
  38794. winterCoat: {
  38795. height: math.unit(16, "feet"),
  38796. name: "Winter Coat",
  38797. image: {
  38798. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38799. extra: 1807/1775,
  38800. bottom: 69/1876
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(16, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Chicago Size",
  38812. height: math.unit(560, "feet")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(11 + 6/12, "feet"),
  38821. weight: math.unit(1366, "lb"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/lexor/front.svg",
  38825. extra: 1560/1481,
  38826. bottom: 211/1771
  38827. }
  38828. },
  38829. back: {
  38830. height: math.unit(11 + 6/12, "feet"),
  38831. weight: math.unit(1366, "lb"),
  38832. name: "Back",
  38833. image: {
  38834. source: "./media/characters/lexor/back.svg",
  38835. extra: 1614/1533,
  38836. bottom: 76/1690
  38837. }
  38838. },
  38839. maw: {
  38840. height: math.unit(3, "feet"),
  38841. name: "Maw",
  38842. image: {
  38843. source: "./media/characters/lexor/maw.svg"
  38844. }
  38845. },
  38846. dick: {
  38847. height: math.unit(2.59, "feet"),
  38848. name: "Dick",
  38849. image: {
  38850. source: "./media/characters/lexor/dick.svg"
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(11 + 6/12, "feet"),
  38858. default: true
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(5 + 8/12, "feet"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/magnum/front.svg",
  38870. extra: 942/855,
  38871. bottom: 26/968
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(5 + 8/12, "feet"),
  38879. default: true
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(18 + 4/12, "feet"),
  38888. weight: math.unit(1500, "kg"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/solas-sharpsman/front.svg",
  38892. extra: 1698/1589,
  38893. bottom: 0/1698
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(18 + 4/12, "feet"),
  38901. default: true
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(5 + 5/12, "feet"),
  38910. weight: math.unit(180, "lb"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/october/front.svg",
  38914. extra: 1800/1650,
  38915. bottom: 0/1800
  38916. }
  38917. },
  38918. frontNsfw: {
  38919. height: math.unit(5 + 5/12, "feet"),
  38920. weight: math.unit(180, "lb"),
  38921. name: "Front (NSFW)",
  38922. image: {
  38923. source: "./media/characters/october/front-nsfw.svg",
  38924. extra: 1392/1307,
  38925. bottom: 42/1434
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(5 + 5/12, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(8 + 6/12, "feet"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/essynkardi/front.svg",
  38945. extra: 1914/1846,
  38946. bottom: 22/1936
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(8 + 6/12, "feet"),
  38954. default: true
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(6 + 6/12, "feet"),
  38963. weight: math.unit(7, "lb"),
  38964. name: "Front",
  38965. image: {
  38966. source: "./media/characters/icky/front.svg",
  38967. extra: 813/782,
  38968. bottom: 66/879
  38969. }
  38970. },
  38971. back: {
  38972. height: math.unit(6 + 6/12, "feet"),
  38973. weight: math.unit(7, "lb"),
  38974. name: "Back",
  38975. image: {
  38976. source: "./media/characters/icky/back.svg",
  38977. extra: 754/735,
  38978. bottom: 56/810
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(6 + 6/12, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(15, "feet"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/rojas/front.svg",
  38998. extra: 1462/1408,
  38999. bottom: 95/1557
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(15, "feet"),
  39004. name: "Back",
  39005. image: {
  39006. source: "./media/characters/rojas/back.svg",
  39007. extra: 1023/954,
  39008. bottom: 28/1051
  39009. }
  39010. },
  39011. },
  39012. [
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(15, "feet"),
  39016. default: true
  39017. },
  39018. ]
  39019. ))
  39020. characterMakers.push(() => makeCharacter(
  39021. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39022. {
  39023. frontHuman: {
  39024. height: math.unit(5 + 7/12, "feet"),
  39025. name: "Front (Human)",
  39026. image: {
  39027. source: "./media/characters/alek-dryagan/front-human.svg",
  39028. extra: 1687/1667,
  39029. bottom: 69/1756
  39030. }
  39031. },
  39032. backHuman: {
  39033. height: math.unit(5 + 7/12, "feet"),
  39034. name: "Back (Human)",
  39035. image: {
  39036. source: "./media/characters/alek-dryagan/back-human.svg",
  39037. extra: 1670/1649,
  39038. bottom: 65/1735
  39039. }
  39040. },
  39041. frontDemi: {
  39042. height: math.unit(65, "feet"),
  39043. name: "Front (Demi)",
  39044. image: {
  39045. source: "./media/characters/alek-dryagan/front-demi.svg",
  39046. extra: 1669/1642,
  39047. bottom: 49/1718
  39048. }
  39049. },
  39050. backDemi: {
  39051. height: math.unit(65, "feet"),
  39052. name: "Back (Demi)",
  39053. image: {
  39054. source: "./media/characters/alek-dryagan/back-demi.svg",
  39055. extra: 1658/1637,
  39056. bottom: 40/1698
  39057. }
  39058. },
  39059. mawHuman: {
  39060. height: math.unit(0.3, "feet"),
  39061. name: "Maw (Human)",
  39062. image: {
  39063. source: "./media/characters/alek-dryagan/maw-human.svg"
  39064. }
  39065. },
  39066. mawDemi: {
  39067. height: math.unit(3.8, "feet"),
  39068. name: "Maw (Demi)",
  39069. image: {
  39070. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(5 + 7/12, "feet"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39084. {
  39085. frontHuman: {
  39086. height: math.unit(5 + 2/12, "feet"),
  39087. name: "Front (Human)",
  39088. image: {
  39089. source: "./media/characters/gen/front-human.svg",
  39090. extra: 1627/1538,
  39091. bottom: 71/1698
  39092. }
  39093. },
  39094. backHuman: {
  39095. height: math.unit(5 + 2/12, "feet"),
  39096. name: "Back (Human)",
  39097. image: {
  39098. source: "./media/characters/gen/back-human.svg",
  39099. extra: 1638/1548,
  39100. bottom: 69/1707
  39101. }
  39102. },
  39103. frontDemi: {
  39104. height: math.unit(5 + 2/12, "feet"),
  39105. name: "Front (Demi)",
  39106. image: {
  39107. source: "./media/characters/gen/front-demi.svg",
  39108. extra: 1627/1538,
  39109. bottom: 71/1698
  39110. }
  39111. },
  39112. backDemi: {
  39113. height: math.unit(5 + 2/12, "feet"),
  39114. name: "Back (Demi)",
  39115. image: {
  39116. source: "./media/characters/gen/back-demi.svg",
  39117. extra: 1638/1548,
  39118. bottom: 69/1707
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(5 + 2/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39132. {
  39133. frontImp: {
  39134. height: math.unit(1 + 11/12, "feet"),
  39135. name: "Front (Imp)",
  39136. image: {
  39137. source: "./media/characters/max-kobold/front-imp.svg",
  39138. extra: 1238/1134,
  39139. bottom: 81/1319
  39140. }
  39141. },
  39142. backImp: {
  39143. height: math.unit(1 + 11/12, "feet"),
  39144. name: "Back (Imp)",
  39145. image: {
  39146. source: "./media/characters/max-kobold/back-imp.svg",
  39147. extra: 1334/1175,
  39148. bottom: 34/1368
  39149. }
  39150. },
  39151. frontDemi: {
  39152. height: math.unit(5 + 9/12, "feet"),
  39153. name: "Front (Demi)",
  39154. image: {
  39155. source: "./media/characters/max-kobold/front-demi.svg",
  39156. extra: 1715/1685,
  39157. bottom: 54/1769
  39158. }
  39159. },
  39160. backDemi: {
  39161. height: math.unit(5 + 9/12, "feet"),
  39162. name: "Back (Demi)",
  39163. image: {
  39164. source: "./media/characters/max-kobold/back-demi.svg",
  39165. extra: 1752/1729,
  39166. bottom: 41/1793
  39167. }
  39168. },
  39169. handImp: {
  39170. height: math.unit(0.45, "feet"),
  39171. name: "Hand (Imp)",
  39172. image: {
  39173. source: "./media/characters/max-kobold/hand.svg"
  39174. }
  39175. },
  39176. pawImp: {
  39177. height: math.unit(0.46, "feet"),
  39178. name: "Paw (Imp)",
  39179. image: {
  39180. source: "./media/characters/max-kobold/paw.svg"
  39181. }
  39182. },
  39183. handDemi: {
  39184. height: math.unit(0.80, "feet"),
  39185. name: "Hand (Demi)",
  39186. image: {
  39187. source: "./media/characters/max-kobold/hand.svg"
  39188. }
  39189. },
  39190. pawDemi: {
  39191. height: math.unit(1.1, "feet"),
  39192. name: "Paw (Demi)",
  39193. image: {
  39194. source: "./media/characters/max-kobold/paw.svg"
  39195. }
  39196. },
  39197. headImp: {
  39198. height: math.unit(1.33, "feet"),
  39199. name: "Head (Imp)",
  39200. image: {
  39201. source: "./media/characters/max-kobold/head-imp.svg"
  39202. }
  39203. },
  39204. mawImp: {
  39205. height: math.unit(0.75, "feet"),
  39206. name: "Maw (Imp)",
  39207. image: {
  39208. source: "./media/characters/max-kobold/maw-imp.svg"
  39209. }
  39210. },
  39211. mawDemi: {
  39212. height: math.unit(0.42, "feet"),
  39213. name: "Maw (Demi)",
  39214. image: {
  39215. source: "./media/characters/max-kobold/maw-demi.svg"
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(1 + 11/12, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(7 + 5/12, "feet"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/carbon/front.svg",
  39235. extra: 1754/1689,
  39236. bottom: 65/1819
  39237. }
  39238. },
  39239. back: {
  39240. height: math.unit(7 + 5/12, "feet"),
  39241. name: "Back",
  39242. image: {
  39243. source: "./media/characters/carbon/back.svg",
  39244. extra: 1762/1695,
  39245. bottom: 24/1786
  39246. }
  39247. },
  39248. frontGigantamax: {
  39249. height: math.unit(150, "feet"),
  39250. name: "Front (Gigantamax)",
  39251. image: {
  39252. source: "./media/characters/carbon/front-gigantamax.svg",
  39253. extra: 1826/1669,
  39254. bottom: 59/1885
  39255. }
  39256. },
  39257. backGigantamax: {
  39258. height: math.unit(150, "feet"),
  39259. name: "Back (Gigantamax)",
  39260. image: {
  39261. source: "./media/characters/carbon/back-gigantamax.svg",
  39262. extra: 1796/1653,
  39263. bottom: 53/1849
  39264. }
  39265. },
  39266. maw: {
  39267. height: math.unit(0.48, "feet"),
  39268. name: "Maw",
  39269. image: {
  39270. source: "./media/characters/carbon/maw.svg"
  39271. }
  39272. },
  39273. mawGigantamax: {
  39274. height: math.unit(7.5, "feet"),
  39275. name: "Maw (Gigantamax)",
  39276. image: {
  39277. source: "./media/characters/carbon/maw-gigantamax.svg"
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(7 + 5/12, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(6, "feet"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/maverick/front.svg",
  39297. extra: 1672/1661,
  39298. bottom: 85/1757
  39299. }
  39300. },
  39301. back: {
  39302. height: math.unit(6, "feet"),
  39303. name: "Back",
  39304. image: {
  39305. source: "./media/characters/maverick/back.svg",
  39306. extra: 1642/1631,
  39307. bottom: 38/1680
  39308. }
  39309. },
  39310. },
  39311. [
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(6, "feet"),
  39315. default: true
  39316. },
  39317. ]
  39318. ))
  39319. characterMakers.push(() => makeCharacter(
  39320. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39321. {
  39322. front: {
  39323. height: math.unit(15, "feet"),
  39324. weight: math.unit(615, "lb"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/grockle/front.svg",
  39328. extra: 1535/1427,
  39329. bottom: 56/1591
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(15, "feet"),
  39337. default: true
  39338. },
  39339. {
  39340. name: "Large",
  39341. height: math.unit(150, "feet")
  39342. },
  39343. {
  39344. name: "Macro",
  39345. height: math.unit(1876, "feet")
  39346. },
  39347. {
  39348. name: "Mega Macro",
  39349. height: math.unit(121940, "feet")
  39350. },
  39351. {
  39352. name: "Giga Macro",
  39353. height: math.unit(750, "km")
  39354. },
  39355. {
  39356. name: "Tera Macro",
  39357. height: math.unit(750000, "km")
  39358. },
  39359. {
  39360. name: "Galactic",
  39361. height: math.unit(1.4e5, "km")
  39362. },
  39363. {
  39364. name: "Godlike",
  39365. height: math.unit(9.8e280, "galaxies")
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39371. {
  39372. front: {
  39373. height: math.unit(11, "meters"),
  39374. weight: math.unit(20, "tonnes"),
  39375. name: "Front",
  39376. image: {
  39377. source: "./media/characters/alistair/front.svg",
  39378. extra: 1265/1009,
  39379. bottom: 93/1358
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(11, "meters"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(5 + 8/12, "feet"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/haruka/front.svg",
  39399. extra: 2012/1952,
  39400. bottom: 0/2012
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(5 + 8/12, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39414. {
  39415. back: {
  39416. height: math.unit(9, "feet"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/vivian-sylveon/back.svg",
  39420. extra: 1853/1714,
  39421. bottom: 0/1853
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(9, "feet"),
  39429. default: true
  39430. },
  39431. {
  39432. name: "Macro",
  39433. height: math.unit(500, "feet")
  39434. },
  39435. {
  39436. name: "Megamacro",
  39437. height: math.unit(600, "miles")
  39438. },
  39439. {
  39440. name: "Gigamacro",
  39441. height: math.unit(30000, "miles")
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39447. {
  39448. anthro: {
  39449. height: math.unit(5 + 10/12, "feet"),
  39450. weight: math.unit(100, "lb"),
  39451. name: "Anthro",
  39452. image: {
  39453. source: "./media/characters/daiki/anthro.svg",
  39454. extra: 1115/1027,
  39455. bottom: 69/1184
  39456. }
  39457. },
  39458. feral: {
  39459. height: math.unit(200, "feet"),
  39460. name: "Feral",
  39461. image: {
  39462. source: "./media/characters/daiki/feral.svg",
  39463. extra: 1256/313,
  39464. bottom: 39/1295
  39465. }
  39466. },
  39467. feralHead: {
  39468. height: math.unit(171, "feet"),
  39469. name: "Feral Head",
  39470. image: {
  39471. source: "./media/characters/daiki/feral-head.svg"
  39472. }
  39473. },
  39474. manaDragon: {
  39475. height: math.unit(170, "meters"),
  39476. name: "Mana-dragon",
  39477. image: {
  39478. source: "./media/characters/daiki/mana-dragon.svg",
  39479. extra: 763/420,
  39480. bottom: 97/860
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(5 + 10/12, "feet"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39494. {
  39495. fullyEquippedFront: {
  39496. height: math.unit(3 + 1/12, "feet"),
  39497. weight: math.unit(24, "lb"),
  39498. name: "Fully Equipped (Front)",
  39499. image: {
  39500. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39501. extra: 687/605,
  39502. bottom: 18/705
  39503. }
  39504. },
  39505. fullyEquippedBack: {
  39506. height: math.unit(3 + 1/12, "feet"),
  39507. weight: math.unit(24, "lb"),
  39508. name: "Fully Equipped (Back)",
  39509. image: {
  39510. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39511. extra: 689/590,
  39512. bottom: 18/707
  39513. }
  39514. },
  39515. dailyWear: {
  39516. height: math.unit(3 + 1/12, "feet"),
  39517. weight: math.unit(24, "lb"),
  39518. name: "Daily Wear",
  39519. image: {
  39520. source: "./media/characters/tea-spot/daily-wear.svg",
  39521. extra: 701/620,
  39522. bottom: 21/722
  39523. }
  39524. },
  39525. maidWork: {
  39526. height: math.unit(3 + 1/12, "feet"),
  39527. weight: math.unit(24, "lb"),
  39528. name: "Maid Work",
  39529. image: {
  39530. source: "./media/characters/tea-spot/maid-work.svg",
  39531. extra: 693/609,
  39532. bottom: 15/708
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(3 + 1/12, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(175, "cm"),
  39549. weight: math.unit(75, "kg"),
  39550. name: "Front",
  39551. image: {
  39552. source: "./media/characters/chee/front.svg",
  39553. extra: 1796/1740,
  39554. bottom: 40/1836
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Micro-Micro",
  39561. height: math.unit(1, "nm")
  39562. },
  39563. {
  39564. name: "Micro-erst",
  39565. height: math.unit(1, "micrometer")
  39566. },
  39567. {
  39568. name: "Micro-er",
  39569. height: math.unit(1, "cm")
  39570. },
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(175, "cm"),
  39574. default: true
  39575. },
  39576. {
  39577. name: "Macro",
  39578. height: math.unit(100, "m")
  39579. },
  39580. {
  39581. name: "Macro-er",
  39582. height: math.unit(1, "km")
  39583. },
  39584. {
  39585. name: "Macro-erst",
  39586. height: math.unit(10, "km")
  39587. },
  39588. {
  39589. name: "Macro-Macro",
  39590. height: math.unit(100, "km")
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(11 + 9/12, "feet"),
  39599. weight: math.unit(935, "lb"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/kingsley/front.svg",
  39603. extra: 1803/1674,
  39604. bottom: 127/1930
  39605. }
  39606. },
  39607. frontNude: {
  39608. height: math.unit(11 + 9/12, "feet"),
  39609. weight: math.unit(935, "lb"),
  39610. name: "Front (Nude)",
  39611. image: {
  39612. source: "./media/characters/kingsley/front-nude.svg",
  39613. extra: 1803/1674,
  39614. bottom: 127/1930
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(11 + 9/12, "feet"),
  39622. default: true
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39628. {
  39629. side: {
  39630. height: math.unit(9, "feet"),
  39631. name: "Side",
  39632. image: {
  39633. source: "./media/characters/rymel/side.svg",
  39634. extra: 792/469,
  39635. bottom: 121/913
  39636. }
  39637. },
  39638. maw: {
  39639. height: math.unit(2.4, "meters"),
  39640. name: "Maw",
  39641. image: {
  39642. source: "./media/characters/rymel/maw.svg"
  39643. }
  39644. },
  39645. },
  39646. [
  39647. {
  39648. name: "House Drake",
  39649. height: math.unit(2, "feet")
  39650. },
  39651. {
  39652. name: "Reduced",
  39653. height: math.unit(4.5, "feet")
  39654. },
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(9, "feet"),
  39658. default: true
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(1.74, "meters"),
  39667. weight: math.unit(55, "kg"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/rubus/front.svg",
  39671. extra: 1894/1742,
  39672. bottom: 44/1938
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(1.74, "meters"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(5 + 2/12, "feet"),
  39689. weight: math.unit(112, "lb"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/cassie-kingston/front.svg",
  39693. extra: 1438/1390,
  39694. bottom: 47/1485
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Normal",
  39701. height: math.unit(5 + 2/12, "feet"),
  39702. default: true
  39703. },
  39704. {
  39705. name: "Macro",
  39706. height: math.unit(128, "feet")
  39707. },
  39708. {
  39709. name: "Megamacro",
  39710. height: math.unit(2.56, "miles")
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(7, "feet"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/fox/front.svg",
  39722. extra: 1798/1703,
  39723. bottom: 55/1853
  39724. }
  39725. },
  39726. back: {
  39727. height: math.unit(7, "feet"),
  39728. name: "Back",
  39729. image: {
  39730. source: "./media/characters/fox/back.svg",
  39731. extra: 1748/1649,
  39732. bottom: 32/1780
  39733. }
  39734. },
  39735. head: {
  39736. height: math.unit(1.95, "feet"),
  39737. name: "Head",
  39738. image: {
  39739. source: "./media/characters/fox/head.svg"
  39740. }
  39741. },
  39742. dick: {
  39743. height: math.unit(1.33, "feet"),
  39744. name: "Dick",
  39745. image: {
  39746. source: "./media/characters/fox/dick.svg"
  39747. }
  39748. },
  39749. foot: {
  39750. height: math.unit(1, "feet"),
  39751. name: "Foot",
  39752. image: {
  39753. source: "./media/characters/fox/foot.svg"
  39754. }
  39755. },
  39756. paw: {
  39757. height: math.unit(0.92, "feet"),
  39758. name: "Paw",
  39759. image: {
  39760. source: "./media/characters/fox/paw.svg"
  39761. }
  39762. },
  39763. },
  39764. [
  39765. {
  39766. name: "Small",
  39767. height: math.unit(3, "inches")
  39768. },
  39769. {
  39770. name: "\"Realistic\"",
  39771. height: math.unit(7, "feet")
  39772. },
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(150, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "BIG",
  39780. height: math.unit(1200, "feet")
  39781. },
  39782. {
  39783. name: "👀",
  39784. height: math.unit(5, "miles")
  39785. },
  39786. {
  39787. name: "👀👀👀",
  39788. height: math.unit(64, "miles")
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(625, "feet"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/asonja-rossa/front.svg",
  39800. extra: 1833/1686,
  39801. bottom: 24/1857
  39802. }
  39803. },
  39804. back: {
  39805. height: math.unit(625, "feet"),
  39806. name: "Back",
  39807. image: {
  39808. source: "./media/characters/asonja-rossa/back.svg",
  39809. extra: 1852/1753,
  39810. bottom: 26/1878
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Macro",
  39817. height: math.unit(625, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39824. {
  39825. side: {
  39826. height: math.unit(8, "feet"),
  39827. name: "Side",
  39828. image: {
  39829. source: "./media/characters/rezukii/side.svg",
  39830. extra: 979/542,
  39831. bottom: 87/1066
  39832. }
  39833. },
  39834. sitting: {
  39835. height: math.unit(14.6, "feet"),
  39836. name: "Sitting",
  39837. image: {
  39838. source: "./media/characters/rezukii/sitting.svg",
  39839. extra: 1023/813,
  39840. bottom: 45/1068
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Tiny",
  39847. height: math.unit(2, "feet")
  39848. },
  39849. {
  39850. name: "Smol",
  39851. height: math.unit(4, "feet")
  39852. },
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(8, "feet"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Big",
  39860. height: math.unit(12, "feet")
  39861. },
  39862. {
  39863. name: "Macro",
  39864. height: math.unit(30, "feet")
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39870. {
  39871. front: {
  39872. height: math.unit(14, "feet"),
  39873. weight: math.unit(9.5, "tonnes"),
  39874. name: "Front",
  39875. image: {
  39876. source: "./media/characters/dawnheart/front.svg",
  39877. extra: 2792/2675,
  39878. bottom: 64/2856
  39879. }
  39880. },
  39881. },
  39882. [
  39883. {
  39884. name: "Normal",
  39885. height: math.unit(14, "feet"),
  39886. default: true
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39892. {
  39893. front: {
  39894. height: math.unit(1.7, "m"),
  39895. name: "Front",
  39896. image: {
  39897. source: "./media/characters/gladi/front.svg",
  39898. extra: 1460/1362,
  39899. bottom: 19/1479
  39900. }
  39901. },
  39902. back: {
  39903. height: math.unit(1.7, "m"),
  39904. name: "Back",
  39905. image: {
  39906. source: "./media/characters/gladi/back.svg",
  39907. extra: 1459/1357,
  39908. bottom: 12/1471
  39909. }
  39910. },
  39911. feral: {
  39912. height: math.unit(2.05, "m"),
  39913. name: "Feral",
  39914. image: {
  39915. source: "./media/characters/gladi/feral.svg",
  39916. extra: 821/557,
  39917. bottom: 91/912
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Shortest",
  39924. height: math.unit(70, "cm")
  39925. },
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(1.7, "m")
  39929. },
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(10, "m"),
  39933. default: true
  39934. },
  39935. {
  39936. name: "Tallest",
  39937. height: math.unit(200, "m")
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39943. {
  39944. front: {
  39945. height: math.unit(5 + 7/12, "feet"),
  39946. weight: math.unit(2, "tons"),
  39947. name: "Front",
  39948. image: {
  39949. source: "./media/characters/erdno/front.svg",
  39950. extra: 1234/1129,
  39951. bottom: 35/1269
  39952. }
  39953. },
  39954. angled: {
  39955. height: math.unit(5 + 7/12, "feet"),
  39956. weight: math.unit(2, "tons"),
  39957. name: "Angled",
  39958. image: {
  39959. source: "./media/characters/erdno/angled.svg",
  39960. extra: 1185/1139,
  39961. bottom: 36/1221
  39962. }
  39963. },
  39964. side: {
  39965. height: math.unit(5 + 7/12, "feet"),
  39966. weight: math.unit(2, "tons"),
  39967. name: "Side",
  39968. image: {
  39969. source: "./media/characters/erdno/side.svg",
  39970. extra: 1191/1144,
  39971. bottom: 40/1231
  39972. }
  39973. },
  39974. back: {
  39975. height: math.unit(5 + 7/12, "feet"),
  39976. weight: math.unit(2, "tons"),
  39977. name: "Back",
  39978. image: {
  39979. source: "./media/characters/erdno/back.svg",
  39980. extra: 1202/1146,
  39981. bottom: 17/1219
  39982. }
  39983. },
  39984. frontNsfw: {
  39985. height: math.unit(5 + 7/12, "feet"),
  39986. weight: math.unit(2, "tons"),
  39987. name: "Front (NSFW)",
  39988. image: {
  39989. source: "./media/characters/erdno/front-nsfw.svg",
  39990. extra: 1234/1129,
  39991. bottom: 35/1269
  39992. }
  39993. },
  39994. angledNsfw: {
  39995. height: math.unit(5 + 7/12, "feet"),
  39996. weight: math.unit(2, "tons"),
  39997. name: "Angled (NSFW)",
  39998. image: {
  39999. source: "./media/characters/erdno/angled-nsfw.svg",
  40000. extra: 1185/1139,
  40001. bottom: 36/1221
  40002. }
  40003. },
  40004. sideNsfw: {
  40005. height: math.unit(5 + 7/12, "feet"),
  40006. weight: math.unit(2, "tons"),
  40007. name: "Side (NSFW)",
  40008. image: {
  40009. source: "./media/characters/erdno/side-nsfw.svg",
  40010. extra: 1191/1144,
  40011. bottom: 40/1231
  40012. }
  40013. },
  40014. backNsfw: {
  40015. height: math.unit(5 + 7/12, "feet"),
  40016. weight: math.unit(2, "tons"),
  40017. name: "Back (NSFW)",
  40018. image: {
  40019. source: "./media/characters/erdno/back-nsfw.svg",
  40020. extra: 1202/1146,
  40021. bottom: 17/1219
  40022. }
  40023. },
  40024. frontHyper: {
  40025. height: math.unit(5 + 7/12, "feet"),
  40026. weight: math.unit(2, "tons"),
  40027. name: "Front (Hyper)",
  40028. image: {
  40029. source: "./media/characters/erdno/front-hyper.svg",
  40030. extra: 1298/1136,
  40031. bottom: 35/1333
  40032. }
  40033. },
  40034. },
  40035. [
  40036. {
  40037. name: "Normal",
  40038. height: math.unit(5 + 7/12, "feet"),
  40039. default: true
  40040. },
  40041. {
  40042. name: "Big",
  40043. height: math.unit(5.7, "meters")
  40044. },
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(5.7, "kilometers")
  40048. },
  40049. {
  40050. name: "Megamacro",
  40051. height: math.unit(5.7, "earths")
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(5 + 10/12, "feet"),
  40060. weight: math.unit(150, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/jamie/front.svg",
  40064. extra: 1908/1768,
  40065. bottom: 19/1927
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Minimum",
  40072. height: math.unit(2, "cm")
  40073. },
  40074. {
  40075. name: "Micro",
  40076. height: math.unit(3, "inches")
  40077. },
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(5 + 10/12, "feet"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Macro",
  40085. height: math.unit(150, "feet")
  40086. },
  40087. {
  40088. name: "Megamacro",
  40089. height: math.unit(10000, "m")
  40090. },
  40091. ]
  40092. ))
  40093. characterMakers.push(() => makeCharacter(
  40094. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40095. {
  40096. front: {
  40097. height: math.unit(2, "meters"),
  40098. weight: math.unit(100, "kg"),
  40099. name: "Front",
  40100. image: {
  40101. source: "./media/characters/shiron/front.svg",
  40102. extra: 2103/1985,
  40103. bottom: 98/2201
  40104. }
  40105. },
  40106. back: {
  40107. height: math.unit(2, "meters"),
  40108. weight: math.unit(100, "kg"),
  40109. name: "Back",
  40110. image: {
  40111. source: "./media/characters/shiron/back.svg",
  40112. extra: 2110/2015,
  40113. bottom: 89/2199
  40114. }
  40115. },
  40116. hand: {
  40117. height: math.unit(0.96, "feet"),
  40118. name: "Hand",
  40119. image: {
  40120. source: "./media/characters/shiron/hand.svg"
  40121. }
  40122. },
  40123. foot: {
  40124. height: math.unit(1.464, "feet"),
  40125. name: "Foot",
  40126. image: {
  40127. source: "./media/characters/shiron/foot.svg"
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(2, "meters")
  40135. },
  40136. {
  40137. name: "Macro",
  40138. height: math.unit(500, "meters"),
  40139. default: true
  40140. },
  40141. {
  40142. name: "Megamacro",
  40143. height: math.unit(20, "km")
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(6, "feet"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/sam/front.svg",
  40155. extra: 849/826,
  40156. bottom: 19/868
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(6, "feet"),
  40164. default: true
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(8 + 4/12, "feet"),
  40173. weight: math.unit(122, "kg"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/namori-kurogawa/front.svg",
  40177. extra: 1894/1576,
  40178. bottom: 34/1928
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(8 + 4/12, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(9, "feet"),
  40195. weight: math.unit(621, "lb"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/unmru/front.svg",
  40199. extra: 1853/1747,
  40200. bottom: 73/1926
  40201. }
  40202. },
  40203. side: {
  40204. height: math.unit(9, "feet"),
  40205. weight: math.unit(621, "lb"),
  40206. name: "Side",
  40207. image: {
  40208. source: "./media/characters/unmru/side.svg",
  40209. extra: 1781/1671,
  40210. bottom: 127/1908
  40211. }
  40212. },
  40213. back: {
  40214. height: math.unit(9, "feet"),
  40215. weight: math.unit(621, "lb"),
  40216. name: "Back",
  40217. image: {
  40218. source: "./media/characters/unmru/back.svg",
  40219. extra: 1894/1765,
  40220. bottom: 75/1969
  40221. }
  40222. },
  40223. dick: {
  40224. height: math.unit(3, "feet"),
  40225. weight: math.unit(35, "lb"),
  40226. name: "Dick",
  40227. image: {
  40228. source: "./media/characters/unmru/dick.svg"
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Normal",
  40235. height: math.unit(9, "feet")
  40236. },
  40237. {
  40238. name: "Natural",
  40239. height: math.unit(27, "feet"),
  40240. default: true
  40241. },
  40242. {
  40243. name: "Giant",
  40244. height: math.unit(90, "feet")
  40245. },
  40246. {
  40247. name: "Kaiju",
  40248. height: math.unit(270, "feet")
  40249. },
  40250. {
  40251. name: "Macro",
  40252. height: math.unit(900, "feet")
  40253. },
  40254. {
  40255. name: "Macro+",
  40256. height: math.unit(2700, "feet")
  40257. },
  40258. {
  40259. name: "Megamacro",
  40260. height: math.unit(9000, "feet")
  40261. },
  40262. {
  40263. name: "City-Crushing",
  40264. height: math.unit(27000, "feet")
  40265. },
  40266. {
  40267. name: "Mountain-Mashing",
  40268. height: math.unit(90000, "feet")
  40269. },
  40270. {
  40271. name: "Earth-Eclipsing",
  40272. height: math.unit(2.7e8, "feet")
  40273. },
  40274. {
  40275. name: "Sol-Swallowing",
  40276. height: math.unit(9e10, "feet")
  40277. },
  40278. {
  40279. name: "Majoris-Munching",
  40280. height: math.unit(2.7e13, "feet")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40286. {
  40287. front: {
  40288. height: math.unit(1, "inch"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/squeaks-mouse/front.svg",
  40292. extra: 352/308,
  40293. bottom: 25/377
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Micro",
  40300. height: math.unit(1, "inch"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40307. {
  40308. side: {
  40309. height: math.unit(35, "feet"),
  40310. name: "Side",
  40311. image: {
  40312. source: "./media/characters/sayko/side.svg",
  40313. extra: 1697/1021,
  40314. bottom: 82/1779
  40315. }
  40316. },
  40317. head: {
  40318. height: math.unit(16, "feet"),
  40319. name: "Head",
  40320. image: {
  40321. source: "./media/characters/sayko/head.svg"
  40322. }
  40323. },
  40324. forepaw: {
  40325. height: math.unit(7.85, "feet"),
  40326. name: "Forepaw",
  40327. image: {
  40328. source: "./media/characters/sayko/forepaw.svg"
  40329. }
  40330. },
  40331. hindpaw: {
  40332. height: math.unit(8.8, "feet"),
  40333. name: "Hindpaw",
  40334. image: {
  40335. source: "./media/characters/sayko/hindpaw.svg"
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Normal",
  40342. height: math.unit(35, "feet"),
  40343. default: true
  40344. },
  40345. {
  40346. name: "Colossus",
  40347. height: math.unit(100, "meters")
  40348. },
  40349. {
  40350. name: "\"Small\" Deity",
  40351. height: math.unit(1, "km")
  40352. },
  40353. {
  40354. name: "\"Large\" Deity",
  40355. height: math.unit(15, "km")
  40356. },
  40357. ]
  40358. ))
  40359. characterMakers.push(() => makeCharacter(
  40360. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40361. {
  40362. front: {
  40363. height: math.unit(6, "feet"),
  40364. weight: math.unit(250, "lb"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/mukiro/front.svg",
  40368. extra: 1368/1310,
  40369. bottom: 34/1402
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(6, "feet"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(12 + 4/12, "feet"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40389. extra: 1346/1311,
  40390. bottom: 65/1411
  40391. }
  40392. },
  40393. },
  40394. [
  40395. {
  40396. name: "Base",
  40397. height: math.unit(12 + 4/12, "feet"),
  40398. default: true
  40399. },
  40400. {
  40401. name: "Macro",
  40402. height: math.unit(150, "feet")
  40403. },
  40404. {
  40405. name: "Mega",
  40406. height: math.unit(2, "miles")
  40407. },
  40408. {
  40409. name: "Demi God",
  40410. height: math.unit(4, "AU")
  40411. },
  40412. {
  40413. name: "God Size",
  40414. height: math.unit(1, "universe")
  40415. },
  40416. ]
  40417. ))
  40418. characterMakers.push(() => makeCharacter(
  40419. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40420. {
  40421. front: {
  40422. height: math.unit(3 + 3/12, "feet"),
  40423. weight: math.unit(88, "lb"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/trey/front.svg",
  40427. extra: 1815/1509,
  40428. bottom: 60/1875
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(3 + 3/12, "feet"),
  40436. default: true
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40442. {
  40443. front: {
  40444. height: math.unit(4, "meters"),
  40445. name: "Front",
  40446. image: {
  40447. source: "./media/characters/adelonda/front.svg",
  40448. extra: 1077/982,
  40449. bottom: 39/1116
  40450. }
  40451. },
  40452. back: {
  40453. height: math.unit(4, "meters"),
  40454. name: "Back",
  40455. image: {
  40456. source: "./media/characters/adelonda/back.svg",
  40457. extra: 1105/1003,
  40458. bottom: 25/1130
  40459. }
  40460. },
  40461. feral: {
  40462. height: math.unit(40/1.5, "meters"),
  40463. name: "Feral",
  40464. image: {
  40465. source: "./media/characters/adelonda/feral.svg",
  40466. extra: 597/271,
  40467. bottom: 387/984
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(4, "meters"),
  40475. default: true
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40481. {
  40482. front: {
  40483. height: math.unit(8 + 4/12, "feet"),
  40484. weight: math.unit(670, "lb"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/acadiel/front.svg",
  40488. extra: 1901/1595,
  40489. bottom: 142/2043
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Normal",
  40496. height: math.unit(8 + 4/12, "feet"),
  40497. default: true
  40498. },
  40499. {
  40500. name: "Macro",
  40501. height: math.unit(200, "feet")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(6 + 2/12, "feet"),
  40510. weight: math.unit(185, "lb"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/kayne-ein/front.svg",
  40514. extra: 1780/1560,
  40515. bottom: 81/1861
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(6 + 2/12, "feet"),
  40523. default: true
  40524. },
  40525. {
  40526. name: "Transformation Stage",
  40527. height: math.unit(15, "feet")
  40528. },
  40529. {
  40530. name: "Macro",
  40531. height: math.unit(150, "feet")
  40532. },
  40533. {
  40534. name: "Earth's Shadow",
  40535. height: math.unit(6200, "miles")
  40536. },
  40537. {
  40538. name: "Universal Demon",
  40539. height: math.unit(28e9, "parsecs")
  40540. },
  40541. {
  40542. name: "Multiverse God",
  40543. height: math.unit(3, "multiverses")
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(5 + 5/12, "feet"),
  40552. name: "Front",
  40553. image: {
  40554. source: "./media/characters/fawn/front.svg",
  40555. extra: 1873/1731,
  40556. bottom: 95/1968
  40557. }
  40558. },
  40559. back: {
  40560. height: math.unit(5 + 5/12, "feet"),
  40561. name: "Back",
  40562. image: {
  40563. source: "./media/characters/fawn/back.svg",
  40564. extra: 1813/1700,
  40565. bottom: 14/1827
  40566. }
  40567. },
  40568. hoof: {
  40569. height: math.unit(1.45, "feet"),
  40570. name: "Hoof",
  40571. image: {
  40572. source: "./media/characters/fawn/hoof.svg"
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(5 + 5/12, "feet"),
  40580. default: true
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(2 + 5/12, "feet"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/orion/front.svg",
  40592. extra: 1366/1304,
  40593. bottom: 43/1409
  40594. }
  40595. },
  40596. paw: {
  40597. height: math.unit(0.52, "feet"),
  40598. name: "Paw",
  40599. image: {
  40600. source: "./media/characters/orion/paw.svg"
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Normal",
  40607. height: math.unit(2 + 5/12, "feet"),
  40608. default: true
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(5 + 10/12, "feet"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/vera/front.svg",
  40620. extra: 1680/1575,
  40621. bottom: 49/1729
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(5 + 10/12, "feet"),
  40626. name: "Back",
  40627. image: {
  40628. source: "./media/characters/vera/back.svg",
  40629. extra: 1700/1588,
  40630. bottom: 18/1718
  40631. }
  40632. },
  40633. arcanine: {
  40634. height: math.unit(6 + 8/12, "feet"),
  40635. name: "Arcanine",
  40636. image: {
  40637. source: "./media/characters/vera/arcanine.svg",
  40638. extra: 1590/1511,
  40639. bottom: 71/1661
  40640. }
  40641. },
  40642. maw: {
  40643. height: math.unit(0.82, "feet"),
  40644. name: "Maw",
  40645. image: {
  40646. source: "./media/characters/vera/maw.svg"
  40647. }
  40648. },
  40649. mawArcanine: {
  40650. height: math.unit(0.97, "feet"),
  40651. name: "Maw (Arcanine)",
  40652. image: {
  40653. source: "./media/characters/vera/maw-arcanine.svg"
  40654. }
  40655. },
  40656. paw: {
  40657. height: math.unit(0.75, "feet"),
  40658. name: "Paw",
  40659. image: {
  40660. source: "./media/characters/vera/paw.svg"
  40661. }
  40662. },
  40663. pawprint: {
  40664. height: math.unit(0.52, "feet"),
  40665. name: "Pawprint",
  40666. image: {
  40667. source: "./media/characters/vera/pawprint.svg"
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(5 + 10/12, "feet"),
  40675. default: true
  40676. },
  40677. {
  40678. name: "Macro",
  40679. height: math.unit(75, "feet")
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(4, "feet"),
  40688. weight: math.unit(40, "lb"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/orvan-rabbit/front.svg",
  40692. extra: 1896/1642,
  40693. bottom: 29/1925
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Normal",
  40700. height: math.unit(4, "feet"),
  40701. default: true
  40702. },
  40703. ]
  40704. ))
  40705. characterMakers.push(() => makeCharacter(
  40706. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40707. {
  40708. front: {
  40709. height: math.unit(6, "feet"),
  40710. weight: math.unit(168, "lb"),
  40711. name: "Front",
  40712. image: {
  40713. source: "./media/characters/lisa/front.svg",
  40714. extra: 2065/1867,
  40715. bottom: 46/2111
  40716. }
  40717. },
  40718. back: {
  40719. height: math.unit(6, "feet"),
  40720. weight: math.unit(168, "lb"),
  40721. name: "Back",
  40722. image: {
  40723. source: "./media/characters/lisa/back.svg",
  40724. extra: 1982/1838,
  40725. bottom: 29/2011
  40726. }
  40727. },
  40728. maw: {
  40729. height: math.unit(0.81, "feet"),
  40730. name: "Maw",
  40731. image: {
  40732. source: "./media/characters/lisa/maw.svg"
  40733. }
  40734. },
  40735. paw: {
  40736. height: math.unit(0.9, "feet"),
  40737. name: "Paw",
  40738. image: {
  40739. source: "./media/characters/lisa/paw.svg"
  40740. }
  40741. },
  40742. caribousune: {
  40743. height: math.unit(7 + 2/12, "feet"),
  40744. weight: math.unit(268, "lb"),
  40745. name: "Caribousune",
  40746. image: {
  40747. source: "./media/characters/lisa/caribousune.svg",
  40748. extra: 1843/1633,
  40749. bottom: 29/1872
  40750. }
  40751. },
  40752. frontCaribousune: {
  40753. height: math.unit(7 + 2/12, "feet"),
  40754. weight: math.unit(268, "lb"),
  40755. name: "Front (Caribousune)",
  40756. image: {
  40757. source: "./media/characters/lisa/front-caribousune.svg",
  40758. extra: 1818/1638,
  40759. bottom: 52/1870
  40760. }
  40761. },
  40762. sideCaribousune: {
  40763. height: math.unit(7 + 2/12, "feet"),
  40764. weight: math.unit(268, "lb"),
  40765. name: "Side (Caribousune)",
  40766. image: {
  40767. source: "./media/characters/lisa/side-caribousune.svg",
  40768. extra: 1851/1635,
  40769. bottom: 16/1867
  40770. }
  40771. },
  40772. backCaribousune: {
  40773. height: math.unit(7 + 2/12, "feet"),
  40774. weight: math.unit(268, "lb"),
  40775. name: "Back (Caribousune)",
  40776. image: {
  40777. source: "./media/characters/lisa/back-caribousune.svg",
  40778. extra: 1801/1604,
  40779. bottom: 44/1845
  40780. }
  40781. },
  40782. caribou: {
  40783. height: math.unit(7 + 2/12, "feet"),
  40784. weight: math.unit(268, "lb"),
  40785. name: "Caribou",
  40786. image: {
  40787. source: "./media/characters/lisa/caribou.svg",
  40788. extra: 1843/1633,
  40789. bottom: 29/1872
  40790. }
  40791. },
  40792. frontCaribou: {
  40793. height: math.unit(7 + 2/12, "feet"),
  40794. weight: math.unit(268, "lb"),
  40795. name: "Front (Caribou)",
  40796. image: {
  40797. source: "./media/characters/lisa/front-caribou.svg",
  40798. extra: 1818/1638,
  40799. bottom: 52/1870
  40800. }
  40801. },
  40802. sideCaribou: {
  40803. height: math.unit(7 + 2/12, "feet"),
  40804. weight: math.unit(268, "lb"),
  40805. name: "Side (Caribou)",
  40806. image: {
  40807. source: "./media/characters/lisa/side-caribou.svg",
  40808. extra: 1851/1635,
  40809. bottom: 16/1867
  40810. }
  40811. },
  40812. backCaribou: {
  40813. height: math.unit(7 + 2/12, "feet"),
  40814. weight: math.unit(268, "lb"),
  40815. name: "Back (Caribou)",
  40816. image: {
  40817. source: "./media/characters/lisa/back-caribou.svg",
  40818. extra: 1801/1604,
  40819. bottom: 44/1845
  40820. }
  40821. },
  40822. mawCaribou: {
  40823. height: math.unit(1.45, "feet"),
  40824. name: "Maw (Caribou)",
  40825. image: {
  40826. source: "./media/characters/lisa/maw-caribou.svg"
  40827. }
  40828. },
  40829. mawCaribousune: {
  40830. height: math.unit(1.45, "feet"),
  40831. name: "Maw (Caribousune)",
  40832. image: {
  40833. source: "./media/characters/lisa/maw-caribousune.svg"
  40834. }
  40835. },
  40836. pawCaribousune: {
  40837. height: math.unit(1.61, "feet"),
  40838. name: "Paw (Caribou)",
  40839. image: {
  40840. source: "./media/characters/lisa/paw-caribousune.svg"
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(6, "feet")
  40848. },
  40849. {
  40850. name: "God Size",
  40851. height: math.unit(72, "feet"),
  40852. default: true
  40853. },
  40854. {
  40855. name: "Towering",
  40856. height: math.unit(288, "feet")
  40857. },
  40858. {
  40859. name: "City Size",
  40860. height: math.unit(48384, "feet")
  40861. },
  40862. {
  40863. name: "Continental",
  40864. height: math.unit(4200, "miles")
  40865. },
  40866. {
  40867. name: "Planet Eater",
  40868. height: math.unit(42, "earths")
  40869. },
  40870. {
  40871. name: "Star Swallower",
  40872. height: math.unit(42, "solarradii")
  40873. },
  40874. {
  40875. name: "System Swallower",
  40876. height: math.unit(84000, "AU")
  40877. },
  40878. {
  40879. name: "Galaxy Gobbler",
  40880. height: math.unit(42, "galaxies")
  40881. },
  40882. {
  40883. name: "Universe Devourer",
  40884. height: math.unit(42, "universes")
  40885. },
  40886. {
  40887. name: "Multiverse Muncher",
  40888. height: math.unit(42, "multiverses")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(36, "feet"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/shadow-rat/front.svg",
  40900. extra: 1845/1758,
  40901. bottom: 83/1928
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Macro",
  40908. height: math.unit(36, "feet"),
  40909. default: true
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40915. {
  40916. side: {
  40917. height: math.unit(8, "feet"),
  40918. weight: math.unit(2630, "lb"),
  40919. name: "Side",
  40920. image: {
  40921. source: "./media/characters/torallia/side.svg",
  40922. extra: 2164/2021,
  40923. bottom: 371/2535
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Mortal Interaction",
  40930. height: math.unit(8, "feet")
  40931. },
  40932. {
  40933. name: "Natural",
  40934. height: math.unit(24, "feet"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Giant",
  40939. height: math.unit(80, "feet")
  40940. },
  40941. {
  40942. name: "Kaiju",
  40943. height: math.unit(240, "feet")
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(800, "feet")
  40948. },
  40949. {
  40950. name: "Macro+",
  40951. height: math.unit(2400, "feet")
  40952. },
  40953. {
  40954. name: "Macro++",
  40955. height: math.unit(8000, "feet")
  40956. },
  40957. {
  40958. name: "City-Crushing",
  40959. height: math.unit(24000, "feet")
  40960. },
  40961. {
  40962. name: "Mountain-Mashing",
  40963. height: math.unit(80000, "feet")
  40964. },
  40965. {
  40966. name: "District Demolisher",
  40967. height: math.unit(240000, "feet")
  40968. },
  40969. {
  40970. name: "Tri-County Terror",
  40971. height: math.unit(800000, "feet")
  40972. },
  40973. {
  40974. name: "State Smasher",
  40975. height: math.unit(2.4e6, "feet")
  40976. },
  40977. {
  40978. name: "Nation Nemesis",
  40979. height: math.unit(8e6, "feet")
  40980. },
  40981. {
  40982. name: "Continent Cracker",
  40983. height: math.unit(2.4e7, "feet")
  40984. },
  40985. {
  40986. name: "Planet-Pillaging",
  40987. height: math.unit(8e7, "feet")
  40988. },
  40989. {
  40990. name: "Earth-Eclipsing",
  40991. height: math.unit(2.4e8, "feet")
  40992. },
  40993. {
  40994. name: "Jovian-Jostling",
  40995. height: math.unit(8e8, "feet")
  40996. },
  40997. {
  40998. name: "Gas Giant Gulper",
  40999. height: math.unit(2.4e9, "feet")
  41000. },
  41001. {
  41002. name: "Astral Annihilator",
  41003. height: math.unit(8e9, "feet")
  41004. },
  41005. {
  41006. name: "Celestial Conqueror",
  41007. height: math.unit(2.4e10, "feet")
  41008. },
  41009. {
  41010. name: "Sol-Swallowing",
  41011. height: math.unit(8e10, "feet")
  41012. },
  41013. {
  41014. name: "Hunter of the Heavens",
  41015. height: math.unit(2.4e13, "feet")
  41016. },
  41017. ]
  41018. ))
  41019. characterMakers.push(() => makeCharacter(
  41020. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41021. {
  41022. front: {
  41023. height: math.unit(6 + 8/12, "feet"),
  41024. weight: math.unit(250, "kilograms"),
  41025. volume: math.unit(28, "liters"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/rebecca-pawlson/front.svg",
  41029. extra: 1737/1596,
  41030. bottom: 107/1844
  41031. }
  41032. },
  41033. back: {
  41034. height: math.unit(6 + 8/12, "feet"),
  41035. weight: math.unit(250, "kilograms"),
  41036. volume: math.unit(28, "liters"),
  41037. name: "Back",
  41038. image: {
  41039. source: "./media/characters/rebecca-pawlson/back.svg",
  41040. extra: 1702/1523,
  41041. bottom: 86/1788
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(6 + 8/12, "feet")
  41049. },
  41050. {
  41051. name: "Mini Macro",
  41052. height: math.unit(10, "feet"),
  41053. default: true
  41054. },
  41055. {
  41056. name: "Macro",
  41057. height: math.unit(100, "feet")
  41058. },
  41059. {
  41060. name: "Mega Macro",
  41061. height: math.unit(2500, "feet")
  41062. },
  41063. {
  41064. name: "Giga Macro",
  41065. height: math.unit(50, "miles")
  41066. },
  41067. ]
  41068. ))
  41069. characterMakers.push(() => makeCharacter(
  41070. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41071. {
  41072. front: {
  41073. height: math.unit(7 + 6/12, "feet"),
  41074. weight: math.unit(600, "lb"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/moxie-nova/front.svg",
  41078. extra: 1734/1652,
  41079. bottom: 41/1775
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(7 + 6/12, "feet"),
  41087. default: true
  41088. },
  41089. ]
  41090. ))
  41091. characterMakers.push(() => makeCharacter(
  41092. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41093. {
  41094. goat: {
  41095. height: math.unit(4, "feet"),
  41096. weight: math.unit(180, "lb"),
  41097. name: "Goat",
  41098. image: {
  41099. source: "./media/characters/tiffany/goat.svg",
  41100. extra: 1845/1595,
  41101. bottom: 106/1951
  41102. }
  41103. },
  41104. front: {
  41105. height: math.unit(5, "feet"),
  41106. weight: math.unit(150, "lb"),
  41107. name: "Foxcoon",
  41108. image: {
  41109. source: "./media/characters/tiffany/foxcoon.svg",
  41110. extra: 1941/1845,
  41111. bottom: 58/1999
  41112. }
  41113. },
  41114. },
  41115. [
  41116. {
  41117. name: "Normal",
  41118. height: math.unit(5, "feet"),
  41119. default: true
  41120. },
  41121. ]
  41122. ))
  41123. characterMakers.push(() => makeCharacter(
  41124. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41125. {
  41126. front: {
  41127. height: math.unit(8, "feet"),
  41128. weight: math.unit(300, "lb"),
  41129. name: "Front",
  41130. image: {
  41131. source: "./media/characters/raxinath/front.svg",
  41132. extra: 1407/1309,
  41133. bottom: 39/1446
  41134. }
  41135. },
  41136. back: {
  41137. height: math.unit(8, "feet"),
  41138. weight: math.unit(300, "lb"),
  41139. name: "Back",
  41140. image: {
  41141. source: "./media/characters/raxinath/back.svg",
  41142. extra: 1405/1315,
  41143. bottom: 9/1414
  41144. }
  41145. },
  41146. },
  41147. [
  41148. {
  41149. name: "Speck",
  41150. height: math.unit(0.5, "nm")
  41151. },
  41152. {
  41153. name: "Micro",
  41154. height: math.unit(3, "inches")
  41155. },
  41156. {
  41157. name: "Kobold",
  41158. height: math.unit(3, "feet")
  41159. },
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(8, "feet"),
  41163. default: true
  41164. },
  41165. {
  41166. name: "Giant",
  41167. height: math.unit(50, "feet")
  41168. },
  41169. {
  41170. name: "Macro",
  41171. height: math.unit(1000, "feet")
  41172. },
  41173. {
  41174. name: "Megamacro",
  41175. height: math.unit(1, "mile")
  41176. },
  41177. ]
  41178. ))
  41179. characterMakers.push(() => makeCharacter(
  41180. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41181. {
  41182. front: {
  41183. height: math.unit(10, "feet"),
  41184. weight: math.unit(1442, "lb"),
  41185. name: "Front",
  41186. image: {
  41187. source: "./media/characters/mal-dragon/front.svg",
  41188. extra: 1515/1444,
  41189. bottom: 113/1628
  41190. }
  41191. },
  41192. back: {
  41193. height: math.unit(10, "feet"),
  41194. weight: math.unit(1442, "lb"),
  41195. name: "Back",
  41196. image: {
  41197. source: "./media/characters/mal-dragon/back.svg",
  41198. extra: 1527/1434,
  41199. bottom: 25/1552
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Mortal Interaction",
  41206. height: math.unit(10, "feet"),
  41207. default: true
  41208. },
  41209. {
  41210. name: "Large",
  41211. height: math.unit(30, "feet")
  41212. },
  41213. {
  41214. name: "Kaiju",
  41215. height: math.unit(300, "feet")
  41216. },
  41217. {
  41218. name: "Megamacro",
  41219. height: math.unit(10000, "feet")
  41220. },
  41221. {
  41222. name: "Continent Cracker",
  41223. height: math.unit(30000000, "feet")
  41224. },
  41225. {
  41226. name: "Sol-Swallowing",
  41227. height: math.unit(1e11, "feet")
  41228. },
  41229. {
  41230. name: "Light Universal",
  41231. height: math.unit(5, "universes")
  41232. },
  41233. {
  41234. name: "Universe Atoms",
  41235. height: math.unit(1.829e9, "universes")
  41236. },
  41237. {
  41238. name: "Light Multiversal",
  41239. height: math.unit(5, "multiverses")
  41240. },
  41241. {
  41242. name: "Multiverse Atoms",
  41243. height: math.unit(1.829e9, "multiverses")
  41244. },
  41245. {
  41246. name: "Fabric of Time",
  41247. height: math.unit(1e262, "multiverses")
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41253. {
  41254. front: {
  41255. height: math.unit(9, "feet"),
  41256. weight: math.unit(1050, "lb"),
  41257. name: "Front",
  41258. image: {
  41259. source: "./media/characters/tabitha/front.svg",
  41260. extra: 2083/1994,
  41261. bottom: 68/2151
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Baseline",
  41268. height: math.unit(9, "feet"),
  41269. default: true
  41270. },
  41271. {
  41272. name: "Giant",
  41273. height: math.unit(90, "feet")
  41274. },
  41275. {
  41276. name: "Macro",
  41277. height: math.unit(900, "feet")
  41278. },
  41279. {
  41280. name: "Megamacro",
  41281. height: math.unit(9000, "feet")
  41282. },
  41283. {
  41284. name: "City-Crushing",
  41285. height: math.unit(27000, "feet")
  41286. },
  41287. {
  41288. name: "Mountain-Mashing",
  41289. height: math.unit(90000, "feet")
  41290. },
  41291. {
  41292. name: "Nation Nemesis",
  41293. height: math.unit(9e6, "feet")
  41294. },
  41295. {
  41296. name: "Continent Cracker",
  41297. height: math.unit(27e6, "feet")
  41298. },
  41299. {
  41300. name: "Earth-Eclipsing",
  41301. height: math.unit(2.7e8, "feet")
  41302. },
  41303. {
  41304. name: "Gas Giant Gulper",
  41305. height: math.unit(2.7e9, "feet")
  41306. },
  41307. {
  41308. name: "Sol-Swallowing",
  41309. height: math.unit(9e10, "feet")
  41310. },
  41311. {
  41312. name: "Galaxy Gulper",
  41313. height: math.unit(9, "galaxies")
  41314. },
  41315. {
  41316. name: "Cosmos Churner",
  41317. height: math.unit(9, "universes")
  41318. },
  41319. ]
  41320. ))
  41321. characterMakers.push(() => makeCharacter(
  41322. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41323. {
  41324. front: {
  41325. height: math.unit(160, "cm"),
  41326. weight: math.unit(55, "kg"),
  41327. name: "Front",
  41328. image: {
  41329. source: "./media/characters/tow/front.svg",
  41330. extra: 1751/1722,
  41331. bottom: 74/1825
  41332. }
  41333. },
  41334. },
  41335. [
  41336. {
  41337. name: "Norm",
  41338. height: math.unit(160, "cm")
  41339. },
  41340. {
  41341. name: "Casual",
  41342. height: math.unit(3200, "m"),
  41343. default: true
  41344. },
  41345. {
  41346. name: "Show-Off",
  41347. height: math.unit(160, "km")
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41353. {
  41354. front: {
  41355. height: math.unit(7 + 11/12, "feet"),
  41356. weight: math.unit(342.8, "lb"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/vivian-orca-dragon/front.svg",
  41360. extra: 1890/1865,
  41361. bottom: 28/1918
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "Micro",
  41368. height: math.unit(5, "inches")
  41369. },
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(7 + 11/12, "feet"),
  41373. default: true
  41374. },
  41375. {
  41376. name: "Macro",
  41377. height: math.unit(395 + 7/12, "feet")
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41383. {
  41384. side: {
  41385. height: math.unit(10, "feet"),
  41386. weight: math.unit(1442, "lb"),
  41387. name: "Side",
  41388. image: {
  41389. source: "./media/characters/lotherakon/side.svg",
  41390. extra: 1604/1497,
  41391. bottom: 89/1693
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Mortal Interaction",
  41398. height: math.unit(10, "feet")
  41399. },
  41400. {
  41401. name: "Large",
  41402. height: math.unit(30, "feet"),
  41403. default: true
  41404. },
  41405. {
  41406. name: "Giant",
  41407. height: math.unit(100, "feet")
  41408. },
  41409. {
  41410. name: "Kaiju",
  41411. height: math.unit(300, "feet")
  41412. },
  41413. {
  41414. name: "Macro",
  41415. height: math.unit(1000, "feet")
  41416. },
  41417. {
  41418. name: "Macro+",
  41419. height: math.unit(3000, "feet")
  41420. },
  41421. {
  41422. name: "Megamacro",
  41423. height: math.unit(10000, "feet")
  41424. },
  41425. {
  41426. name: "City-Crushing",
  41427. height: math.unit(30000, "feet")
  41428. },
  41429. {
  41430. name: "Continent Cracker",
  41431. height: math.unit(30e6, "feet")
  41432. },
  41433. {
  41434. name: "Earth Eclipsing",
  41435. height: math.unit(3e8, "feet")
  41436. },
  41437. {
  41438. name: "Gas Giant Gulper",
  41439. height: math.unit(3e9, "feet")
  41440. },
  41441. {
  41442. name: "Sol-Swallowing",
  41443. height: math.unit(1e11, "feet")
  41444. },
  41445. {
  41446. name: "System Swallower",
  41447. height: math.unit(3e14, "feet")
  41448. },
  41449. {
  41450. name: "Galaxy Gulper",
  41451. height: math.unit(10, "galaxies")
  41452. },
  41453. {
  41454. name: "Light Universal",
  41455. height: math.unit(5, "universes")
  41456. },
  41457. {
  41458. name: "Universe Palm",
  41459. height: math.unit(20, "universes")
  41460. },
  41461. {
  41462. name: "Light Multiversal",
  41463. height: math.unit(5, "multiverses")
  41464. },
  41465. {
  41466. name: "Multiverse Palm",
  41467. height: math.unit(20, "multiverses")
  41468. },
  41469. {
  41470. name: "Inferno Incarnate",
  41471. height: math.unit(1e7, "multiverses")
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(8, "feet"),
  41480. weight: math.unit(1200, "lb"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/malithee/front.svg",
  41484. extra: 1675/1640,
  41485. bottom: 162/1837
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Mortal Interaction",
  41492. height: math.unit(8, "feet"),
  41493. default: true
  41494. },
  41495. {
  41496. name: "Large",
  41497. height: math.unit(24, "feet")
  41498. },
  41499. {
  41500. name: "Kaiju",
  41501. height: math.unit(240, "feet")
  41502. },
  41503. {
  41504. name: "Megamacro",
  41505. height: math.unit(8000, "feet")
  41506. },
  41507. {
  41508. name: "Continent Cracker",
  41509. height: math.unit(24e6, "feet")
  41510. },
  41511. {
  41512. name: "Earth-Eclipsing",
  41513. height: math.unit(2.4e8, "feet")
  41514. },
  41515. {
  41516. name: "Sol-Swallowing",
  41517. height: math.unit(8e10, "feet")
  41518. },
  41519. {
  41520. name: "Galaxy Gulper",
  41521. height: math.unit(8, "galaxies")
  41522. },
  41523. {
  41524. name: "Light Universal",
  41525. height: math.unit(4, "universes")
  41526. },
  41527. {
  41528. name: "Universe Atoms",
  41529. height: math.unit(1.829e9, "universes")
  41530. },
  41531. {
  41532. name: "Light Multiversal",
  41533. height: math.unit(4, "multiverses")
  41534. },
  41535. {
  41536. name: "Multiverse Atoms",
  41537. height: math.unit(1.829e9, "multiverses")
  41538. },
  41539. {
  41540. name: "Nigh-Omnipresence",
  41541. height: math.unit(8e261, "multiverses")
  41542. },
  41543. ]
  41544. ))
  41545. characterMakers.push(() => makeCharacter(
  41546. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41547. {
  41548. front: {
  41549. height: math.unit(10, "feet"),
  41550. weight: math.unit(1500, "lb"),
  41551. name: "Front",
  41552. image: {
  41553. source: "./media/characters/miles-thestia/front.svg",
  41554. extra: 1812/1727,
  41555. bottom: 86/1898
  41556. }
  41557. },
  41558. back: {
  41559. height: math.unit(10, "feet"),
  41560. weight: math.unit(1500, "lb"),
  41561. name: "Back",
  41562. image: {
  41563. source: "./media/characters/miles-thestia/back.svg",
  41564. extra: 1799/1690,
  41565. bottom: 47/1846
  41566. }
  41567. },
  41568. frontNsfw: {
  41569. height: math.unit(10, "feet"),
  41570. weight: math.unit(1500, "lb"),
  41571. name: "Front (NSFW)",
  41572. image: {
  41573. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41574. extra: 1812/1727,
  41575. bottom: 86/1898
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Mini-Macro",
  41582. height: math.unit(10, "feet"),
  41583. default: true
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(25, "feet"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/titan-s-wulf/front.svg",
  41595. extra: 1560/1484,
  41596. bottom: 76/1636
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Smallest",
  41603. height: math.unit(25, "feet"),
  41604. default: true
  41605. },
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(200, "feet")
  41609. },
  41610. {
  41611. name: "Macro",
  41612. height: math.unit(200000, "feet")
  41613. },
  41614. {
  41615. name: "Multiversal Original",
  41616. height: math.unit(10000, "multiverses")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(8, "feet"),
  41625. weight: math.unit(553, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/tawendeh/front.svg",
  41629. extra: 2365/2268,
  41630. bottom: 83/2448
  41631. }
  41632. },
  41633. frontClothed: {
  41634. height: math.unit(8, "feet"),
  41635. weight: math.unit(553, "lb"),
  41636. name: "Front (Clothed)",
  41637. image: {
  41638. source: "./media/characters/tawendeh/front-clothed.svg",
  41639. extra: 2365/2268,
  41640. bottom: 83/2448
  41641. }
  41642. },
  41643. back: {
  41644. height: math.unit(8, "feet"),
  41645. weight: math.unit(553, "lb"),
  41646. name: "Back",
  41647. image: {
  41648. source: "./media/characters/tawendeh/back.svg",
  41649. extra: 2397/2294,
  41650. bottom: 42/2439
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Mortal Interaction",
  41657. height: math.unit(8, "feet"),
  41658. default: true
  41659. },
  41660. {
  41661. name: "Giant",
  41662. height: math.unit(80, "feet")
  41663. },
  41664. {
  41665. name: "Macro",
  41666. height: math.unit(800, "feet")
  41667. },
  41668. {
  41669. name: "Megamacro",
  41670. height: math.unit(8000, "feet")
  41671. },
  41672. {
  41673. name: "City-Crushing",
  41674. height: math.unit(24000, "feet")
  41675. },
  41676. {
  41677. name: "Mountain-Mashing",
  41678. height: math.unit(80000, "feet")
  41679. },
  41680. {
  41681. name: "Nation Nemesis",
  41682. height: math.unit(8e6, "feet")
  41683. },
  41684. {
  41685. name: "Continent Cracker",
  41686. height: math.unit(24e6, "feet")
  41687. },
  41688. {
  41689. name: "Earth-Eclipsing",
  41690. height: math.unit(2.4e8, "feet")
  41691. },
  41692. {
  41693. name: "Gas Giant Gulper",
  41694. height: math.unit(2.4e9, "feet")
  41695. },
  41696. {
  41697. name: "Sol-Swallowing",
  41698. height: math.unit(8e10, "feet")
  41699. },
  41700. {
  41701. name: "Galaxy Gulper",
  41702. height: math.unit(8, "galaxies")
  41703. },
  41704. {
  41705. name: "Cosmos Churner",
  41706. height: math.unit(8, "universes")
  41707. },
  41708. {
  41709. name: "Omnipotent Otter",
  41710. height: math.unit(80, "universes")
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(2.6, "meters"),
  41719. weight: math.unit(900, "kg"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/neesha/front.svg",
  41723. extra: 1803/1653,
  41724. bottom: 128/1931
  41725. }
  41726. },
  41727. },
  41728. [
  41729. {
  41730. name: "Normal",
  41731. height: math.unit(2.6, "meters"),
  41732. default: true
  41733. },
  41734. {
  41735. name: "Macro",
  41736. height: math.unit(50, "meters")
  41737. },
  41738. ]
  41739. ))
  41740. characterMakers.push(() => makeCharacter(
  41741. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41742. {
  41743. front: {
  41744. height: math.unit(5, "feet"),
  41745. weight: math.unit(185, "lb"),
  41746. name: "Front",
  41747. image: {
  41748. source: "./media/characters/kyera/front.svg",
  41749. extra: 1875/1790,
  41750. bottom: 96/1971
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(5, "feet"),
  41758. default: true
  41759. },
  41760. ]
  41761. ))
  41762. characterMakers.push(() => makeCharacter(
  41763. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41764. {
  41765. front: {
  41766. height: math.unit(7 + 6/12, "feet"),
  41767. weight: math.unit(540, "lb"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/yuko/front.svg",
  41771. extra: 1282/1222,
  41772. bottom: 101/1383
  41773. }
  41774. },
  41775. frontClothed: {
  41776. height: math.unit(7 + 6/12, "feet"),
  41777. weight: math.unit(540, "lb"),
  41778. name: "Front (Clothed)",
  41779. image: {
  41780. source: "./media/characters/yuko/front-clothed.svg",
  41781. extra: 1282/1222,
  41782. bottom: 101/1383
  41783. }
  41784. },
  41785. },
  41786. [
  41787. {
  41788. name: "Normal",
  41789. height: math.unit(7 + 6/12, "feet"),
  41790. default: true
  41791. },
  41792. {
  41793. name: "Macro",
  41794. height: math.unit(26 + 9/12, "feet")
  41795. },
  41796. {
  41797. name: "Megamacro",
  41798. height: math.unit(300, "feet")
  41799. },
  41800. {
  41801. name: "Gigamacro",
  41802. height: math.unit(5000, "feet")
  41803. },
  41804. {
  41805. name: "Planetary",
  41806. height: math.unit(10000, "miles")
  41807. },
  41808. ]
  41809. ))
  41810. characterMakers.push(() => makeCharacter(
  41811. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41812. {
  41813. front: {
  41814. height: math.unit(8 + 2/12, "feet"),
  41815. weight: math.unit(600, "lb"),
  41816. name: "Front",
  41817. image: {
  41818. source: "./media/characters/deam-nitrel/front.svg",
  41819. extra: 1308/1234,
  41820. bottom: 125/1433
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Normal",
  41827. height: math.unit(8 + 2/12, "feet"),
  41828. default: true
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(6.1, "feet"),
  41837. weight: math.unit(180, "lb"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/skyress/front.svg",
  41841. extra: 1045/915,
  41842. bottom: 28/1073
  41843. }
  41844. },
  41845. maw: {
  41846. height: math.unit(1, "feet"),
  41847. name: "Maw",
  41848. image: {
  41849. source: "./media/characters/skyress/maw.svg"
  41850. }
  41851. },
  41852. },
  41853. [
  41854. {
  41855. name: "Normal",
  41856. height: math.unit(6.1, "feet"),
  41857. default: true
  41858. },
  41859. {
  41860. name: "Macro",
  41861. height: math.unit(200, "feet")
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41867. {
  41868. front: {
  41869. height: math.unit(4 + 2/12, "feet"),
  41870. weight: math.unit(40, "kg"),
  41871. name: "Front",
  41872. image: {
  41873. source: "./media/characters/amethyst-jones/front.svg",
  41874. extra: 1220/1150,
  41875. bottom: 101/1321
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(4 + 2/12, "feet"),
  41883. default: true
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(1.7, "m"),
  41892. weight: math.unit(135, "lb"),
  41893. name: "Front",
  41894. image: {
  41895. source: "./media/characters/jade/front.svg",
  41896. extra: 1818/1767,
  41897. bottom: 32/1850
  41898. }
  41899. },
  41900. back: {
  41901. height: math.unit(1.7, "m"),
  41902. weight: math.unit(135, "lb"),
  41903. name: "Back",
  41904. image: {
  41905. source: "./media/characters/jade/back.svg",
  41906. extra: 1869/1809,
  41907. bottom: 35/1904
  41908. }
  41909. },
  41910. hand: {
  41911. height: math.unit(0.24, "m"),
  41912. name: "Hand",
  41913. image: {
  41914. source: "./media/characters/jade/hand.svg"
  41915. }
  41916. },
  41917. foot: {
  41918. height: math.unit(0.263, "m"),
  41919. name: "Foot",
  41920. image: {
  41921. source: "./media/characters/jade/foot.svg"
  41922. }
  41923. },
  41924. dick: {
  41925. height: math.unit(0.47, "m"),
  41926. name: "Dick",
  41927. image: {
  41928. source: "./media/characters/jade/dick.svg"
  41929. }
  41930. },
  41931. },
  41932. [
  41933. {
  41934. name: "Micro",
  41935. height: math.unit(22, "cm")
  41936. },
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(1.7, "m"),
  41940. default: true
  41941. },
  41942. {
  41943. name: "Macro",
  41944. height: math.unit(152, "m")
  41945. },
  41946. ]
  41947. ))
  41948. characterMakers.push(() => makeCharacter(
  41949. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41950. {
  41951. front: {
  41952. height: math.unit(100, "miles"),
  41953. weight: math.unit(20000, "tons"),
  41954. name: "Front",
  41955. image: {
  41956. source: "./media/characters/cookie/front.svg",
  41957. extra: 1125/1070,
  41958. bottom: 30/1155
  41959. }
  41960. },
  41961. },
  41962. [
  41963. {
  41964. name: "Big",
  41965. height: math.unit(50, "feet")
  41966. },
  41967. {
  41968. name: "Macro",
  41969. height: math.unit(100, "miles"),
  41970. default: true
  41971. },
  41972. {
  41973. name: "Megamacro",
  41974. height: math.unit(90000, "miles")
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(6, "feet"),
  41983. weight: math.unit(145, "lb"),
  41984. name: "Front",
  41985. image: {
  41986. source: "./media/characters/farzian/front.svg",
  41987. extra: 1902/1693,
  41988. bottom: 108/2010
  41989. }
  41990. },
  41991. },
  41992. [
  41993. {
  41994. name: "Macro",
  41995. height: math.unit(500, "feet"),
  41996. default: true
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(3 + 6/12, "feet"),
  42005. weight: math.unit(50, "lb"),
  42006. name: "Front",
  42007. image: {
  42008. source: "./media/characters/kimberly-tilson/front.svg",
  42009. extra: 1400/1322,
  42010. bottom: 36/1436
  42011. }
  42012. },
  42013. back: {
  42014. height: math.unit(3 + 6/12, "feet"),
  42015. weight: math.unit(50, "lb"),
  42016. name: "Back",
  42017. image: {
  42018. source: "./media/characters/kimberly-tilson/back.svg",
  42019. extra: 1370/1307,
  42020. bottom: 20/1390
  42021. }
  42022. },
  42023. },
  42024. [
  42025. {
  42026. name: "Normal",
  42027. height: math.unit(3 + 6/12, "feet"),
  42028. default: true
  42029. },
  42030. ]
  42031. ))
  42032. characterMakers.push(() => makeCharacter(
  42033. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42034. {
  42035. front: {
  42036. height: math.unit(1148, "feet"),
  42037. weight: math.unit(34057, "lb"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/harthos/front.svg",
  42041. extra: 1391/1339,
  42042. bottom: 13/1404
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(1148, "feet"),
  42050. default: true
  42051. },
  42052. ]
  42053. ))
  42054. characterMakers.push(() => makeCharacter(
  42055. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42056. {
  42057. front: {
  42058. height: math.unit(15, "feet"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/hypatia/front.svg",
  42062. extra: 1653/1591,
  42063. bottom: 79/1732
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Normal",
  42070. height: math.unit(15, "feet")
  42071. },
  42072. {
  42073. name: "Small",
  42074. height: math.unit(300, "feet")
  42075. },
  42076. {
  42077. name: "Macro",
  42078. height: math.unit(2500, "feet"),
  42079. default: true
  42080. },
  42081. {
  42082. name: "Mega Macro",
  42083. height: math.unit(1500, "miles")
  42084. },
  42085. {
  42086. name: "Giga Macro",
  42087. height: math.unit(1.5e6, "miles")
  42088. },
  42089. ]
  42090. ))
  42091. characterMakers.push(() => makeCharacter(
  42092. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42093. {
  42094. front: {
  42095. height: math.unit(6, "feet"),
  42096. weight: math.unit(200, "lb"),
  42097. name: "Front",
  42098. image: {
  42099. source: "./media/characters/wulver/front.svg",
  42100. extra: 1724/1632,
  42101. bottom: 130/1854
  42102. }
  42103. },
  42104. frontNsfw: {
  42105. height: math.unit(6, "feet"),
  42106. weight: math.unit(200, "lb"),
  42107. name: "Front (NSFW)",
  42108. image: {
  42109. source: "./media/characters/wulver/front-nsfw.svg",
  42110. extra: 1724/1632,
  42111. bottom: 130/1854
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Human-Sized",
  42118. height: math.unit(6, "feet")
  42119. },
  42120. {
  42121. name: "Normal",
  42122. height: math.unit(4, "meters"),
  42123. default: true
  42124. },
  42125. {
  42126. name: "Large",
  42127. height: math.unit(6, "m")
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(7, "feet"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/maru/front.svg",
  42139. extra: 1595/1570,
  42140. bottom: 0/1595
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Normal",
  42147. height: math.unit(7, "feet"),
  42148. default: true
  42149. },
  42150. {
  42151. name: "Macro",
  42152. height: math.unit(700, "feet")
  42153. },
  42154. {
  42155. name: "Mega Macro",
  42156. height: math.unit(25, "miles")
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(6, "feet"),
  42165. weight: math.unit(170, "lb"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/xenon/front.svg",
  42169. extra: 1376/1305,
  42170. bottom: 56/1432
  42171. }
  42172. },
  42173. back: {
  42174. height: math.unit(6, "feet"),
  42175. weight: math.unit(170, "lb"),
  42176. name: "Back",
  42177. image: {
  42178. source: "./media/characters/xenon/back.svg",
  42179. extra: 1328/1259,
  42180. bottom: 95/1423
  42181. }
  42182. },
  42183. maw: {
  42184. height: math.unit(0.52, "feet"),
  42185. name: "Maw",
  42186. image: {
  42187. source: "./media/characters/xenon/maw.svg"
  42188. }
  42189. },
  42190. handLeft: {
  42191. height: math.unit(0.82 * 169 / 153, "feet"),
  42192. name: "Hand (Left)",
  42193. image: {
  42194. source: "./media/characters/xenon/hand-left.svg"
  42195. }
  42196. },
  42197. handRight: {
  42198. height: math.unit(0.82, "feet"),
  42199. name: "Hand (Right)",
  42200. image: {
  42201. source: "./media/characters/xenon/hand-right.svg"
  42202. }
  42203. },
  42204. footLeft: {
  42205. height: math.unit(1.13, "feet"),
  42206. name: "Foot (Left)",
  42207. image: {
  42208. source: "./media/characters/xenon/foot-left.svg"
  42209. }
  42210. },
  42211. footRight: {
  42212. height: math.unit(1.13 * 194 / 196, "feet"),
  42213. name: "Foot (Right)",
  42214. image: {
  42215. source: "./media/characters/xenon/foot-right.svg"
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Micro",
  42222. height: math.unit(0.8, "inches")
  42223. },
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(6, "feet")
  42227. },
  42228. {
  42229. name: "Macro",
  42230. height: math.unit(50, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Macro+",
  42235. height: math.unit(250, "feet")
  42236. },
  42237. {
  42238. name: "Megamacro",
  42239. height: math.unit(1500, "feet")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(7 + 5/12, "feet"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/zane/front.svg",
  42251. extra: 1260/1203,
  42252. bottom: 94/1354
  42253. }
  42254. },
  42255. back: {
  42256. height: math.unit(5.05, "feet"),
  42257. name: "Back",
  42258. image: {
  42259. source: "./media/characters/zane/back.svg",
  42260. extra: 893/829,
  42261. bottom: 30/923
  42262. }
  42263. },
  42264. werewolf: {
  42265. height: math.unit(11, "feet"),
  42266. name: "Werewolf",
  42267. image: {
  42268. source: "./media/characters/zane/werewolf.svg",
  42269. extra: 1383/1323,
  42270. bottom: 89/1472
  42271. }
  42272. },
  42273. foot: {
  42274. height: math.unit(1.46, "feet"),
  42275. name: "Foot",
  42276. image: {
  42277. source: "./media/characters/zane/foot.svg"
  42278. }
  42279. },
  42280. footFront: {
  42281. height: math.unit(0.784, "feet"),
  42282. name: "Foot (Front)",
  42283. image: {
  42284. source: "./media/characters/zane/foot-front.svg"
  42285. }
  42286. },
  42287. dick: {
  42288. height: math.unit(1.95, "feet"),
  42289. name: "Dick",
  42290. image: {
  42291. source: "./media/characters/zane/dick.svg"
  42292. }
  42293. },
  42294. dickWerewolf: {
  42295. height: math.unit(3.77, "feet"),
  42296. name: "Dick (Werewolf)",
  42297. image: {
  42298. source: "./media/characters/zane/dick.svg"
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(7 + 5/12, "feet"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(6 + 2/12, "feet"),
  42315. weight: math.unit(284, "lb"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/benni-desparque/front.svg",
  42319. extra: 1353/1126,
  42320. bottom: 69/1422
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Civilian",
  42327. height: math.unit(6 + 2/12, "feet")
  42328. },
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(98, "feet"),
  42332. default: true
  42333. },
  42334. {
  42335. name: "Kaiju Fighter",
  42336. height: math.unit(268, "feet")
  42337. },
  42338. ]
  42339. ))
  42340. characterMakers.push(() => makeCharacter(
  42341. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42342. {
  42343. front: {
  42344. height: math.unit(5, "feet"),
  42345. weight: math.unit(105, "lb"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/maxine/front.svg",
  42349. extra: 1386/1250,
  42350. bottom: 71/1457
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Normal",
  42357. height: math.unit(5, "feet"),
  42358. default: true
  42359. },
  42360. ]
  42361. ))
  42362. characterMakers.push(() => makeCharacter(
  42363. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42364. {
  42365. front: {
  42366. height: math.unit(11 + 7/12, "feet"),
  42367. weight: math.unit(9576, "lb"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/scaly/front.svg",
  42371. extra: 888/867,
  42372. bottom: 36/924
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(11 + 7/12, "feet"),
  42380. default: true
  42381. },
  42382. ]
  42383. ))
  42384. characterMakers.push(() => makeCharacter(
  42385. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42386. {
  42387. front: {
  42388. height: math.unit(6 + 3/12, "feet"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/saelria/front.svg",
  42392. extra: 1243/1138,
  42393. bottom: 46/1289
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Micro",
  42400. height: math.unit(6, "inches"),
  42401. },
  42402. {
  42403. name: "Normal",
  42404. height: math.unit(6 + 3/12, "feet"),
  42405. default: true
  42406. },
  42407. {
  42408. name: "Macro",
  42409. height: math.unit(25, "feet")
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42415. {
  42416. front: {
  42417. height: math.unit(80, "meters"),
  42418. weight: math.unit(7000, "tonnes"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/tef/front.svg",
  42422. extra: 2036/1991,
  42423. bottom: 54/2090
  42424. }
  42425. },
  42426. back: {
  42427. height: math.unit(80, "meters"),
  42428. weight: math.unit(7000, "tonnes"),
  42429. name: "Back",
  42430. image: {
  42431. source: "./media/characters/tef/back.svg",
  42432. extra: 2036/1991,
  42433. bottom: 54/2090
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Macro",
  42440. height: math.unit(80, "meters"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(13, "feet"),
  42450. weight: math.unit(6, "tons"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/rover/front.svg",
  42454. extra: 1233/1156,
  42455. bottom: 50/1283
  42456. }
  42457. },
  42458. back: {
  42459. height: math.unit(13, "feet"),
  42460. weight: math.unit(6, "tons"),
  42461. name: "Back",
  42462. image: {
  42463. source: "./media/characters/rover/back.svg",
  42464. extra: 1327/1258,
  42465. bottom: 39/1366
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(13, "feet"),
  42473. default: true
  42474. },
  42475. {
  42476. name: "Macro",
  42477. height: math.unit(1300, "feet")
  42478. },
  42479. {
  42480. name: "Megamacro",
  42481. height: math.unit(1300, "miles")
  42482. },
  42483. {
  42484. name: "Gigamacro",
  42485. height: math.unit(1300000, "miles")
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(6, "feet"),
  42494. weight: math.unit(150, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/ariz/front.svg",
  42498. extra: 1401/1346,
  42499. bottom: 5/1406
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(10, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42513. {
  42514. front: {
  42515. height: math.unit(6, "feet"),
  42516. weight: math.unit(140, "lb"),
  42517. name: "Front",
  42518. image: {
  42519. source: "./media/characters/sigrun/front.svg",
  42520. extra: 1418/1359,
  42521. bottom: 27/1445
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Macro",
  42528. height: math.unit(35, "feet"),
  42529. default: true
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(6, "feet"),
  42538. weight: math.unit(150, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/numin/front.svg",
  42542. extra: 1433/1388,
  42543. bottom: 12/1445
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Macro",
  42550. height: math.unit(21.5, "km"),
  42551. default: true
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(6, "feet"),
  42560. weight: math.unit(463, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/melwa/front.svg",
  42564. extra: 1307/1248,
  42565. bottom: 93/1400
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Macro",
  42572. height: math.unit(50, "meters"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(325, "feet"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/zorkaiju/front.svg",
  42585. extra: 1955/1814,
  42586. bottom: 40/1995
  42587. }
  42588. },
  42589. frontExtended: {
  42590. height: math.unit(325, "feet"),
  42591. name: "Front (Extended)",
  42592. image: {
  42593. source: "./media/characters/zorkaiju/front-extended.svg",
  42594. extra: 1955/1814,
  42595. bottom: 40/1995
  42596. }
  42597. },
  42598. side: {
  42599. height: math.unit(325, "feet"),
  42600. name: "Side",
  42601. image: {
  42602. source: "./media/characters/zorkaiju/side.svg",
  42603. extra: 1495/1396,
  42604. bottom: 17/1512
  42605. }
  42606. },
  42607. sideExtended: {
  42608. height: math.unit(325, "feet"),
  42609. name: "Side (Extended)",
  42610. image: {
  42611. source: "./media/characters/zorkaiju/side-extended.svg",
  42612. extra: 1495/1396,
  42613. bottom: 17/1512
  42614. }
  42615. },
  42616. back: {
  42617. height: math.unit(325, "feet"),
  42618. name: "Back",
  42619. image: {
  42620. source: "./media/characters/zorkaiju/back.svg",
  42621. extra: 1959/1821,
  42622. bottom: 31/1990
  42623. }
  42624. },
  42625. backExtended: {
  42626. height: math.unit(325, "feet"),
  42627. name: "Back (Extended)",
  42628. image: {
  42629. source: "./media/characters/zorkaiju/back-extended.svg",
  42630. extra: 1959/1821,
  42631. bottom: 31/1990
  42632. }
  42633. },
  42634. hand: {
  42635. height: math.unit(58.4, "feet"),
  42636. name: "Hand",
  42637. image: {
  42638. source: "./media/characters/zorkaiju/hand.svg"
  42639. }
  42640. },
  42641. handExtended: {
  42642. height: math.unit(61.4, "feet"),
  42643. name: "Hand (Extended)",
  42644. image: {
  42645. source: "./media/characters/zorkaiju/hand-extended.svg"
  42646. }
  42647. },
  42648. foot: {
  42649. height: math.unit(95, "feet"),
  42650. name: "Foot",
  42651. image: {
  42652. source: "./media/characters/zorkaiju/foot.svg"
  42653. }
  42654. },
  42655. leftArm: {
  42656. height: math.unit(59, "feet"),
  42657. name: "Left Arm",
  42658. image: {
  42659. source: "./media/characters/zorkaiju/left-arm.svg"
  42660. }
  42661. },
  42662. rightArm: {
  42663. height: math.unit(59, "feet"),
  42664. name: "Right Arm",
  42665. image: {
  42666. source: "./media/characters/zorkaiju/right-arm.svg"
  42667. }
  42668. },
  42669. leftArmExtended: {
  42670. height: math.unit(59 * 1.033546, "feet"),
  42671. name: "Left Arm (Extended)",
  42672. image: {
  42673. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42674. }
  42675. },
  42676. rightArmExtended: {
  42677. height: math.unit(59 * 1.0496, "feet"),
  42678. name: "Right Arm (Extended)",
  42679. image: {
  42680. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42681. }
  42682. },
  42683. tail: {
  42684. height: math.unit(104, "feet"),
  42685. name: "Tail",
  42686. image: {
  42687. source: "./media/characters/zorkaiju/tail.svg"
  42688. }
  42689. },
  42690. tailExtended: {
  42691. height: math.unit(104, "feet"),
  42692. name: "Tail (Extended)",
  42693. image: {
  42694. source: "./media/characters/zorkaiju/tail-extended.svg"
  42695. }
  42696. },
  42697. tailBottom: {
  42698. height: math.unit(104, "feet"),
  42699. name: "Tail Bottom",
  42700. image: {
  42701. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42702. }
  42703. },
  42704. crystal: {
  42705. height: math.unit(27.54, "feet"),
  42706. name: "Crystal",
  42707. image: {
  42708. source: "./media/characters/zorkaiju/crystal.svg"
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Kaiju",
  42715. height: math.unit(325, "feet"),
  42716. default: true
  42717. },
  42718. ]
  42719. ))
  42720. characterMakers.push(() => makeCharacter(
  42721. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42722. {
  42723. front: {
  42724. height: math.unit(6 + 1/12, "feet"),
  42725. weight: math.unit(115, "lb"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/bailey-belfry/front.svg",
  42729. extra: 1240/1121,
  42730. bottom: 101/1341
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(6 + 1/12, "feet"),
  42738. default: true
  42739. },
  42740. ]
  42741. ))
  42742. characterMakers.push(() => makeCharacter(
  42743. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42744. {
  42745. side: {
  42746. height: math.unit(4, "meters"),
  42747. weight: math.unit(250, "kg"),
  42748. name: "Side",
  42749. image: {
  42750. source: "./media/characters/blacky/side.svg",
  42751. extra: 1027/919,
  42752. bottom: 43/1070
  42753. }
  42754. },
  42755. maw: {
  42756. height: math.unit(1, "meters"),
  42757. name: "Maw",
  42758. image: {
  42759. source: "./media/characters/blacky/maw.svg"
  42760. }
  42761. },
  42762. paw: {
  42763. height: math.unit(1, "meters"),
  42764. name: "Paw",
  42765. image: {
  42766. source: "./media/characters/blacky/paw.svg"
  42767. }
  42768. },
  42769. },
  42770. [
  42771. {
  42772. name: "Normal",
  42773. height: math.unit(4, "meters"),
  42774. default: true
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42780. {
  42781. front: {
  42782. height: math.unit(170, "cm"),
  42783. weight: math.unit(66, "kg"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/thux-ei/front.svg",
  42787. extra: 1109/1011,
  42788. bottom: 8/1117
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(170, "cm"),
  42796. default: true
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(5, "feet"),
  42805. weight: math.unit(120, "lb"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/roxanne-voltaire/front.svg",
  42809. extra: 1901/1779,
  42810. bottom: 53/1954
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(5, "feet"),
  42818. default: true
  42819. },
  42820. {
  42821. name: "Giant",
  42822. height: math.unit(50, "feet")
  42823. },
  42824. {
  42825. name: "Titan",
  42826. height: math.unit(500, "feet")
  42827. },
  42828. {
  42829. name: "Macro",
  42830. height: math.unit(5000, "feet")
  42831. },
  42832. {
  42833. name: "Megamacro",
  42834. height: math.unit(50000, "feet")
  42835. },
  42836. {
  42837. name: "Gigamacro",
  42838. height: math.unit(500000, "feet")
  42839. },
  42840. {
  42841. name: "Teramacro",
  42842. height: math.unit(5e6, "feet")
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(6 + 2/12, "feet"),
  42851. name: "Front",
  42852. image: {
  42853. source: "./media/characters/squeaks/front.svg",
  42854. extra: 1823/1768,
  42855. bottom: 138/1961
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Micro",
  42862. height: math.unit(0.5, "inches")
  42863. },
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(6 + 2/12, "feet"),
  42867. default: true
  42868. },
  42869. {
  42870. name: "Macro",
  42871. height: math.unit(600, "feet")
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42877. {
  42878. front: {
  42879. height: math.unit(1.72, "meters"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/archinger/front.svg",
  42883. extra: 1861/1675,
  42884. bottom: 125/1986
  42885. }
  42886. },
  42887. back: {
  42888. height: math.unit(1.72, "meters"),
  42889. name: "Back",
  42890. image: {
  42891. source: "./media/characters/archinger/back.svg",
  42892. extra: 1844/1701,
  42893. bottom: 104/1948
  42894. }
  42895. },
  42896. cock: {
  42897. height: math.unit(0.59, "feet"),
  42898. name: "Cock",
  42899. image: {
  42900. source: "./media/characters/archinger/cock.svg"
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Normal",
  42907. height: math.unit(1.72, "meters"),
  42908. default: true
  42909. },
  42910. {
  42911. name: "Macro",
  42912. height: math.unit(84, "meters")
  42913. },
  42914. {
  42915. name: "Macro+",
  42916. height: math.unit(112, "meters")
  42917. },
  42918. {
  42919. name: "Macro++",
  42920. height: math.unit(960, "meters")
  42921. },
  42922. {
  42923. name: "Macro+++",
  42924. height: math.unit(4, "km")
  42925. },
  42926. {
  42927. name: "Macro++++",
  42928. height: math.unit(48, "km")
  42929. },
  42930. {
  42931. name: "Macro+++++",
  42932. height: math.unit(4500, "km")
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42938. {
  42939. front: {
  42940. height: math.unit(5 + 5/12, "feet"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/alsnapz/front.svg",
  42944. extra: 1157/1065,
  42945. bottom: 42/1199
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(5 + 5/12, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42959. {
  42960. side: {
  42961. height: math.unit(3.2, "earths"),
  42962. name: "Side",
  42963. image: {
  42964. source: "./media/characters/mag/side.svg",
  42965. extra: 1331/1008,
  42966. bottom: 52/1383
  42967. }
  42968. },
  42969. wing: {
  42970. height: math.unit(1.94, "earths"),
  42971. name: "Wing",
  42972. image: {
  42973. source: "./media/characters/mag/wing.svg"
  42974. }
  42975. },
  42976. dick: {
  42977. height: math.unit(1.8, "earths"),
  42978. name: "Dick",
  42979. image: {
  42980. source: "./media/characters/mag/dick.svg"
  42981. }
  42982. },
  42983. ass: {
  42984. height: math.unit(1.33, "earths"),
  42985. name: "Ass",
  42986. image: {
  42987. source: "./media/characters/mag/ass.svg"
  42988. }
  42989. },
  42990. head: {
  42991. height: math.unit(1.1, "earths"),
  42992. name: "Head",
  42993. image: {
  42994. source: "./media/characters/mag/head.svg"
  42995. }
  42996. },
  42997. maw: {
  42998. height: math.unit(1.62, "earths"),
  42999. name: "Maw",
  43000. image: {
  43001. source: "./media/characters/mag/maw.svg"
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Small",
  43008. height: math.unit(162, "feet")
  43009. },
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(3.2, "earths"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(512, "feet"),
  43022. weight: math.unit(63509, "tonnes"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/vorrel-harroc/front.svg",
  43026. extra: 1075/1063,
  43027. bottom: 62/1137
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(10, "feet")
  43035. },
  43036. {
  43037. name: "Macro",
  43038. height: math.unit(512, "feet"),
  43039. default: true
  43040. },
  43041. {
  43042. name: "Megamacro",
  43043. height: math.unit(256, "miles")
  43044. },
  43045. {
  43046. name: "Gigamacro",
  43047. height: math.unit(4096, "miles")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43053. {
  43054. side: {
  43055. height: math.unit(50, "feet"),
  43056. name: "Side",
  43057. image: {
  43058. source: "./media/characters/froimar/side.svg",
  43059. extra: 855/638,
  43060. bottom: 99/954
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Macro",
  43067. height: math.unit(50, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(210, "miles"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/timothy/front.svg",
  43080. extra: 1007/943,
  43081. bottom: 62/1069
  43082. }
  43083. },
  43084. frontSkirt: {
  43085. height: math.unit(210, "miles"),
  43086. name: "Front (Skirt)",
  43087. image: {
  43088. source: "./media/characters/timothy/front-skirt.svg",
  43089. extra: 1007/943,
  43090. bottom: 62/1069
  43091. }
  43092. },
  43093. frontCoat: {
  43094. height: math.unit(210, "miles"),
  43095. name: "Front (Coat)",
  43096. image: {
  43097. source: "./media/characters/timothy/front-coat.svg",
  43098. extra: 1007/943,
  43099. bottom: 62/1069
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(210, "miles"),
  43107. default: true
  43108. },
  43109. {
  43110. name: "Megamacro",
  43111. height: math.unit(210000, "miles")
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(188, "feet"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/pyotr/front.svg",
  43123. extra: 1912/1826,
  43124. bottom: 18/1930
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(188, "feet"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "Megamacro",
  43136. height: math.unit(8, "miles")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43142. {
  43143. side: {
  43144. height: math.unit(10, "feet"),
  43145. weight: math.unit(4500, "lb"),
  43146. name: "Side",
  43147. image: {
  43148. source: "./media/characters/ackart/side.svg",
  43149. extra: 1776/1668,
  43150. bottom: 116/1892
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(10, "feet"),
  43158. default: true
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43164. {
  43165. side: {
  43166. height: math.unit(21, "feet"),
  43167. name: "Side",
  43168. image: {
  43169. source: "./media/characters/nolow/side.svg",
  43170. extra: 1484/1434,
  43171. bottom: 85/1569
  43172. }
  43173. },
  43174. sideErect: {
  43175. height: math.unit(21, "feet"),
  43176. name: "Side-erect",
  43177. image: {
  43178. source: "./media/characters/nolow/side-erect.svg",
  43179. extra: 1484/1434,
  43180. bottom: 85/1569
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Regular",
  43187. height: math.unit(12, "feet")
  43188. },
  43189. {
  43190. name: "Big Chee",
  43191. height: math.unit(21, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(7, "feet"),
  43201. weight: math.unit(250, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/nines/front.svg",
  43205. extra: 1741/1607,
  43206. bottom: 41/1782
  43207. }
  43208. },
  43209. side: {
  43210. height: math.unit(7, "feet"),
  43211. weight: math.unit(250, "lb"),
  43212. name: "Side",
  43213. image: {
  43214. source: "./media/characters/nines/side.svg",
  43215. extra: 1854/1735,
  43216. bottom: 93/1947
  43217. }
  43218. },
  43219. back: {
  43220. height: math.unit(7, "feet"),
  43221. weight: math.unit(250, "lb"),
  43222. name: "Back",
  43223. image: {
  43224. source: "./media/characters/nines/back.svg",
  43225. extra: 1748/1615,
  43226. bottom: 20/1768
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Megamacro",
  43233. height: math.unit(99, "km"),
  43234. default: true
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43240. {
  43241. front: {
  43242. height: math.unit(5 + 10/12, "feet"),
  43243. weight: math.unit(210, "lb"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/zenith/front.svg",
  43247. extra: 1531/1452,
  43248. bottom: 198/1729
  43249. }
  43250. },
  43251. back: {
  43252. height: math.unit(5 + 10/12, "feet"),
  43253. weight: math.unit(210, "lb"),
  43254. name: "Back",
  43255. image: {
  43256. source: "./media/characters/zenith/back.svg",
  43257. extra: 1571/1487,
  43258. bottom: 75/1646
  43259. }
  43260. },
  43261. },
  43262. [
  43263. {
  43264. name: "Normal",
  43265. height: math.unit(5 + 10/12, "feet"),
  43266. default: true
  43267. }
  43268. ]
  43269. ))
  43270. characterMakers.push(() => makeCharacter(
  43271. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43272. {
  43273. front: {
  43274. height: math.unit(4, "feet"),
  43275. weight: math.unit(60, "lb"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/jasper/front.svg",
  43279. extra: 1450/1379,
  43280. bottom: 19/1469
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(4, "feet"),
  43288. default: true
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(6 + 5/12, "feet"),
  43297. weight: math.unit(290, "lb"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/tiberius-thyben/front.svg",
  43301. extra: 757/739,
  43302. bottom: 39/796
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Micro",
  43309. height: math.unit(1.5, "inches")
  43310. },
  43311. {
  43312. name: "Normal",
  43313. height: math.unit(6 + 5/12, "feet"),
  43314. default: true
  43315. },
  43316. {
  43317. name: "Macro",
  43318. height: math.unit(300, "feet")
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(5 + 6/12, "feet"),
  43327. weight: math.unit(60, "kg"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/sabre/front.svg",
  43331. extra: 738/671,
  43332. bottom: 27/765
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Teeny",
  43339. height: math.unit(2, "inches")
  43340. },
  43341. {
  43342. name: "Smol",
  43343. height: math.unit(8, "inches")
  43344. },
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(5 + 6/12, "feet"),
  43348. default: true
  43349. },
  43350. {
  43351. name: "Mini-Macro",
  43352. height: math.unit(15, "feet")
  43353. },
  43354. {
  43355. name: "Macro",
  43356. height: math.unit(50, "feet")
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(6 + 4/12, "feet"),
  43365. weight: math.unit(170, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/charlie/front.svg",
  43369. extra: 1348/1228,
  43370. bottom: 15/1363
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Macro",
  43377. height: math.unit(1700, "meters"),
  43378. default: true
  43379. },
  43380. {
  43381. name: "MegaMacro",
  43382. height: math.unit(20400, "meters")
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(6 + 3/12, "feet"),
  43391. weight: math.unit(185, "lb"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/susan-grant/front.svg",
  43395. extra: 1351/1327,
  43396. bottom: 26/1377
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "Normal",
  43403. height: math.unit(6 + 3/12, "feet"),
  43404. default: true
  43405. },
  43406. {
  43407. name: "Macro",
  43408. height: math.unit(225, "feet")
  43409. },
  43410. {
  43411. name: "Macro+",
  43412. height: math.unit(900, "feet")
  43413. },
  43414. {
  43415. name: "MegaMacro",
  43416. height: math.unit(14400, "feet")
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(5 + 4/12, "feet"),
  43425. weight: math.unit(110, "lb"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/axel-isanov/front.svg",
  43429. extra: 1096/1065,
  43430. bottom: 13/1109
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(5 + 4/12, "feet"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(9, "feet"),
  43447. weight: math.unit(467, "lb"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/necahual/front.svg",
  43451. extra: 920/873,
  43452. bottom: 26/946
  43453. }
  43454. },
  43455. back: {
  43456. height: math.unit(9, "feet"),
  43457. weight: math.unit(467, "lb"),
  43458. name: "Back",
  43459. image: {
  43460. source: "./media/characters/necahual/back.svg",
  43461. extra: 930/884,
  43462. bottom: 16/946
  43463. }
  43464. },
  43465. frontUnderwear: {
  43466. height: math.unit(9, "feet"),
  43467. weight: math.unit(467, "lb"),
  43468. name: "Front (Underwear)",
  43469. image: {
  43470. source: "./media/characters/necahual/front-underwear.svg",
  43471. extra: 920/873,
  43472. bottom: 26/946
  43473. }
  43474. },
  43475. frontDressed: {
  43476. height: math.unit(9, "feet"),
  43477. weight: math.unit(467, "lb"),
  43478. name: "Front (Dressed)",
  43479. image: {
  43480. source: "./media/characters/necahual/front-dressed.svg",
  43481. extra: 920/873,
  43482. bottom: 26/946
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Comprsesed",
  43489. height: math.unit(9, "feet")
  43490. },
  43491. {
  43492. name: "Natural",
  43493. height: math.unit(15, "feet"),
  43494. default: true
  43495. },
  43496. {
  43497. name: "Boosted",
  43498. height: math.unit(50, "feet")
  43499. },
  43500. {
  43501. name: "Boosted+",
  43502. height: math.unit(150, "feet")
  43503. },
  43504. {
  43505. name: "Max",
  43506. height: math.unit(500, "feet")
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(22 + 1/12, "feet"),
  43515. weight: math.unit(3200, "lb"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/theo-acacia/front.svg",
  43519. extra: 1796/1741,
  43520. bottom: 83/1879
  43521. }
  43522. },
  43523. frontUnderwear: {
  43524. height: math.unit(22 + 1/12, "feet"),
  43525. weight: math.unit(3200, "lb"),
  43526. name: "Front (Underwear)",
  43527. image: {
  43528. source: "./media/characters/theo-acacia/front-underwear.svg",
  43529. extra: 1796/1741,
  43530. bottom: 83/1879
  43531. }
  43532. },
  43533. frontNude: {
  43534. height: math.unit(22 + 1/12, "feet"),
  43535. weight: math.unit(3200, "lb"),
  43536. name: "Front (Nude)",
  43537. image: {
  43538. source: "./media/characters/theo-acacia/front-nude.svg",
  43539. extra: 1796/1741,
  43540. bottom: 83/1879
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(22 + 1/12, "feet"),
  43548. default: true
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(20, "feet"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/astra/front.svg",
  43560. extra: 1850/1714,
  43561. bottom: 106/1956
  43562. }
  43563. },
  43564. frontUndressed: {
  43565. height: math.unit(20, "feet"),
  43566. name: "Front (Undressed)",
  43567. image: {
  43568. source: "./media/characters/astra/front-undressed.svg",
  43569. extra: 1926/1749,
  43570. bottom: 0/1926
  43571. }
  43572. },
  43573. hand: {
  43574. height: math.unit(1.53, "feet"),
  43575. name: "Hand",
  43576. image: {
  43577. source: "./media/characters/astra/hand.svg"
  43578. }
  43579. },
  43580. paw: {
  43581. height: math.unit(1.53, "feet"),
  43582. name: "Paw",
  43583. image: {
  43584. source: "./media/characters/astra/paw.svg"
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Smallest",
  43591. height: math.unit(20, "feet")
  43592. },
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(1e9, "miles"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Larger",
  43600. height: math.unit(5, "multiverses")
  43601. },
  43602. {
  43603. name: "Largest",
  43604. height: math.unit(1e9, "multiverses")
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(8, "feet"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/breanna/front.svg",
  43616. extra: 1912/1632,
  43617. bottom: 33/1945
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Smallest",
  43624. height: math.unit(8, "feet")
  43625. },
  43626. {
  43627. name: "Normal",
  43628. height: math.unit(1, "mile"),
  43629. default: true
  43630. },
  43631. {
  43632. name: "Maximum",
  43633. height: math.unit(1500000000000, "lightyears")
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43639. {
  43640. front: {
  43641. height: math.unit(5 + 11/12, "feet"),
  43642. weight: math.unit(155, "lb"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/cai/front.svg",
  43646. extra: 1823/1702,
  43647. bottom: 32/1855
  43648. }
  43649. },
  43650. back: {
  43651. height: math.unit(5 + 11/12, "feet"),
  43652. weight: math.unit(155, "lb"),
  43653. name: "Back",
  43654. image: {
  43655. source: "./media/characters/cai/back.svg",
  43656. extra: 1809/1708,
  43657. bottom: 31/1840
  43658. }
  43659. },
  43660. },
  43661. [
  43662. {
  43663. name: "Normal",
  43664. height: math.unit(5 + 11/12, "feet"),
  43665. default: true
  43666. },
  43667. {
  43668. name: "Big",
  43669. height: math.unit(15, "feet")
  43670. },
  43671. {
  43672. name: "Macro",
  43673. height: math.unit(200, "feet")
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(5 + 6/12, "feet"),
  43682. weight: math.unit(160, "lb"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43686. extra: 1227/1174,
  43687. bottom: 37/1264
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Macro",
  43694. height: math.unit(444, "meters"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(18 + 7/12, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/rex/front.svg",
  43707. extra: 1941/1807,
  43708. bottom: 66/2007
  43709. }
  43710. },
  43711. back: {
  43712. height: math.unit(18 + 7/12, "feet"),
  43713. name: "Back",
  43714. image: {
  43715. source: "./media/characters/rex/back.svg",
  43716. extra: 1937/1822,
  43717. bottom: 42/1979
  43718. }
  43719. },
  43720. boot: {
  43721. height: math.unit(3.45, "feet"),
  43722. name: "Boot",
  43723. image: {
  43724. source: "./media/characters/rex/boot.svg"
  43725. }
  43726. },
  43727. paw: {
  43728. height: math.unit(4.17, "feet"),
  43729. name: "Paw",
  43730. image: {
  43731. source: "./media/characters/rex/paw.svg"
  43732. }
  43733. },
  43734. head: {
  43735. height: math.unit(6.728, "feet"),
  43736. name: "Head",
  43737. image: {
  43738. source: "./media/characters/rex/head.svg"
  43739. }
  43740. },
  43741. },
  43742. [
  43743. {
  43744. name: "Nano",
  43745. height: math.unit(18 + 7/12, "feet")
  43746. },
  43747. {
  43748. name: "Micro",
  43749. height: math.unit(1.5, "megameters")
  43750. },
  43751. {
  43752. name: "Normal",
  43753. height: math.unit(440, "megameters"),
  43754. default: true
  43755. },
  43756. {
  43757. name: "Macro",
  43758. height: math.unit(2.5, "gigameters")
  43759. },
  43760. {
  43761. name: "Gigamacro",
  43762. height: math.unit(2, "galaxies")
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43768. {
  43769. side: {
  43770. height: math.unit(32, "feet"),
  43771. weight: math.unit(250000, "lb"),
  43772. name: "Side",
  43773. image: {
  43774. source: "./media/characters/silverwing/side.svg",
  43775. extra: 1100/1019,
  43776. bottom: 204/1304
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Normal",
  43783. height: math.unit(32, "feet"),
  43784. default: true
  43785. },
  43786. ]
  43787. ))
  43788. characterMakers.push(() => makeCharacter(
  43789. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43790. {
  43791. front: {
  43792. height: math.unit(6 + 6/12, "feet"),
  43793. weight: math.unit(350, "lb"),
  43794. name: "Front",
  43795. image: {
  43796. source: "./media/characters/tristan-hawthorne/front.svg",
  43797. extra: 1159/1124,
  43798. bottom: 37/1196
  43799. },
  43800. form: "labrador",
  43801. default: true
  43802. },
  43803. skunkFront: {
  43804. height: math.unit(4 + 6/12, "feet"),
  43805. weight: math.unit(120, "lb"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43809. extra: 1609/1551,
  43810. bottom: 169/1778
  43811. },
  43812. form: "skunk",
  43813. default: true
  43814. },
  43815. },
  43816. [
  43817. {
  43818. name: "Normal",
  43819. height: math.unit(6 + 6/12, "feet"),
  43820. form: "labrador",
  43821. default: true
  43822. },
  43823. {
  43824. name: "Normal",
  43825. height: math.unit(4 + 6/12, "feet"),
  43826. form: "skunk",
  43827. default: true
  43828. },
  43829. ],
  43830. {
  43831. "labrador": {
  43832. name: "Labrador",
  43833. default: true
  43834. },
  43835. "skunk": {
  43836. name: "Skunk"
  43837. }
  43838. }
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(5 + 11/12, "feet"),
  43845. weight: math.unit(190, "lb"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/mizu/front.svg",
  43849. extra: 1988/1788,
  43850. bottom: 14/2002
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(5 + 11/12, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(1.7, "feet"),
  43867. weight: math.unit(50, "lb"),
  43868. name: "Front",
  43869. image: {
  43870. source: "./media/characters/dechroma/front.svg",
  43871. extra: 1095/859,
  43872. bottom: 64/1159
  43873. }
  43874. },
  43875. },
  43876. [
  43877. {
  43878. name: "Normal",
  43879. height: math.unit(1.7, "feet"),
  43880. default: true
  43881. },
  43882. ]
  43883. ))
  43884. characterMakers.push(() => makeCharacter(
  43885. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43886. {
  43887. side: {
  43888. height: math.unit(30, "feet"),
  43889. name: "Side",
  43890. image: {
  43891. source: "./media/characters/veluren-thanazel/side.svg",
  43892. extra: 1611/633,
  43893. bottom: 118/1729
  43894. }
  43895. },
  43896. front: {
  43897. height: math.unit(30, "feet"),
  43898. name: "Front",
  43899. image: {
  43900. source: "./media/characters/veluren-thanazel/front.svg",
  43901. extra: 1486/636,
  43902. bottom: 238/1724
  43903. }
  43904. },
  43905. head: {
  43906. height: math.unit(21.4, "feet"),
  43907. name: "Head",
  43908. image: {
  43909. source: "./media/characters/veluren-thanazel/head.svg"
  43910. }
  43911. },
  43912. genitals: {
  43913. height: math.unit(19.4, "feet"),
  43914. name: "Genitals",
  43915. image: {
  43916. source: "./media/characters/veluren-thanazel/genitals.svg"
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Social",
  43923. height: math.unit(6, "feet")
  43924. },
  43925. {
  43926. name: "Play",
  43927. height: math.unit(12, "feet")
  43928. },
  43929. {
  43930. name: "True",
  43931. height: math.unit(30, "feet"),
  43932. default: true
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(7 + 6/12, "feet"),
  43941. weight: math.unit(500, "kg"),
  43942. name: "Front",
  43943. image: {
  43944. source: "./media/characters/arcturas/front.svg",
  43945. extra: 1700/1500,
  43946. bottom: 145/1845
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(7 + 6/12, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43960. {
  43961. side: {
  43962. height: math.unit(6, "feet"),
  43963. weight: math.unit(2, "tons"),
  43964. name: "Side",
  43965. image: {
  43966. source: "./media/characters/vitaen/side.svg",
  43967. extra: 1157/617,
  43968. bottom: 122/1279
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(6, "feet"),
  43976. default: true
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43982. {
  43983. front: {
  43984. height: math.unit(19, "feet"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/fia-dreamweaver/front.svg",
  43988. extra: 1630/1504,
  43989. bottom: 25/1655
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Normal",
  43996. height: math.unit(19, "feet"),
  43997. default: true
  43998. },
  43999. ]
  44000. ))
  44001. characterMakers.push(() => makeCharacter(
  44002. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44003. {
  44004. front: {
  44005. height: math.unit(5 + 4/12, "feet"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/artan/front.svg",
  44009. extra: 1618/1535,
  44010. bottom: 46/1664
  44011. }
  44012. },
  44013. back: {
  44014. height: math.unit(5 + 4/12, "feet"),
  44015. name: "Back",
  44016. image: {
  44017. source: "./media/characters/artan/back.svg",
  44018. extra: 1618/1543,
  44019. bottom: 31/1649
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(5 + 4/12, "feet"),
  44027. default: true
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44033. {
  44034. side: {
  44035. height: math.unit(182, "cm"),
  44036. weight: math.unit(1000, "lb"),
  44037. name: "Side",
  44038. image: {
  44039. source: "./media/characters/silver-dragon/side.svg",
  44040. extra: 710/287,
  44041. bottom: 88/798
  44042. }
  44043. },
  44044. },
  44045. [
  44046. {
  44047. name: "Normal",
  44048. height: math.unit(182, "cm"),
  44049. default: true
  44050. },
  44051. ]
  44052. ))
  44053. characterMakers.push(() => makeCharacter(
  44054. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44055. {
  44056. side: {
  44057. height: math.unit(6 + 6/12, "feet"),
  44058. weight: math.unit(1.5, "tons"),
  44059. name: "Side",
  44060. image: {
  44061. source: "./media/characters/zephyr/side.svg",
  44062. extra: 1433/586,
  44063. bottom: 109/1542
  44064. }
  44065. },
  44066. },
  44067. [
  44068. {
  44069. name: "Normal",
  44070. height: math.unit(6 + 6/12, "feet"),
  44071. default: true
  44072. },
  44073. ]
  44074. ))
  44075. characterMakers.push(() => makeCharacter(
  44076. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44077. {
  44078. side: {
  44079. height: math.unit(1, "feet"),
  44080. name: "Side",
  44081. image: {
  44082. source: "./media/characters/vixye/side.svg",
  44083. extra: 632/541,
  44084. bottom: 0/632
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Normal",
  44091. height: math.unit(1, "feet"),
  44092. default: true
  44093. },
  44094. {
  44095. name: "True",
  44096. height: math.unit(1e15, "multiverses")
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(8 + 2/12, "feet"),
  44105. weight: math.unit(650, "lb"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44109. extra: 1174/1137,
  44110. bottom: 82/1256
  44111. }
  44112. },
  44113. back: {
  44114. height: math.unit(8 + 2/12, "feet"),
  44115. weight: math.unit(650, "lb"),
  44116. name: "Back",
  44117. image: {
  44118. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44119. extra: 1204/1157,
  44120. bottom: 46/1250
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Wildform",
  44127. height: math.unit(8 + 2/12, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(18, "feet"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/cyphin/front.svg",
  44140. extra: 970/886,
  44141. bottom: 42/1012
  44142. }
  44143. },
  44144. back: {
  44145. height: math.unit(18, "feet"),
  44146. name: "Back",
  44147. image: {
  44148. source: "./media/characters/cyphin/back.svg",
  44149. extra: 1009/894,
  44150. bottom: 24/1033
  44151. }
  44152. },
  44153. head: {
  44154. height: math.unit(5.05, "feet"),
  44155. name: "Head",
  44156. image: {
  44157. source: "./media/characters/cyphin/head.svg"
  44158. }
  44159. },
  44160. tailbud: {
  44161. height: math.unit(5, "feet"),
  44162. name: "Tailbud",
  44163. image: {
  44164. source: "./media/characters/cyphin/tailbud.svg"
  44165. }
  44166. },
  44167. },
  44168. [
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44173. {
  44174. side: {
  44175. height: math.unit(10, "feet"),
  44176. weight: math.unit(6, "tons"),
  44177. name: "Side",
  44178. image: {
  44179. source: "./media/characters/raijin/side.svg",
  44180. extra: 1529/613,
  44181. bottom: 337/1866
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(10, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44195. {
  44196. side: {
  44197. height: math.unit(9, "feet"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/nilghais/side.svg",
  44201. extra: 1047/744,
  44202. bottom: 91/1138
  44203. }
  44204. },
  44205. head: {
  44206. height: math.unit(3.14, "feet"),
  44207. name: "Head",
  44208. image: {
  44209. source: "./media/characters/nilghais/head.svg"
  44210. }
  44211. },
  44212. mouth: {
  44213. height: math.unit(4.6, "feet"),
  44214. name: "Mouth",
  44215. image: {
  44216. source: "./media/characters/nilghais/mouth.svg"
  44217. }
  44218. },
  44219. wings: {
  44220. height: math.unit(24, "feet"),
  44221. name: "Wings",
  44222. image: {
  44223. source: "./media/characters/nilghais/wings.svg"
  44224. }
  44225. },
  44226. ass: {
  44227. height: math.unit(6.12, "feet"),
  44228. name: "Ass",
  44229. image: {
  44230. source: "./media/characters/nilghais/ass.svg"
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Normal",
  44237. height: math.unit(9, "feet"),
  44238. default: true
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44244. {
  44245. regular: {
  44246. height: math.unit(16 + 2/12, "feet"),
  44247. weight: math.unit(2300, "lb"),
  44248. name: "Regular",
  44249. image: {
  44250. source: "./media/characters/zolgar/regular.svg",
  44251. extra: 1246/1004,
  44252. bottom: 124/1370
  44253. }
  44254. },
  44255. boxers: {
  44256. height: math.unit(16 + 2/12, "feet"),
  44257. weight: math.unit(2300, "lb"),
  44258. name: "Boxers",
  44259. image: {
  44260. source: "./media/characters/zolgar/boxers.svg",
  44261. extra: 1246/1004,
  44262. bottom: 124/1370
  44263. }
  44264. },
  44265. armored: {
  44266. height: math.unit(16 + 2/12, "feet"),
  44267. weight: math.unit(2300, "lb"),
  44268. name: "Armored",
  44269. image: {
  44270. source: "./media/characters/zolgar/armored.svg",
  44271. extra: 1246/1004,
  44272. bottom: 124/1370
  44273. }
  44274. },
  44275. goth: {
  44276. height: math.unit(16 + 2/12, "feet"),
  44277. weight: math.unit(2300, "lb"),
  44278. name: "Goth",
  44279. image: {
  44280. source: "./media/characters/zolgar/goth.svg",
  44281. extra: 1246/1004,
  44282. bottom: 124/1370
  44283. }
  44284. },
  44285. },
  44286. [
  44287. {
  44288. name: "Shrunken Down",
  44289. height: math.unit(9 + 2/12, "feet")
  44290. },
  44291. {
  44292. name: "Normal",
  44293. height: math.unit(16 + 2/12, "feet"),
  44294. default: true
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(6, "feet"),
  44303. weight: math.unit(168, "lb"),
  44304. name: "Front",
  44305. image: {
  44306. source: "./media/characters/luca/front.svg",
  44307. extra: 841/667,
  44308. bottom: 102/943
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(6, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44322. {
  44323. side: {
  44324. height: math.unit(7 + 3/12, "feet"),
  44325. weight: math.unit(312, "lb"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/zezo/side.svg",
  44329. extra: 1192/1067,
  44330. bottom: 63/1255
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(7 + 3/12, "feet"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44344. {
  44345. front: {
  44346. height: math.unit(5 + 5/12, "feet"),
  44347. weight: math.unit(170, "lb"),
  44348. name: "Front",
  44349. image: {
  44350. source: "./media/characters/mayso/front.svg",
  44351. extra: 1215/1108,
  44352. bottom: 16/1231
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "Normal",
  44359. height: math.unit(5 + 5/12, "feet"),
  44360. default: true
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44366. {
  44367. front: {
  44368. height: math.unit(4 + 3/12, "feet"),
  44369. weight: math.unit(80, "lb"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/hess/front.svg",
  44373. extra: 1200/1123,
  44374. bottom: 16/1216
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(4 + 3/12, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44388. {
  44389. front: {
  44390. height: math.unit(1.9, "meters"),
  44391. name: "Front",
  44392. image: {
  44393. source: "./media/characters/ashgar/front.svg",
  44394. extra: 1177/1146,
  44395. bottom: 99/1276
  44396. }
  44397. },
  44398. back: {
  44399. height: math.unit(1.9, "meters"),
  44400. name: "Back",
  44401. image: {
  44402. source: "./media/characters/ashgar/back.svg",
  44403. extra: 1201/1183,
  44404. bottom: 53/1254
  44405. }
  44406. },
  44407. feral: {
  44408. height: math.unit(1.4, "meters"),
  44409. name: "Feral",
  44410. image: {
  44411. source: "./media/characters/ashgar/feral.svg",
  44412. extra: 370/345,
  44413. bottom: 45/415
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(1.9, "meters"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44427. {
  44428. regular: {
  44429. height: math.unit(6, "feet"),
  44430. weight: math.unit(220, "lb"),
  44431. name: "Regular",
  44432. image: {
  44433. source: "./media/characters/phillip/regular.svg",
  44434. extra: 1373/1277,
  44435. bottom: 75/1448
  44436. }
  44437. },
  44438. dressed: {
  44439. height: math.unit(6, "feet"),
  44440. weight: math.unit(220, "lb"),
  44441. name: "Dressed",
  44442. image: {
  44443. source: "./media/characters/phillip/dressed.svg",
  44444. extra: 1373/1277,
  44445. bottom: 75/1448
  44446. }
  44447. },
  44448. paw: {
  44449. height: math.unit(1.44, "feet"),
  44450. name: "Paw",
  44451. image: {
  44452. source: "./media/characters/phillip/paw.svg"
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44466. {
  44467. side: {
  44468. height: math.unit(42, "feet"),
  44469. name: "Side",
  44470. image: {
  44471. source: "./media/characters/uvula/side.svg",
  44472. extra: 683/586,
  44473. bottom: 60/743
  44474. }
  44475. },
  44476. front: {
  44477. height: math.unit(42, "feet"),
  44478. name: "Front",
  44479. image: {
  44480. source: "./media/characters/uvula/front.svg",
  44481. extra: 705/613,
  44482. bottom: 54/759
  44483. }
  44484. },
  44485. maw: {
  44486. height: math.unit(23.5, "feet"),
  44487. name: "Maw",
  44488. image: {
  44489. source: "./media/characters/uvula/maw.svg"
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Original Size",
  44496. height: math.unit(14, "inches")
  44497. },
  44498. {
  44499. name: "Human Size",
  44500. height: math.unit(6, "feet")
  44501. },
  44502. {
  44503. name: "Big",
  44504. height: math.unit(42, "feet"),
  44505. default: true
  44506. },
  44507. {
  44508. name: "Bigger",
  44509. height: math.unit(100, "feet")
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44515. {
  44516. front: {
  44517. height: math.unit(5 + 11/12, "feet"),
  44518. name: "Front",
  44519. image: {
  44520. source: "./media/characters/lannah/front.svg",
  44521. extra: 1208/1113,
  44522. bottom: 97/1305
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(5 + 11/12, "feet"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44536. {
  44537. front: {
  44538. height: math.unit(6 + 3/12, "feet"),
  44539. weight: math.unit(3.5, "tons"),
  44540. name: "Front",
  44541. image: {
  44542. source: "./media/characters/emberflame/front.svg",
  44543. extra: 1198/672,
  44544. bottom: 82/1280
  44545. }
  44546. },
  44547. side: {
  44548. height: math.unit(6 + 3/12, "feet"),
  44549. weight: math.unit(3.5, "tons"),
  44550. name: "Side",
  44551. image: {
  44552. source: "./media/characters/emberflame/side.svg",
  44553. extra: 938/527,
  44554. bottom: 56/994
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(6 + 3/12, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44568. {
  44569. side: {
  44570. height: math.unit(17.5, "feet"),
  44571. weight: math.unit(35, "tons"),
  44572. name: "Side",
  44573. image: {
  44574. source: "./media/characters/sophie-ambrose/side.svg",
  44575. extra: 1573/1242,
  44576. bottom: 71/1644
  44577. }
  44578. },
  44579. maw: {
  44580. height: math.unit(7.4, "feet"),
  44581. name: "Maw",
  44582. image: {
  44583. source: "./media/characters/sophie-ambrose/maw.svg"
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(17.5, "feet"),
  44591. default: true
  44592. },
  44593. ]
  44594. ))
  44595. characterMakers.push(() => makeCharacter(
  44596. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44597. {
  44598. front: {
  44599. height: math.unit(280, "feet"),
  44600. weight: math.unit(550, "tons"),
  44601. name: "Front",
  44602. image: {
  44603. source: "./media/characters/king-mugi/front.svg",
  44604. extra: 1102/947,
  44605. bottom: 104/1206
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "King Mugi",
  44612. height: math.unit(280, "feet"),
  44613. default: true
  44614. },
  44615. ]
  44616. ))
  44617. characterMakers.push(() => makeCharacter(
  44618. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44619. {
  44620. front: {
  44621. height: math.unit(64, "meters"),
  44622. name: "Front",
  44623. image: {
  44624. source: "./media/characters/nova-fox/front.svg",
  44625. extra: 1310/1246,
  44626. bottom: 65/1375
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Macro",
  44633. height: math.unit(64, "meters"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(6 + 3/12, "feet"),
  44643. weight: math.unit(170, "lb"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/sam-bat/front.svg",
  44647. extra: 1601/1411,
  44648. bottom: 125/1726
  44649. }
  44650. },
  44651. back: {
  44652. height: math.unit(6 + 3/12, "feet"),
  44653. weight: math.unit(170, "lb"),
  44654. name: "Back",
  44655. image: {
  44656. source: "./media/characters/sam-bat/back.svg",
  44657. extra: 1577/1405,
  44658. bottom: 58/1635
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(6 + 3/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44672. {
  44673. front: {
  44674. height: math.unit(59, "feet"),
  44675. weight: math.unit(40000, "lb"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/inari/front.svg",
  44679. extra: 1884/1350,
  44680. bottom: 95/1979
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Gigantamax",
  44687. height: math.unit(59, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(5 + 8/12, "feet"),
  44697. name: "Front",
  44698. image: {
  44699. source: "./media/characters/elizabeth/front.svg",
  44700. extra: 1395/1298,
  44701. bottom: 54/1449
  44702. }
  44703. },
  44704. mouth: {
  44705. height: math.unit(1.97, "feet"),
  44706. name: "Mouth",
  44707. image: {
  44708. source: "./media/characters/elizabeth/mouth.svg"
  44709. }
  44710. },
  44711. foot: {
  44712. height: math.unit(1.17, "feet"),
  44713. name: "Foot",
  44714. image: {
  44715. source: "./media/characters/elizabeth/foot.svg"
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(5 + 8/12, "feet"),
  44723. default: true
  44724. },
  44725. {
  44726. name: "Minimacro",
  44727. height: math.unit(18, "feet")
  44728. },
  44729. {
  44730. name: "Macro",
  44731. height: math.unit(180, "feet")
  44732. },
  44733. ]
  44734. ))
  44735. characterMakers.push(() => makeCharacter(
  44736. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44737. {
  44738. front: {
  44739. height: math.unit(5 + 2/12, "feet"),
  44740. name: "Front",
  44741. image: {
  44742. source: "./media/characters/october-gossamer/front.svg",
  44743. extra: 505/454,
  44744. bottom: 7/512
  44745. }
  44746. },
  44747. back: {
  44748. height: math.unit(5 + 2/12, "feet"),
  44749. name: "Back",
  44750. image: {
  44751. source: "./media/characters/october-gossamer/back.svg",
  44752. extra: 501/454,
  44753. bottom: 11/512
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Normal",
  44760. height: math.unit(5 + 2/12, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(5, "feet"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/epiglottis/front.svg",
  44773. extra: 923/849,
  44774. bottom: 17/940
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Original Size",
  44781. height: math.unit(10, "inches")
  44782. },
  44783. {
  44784. name: "Human Size",
  44785. height: math.unit(5, "feet"),
  44786. default: true
  44787. },
  44788. {
  44789. name: "Big",
  44790. height: math.unit(25, "feet")
  44791. },
  44792. {
  44793. name: "Bigger",
  44794. height: math.unit(50, "feet")
  44795. },
  44796. {
  44797. name: "oh lawd",
  44798. height: math.unit(75, "feet")
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44804. {
  44805. front: {
  44806. height: math.unit(2 + 4/12, "feet"),
  44807. weight: math.unit(60, "lb"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/lerm/front.svg",
  44811. extra: 796/790,
  44812. bottom: 79/875
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(2 + 4/12, "feet"),
  44820. default: true
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(5.5, "feet"),
  44829. weight: math.unit(130, "lb"),
  44830. name: "Front",
  44831. image: {
  44832. source: "./media/characters/xena-nebadon/front.svg",
  44833. extra: 1828/1730,
  44834. bottom: 79/1907
  44835. }
  44836. },
  44837. },
  44838. [
  44839. {
  44840. name: "Tiny Puppy",
  44841. height: math.unit(3, "inches")
  44842. },
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(5.5, "feet"),
  44846. default: true
  44847. },
  44848. {
  44849. name: "Lotta Lady",
  44850. height: math.unit(12, "feet")
  44851. },
  44852. {
  44853. name: "Pretty Big",
  44854. height: math.unit(100, "feet")
  44855. },
  44856. {
  44857. name: "Big",
  44858. height: math.unit(500, "feet")
  44859. },
  44860. {
  44861. name: "Skyscraper Toys",
  44862. height: math.unit(2500, "feet")
  44863. },
  44864. {
  44865. name: "Plane Catcher",
  44866. height: math.unit(8, "miles")
  44867. },
  44868. {
  44869. name: "Planet Toys",
  44870. height: math.unit(15, "earths")
  44871. },
  44872. {
  44873. name: "Stardust",
  44874. height: math.unit(0.25, "galaxies")
  44875. },
  44876. {
  44877. name: "Snacks",
  44878. height: math.unit(70, "universes")
  44879. },
  44880. ]
  44881. ))
  44882. characterMakers.push(() => makeCharacter(
  44883. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44884. {
  44885. front: {
  44886. height: math.unit(1.6, "meters"),
  44887. weight: math.unit(60, "kg"),
  44888. name: "Front",
  44889. image: {
  44890. source: "./media/characters/bounty/front.svg",
  44891. extra: 1426/1308,
  44892. bottom: 15/1441
  44893. }
  44894. },
  44895. back: {
  44896. height: math.unit(1.6, "meters"),
  44897. weight: math.unit(60, "kg"),
  44898. name: "Back",
  44899. image: {
  44900. source: "./media/characters/bounty/back.svg",
  44901. extra: 1417/1307,
  44902. bottom: 8/1425
  44903. }
  44904. },
  44905. },
  44906. [
  44907. {
  44908. name: "Normal",
  44909. height: math.unit(1.6, "meters"),
  44910. default: true
  44911. },
  44912. {
  44913. name: "Macro",
  44914. height: math.unit(300, "meters")
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44920. {
  44921. front: {
  44922. height: math.unit(2 + 8/12, "feet"),
  44923. weight: math.unit(15, "lb"),
  44924. name: "Front",
  44925. image: {
  44926. source: "./media/characters/mochi/front.svg",
  44927. extra: 1022/852,
  44928. bottom: 435/1457
  44929. }
  44930. },
  44931. back: {
  44932. height: math.unit(2 + 8/12, "feet"),
  44933. weight: math.unit(15, "lb"),
  44934. name: "Back",
  44935. image: {
  44936. source: "./media/characters/mochi/back.svg",
  44937. extra: 1335/1119,
  44938. bottom: 39/1374
  44939. }
  44940. },
  44941. bird: {
  44942. height: math.unit(2 + 8/12, "feet"),
  44943. weight: math.unit(15, "lb"),
  44944. name: "Bird",
  44945. image: {
  44946. source: "./media/characters/mochi/bird.svg",
  44947. extra: 1251/1113,
  44948. bottom: 178/1429
  44949. }
  44950. },
  44951. kaiju: {
  44952. height: math.unit(154, "feet"),
  44953. weight: math.unit(1e7, "lb"),
  44954. name: "Kaiju",
  44955. image: {
  44956. source: "./media/characters/mochi/kaiju.svg",
  44957. extra: 460/324,
  44958. bottom: 40/500
  44959. }
  44960. },
  44961. head: {
  44962. height: math.unit(1.21, "feet"),
  44963. name: "Head",
  44964. image: {
  44965. source: "./media/characters/mochi/head.svg"
  44966. }
  44967. },
  44968. alternateTail: {
  44969. height: math.unit(2 + 8/12, "feet"),
  44970. weight: math.unit(45, "lb"),
  44971. name: "Alternate Tail",
  44972. image: {
  44973. source: "./media/characters/mochi/alternate-tail.svg",
  44974. extra: 139/76,
  44975. bottom: 45/184
  44976. }
  44977. },
  44978. },
  44979. [
  44980. {
  44981. name: "Micro",
  44982. height: math.unit(2, "inches")
  44983. },
  44984. {
  44985. name: "Normal",
  44986. height: math.unit(2 + 8/12, "feet"),
  44987. default: true
  44988. },
  44989. {
  44990. name: "Macro",
  44991. height: math.unit(106, "feet")
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44997. {
  44998. front: {
  44999. height: math.unit(5.67, "feet"),
  45000. weight: math.unit(135, "lb"),
  45001. name: "Front",
  45002. image: {
  45003. source: "./media/characters/sarel/front.svg",
  45004. extra: 865/788,
  45005. bottom: 97/962
  45006. }
  45007. },
  45008. back: {
  45009. height: math.unit(5.67, "feet"),
  45010. weight: math.unit(135, "lb"),
  45011. name: "Back",
  45012. image: {
  45013. source: "./media/characters/sarel/back.svg",
  45014. extra: 857/777,
  45015. bottom: 32/889
  45016. }
  45017. },
  45018. chozoan: {
  45019. height: math.unit(5.67, "feet"),
  45020. weight: math.unit(135, "lb"),
  45021. name: "Chozoan",
  45022. image: {
  45023. source: "./media/characters/sarel/chozoan.svg",
  45024. extra: 865/788,
  45025. bottom: 97/962
  45026. }
  45027. },
  45028. current: {
  45029. height: math.unit(5.67, "feet"),
  45030. weight: math.unit(135, "lb"),
  45031. name: "Current",
  45032. image: {
  45033. source: "./media/characters/sarel/current.svg",
  45034. extra: 865/788,
  45035. bottom: 97/962
  45036. }
  45037. },
  45038. head: {
  45039. height: math.unit(1.77, "feet"),
  45040. name: "Head",
  45041. image: {
  45042. source: "./media/characters/sarel/head.svg"
  45043. }
  45044. },
  45045. claws: {
  45046. height: math.unit(1.8, "feet"),
  45047. name: "Claws",
  45048. image: {
  45049. source: "./media/characters/sarel/claws.svg"
  45050. }
  45051. },
  45052. clawsAlt: {
  45053. height: math.unit(1.8, "feet"),
  45054. name: "Claws-alt",
  45055. image: {
  45056. source: "./media/characters/sarel/claws-alt.svg"
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(5.67, "feet"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(5500, "feet"),
  45073. name: "Front",
  45074. image: {
  45075. source: "./media/characters/alyonia/front.svg",
  45076. extra: 1200/1135,
  45077. bottom: 29/1229
  45078. }
  45079. },
  45080. back: {
  45081. height: math.unit(5500, "feet"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/alyonia/back.svg",
  45085. extra: 1205/1138,
  45086. bottom: 10/1215
  45087. }
  45088. },
  45089. },
  45090. [
  45091. {
  45092. name: "Small",
  45093. height: math.unit(10, "feet")
  45094. },
  45095. {
  45096. name: "Macro",
  45097. height: math.unit(500, "feet")
  45098. },
  45099. {
  45100. name: "Mega Macro",
  45101. height: math.unit(5500, "feet"),
  45102. default: true
  45103. },
  45104. {
  45105. name: "Mega Macro+",
  45106. height: math.unit(500000, "feet")
  45107. },
  45108. {
  45109. name: "Giga Macro",
  45110. height: math.unit(3000, "miles")
  45111. },
  45112. {
  45113. name: "Tera Macro",
  45114. height: math.unit(2.8e6, "miles")
  45115. },
  45116. {
  45117. name: "Galactic",
  45118. height: math.unit(120000, "lightyears")
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45124. {
  45125. werewolf: {
  45126. height: math.unit(8, "feet"),
  45127. weight: math.unit(425, "lb"),
  45128. name: "Werewolf",
  45129. image: {
  45130. source: "./media/characters/autumn/werewolf.svg",
  45131. extra: 2154/2031,
  45132. bottom: 160/2314
  45133. }
  45134. },
  45135. human: {
  45136. height: math.unit(5 + 8/12, "feet"),
  45137. weight: math.unit(150, "lb"),
  45138. name: "Human",
  45139. image: {
  45140. source: "./media/characters/autumn/human.svg",
  45141. extra: 1200/1149,
  45142. bottom: 30/1230
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Normal",
  45149. height: math.unit(8, "feet"),
  45150. default: true
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45156. {
  45157. front: {
  45158. height: math.unit(8 + 5/12, "feet"),
  45159. weight: math.unit(825, "lb"),
  45160. name: "Front",
  45161. image: {
  45162. source: "./media/characters/cobalt-charizard/front.svg",
  45163. extra: 1268/1155,
  45164. bottom: 122/1390
  45165. }
  45166. },
  45167. side: {
  45168. height: math.unit(8 + 5/12, "feet"),
  45169. weight: math.unit(825, "lb"),
  45170. name: "Side",
  45171. image: {
  45172. source: "./media/characters/cobalt-charizard/side.svg",
  45173. extra: 1348/1257,
  45174. bottom: 58/1406
  45175. }
  45176. },
  45177. gMax: {
  45178. height: math.unit(134 + 11/12, "feet"),
  45179. name: "G-Max",
  45180. image: {
  45181. source: "./media/characters/cobalt-charizard/g-max.svg",
  45182. extra: 1835/1541,
  45183. bottom: 151/1986
  45184. }
  45185. },
  45186. },
  45187. [
  45188. {
  45189. name: "Normal",
  45190. height: math.unit(8 + 5/12, "feet"),
  45191. default: true
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(6 + 3/12, "feet"),
  45200. weight: math.unit(210, "lb"),
  45201. name: "Front",
  45202. image: {
  45203. source: "./media/characters/stella/front.svg",
  45204. extra: 3549/3335,
  45205. bottom: 51/3600
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Normal",
  45212. height: math.unit(6 + 3/12, "feet"),
  45213. default: true
  45214. },
  45215. ]
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45219. {
  45220. front: {
  45221. height: math.unit(5, "feet"),
  45222. weight: math.unit(90, "lb"),
  45223. name: "Front",
  45224. image: {
  45225. source: "./media/characters/riley-bishop/front.svg",
  45226. extra: 1450/1428,
  45227. bottom: 152/1602
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(5, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45241. {
  45242. side: {
  45243. height: math.unit(8 + 2/12, "feet"),
  45244. weight: math.unit(500, "kg"),
  45245. name: "Side",
  45246. image: {
  45247. source: "./media/characters/theo-arcanine/side.svg",
  45248. extra: 1342/1074,
  45249. bottom: 111/1453
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(8 + 2/12, "feet"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(4, "feet"),
  45266. name: "Front",
  45267. image: {
  45268. source: "./media/characters/kali/front.svg",
  45269. extra: 1921/1357,
  45270. bottom: 70/1991
  45271. }
  45272. },
  45273. },
  45274. [
  45275. {
  45276. name: "Normal",
  45277. height: math.unit(4, "feet"),
  45278. default: true
  45279. },
  45280. {
  45281. name: "Macro",
  45282. height: math.unit(32, "meters")
  45283. },
  45284. {
  45285. name: "Macro+",
  45286. height: math.unit(150, "meters")
  45287. },
  45288. {
  45289. name: "Megamacro",
  45290. height: math.unit(7500, "meters")
  45291. },
  45292. {
  45293. name: "Megamacro+",
  45294. height: math.unit(80, "kilometers")
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45300. {
  45301. side: {
  45302. height: math.unit(5 + 11/12, "feet"),
  45303. weight: math.unit(236, "lb"),
  45304. name: "Side",
  45305. image: {
  45306. source: "./media/characters/gapp/side.svg",
  45307. extra: 775/340,
  45308. bottom: 58/833
  45309. }
  45310. },
  45311. mouth: {
  45312. height: math.unit(2.98, "feet"),
  45313. name: "Mouth",
  45314. image: {
  45315. source: "./media/characters/gapp/mouth.svg"
  45316. }
  45317. },
  45318. },
  45319. [
  45320. {
  45321. name: "Normal",
  45322. height: math.unit(5 + 1/12, "feet"),
  45323. default: true
  45324. },
  45325. ]
  45326. ))
  45327. characterMakers.push(() => makeCharacter(
  45328. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45329. {
  45330. front: {
  45331. height: math.unit(6, "feet"),
  45332. name: "Front",
  45333. image: {
  45334. source: "./media/characters/persephone/front.svg",
  45335. extra: 1895/1717,
  45336. bottom: 96/1991
  45337. }
  45338. },
  45339. back: {
  45340. height: math.unit(6, "feet"),
  45341. name: "Back",
  45342. image: {
  45343. source: "./media/characters/persephone/back.svg",
  45344. extra: 1868/1679,
  45345. bottom: 26/1894
  45346. }
  45347. },
  45348. casual: {
  45349. height: math.unit(6, "feet"),
  45350. name: "Casual",
  45351. image: {
  45352. source: "./media/characters/persephone/casual.svg",
  45353. extra: 1713/1541,
  45354. bottom: 76/1789
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Human Size",
  45361. height: math.unit(6, "feet")
  45362. },
  45363. {
  45364. name: "Big Steppy",
  45365. height: math.unit(600, "meters"),
  45366. default: true
  45367. },
  45368. {
  45369. name: "Galaxy Brain",
  45370. height: math.unit(1, "zettameter")
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(1.85, "meters"),
  45379. name: "Front",
  45380. image: {
  45381. source: "./media/characters/riley-foxthing/front.svg",
  45382. extra: 1495/1354,
  45383. bottom: 122/1617
  45384. }
  45385. },
  45386. frontAlt: {
  45387. height: math.unit(1.85, "meters"),
  45388. name: "Front (Alt)",
  45389. image: {
  45390. source: "./media/characters/riley-foxthing/front-alt.svg",
  45391. extra: 1572/1389,
  45392. bottom: 116/1688
  45393. }
  45394. },
  45395. },
  45396. [
  45397. {
  45398. name: "Normal Sized",
  45399. height: math.unit(1.85, "meters"),
  45400. default: true
  45401. },
  45402. {
  45403. name: "Quite Sizable",
  45404. height: math.unit(5, "meters")
  45405. },
  45406. {
  45407. name: "Rather Large",
  45408. height: math.unit(20, "meters")
  45409. },
  45410. {
  45411. name: "Macro",
  45412. height: math.unit(450, "meters")
  45413. },
  45414. {
  45415. name: "Giga",
  45416. height: math.unit(5, "km")
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(6, "feet"),
  45425. weight: math.unit(200, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/blizzard/front.svg",
  45429. extra: 1136/990,
  45430. bottom: 136/1272
  45431. }
  45432. },
  45433. back: {
  45434. height: math.unit(6, "feet"),
  45435. weight: math.unit(200, "lb"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/blizzard/back.svg",
  45439. extra: 1175/1034,
  45440. bottom: 97/1272
  45441. }
  45442. },
  45443. sitting: {
  45444. height: math.unit(3.725, "feet"),
  45445. weight: math.unit(200, "lb"),
  45446. name: "Sitting",
  45447. image: {
  45448. source: "./media/characters/blizzard/sitting.svg",
  45449. extra: 581/485,
  45450. bottom: 90/671
  45451. }
  45452. },
  45453. frontWizard: {
  45454. height: math.unit(7.9, "feet"),
  45455. weight: math.unit(200, "lb"),
  45456. name: "Front (Wizard)",
  45457. image: {
  45458. source: "./media/characters/blizzard/front-wizard.svg"
  45459. }
  45460. },
  45461. backWizard: {
  45462. height: math.unit(7.9, "feet"),
  45463. weight: math.unit(200, "lb"),
  45464. name: "Back (Wizard)",
  45465. image: {
  45466. source: "./media/characters/blizzard/back-wizard.svg"
  45467. }
  45468. },
  45469. frontNsfw: {
  45470. height: math.unit(6, "feet"),
  45471. weight: math.unit(200, "lb"),
  45472. name: "Front (NSFW)",
  45473. image: {
  45474. source: "./media/characters/blizzard/front-nsfw.svg",
  45475. extra: 1136/990,
  45476. bottom: 136/1272
  45477. }
  45478. },
  45479. backNsfw: {
  45480. height: math.unit(6, "feet"),
  45481. weight: math.unit(200, "lb"),
  45482. name: "Back (NSFW)",
  45483. image: {
  45484. source: "./media/characters/blizzard/back-nsfw.svg",
  45485. extra: 1175/1034,
  45486. bottom: 97/1272
  45487. }
  45488. },
  45489. sittingNsfw: {
  45490. height: math.unit(3.725, "feet"),
  45491. weight: math.unit(200, "lb"),
  45492. name: "Sitting (NSFW)",
  45493. image: {
  45494. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45495. extra: 581/485,
  45496. bottom: 90/671
  45497. }
  45498. },
  45499. wizardFrontNsfw: {
  45500. height: math.unit(7.9, "feet"),
  45501. weight: math.unit(200, "lb"),
  45502. name: "Wizard (Front, NSFW)",
  45503. image: {
  45504. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Normal",
  45511. height: math.unit(6, "feet"),
  45512. default: true
  45513. },
  45514. ]
  45515. ))
  45516. characterMakers.push(() => makeCharacter(
  45517. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45518. {
  45519. front: {
  45520. height: math.unit(5 + 2/12, "feet"),
  45521. name: "Front",
  45522. image: {
  45523. source: "./media/characters/lumi/front.svg",
  45524. extra: 1328/1268,
  45525. bottom: 103/1431
  45526. }
  45527. },
  45528. back: {
  45529. height: math.unit(5 + 2/12, "feet"),
  45530. name: "Back",
  45531. image: {
  45532. source: "./media/characters/lumi/back.svg",
  45533. extra: 1381/1327,
  45534. bottom: 43/1424
  45535. }
  45536. },
  45537. },
  45538. [
  45539. {
  45540. name: "Normal",
  45541. height: math.unit(5 + 2/12, "feet"),
  45542. default: true
  45543. },
  45544. ]
  45545. ))
  45546. characterMakers.push(() => makeCharacter(
  45547. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45548. {
  45549. front: {
  45550. height: math.unit(5 + 9/12, "feet"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/aliya-cotton/front.svg",
  45554. extra: 577/564,
  45555. bottom: 29/606
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(5 + 9/12, "feet"),
  45563. default: true
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45569. {
  45570. front: {
  45571. height: math.unit(2.7, "meters"),
  45572. weight: math.unit(25000, "lb"),
  45573. name: "Front",
  45574. image: {
  45575. source: "./media/characters/noah-luxray/front.svg",
  45576. extra: 1644/825,
  45577. bottom: 339/1983
  45578. }
  45579. },
  45580. side: {
  45581. height: math.unit(2.97, "meters"),
  45582. weight: math.unit(25000, "lb"),
  45583. name: "Side",
  45584. image: {
  45585. source: "./media/characters/noah-luxray/side.svg",
  45586. extra: 1319/650,
  45587. bottom: 163/1482
  45588. }
  45589. },
  45590. dick: {
  45591. height: math.unit(7.4, "feet"),
  45592. weight: math.unit(2500, "lb"),
  45593. name: "Dick",
  45594. image: {
  45595. source: "./media/characters/noah-luxray/dick.svg"
  45596. }
  45597. },
  45598. dickAlt: {
  45599. height: math.unit(10.83, "feet"),
  45600. weight: math.unit(2500, "lb"),
  45601. name: "Dick-alt",
  45602. image: {
  45603. source: "./media/characters/noah-luxray/dick-alt.svg"
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "BIG",
  45610. height: math.unit(2.7, "meters"),
  45611. default: true
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45617. {
  45618. standing: {
  45619. height: math.unit(183, "cm"),
  45620. weight: math.unit(68, "kg"),
  45621. name: "Standing",
  45622. image: {
  45623. source: "./media/characters/arion/standing.svg",
  45624. extra: 1869/1807,
  45625. bottom: 93/1962
  45626. }
  45627. },
  45628. reclining: {
  45629. height: math.unit(70.5, "cm"),
  45630. weight: math.unit(68, "lb"),
  45631. name: "Reclining",
  45632. image: {
  45633. source: "./media/characters/arion/reclining.svg",
  45634. extra: 937/870,
  45635. bottom: 63/1000
  45636. }
  45637. },
  45638. },
  45639. [
  45640. {
  45641. name: "Colossus Size, Low",
  45642. height: math.unit(33, "meters"),
  45643. default: true
  45644. },
  45645. {
  45646. name: "Colossus Size, Mid",
  45647. height: math.unit(52, "meters")
  45648. },
  45649. {
  45650. name: "Colossus Size, High",
  45651. height: math.unit(60, "meters")
  45652. },
  45653. {
  45654. name: "Titan Size, Low",
  45655. height: math.unit(91, "meters"),
  45656. },
  45657. {
  45658. name: "Titan Size, Mid",
  45659. height: math.unit(122, "meters")
  45660. },
  45661. {
  45662. name: "Titan Size, High",
  45663. height: math.unit(162, "meters")
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45669. {
  45670. front: {
  45671. height: math.unit(53, "meters"),
  45672. name: "Front",
  45673. image: {
  45674. source: "./media/characters/stellar-marbey/front.svg",
  45675. extra: 1913/1805,
  45676. bottom: 92/2005
  45677. }
  45678. },
  45679. back: {
  45680. height: math.unit(53, "meters"),
  45681. name: "Back",
  45682. image: {
  45683. source: "./media/characters/stellar-marbey/back.svg",
  45684. extra: 1960/1851,
  45685. bottom: 28/1988
  45686. }
  45687. },
  45688. mouth: {
  45689. height: math.unit(3.5, "meters"),
  45690. name: "Mouth",
  45691. image: {
  45692. source: "./media/characters/stellar-marbey/mouth.svg"
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Macro",
  45699. height: math.unit(53, "meters"),
  45700. default: true
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45706. {
  45707. front: {
  45708. height: math.unit(8 + 1/12, "feet"),
  45709. weight: math.unit(233, "lb"),
  45710. name: "Front",
  45711. image: {
  45712. source: "./media/characters/matsu/front.svg",
  45713. extra: 832/772,
  45714. bottom: 40/872
  45715. }
  45716. },
  45717. back: {
  45718. height: math.unit(8 + 1/12, "feet"),
  45719. weight: math.unit(233, "lb"),
  45720. name: "Back",
  45721. image: {
  45722. source: "./media/characters/matsu/back.svg",
  45723. extra: 839/780,
  45724. bottom: 47/886
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(8 + 1/12, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45738. {
  45739. front: {
  45740. height: math.unit(4, "feet"),
  45741. weight: math.unit(148, "lb"),
  45742. name: "Front",
  45743. image: {
  45744. source: "./media/characters/thiz/front.svg",
  45745. extra: 1913/1748,
  45746. bottom: 62/1975
  45747. }
  45748. },
  45749. },
  45750. [
  45751. {
  45752. name: "Normal",
  45753. height: math.unit(4, "feet"),
  45754. default: true
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45760. {
  45761. front: {
  45762. height: math.unit(7 + 6/12, "feet"),
  45763. weight: math.unit(267, "lb"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/marcel/front.svg",
  45767. extra: 1221/1096,
  45768. bottom: 76/1297
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(7 + 6/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45782. {
  45783. side: {
  45784. height: math.unit(42, "meters"),
  45785. name: "Side",
  45786. image: {
  45787. source: "./media/characters/flake/side.svg",
  45788. extra: 1525/1306,
  45789. bottom: 209/1734
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(42, "meters"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45803. {
  45804. dressed: {
  45805. height: math.unit(6 + 4/12, "feet"),
  45806. weight: math.unit(520, "lb"),
  45807. name: "Dressed",
  45808. image: {
  45809. source: "./media/characters/someonne/dressed.svg",
  45810. extra: 1020/1010,
  45811. bottom: 178/1198
  45812. }
  45813. },
  45814. undressed: {
  45815. height: math.unit(6 + 4/12, "feet"),
  45816. weight: math.unit(520, "lb"),
  45817. name: "Undressed",
  45818. image: {
  45819. source: "./media/characters/someonne/undressed.svg",
  45820. extra: 1019/1014,
  45821. bottom: 169/1188
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Normal",
  45828. height: math.unit(6 + 4/12, "feet"),
  45829. default: true
  45830. },
  45831. ]
  45832. ))
  45833. characterMakers.push(() => makeCharacter(
  45834. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45835. {
  45836. front: {
  45837. height: math.unit(3, "feet"),
  45838. weight: math.unit(30, "lb"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/till/front.svg",
  45842. extra: 892/823,
  45843. bottom: 55/947
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(3, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(9 + 8/12, "feet"),
  45860. weight: math.unit(800, "lb"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/sydney-heki/front.svg",
  45864. extra: 1360/1300,
  45865. bottom: 22/1382
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(9 + 8/12, "feet"),
  45870. weight: math.unit(800, "lb"),
  45871. name: "Back",
  45872. image: {
  45873. source: "./media/characters/sydney-heki/back.svg",
  45874. extra: 1356/1293,
  45875. bottom: 12/1368
  45876. }
  45877. },
  45878. frontDressed: {
  45879. height: math.unit(9 + 8/12, "feet"),
  45880. weight: math.unit(800, "lb"),
  45881. name: "Front-dressed",
  45882. image: {
  45883. source: "./media/characters/sydney-heki/front-dressed.svg",
  45884. extra: 1360/1300,
  45885. bottom: 22/1382
  45886. }
  45887. },
  45888. },
  45889. [
  45890. {
  45891. name: "Normal",
  45892. height: math.unit(9 + 8/12, "feet"),
  45893. default: true
  45894. },
  45895. {
  45896. name: "Macro",
  45897. height: math.unit(500, "feet")
  45898. },
  45899. {
  45900. name: "Megamacro",
  45901. height: math.unit(3.6, "miles")
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45907. {
  45908. front: {
  45909. height: math.unit(200, "cm"),
  45910. weight: math.unit(250, "lb"),
  45911. name: "Front",
  45912. image: {
  45913. source: "./media/characters/fowler-karlsson/front.svg",
  45914. extra: 897/845,
  45915. bottom: 123/1020
  45916. }
  45917. },
  45918. back: {
  45919. height: math.unit(200, "cm"),
  45920. weight: math.unit(250, "lb"),
  45921. name: "Back",
  45922. image: {
  45923. source: "./media/characters/fowler-karlsson/back.svg",
  45924. extra: 999/944,
  45925. bottom: 26/1025
  45926. }
  45927. },
  45928. dick: {
  45929. height: math.unit(1.92, "feet"),
  45930. weight: math.unit(150, "lb"),
  45931. name: "Dick",
  45932. image: {
  45933. source: "./media/characters/fowler-karlsson/dick.svg"
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(200, "cm"),
  45941. default: true
  45942. },
  45943. {
  45944. name: "Smaller Macro",
  45945. height: math.unit(90, "m")
  45946. },
  45947. {
  45948. name: "Macro",
  45949. height: math.unit(150, "m")
  45950. },
  45951. {
  45952. name: "Bigger Macro",
  45953. height: math.unit(300, "m")
  45954. },
  45955. ]
  45956. ))
  45957. characterMakers.push(() => makeCharacter(
  45958. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45959. {
  45960. side: {
  45961. height: math.unit(8 + 2/12, "feet"),
  45962. weight: math.unit(1, "tonne"),
  45963. name: "Side",
  45964. image: {
  45965. source: "./media/characters/rylide/side.svg",
  45966. extra: 1318/1034,
  45967. bottom: 106/1424
  45968. }
  45969. },
  45970. sitting: {
  45971. height: math.unit(303, "cm"),
  45972. weight: math.unit(1, "tonne"),
  45973. name: "Sitting",
  45974. image: {
  45975. source: "./media/characters/rylide/sitting.svg",
  45976. extra: 1303/1103,
  45977. bottom: 36/1339
  45978. }
  45979. },
  45980. },
  45981. [
  45982. {
  45983. name: "Normal",
  45984. height: math.unit(8 + 2/12, "feet"),
  45985. default: true
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45991. {
  45992. front: {
  45993. height: math.unit(5 + 10/12, "feet"),
  45994. weight: math.unit(160, "lb"),
  45995. name: "Front",
  45996. image: {
  45997. source: "./media/characters/pudask/front.svg",
  45998. extra: 1616/1590,
  45999. bottom: 161/1777
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Ferret Height",
  46006. height: math.unit(2 + 5/12, "feet")
  46007. },
  46008. {
  46009. name: "Canon Height",
  46010. height: math.unit(5 + 10/12, "feet"),
  46011. default: true
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(3 + 6/12, "feet"),
  46020. weight: math.unit(60, "lb"),
  46021. name: "Front",
  46022. image: {
  46023. source: "./media/characters/ramita/front.svg",
  46024. extra: 1402/1232,
  46025. bottom: 62/1464
  46026. }
  46027. },
  46028. dressed: {
  46029. height: math.unit(3 + 6/12, "feet"),
  46030. weight: math.unit(60, "lb"),
  46031. name: "Dressed",
  46032. image: {
  46033. source: "./media/characters/ramita/dressed.svg",
  46034. extra: 1534/1249,
  46035. bottom: 50/1584
  46036. }
  46037. },
  46038. },
  46039. [
  46040. {
  46041. name: "Normal",
  46042. height: math.unit(3 + 6/12, "feet"),
  46043. default: true
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46049. {
  46050. front: {
  46051. height: math.unit(8, "feet"),
  46052. name: "Front",
  46053. image: {
  46054. source: "./media/characters/ark/front.svg",
  46055. extra: 772/693,
  46056. bottom: 45/817
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(8, "feet"),
  46064. default: true
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(6, "feet"),
  46073. weight: math.unit(250, "lb"),
  46074. volume: math.unit(5/8, "gallons"),
  46075. name: "Front",
  46076. image: {
  46077. source: "./media/characters/ludwig-horn/front.svg",
  46078. extra: 1782/1635,
  46079. bottom: 96/1878
  46080. }
  46081. },
  46082. back: {
  46083. height: math.unit(6, "feet"),
  46084. weight: math.unit(250, "lb"),
  46085. volume: math.unit(5/8, "gallons"),
  46086. name: "Back",
  46087. image: {
  46088. source: "./media/characters/ludwig-horn/back.svg",
  46089. extra: 1874/1729,
  46090. bottom: 27/1901
  46091. }
  46092. },
  46093. dick: {
  46094. height: math.unit(1.05, "feet"),
  46095. weight: math.unit(15, "lb"),
  46096. volume: math.unit(5/8, "gallons"),
  46097. name: "Dick",
  46098. image: {
  46099. source: "./media/characters/ludwig-horn/dick.svg"
  46100. }
  46101. },
  46102. },
  46103. [
  46104. {
  46105. name: "Small",
  46106. height: math.unit(6, "feet")
  46107. },
  46108. {
  46109. name: "Typical",
  46110. height: math.unit(12, "feet"),
  46111. default: true
  46112. },
  46113. {
  46114. name: "Building",
  46115. height: math.unit(80, "feet")
  46116. },
  46117. {
  46118. name: "Town",
  46119. height: math.unit(800, "feet")
  46120. },
  46121. {
  46122. name: "Kingdom",
  46123. height: math.unit(80000, "feet")
  46124. },
  46125. {
  46126. name: "Planet",
  46127. height: math.unit(8000000, "feet")
  46128. },
  46129. {
  46130. name: "Universe",
  46131. height: math.unit(8000000000, "feet")
  46132. },
  46133. {
  46134. name: "Transcended",
  46135. height: math.unit(8e27, "feet")
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46141. {
  46142. front: {
  46143. height: math.unit(5, "feet"),
  46144. weight: math.unit(50, "kg"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/biot-avery/front.svg",
  46148. extra: 1295/1232,
  46149. bottom: 86/1381
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Normal",
  46156. height: math.unit(5, "feet"),
  46157. default: true
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46163. {
  46164. front: {
  46165. height: math.unit(6, "feet"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/kitsune-kiro/front.svg",
  46169. extra: 1270/1158,
  46170. bottom: 42/1312
  46171. }
  46172. },
  46173. frontAlt: {
  46174. height: math.unit(6, "feet"),
  46175. name: "Front-alt",
  46176. image: {
  46177. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46178. extra: 1130/1081,
  46179. bottom: 36/1166
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Smol",
  46186. height: math.unit(3, "feet")
  46187. },
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(6, "feet"),
  46191. default: true
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(6, "feet"),
  46200. weight: math.unit(125, "lb"),
  46201. name: "Front",
  46202. image: {
  46203. source: "./media/characters/jack-thatcher/front.svg",
  46204. extra: 1474/1370,
  46205. bottom: 26/1500
  46206. }
  46207. },
  46208. back: {
  46209. height: math.unit(6, "feet"),
  46210. weight: math.unit(125, "lb"),
  46211. name: "Back",
  46212. image: {
  46213. source: "./media/characters/jack-thatcher/back.svg",
  46214. extra: 1489/1384,
  46215. bottom: 18/1507
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(6, "feet"),
  46223. default: true
  46224. },
  46225. {
  46226. name: "Macro",
  46227. height: math.unit(75, "feet")
  46228. },
  46229. {
  46230. name: "Macro-er",
  46231. height: math.unit(250, "feet")
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46237. {
  46238. front: {
  46239. height: math.unit(7, "feet"),
  46240. weight: math.unit(110, "kg"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/max-hyper/front.svg",
  46244. extra: 1969/1881,
  46245. bottom: 49/2018
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Normal",
  46252. height: math.unit(7, "feet"),
  46253. default: true
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46259. {
  46260. front: {
  46261. height: math.unit(5 + 5/12, "feet"),
  46262. weight: math.unit(160, "lb"),
  46263. name: "Front",
  46264. image: {
  46265. source: "./media/characters/spook/front.svg",
  46266. extra: 794/791,
  46267. bottom: 54/848
  46268. }
  46269. },
  46270. back: {
  46271. height: math.unit(5 + 5/12, "feet"),
  46272. weight: math.unit(160, "lb"),
  46273. name: "Back",
  46274. image: {
  46275. source: "./media/characters/spook/back.svg",
  46276. extra: 812/798,
  46277. bottom: 32/844
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Normal",
  46284. height: math.unit(5 + 5/12, "feet"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(18, "feet"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/xeaduulix/front.svg",
  46297. extra: 1380/1166,
  46298. bottom: 110/1490
  46299. }
  46300. },
  46301. back: {
  46302. height: math.unit(18, "feet"),
  46303. name: "Back",
  46304. image: {
  46305. source: "./media/characters/xeaduulix/back.svg",
  46306. extra: 1592/1170,
  46307. bottom: 128/1720
  46308. }
  46309. },
  46310. frontNsfw: {
  46311. height: math.unit(18, "feet"),
  46312. name: "Front (NSFW)",
  46313. image: {
  46314. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46315. extra: 1380/1166,
  46316. bottom: 110/1490
  46317. }
  46318. },
  46319. backNsfw: {
  46320. height: math.unit(18, "feet"),
  46321. name: "Back (NSFW)",
  46322. image: {
  46323. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46324. extra: 1592/1170,
  46325. bottom: 128/1720
  46326. }
  46327. },
  46328. },
  46329. [
  46330. {
  46331. name: "Normal",
  46332. height: math.unit(18, "feet"),
  46333. default: true
  46334. },
  46335. ]
  46336. ))
  46337. characterMakers.push(() => makeCharacter(
  46338. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46339. {
  46340. spreadWings: {
  46341. height: math.unit(20, "feet"),
  46342. name: "Spread Wings",
  46343. image: {
  46344. source: "./media/characters/fledge/spread-wings.svg",
  46345. extra: 693/635,
  46346. bottom: 26/719
  46347. }
  46348. },
  46349. front: {
  46350. height: math.unit(20, "feet"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/fledge/front.svg",
  46354. extra: 684/637,
  46355. bottom: 18/702
  46356. }
  46357. },
  46358. frontAlt: {
  46359. height: math.unit(20, "feet"),
  46360. name: "Front (Alt)",
  46361. image: {
  46362. source: "./media/characters/fledge/front-alt.svg",
  46363. extra: 708/664,
  46364. bottom: 13/721
  46365. }
  46366. },
  46367. back: {
  46368. height: math.unit(20, "feet"),
  46369. name: "Back",
  46370. image: {
  46371. source: "./media/characters/fledge/back.svg",
  46372. extra: 718/634,
  46373. bottom: 22/740
  46374. }
  46375. },
  46376. head: {
  46377. height: math.unit(5.55, "feet"),
  46378. name: "Head",
  46379. image: {
  46380. source: "./media/characters/fledge/head.svg"
  46381. }
  46382. },
  46383. headAlt: {
  46384. height: math.unit(5.1, "feet"),
  46385. name: "Head (Alt)",
  46386. image: {
  46387. source: "./media/characters/fledge/head-alt.svg"
  46388. }
  46389. },
  46390. },
  46391. [
  46392. {
  46393. name: "Small",
  46394. height: math.unit(6 + 2/12, "feet")
  46395. },
  46396. {
  46397. name: "Big",
  46398. height: math.unit(20, "feet"),
  46399. default: true
  46400. },
  46401. {
  46402. name: "Giant",
  46403. height: math.unit(100, "feet")
  46404. },
  46405. {
  46406. name: "Macro",
  46407. height: math.unit(200, "feet")
  46408. },
  46409. ]
  46410. ))
  46411. characterMakers.push(() => makeCharacter(
  46412. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46413. {
  46414. front: {
  46415. height: math.unit(1, "meter"),
  46416. name: "Front",
  46417. image: {
  46418. source: "./media/characters/atlas-morenai/front.svg",
  46419. extra: 1275/1043,
  46420. bottom: 19/1294
  46421. }
  46422. },
  46423. back: {
  46424. height: math.unit(1, "meter"),
  46425. name: "Back",
  46426. image: {
  46427. source: "./media/characters/atlas-morenai/back.svg",
  46428. extra: 1141/1001,
  46429. bottom: 25/1166
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(1, "meter"),
  46437. default: true
  46438. },
  46439. {
  46440. name: "Magic-Infused",
  46441. height: math.unit(5, "meters")
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46447. {
  46448. front: {
  46449. height: math.unit(5, "meters"),
  46450. name: "Front",
  46451. image: {
  46452. source: "./media/characters/cintia/front.svg",
  46453. extra: 1312/1228,
  46454. bottom: 38/1350
  46455. }
  46456. },
  46457. back: {
  46458. height: math.unit(5, "meters"),
  46459. name: "Back",
  46460. image: {
  46461. source: "./media/characters/cintia/back.svg",
  46462. extra: 1260/1166,
  46463. bottom: 98/1358
  46464. }
  46465. },
  46466. frontDick: {
  46467. height: math.unit(5, "meters"),
  46468. name: "Front (Dick)",
  46469. image: {
  46470. source: "./media/characters/cintia/front-dick.svg",
  46471. extra: 1312/1228,
  46472. bottom: 38/1350
  46473. }
  46474. },
  46475. backDick: {
  46476. height: math.unit(5, "meters"),
  46477. name: "Back (Dick)",
  46478. image: {
  46479. source: "./media/characters/cintia/back-dick.svg",
  46480. extra: 1260/1166,
  46481. bottom: 98/1358
  46482. }
  46483. },
  46484. bust: {
  46485. height: math.unit(1.97, "meters"),
  46486. name: "Bust",
  46487. image: {
  46488. source: "./media/characters/cintia/bust.svg",
  46489. extra: 617/565,
  46490. bottom: 0/617
  46491. }
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(5, "meters"),
  46498. default: true
  46499. },
  46500. ]
  46501. ))
  46502. characterMakers.push(() => makeCharacter(
  46503. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46504. {
  46505. side: {
  46506. height: math.unit(100, "feet"),
  46507. name: "Side",
  46508. image: {
  46509. source: "./media/characters/denora/side.svg",
  46510. extra: 875/803,
  46511. bottom: 9/884
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Standard",
  46518. height: math.unit(100, "feet"),
  46519. default: true
  46520. },
  46521. {
  46522. name: "Grand",
  46523. height: math.unit(1000, "feet")
  46524. },
  46525. {
  46526. name: "Conquering",
  46527. height: math.unit(10000, "feet")
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46533. {
  46534. dressed: {
  46535. height: math.unit(8 + 5/12, "feet"),
  46536. weight: math.unit(700, "lb"),
  46537. name: "Dressed",
  46538. image: {
  46539. source: "./media/characters/kiva/dressed.svg",
  46540. extra: 1102/1055,
  46541. bottom: 60/1162
  46542. }
  46543. },
  46544. nude: {
  46545. height: math.unit(8 + 5/12, "feet"),
  46546. weight: math.unit(700, "lb"),
  46547. name: "Nude",
  46548. image: {
  46549. source: "./media/characters/kiva/nude.svg",
  46550. extra: 1102/1055,
  46551. bottom: 60/1162
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Base Height",
  46558. height: math.unit(8 + 5/12, "feet"),
  46559. default: true
  46560. },
  46561. {
  46562. name: "Macro",
  46563. height: math.unit(100, "feet")
  46564. },
  46565. {
  46566. name: "Max",
  46567. height: math.unit(3280, "feet")
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46573. {
  46574. front: {
  46575. height: math.unit(6 + 8/12, "feet"),
  46576. weight: math.unit(250, "lb"),
  46577. name: "Front",
  46578. image: {
  46579. source: "./media/characters/ztragon/front.svg",
  46580. extra: 1825/1684,
  46581. bottom: 98/1923
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal",
  46588. height: math.unit(6 + 8/12, "feet"),
  46589. default: true
  46590. },
  46591. {
  46592. name: "Macro",
  46593. height: math.unit(80, "feet")
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46599. {
  46600. front: {
  46601. height: math.unit(10.4, "feet"),
  46602. weight: math.unit(2, "tons"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/yesenia/front.svg",
  46606. extra: 1479/1474,
  46607. bottom: 233/1712
  46608. }
  46609. },
  46610. },
  46611. [
  46612. {
  46613. name: "Normal",
  46614. height: math.unit(10.4, "feet"),
  46615. default: true
  46616. },
  46617. ]
  46618. ))
  46619. characterMakers.push(() => makeCharacter(
  46620. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46621. {
  46622. normal: {
  46623. height: math.unit(6 + 1/12, "feet"),
  46624. weight: math.unit(180, "lb"),
  46625. name: "Normal",
  46626. image: {
  46627. source: "./media/characters/leanne-lycheborne/normal.svg",
  46628. extra: 1748/1660,
  46629. bottom: 98/1846
  46630. }
  46631. },
  46632. were: {
  46633. height: math.unit(12, "feet"),
  46634. weight: math.unit(1600, "lb"),
  46635. name: "Were",
  46636. image: {
  46637. source: "./media/characters/leanne-lycheborne/were.svg",
  46638. extra: 1485/1432,
  46639. bottom: 66/1551
  46640. }
  46641. },
  46642. },
  46643. [
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(6 + 1/12, "feet"),
  46647. default: true
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46653. {
  46654. side: {
  46655. height: math.unit(13, "feet"),
  46656. name: "Side",
  46657. image: {
  46658. source: "./media/characters/kira-tyler/side.svg",
  46659. extra: 693/393,
  46660. bottom: 58/751
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(13, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(10.3, "feet"),
  46677. weight: math.unit(150, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/blaze/front.svg",
  46681. extra: 1378/1286,
  46682. bottom: 172/1550
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(10.3, "feet"),
  46690. default: true
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46696. {
  46697. side: {
  46698. height: math.unit(2, "meters"),
  46699. weight: math.unit(400, "kg"),
  46700. name: "Side",
  46701. image: {
  46702. source: "./media/characters/anu/side.svg",
  46703. extra: 506/394,
  46704. bottom: 18/524
  46705. }
  46706. },
  46707. },
  46708. [
  46709. {
  46710. name: "Humanoid",
  46711. height: math.unit(2, "meters")
  46712. },
  46713. {
  46714. name: "Normal",
  46715. height: math.unit(5, "meters"),
  46716. default: true
  46717. },
  46718. ]
  46719. ))
  46720. characterMakers.push(() => makeCharacter(
  46721. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46722. {
  46723. front: {
  46724. height: math.unit(5 + 5/12, "feet"),
  46725. weight: math.unit(170, "lb"),
  46726. name: "Front",
  46727. image: {
  46728. source: "./media/characters/synx-the-lynx/front.svg",
  46729. extra: 1893/1745,
  46730. bottom: 17/1910
  46731. }
  46732. },
  46733. side: {
  46734. height: math.unit(5 + 5/12, "feet"),
  46735. weight: math.unit(170, "lb"),
  46736. name: "Side",
  46737. image: {
  46738. source: "./media/characters/synx-the-lynx/side.svg",
  46739. extra: 1884/1740,
  46740. bottom: 39/1923
  46741. }
  46742. },
  46743. back: {
  46744. height: math.unit(5 + 5/12, "feet"),
  46745. weight: math.unit(170, "lb"),
  46746. name: "Back",
  46747. image: {
  46748. source: "./media/characters/synx-the-lynx/back.svg",
  46749. extra: 1903/1755,
  46750. bottom: 14/1917
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Normal",
  46757. height: math.unit(5 + 5/12, "feet"),
  46758. default: true
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46764. {
  46765. back: {
  46766. height: math.unit(15, "feet"),
  46767. name: "Back",
  46768. image: {
  46769. source: "./media/characters/nadezda-fex/back.svg",
  46770. extra: 1695/1481,
  46771. bottom: 25/1720
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(15, "feet"),
  46779. default: true
  46780. },
  46781. {
  46782. name: "Macro",
  46783. height: math.unit(2.5, "miles")
  46784. },
  46785. {
  46786. name: "Goddess",
  46787. height: math.unit(2, "multiverses")
  46788. },
  46789. ]
  46790. ))
  46791. characterMakers.push(() => makeCharacter(
  46792. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46793. {
  46794. front: {
  46795. height: math.unit(216, "cm"),
  46796. name: "Front",
  46797. image: {
  46798. source: "./media/characters/lev/front.svg",
  46799. extra: 1728/1670,
  46800. bottom: 82/1810
  46801. }
  46802. },
  46803. back: {
  46804. height: math.unit(216, "cm"),
  46805. name: "Back",
  46806. image: {
  46807. source: "./media/characters/lev/back.svg",
  46808. extra: 1738/1675,
  46809. bottom: 24/1762
  46810. }
  46811. },
  46812. dressed: {
  46813. height: math.unit(216, "cm"),
  46814. name: "Dressed",
  46815. image: {
  46816. source: "./media/characters/lev/dressed.svg",
  46817. extra: 1397/1351,
  46818. bottom: 73/1470
  46819. }
  46820. },
  46821. head: {
  46822. height: math.unit(0.51, "meter"),
  46823. name: "Head",
  46824. image: {
  46825. source: "./media/characters/lev/head.svg"
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(216, "cm"),
  46833. default: true
  46834. },
  46835. {
  46836. name: "Relatively Macro",
  46837. height: math.unit(80, "meters")
  46838. },
  46839. {
  46840. name: "Megamacro",
  46841. height: math.unit(21600, "meters")
  46842. },
  46843. {
  46844. name: "Megamacro+",
  46845. height: math.unit(64800, "meters")
  46846. },
  46847. ]
  46848. ))
  46849. characterMakers.push(() => makeCharacter(
  46850. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46851. {
  46852. front: {
  46853. height: math.unit(2, "meters"),
  46854. weight: math.unit(80, "kg"),
  46855. name: "Front",
  46856. image: {
  46857. source: "./media/characters/moka/front.svg",
  46858. extra: 1337/1255,
  46859. bottom: 58/1395
  46860. }
  46861. },
  46862. },
  46863. [
  46864. {
  46865. name: "Micro",
  46866. height: math.unit(15, "cm")
  46867. },
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(2, "meters"),
  46871. default: true
  46872. },
  46873. {
  46874. name: "Macro",
  46875. height: math.unit(20, "meters"),
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46881. {
  46882. front: {
  46883. height: math.unit(9, "feet"),
  46884. weight: math.unit(240, "lb"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/kuzco/front.svg",
  46888. extra: 1593/1487,
  46889. bottom: 32/1625
  46890. }
  46891. },
  46892. side: {
  46893. height: math.unit(9, "feet"),
  46894. weight: math.unit(240, "lb"),
  46895. name: "Side",
  46896. image: {
  46897. source: "./media/characters/kuzco/side.svg",
  46898. extra: 1575/1485,
  46899. bottom: 30/1605
  46900. }
  46901. },
  46902. back: {
  46903. height: math.unit(9, "feet"),
  46904. weight: math.unit(240, "lb"),
  46905. name: "Back",
  46906. image: {
  46907. source: "./media/characters/kuzco/back.svg",
  46908. extra: 1603/1514,
  46909. bottom: 14/1617
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(9, "feet"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46923. {
  46924. side: {
  46925. height: math.unit(2, "meters"),
  46926. weight: math.unit(300, "kg"),
  46927. name: "Side",
  46928. image: {
  46929. source: "./media/characters/ceruleus/side.svg",
  46930. extra: 1068/974,
  46931. bottom: 126/1194
  46932. }
  46933. },
  46934. maw: {
  46935. height: math.unit(0.8125, "meter"),
  46936. name: "Maw",
  46937. image: {
  46938. source: "./media/characters/ceruleus/maw.svg"
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(16, "meters"),
  46946. default: true
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(9, "feet"),
  46955. weight: math.unit(500, "kg"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/acouya/front.svg",
  46959. extra: 1660/1473,
  46960. bottom: 28/1688
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(9, "feet"),
  46968. default: true
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46974. {
  46975. front: {
  46976. height: math.unit(5 + 6/12, "feet"),
  46977. weight: math.unit(195, "lb"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/vant/front.svg",
  46981. extra: 1396/1320,
  46982. bottom: 20/1416
  46983. }
  46984. },
  46985. back: {
  46986. height: math.unit(5 + 6/12, "feet"),
  46987. weight: math.unit(195, "lb"),
  46988. name: "Back",
  46989. image: {
  46990. source: "./media/characters/vant/back.svg",
  46991. extra: 1396/1320,
  46992. bottom: 20/1416
  46993. }
  46994. },
  46995. maw: {
  46996. height: math.unit(0.75, "feet"),
  46997. name: "Maw",
  46998. image: {
  46999. source: "./media/characters/vant/maw.svg"
  47000. }
  47001. },
  47002. paw: {
  47003. height: math.unit(1.07, "feet"),
  47004. name: "Paw",
  47005. image: {
  47006. source: "./media/characters/vant/paw.svg"
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Micro",
  47013. height: math.unit(0.25, "inches")
  47014. },
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(5 + 6/12, "feet"),
  47018. default: true
  47019. },
  47020. {
  47021. name: "Macro",
  47022. height: math.unit(75, "feet")
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(30, "meters"),
  47031. weight: math.unit(363, "tons"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/ahra/front.svg",
  47035. extra: 1914/1814,
  47036. bottom: 46/1960
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Macro",
  47043. height: math.unit(30, "meters"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. characterMakers.push(() => makeCharacter(
  47049. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47050. {
  47051. undressed: {
  47052. height: math.unit(2, "m"),
  47053. weight: math.unit(250, "kg"),
  47054. name: "Undressed",
  47055. image: {
  47056. source: "./media/characters/coriander/undressed.svg",
  47057. extra: 1757/1606,
  47058. bottom: 107/1864
  47059. }
  47060. },
  47061. dressed: {
  47062. height: math.unit(2, "m"),
  47063. weight: math.unit(250, "kg"),
  47064. name: "Dressed",
  47065. image: {
  47066. source: "./media/characters/coriander/dressed.svg",
  47067. extra: 1757/1606,
  47068. bottom: 107/1864
  47069. }
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Normal",
  47075. height: math.unit(4, "meters"),
  47076. default: true
  47077. },
  47078. {
  47079. name: "XL",
  47080. height: math.unit(6, "meters")
  47081. },
  47082. {
  47083. name: "XXL",
  47084. height: math.unit(8, "meters")
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47090. {
  47091. front: {
  47092. height: math.unit(6, "feet"),
  47093. name: "Front",
  47094. image: {
  47095. source: "./media/characters/syrinx/front.svg",
  47096. extra: 1557/1259,
  47097. bottom: 171/1728
  47098. }
  47099. },
  47100. },
  47101. [
  47102. {
  47103. name: "Normal",
  47104. height: math.unit(6 + 3/12, "feet"),
  47105. default: true
  47106. },
  47107. ]
  47108. ))
  47109. characterMakers.push(() => makeCharacter(
  47110. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47111. {
  47112. front: {
  47113. height: math.unit(11 + 6/12, "feet"),
  47114. weight: math.unit(1.5, "tons"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/bor/front.svg",
  47118. extra: 1189/1109,
  47119. bottom: 170/1359
  47120. }
  47121. },
  47122. },
  47123. [
  47124. {
  47125. name: "Normal",
  47126. height: math.unit(11 + 6/12, "feet"),
  47127. default: true
  47128. },
  47129. {
  47130. name: "Macro",
  47131. height: math.unit(32 + 9/12, "feet")
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47137. {
  47138. anthro: {
  47139. height: math.unit(9, "feet"),
  47140. weight: math.unit(2076, "lb"),
  47141. name: "Anthro",
  47142. image: {
  47143. source: "./media/characters/abacus/anthro.svg",
  47144. extra: 1540/1494,
  47145. bottom: 233/1773
  47146. }
  47147. },
  47148. pigeon: {
  47149. height: math.unit(1, "feet"),
  47150. name: "Pigeon",
  47151. image: {
  47152. source: "./media/characters/abacus/pigeon.svg",
  47153. extra: 528/525,
  47154. bottom: 46/574
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(9, "feet"),
  47162. default: true
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47168. {
  47169. side: {
  47170. height: math.unit(6, "feet"),
  47171. name: "Side",
  47172. image: {
  47173. source: "./media/characters/delkhan/side.svg",
  47174. extra: 1884/1786,
  47175. bottom: 308/2192
  47176. }
  47177. },
  47178. head: {
  47179. height: math.unit(3.38, "feet"),
  47180. name: "Head",
  47181. image: {
  47182. source: "./media/characters/delkhan/head.svg"
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(72, "feet"),
  47190. default: true
  47191. },
  47192. {
  47193. name: "Giant",
  47194. height: math.unit(172, "feet")
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47200. {
  47201. standing: {
  47202. height: math.unit(6, "feet"),
  47203. name: "Standing",
  47204. image: {
  47205. source: "./media/characters/euchidat/standing.svg",
  47206. extra: 1612/1553,
  47207. bottom: 116/1728
  47208. }
  47209. },
  47210. leaning: {
  47211. height: math.unit(6, "feet"),
  47212. name: "Leaning",
  47213. image: {
  47214. source: "./media/characters/euchidat/leaning.svg",
  47215. extra: 1719/1674,
  47216. bottom: 27/1746
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(175, "feet"),
  47224. default: true
  47225. },
  47226. {
  47227. name: "Megamacro",
  47228. height: math.unit(190, "miles")
  47229. },
  47230. {
  47231. name: "Gigamacro",
  47232. height: math.unit(190000, "miles")
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(6, "feet"),
  47241. weight: math.unit(150, "lb"),
  47242. name: "Front",
  47243. image: {
  47244. source: "./media/characters/rebecca-stack/front.svg",
  47245. extra: 1256/1201,
  47246. bottom: 18/1274
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(5 + 8/12, "feet"),
  47254. default: true
  47255. },
  47256. {
  47257. name: "Demolitionist",
  47258. height: math.unit(200, "feet")
  47259. },
  47260. {
  47261. name: "Out of Control",
  47262. height: math.unit(2, "miles")
  47263. },
  47264. {
  47265. name: "Giga",
  47266. height: math.unit(7200, "miles")
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47272. {
  47273. front: {
  47274. height: math.unit(6, "feet"),
  47275. weight: math.unit(150, "lb"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/jenny-cartwright/front.svg",
  47279. extra: 1384/1376,
  47280. bottom: 58/1442
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(6 + 7/12, "feet"),
  47288. default: true
  47289. },
  47290. {
  47291. name: "Librarian",
  47292. height: math.unit(55, "feet")
  47293. },
  47294. {
  47295. name: "Sightseer",
  47296. height: math.unit(50, "miles")
  47297. },
  47298. {
  47299. name: "Giga",
  47300. height: math.unit(30000, "miles")
  47301. },
  47302. ]
  47303. ))
  47304. characterMakers.push(() => makeCharacter(
  47305. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47306. {
  47307. nude: {
  47308. height: math.unit(8, "feet"),
  47309. weight: math.unit(225, "lb"),
  47310. name: "Nude",
  47311. image: {
  47312. source: "./media/characters/marvy/nude.svg",
  47313. extra: 1900/1683,
  47314. bottom: 89/1989
  47315. }
  47316. },
  47317. dressed: {
  47318. height: math.unit(8, "feet"),
  47319. weight: math.unit(225, "lb"),
  47320. name: "Dressed",
  47321. image: {
  47322. source: "./media/characters/marvy/dressed.svg",
  47323. extra: 1900/1683,
  47324. bottom: 89/1989
  47325. }
  47326. },
  47327. head: {
  47328. height: math.unit(2.85, "feet"),
  47329. name: "Head",
  47330. image: {
  47331. source: "./media/characters/marvy/head.svg"
  47332. }
  47333. },
  47334. },
  47335. [
  47336. {
  47337. name: "Normal",
  47338. height: math.unit(8, "feet"),
  47339. default: true
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47345. {
  47346. front: {
  47347. height: math.unit(8, "feet"),
  47348. weight: math.unit(250, "lb"),
  47349. name: "Front",
  47350. image: {
  47351. source: "./media/characters/leah/front.svg",
  47352. extra: 1257/1149,
  47353. bottom: 109/1366
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(8, "feet"),
  47361. default: true
  47362. },
  47363. {
  47364. name: "Minimacro",
  47365. height: math.unit(40, "feet")
  47366. },
  47367. {
  47368. name: "Macro",
  47369. height: math.unit(124, "feet")
  47370. },
  47371. {
  47372. name: "Megamacro",
  47373. height: math.unit(850, "feet")
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47379. {
  47380. side: {
  47381. height: math.unit(13 + 6/12, "feet"),
  47382. weight: math.unit(3200, "lb"),
  47383. name: "Side",
  47384. image: {
  47385. source: "./media/characters/alvir/side.svg",
  47386. extra: 896/589,
  47387. bottom: 26/922
  47388. }
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(13 + 6/12, "feet"),
  47395. default: true
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47401. {
  47402. front: {
  47403. height: math.unit(5 + 4/12, "feet"),
  47404. weight: math.unit(236, "lb"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/zaina-khalil/front.svg",
  47408. extra: 1533/1485,
  47409. bottom: 94/1627
  47410. }
  47411. },
  47412. side: {
  47413. height: math.unit(5 + 4/12, "feet"),
  47414. weight: math.unit(236, "lb"),
  47415. name: "Side",
  47416. image: {
  47417. source: "./media/characters/zaina-khalil/side.svg",
  47418. extra: 1537/1498,
  47419. bottom: 66/1603
  47420. }
  47421. },
  47422. back: {
  47423. height: math.unit(5 + 4/12, "feet"),
  47424. weight: math.unit(236, "lb"),
  47425. name: "Back",
  47426. image: {
  47427. source: "./media/characters/zaina-khalil/back.svg",
  47428. extra: 1546/1494,
  47429. bottom: 89/1635
  47430. }
  47431. },
  47432. },
  47433. [
  47434. {
  47435. name: "Normal",
  47436. height: math.unit(5 + 4/12, "feet"),
  47437. default: true
  47438. },
  47439. ]
  47440. ))
  47441. characterMakers.push(() => makeCharacter(
  47442. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47443. {
  47444. side: {
  47445. height: math.unit(12, "feet"),
  47446. weight: math.unit(4000, "lb"),
  47447. name: "Side",
  47448. image: {
  47449. source: "./media/characters/terry/side.svg",
  47450. extra: 1518/1439,
  47451. bottom: 149/1667
  47452. }
  47453. },
  47454. },
  47455. [
  47456. {
  47457. name: "Normal",
  47458. height: math.unit(12, "feet"),
  47459. default: true
  47460. },
  47461. ]
  47462. ))
  47463. characterMakers.push(() => makeCharacter(
  47464. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47465. {
  47466. front: {
  47467. height: math.unit(12, "feet"),
  47468. weight: math.unit(1500, "lb"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/kahea/front.svg",
  47472. extra: 1722/1617,
  47473. bottom: 179/1901
  47474. }
  47475. },
  47476. },
  47477. [
  47478. {
  47479. name: "Normal",
  47480. height: math.unit(12, "feet"),
  47481. default: true
  47482. },
  47483. ]
  47484. ))
  47485. characterMakers.push(() => makeCharacter(
  47486. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47487. {
  47488. demonFront: {
  47489. height: math.unit(36, "feet"),
  47490. name: "Front",
  47491. image: {
  47492. source: "./media/characters/alex-xuria/demon-front.svg",
  47493. extra: 1705/1673,
  47494. bottom: 198/1903
  47495. },
  47496. form: "demon",
  47497. default: true
  47498. },
  47499. demonBack: {
  47500. height: math.unit(36, "feet"),
  47501. name: "Back",
  47502. image: {
  47503. source: "./media/characters/alex-xuria/demon-back.svg",
  47504. extra: 1725/1693,
  47505. bottom: 70/1795
  47506. },
  47507. form: "demon"
  47508. },
  47509. demonHead: {
  47510. height: math.unit(2.14, "meters"),
  47511. name: "Head",
  47512. image: {
  47513. source: "./media/characters/alex-xuria/demon-head.svg"
  47514. },
  47515. form: "demon"
  47516. },
  47517. demonHand: {
  47518. height: math.unit(1.61, "meters"),
  47519. name: "Hand",
  47520. image: {
  47521. source: "./media/characters/alex-xuria/demon-hand.svg"
  47522. },
  47523. form: "demon"
  47524. },
  47525. demonPaw: {
  47526. height: math.unit(1.35, "meters"),
  47527. name: "Paw",
  47528. image: {
  47529. source: "./media/characters/alex-xuria/demon-paw.svg"
  47530. },
  47531. form: "demon"
  47532. },
  47533. demonFoot: {
  47534. height: math.unit(2.2, "meters"),
  47535. name: "Foot",
  47536. image: {
  47537. source: "./media/characters/alex-xuria/demon-foot.svg"
  47538. },
  47539. form: "demon"
  47540. },
  47541. demonCock: {
  47542. height: math.unit(1.74, "meters"),
  47543. name: "Cock",
  47544. image: {
  47545. source: "./media/characters/alex-xuria/demon-cock.svg"
  47546. },
  47547. form: "demon"
  47548. },
  47549. demonTailClosed: {
  47550. height: math.unit(1.47, "meters"),
  47551. name: "Tail (Closed)",
  47552. image: {
  47553. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47554. },
  47555. form: "demon"
  47556. },
  47557. demonTailOpen: {
  47558. height: math.unit(2.85, "meters"),
  47559. name: "Tail (Open)",
  47560. image: {
  47561. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47562. },
  47563. form: "demon"
  47564. },
  47565. incubusFront: {
  47566. height: math.unit(12, "feet"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/alex-xuria/incubus-front.svg",
  47570. extra: 1754/1677,
  47571. bottom: 125/1879
  47572. },
  47573. form: "incubus",
  47574. default: true
  47575. },
  47576. incubusBack: {
  47577. height: math.unit(12, "feet"),
  47578. name: "Back",
  47579. image: {
  47580. source: "./media/characters/alex-xuria/incubus-back.svg",
  47581. extra: 1702/1647,
  47582. bottom: 30/1732
  47583. },
  47584. form: "incubus"
  47585. },
  47586. incubusHead: {
  47587. height: math.unit(3.45, "feet"),
  47588. name: "Head",
  47589. image: {
  47590. source: "./media/characters/alex-xuria/incubus-head.svg"
  47591. },
  47592. form: "incubus"
  47593. },
  47594. rabbitFront: {
  47595. height: math.unit(6, "feet"),
  47596. name: "Front",
  47597. image: {
  47598. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47599. extra: 1369/1349,
  47600. bottom: 45/1414
  47601. },
  47602. form: "rabbit",
  47603. default: true
  47604. },
  47605. rabbitSide: {
  47606. height: math.unit(6, "feet"),
  47607. name: "Side",
  47608. image: {
  47609. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47610. extra: 1370/1356,
  47611. bottom: 37/1407
  47612. },
  47613. form: "rabbit"
  47614. },
  47615. rabbitBack: {
  47616. height: math.unit(6, "feet"),
  47617. name: "Back",
  47618. image: {
  47619. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47620. extra: 1375/1358,
  47621. bottom: 43/1418
  47622. },
  47623. form: "rabbit"
  47624. },
  47625. },
  47626. [
  47627. {
  47628. name: "Normal",
  47629. height: math.unit(6, "feet"),
  47630. default: true,
  47631. form: "rabbit"
  47632. },
  47633. {
  47634. name: "Incubus",
  47635. height: math.unit(12, "feet"),
  47636. default: true,
  47637. form: "incubus"
  47638. },
  47639. {
  47640. name: "Demon",
  47641. height: math.unit(36, "feet"),
  47642. default: true,
  47643. form: "demon"
  47644. }
  47645. ],
  47646. {
  47647. "demon": {
  47648. name: "Demon",
  47649. default: true
  47650. },
  47651. "incubus": {
  47652. name: "Incubus",
  47653. },
  47654. "rabbit": {
  47655. name: "Rabbit"
  47656. }
  47657. }
  47658. ))
  47659. characterMakers.push(() => makeCharacter(
  47660. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47661. {
  47662. front: {
  47663. height: math.unit(7 + 5/12, "feet"),
  47664. weight: math.unit(510, "lb"),
  47665. name: "Front",
  47666. image: {
  47667. source: "./media/characters/syrup/front.svg",
  47668. extra: 932/916,
  47669. bottom: 26/958
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(7 + 5/12, "feet"),
  47677. default: true
  47678. },
  47679. {
  47680. name: "Big",
  47681. height: math.unit(50, "feet")
  47682. },
  47683. {
  47684. name: "Macro",
  47685. height: math.unit(300, "feet")
  47686. },
  47687. {
  47688. name: "Megamacro",
  47689. height: math.unit(1, "mile")
  47690. },
  47691. ]
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47695. {
  47696. front: {
  47697. height: math.unit(6 + 9/12, "feet"),
  47698. name: "Front",
  47699. image: {
  47700. source: "./media/characters/zeimne/front.svg",
  47701. extra: 1969/1806,
  47702. bottom: 53/2022
  47703. }
  47704. },
  47705. },
  47706. [
  47707. {
  47708. name: "Normal",
  47709. height: math.unit(6 + 9/12, "feet"),
  47710. default: true
  47711. },
  47712. {
  47713. name: "Giant",
  47714. height: math.unit(550, "feet")
  47715. },
  47716. {
  47717. name: "Mega",
  47718. height: math.unit(3, "miles")
  47719. },
  47720. {
  47721. name: "Giga",
  47722. height: math.unit(250, "miles")
  47723. },
  47724. {
  47725. name: "Tera",
  47726. height: math.unit(1, "AU")
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47732. {
  47733. front: {
  47734. height: math.unit(5 + 2/12, "feet"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/grar/front.svg",
  47738. extra: 1331/1119,
  47739. bottom: 60/1391
  47740. }
  47741. },
  47742. back: {
  47743. height: math.unit(5 + 2/12, "feet"),
  47744. name: "Back",
  47745. image: {
  47746. source: "./media/characters/grar/back.svg",
  47747. extra: 1385/1169,
  47748. bottom: 23/1408
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(5 + 2/12, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(13 + 7/12, "feet"),
  47765. weight: math.unit(2200, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/endraya/front.svg",
  47769. extra: 1289/1215,
  47770. bottom: 50/1339
  47771. }
  47772. },
  47773. nude: {
  47774. height: math.unit(13 + 7/12, "feet"),
  47775. weight: math.unit(2200, "lb"),
  47776. name: "Nude",
  47777. image: {
  47778. source: "./media/characters/endraya/nude.svg",
  47779. extra: 1247/1171,
  47780. bottom: 40/1287
  47781. }
  47782. },
  47783. head: {
  47784. height: math.unit(2.6, "feet"),
  47785. name: "Head",
  47786. image: {
  47787. source: "./media/characters/endraya/head.svg"
  47788. }
  47789. },
  47790. slit: {
  47791. height: math.unit(3.4, "feet"),
  47792. name: "Slit",
  47793. image: {
  47794. source: "./media/characters/endraya/slit.svg"
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Normal",
  47801. height: math.unit(13 + 7/12, "feet"),
  47802. default: true
  47803. },
  47804. {
  47805. name: "Macro",
  47806. height: math.unit(200, "feet")
  47807. },
  47808. ]
  47809. ))
  47810. characterMakers.push(() => makeCharacter(
  47811. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47812. {
  47813. front: {
  47814. height: math.unit(1.81, "meters"),
  47815. weight: math.unit(69, "kg"),
  47816. name: "Front",
  47817. image: {
  47818. source: "./media/characters/rodryana/front.svg",
  47819. extra: 2002/1921,
  47820. bottom: 53/2055
  47821. }
  47822. },
  47823. back: {
  47824. height: math.unit(1.81, "meters"),
  47825. weight: math.unit(69, "kg"),
  47826. name: "Back",
  47827. image: {
  47828. source: "./media/characters/rodryana/back.svg",
  47829. extra: 1993/1926,
  47830. bottom: 48/2041
  47831. }
  47832. },
  47833. maw: {
  47834. height: math.unit(0.19769417475, "meters"),
  47835. name: "Maw",
  47836. image: {
  47837. source: "./media/characters/rodryana/maw.svg"
  47838. }
  47839. },
  47840. slit: {
  47841. height: math.unit(0.31631067961, "meters"),
  47842. name: "Slit",
  47843. image: {
  47844. source: "./media/characters/rodryana/slit.svg"
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(1.81, "meters")
  47852. },
  47853. {
  47854. name: "Mini Macro",
  47855. height: math.unit(181, "meters")
  47856. },
  47857. {
  47858. name: "Macro",
  47859. height: math.unit(452, "meters"),
  47860. default: true
  47861. },
  47862. {
  47863. name: "Mega Macro",
  47864. height: math.unit(1.375, "km")
  47865. },
  47866. {
  47867. name: "Giga Macro",
  47868. height: math.unit(13.575, "km")
  47869. },
  47870. ]
  47871. ))
  47872. characterMakers.push(() => makeCharacter(
  47873. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47874. {
  47875. front: {
  47876. height: math.unit(6, "feet"),
  47877. weight: math.unit(1000, "lb"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/asaya/front.svg",
  47881. extra: 1460/1200,
  47882. bottom: 71/1531
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Normal",
  47889. height: math.unit(8, "km"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47896. {
  47897. front: {
  47898. height: math.unit(3.5, "meters"),
  47899. name: "Front",
  47900. image: {
  47901. source: "./media/characters/sarzu-and-israz/front.svg",
  47902. extra: 1570/1558,
  47903. bottom: 150/1720
  47904. },
  47905. },
  47906. back: {
  47907. height: math.unit(3.5, "meters"),
  47908. name: "Back",
  47909. image: {
  47910. source: "./media/characters/sarzu-and-israz/back.svg",
  47911. extra: 1523/1509,
  47912. bottom: 132/1655
  47913. },
  47914. },
  47915. frontFemale: {
  47916. height: math.unit(3.5, "meters"),
  47917. name: "Front (Female)",
  47918. image: {
  47919. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47920. extra: 1570/1558,
  47921. bottom: 150/1720
  47922. },
  47923. },
  47924. frontHerm: {
  47925. height: math.unit(3.5, "meters"),
  47926. name: "Front (Herm)",
  47927. image: {
  47928. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47929. extra: 1570/1558,
  47930. bottom: 150/1720
  47931. },
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Normal",
  47937. height: math.unit(3.5, "meters"),
  47938. default: true,
  47939. },
  47940. {
  47941. name: "Macro",
  47942. height: math.unit(65.5, "meters"),
  47943. },
  47944. ],
  47945. ))
  47946. characterMakers.push(() => makeCharacter(
  47947. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47948. {
  47949. front: {
  47950. height: math.unit(6, "feet"),
  47951. weight: math.unit(250, "lb"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/zenimma/front.svg",
  47955. extra: 1346/1320,
  47956. bottom: 58/1404
  47957. }
  47958. },
  47959. back: {
  47960. height: math.unit(6, "feet"),
  47961. weight: math.unit(250, "lb"),
  47962. name: "Back",
  47963. image: {
  47964. source: "./media/characters/zenimma/back.svg",
  47965. extra: 1324/1308,
  47966. bottom: 44/1368
  47967. }
  47968. },
  47969. dick: {
  47970. height: math.unit(1.44, "feet"),
  47971. name: "Dick",
  47972. image: {
  47973. source: "./media/characters/zenimma/dick.svg"
  47974. }
  47975. },
  47976. },
  47977. [
  47978. {
  47979. name: "Canon Height",
  47980. height: math.unit(66, "miles"),
  47981. default: true
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47987. {
  47988. nude: {
  47989. height: math.unit(6, "feet"),
  47990. weight: math.unit(150, "lb"),
  47991. name: "Nude",
  47992. image: {
  47993. source: "./media/characters/shavon/nude.svg",
  47994. extra: 1242/1096,
  47995. bottom: 98/1340
  47996. }
  47997. },
  47998. dressed: {
  47999. height: math.unit(6, "feet"),
  48000. weight: math.unit(150, "lb"),
  48001. name: "Dressed",
  48002. image: {
  48003. source: "./media/characters/shavon/dressed.svg",
  48004. extra: 1242/1096,
  48005. bottom: 98/1340
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Macro",
  48012. height: math.unit(255, "feet"),
  48013. default: true
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(6, "feet"),
  48022. name: "Front",
  48023. image: {
  48024. source: "./media/characters/steph/front.svg",
  48025. extra: 1430/1330,
  48026. bottom: 54/1484
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(6, "feet"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48040. {
  48041. front: {
  48042. height: math.unit(9, "feet"),
  48043. weight: math.unit(400, "lb"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/kil'aman/front.svg",
  48047. extra: 1210/1159,
  48048. bottom: 109/1319
  48049. }
  48050. },
  48051. head: {
  48052. height: math.unit(2.14, "feet"),
  48053. name: "Head",
  48054. image: {
  48055. source: "./media/characters/kil'aman/head.svg"
  48056. }
  48057. },
  48058. maw: {
  48059. height: math.unit(1.21, "feet"),
  48060. name: "Maw",
  48061. image: {
  48062. source: "./media/characters/kil'aman/maw.svg"
  48063. }
  48064. },
  48065. foot: {
  48066. height: math.unit(1.7, "feet"),
  48067. name: "Foot",
  48068. image: {
  48069. source: "./media/characters/kil'aman/foot.svg"
  48070. }
  48071. },
  48072. dick: {
  48073. height: math.unit(2.1, "feet"),
  48074. name: "Dick",
  48075. image: {
  48076. source: "./media/characters/kil'aman/dick.svg"
  48077. }
  48078. },
  48079. },
  48080. [
  48081. {
  48082. name: "Normal",
  48083. height: math.unit(9, "feet")
  48084. },
  48085. {
  48086. name: "Canon Height",
  48087. height: math.unit(10, "miles"),
  48088. default: true
  48089. },
  48090. {
  48091. name: "Maximum",
  48092. height: math.unit(6e9, "miles")
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48098. {
  48099. front: {
  48100. height: math.unit(90, "feet"),
  48101. weight: math.unit(675000, "lb"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/qadan/front.svg",
  48105. extra: 1012/1004,
  48106. bottom: 78/1090
  48107. }
  48108. },
  48109. back: {
  48110. height: math.unit(90, "feet"),
  48111. weight: math.unit(675000, "lb"),
  48112. name: "Back",
  48113. image: {
  48114. source: "./media/characters/qadan/back.svg",
  48115. extra: 1042/1031,
  48116. bottom: 55/1097
  48117. }
  48118. },
  48119. armored: {
  48120. height: math.unit(90, "feet"),
  48121. weight: math.unit(675000, "lb"),
  48122. name: "Armored",
  48123. image: {
  48124. source: "./media/characters/qadan/armored.svg",
  48125. extra: 1047/1037,
  48126. bottom: 48/1095
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(90, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(6, "feet"),
  48143. weight: math.unit(225, "lb"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/brooke/front.svg",
  48147. extra: 1050/1010,
  48148. bottom: 66/1116
  48149. }
  48150. },
  48151. back: {
  48152. height: math.unit(6, "feet"),
  48153. weight: math.unit(225, "lb"),
  48154. name: "Back",
  48155. image: {
  48156. source: "./media/characters/brooke/back.svg",
  48157. extra: 1053/1013,
  48158. bottom: 41/1094
  48159. }
  48160. },
  48161. dressed: {
  48162. height: math.unit(6, "feet"),
  48163. weight: math.unit(225, "lb"),
  48164. name: "Dressed",
  48165. image: {
  48166. source: "./media/characters/brooke/dressed.svg",
  48167. extra: 1050/1010,
  48168. bottom: 66/1116
  48169. }
  48170. },
  48171. },
  48172. [
  48173. {
  48174. name: "Canon Height",
  48175. height: math.unit(500, "miles"),
  48176. default: true
  48177. },
  48178. ]
  48179. ))
  48180. characterMakers.push(() => makeCharacter(
  48181. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48182. {
  48183. front: {
  48184. height: math.unit(6 + 2/12, "feet"),
  48185. weight: math.unit(210, "lb"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/wubs/front.svg",
  48189. extra: 1345/1325,
  48190. bottom: 70/1415
  48191. }
  48192. },
  48193. back: {
  48194. height: math.unit(6 + 2/12, "feet"),
  48195. weight: math.unit(210, "lb"),
  48196. name: "Back",
  48197. image: {
  48198. source: "./media/characters/wubs/back.svg",
  48199. extra: 1296/1275,
  48200. bottom: 58/1354
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(6 + 2/12, "feet"),
  48208. default: true
  48209. },
  48210. {
  48211. name: "Macro",
  48212. height: math.unit(1000, "feet")
  48213. },
  48214. {
  48215. name: "Megamacro",
  48216. height: math.unit(1, "mile")
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48222. {
  48223. front: {
  48224. height: math.unit(4, "feet"),
  48225. weight: math.unit(120, "lb"),
  48226. name: "Front",
  48227. image: {
  48228. source: "./media/characters/blue/front.svg",
  48229. extra: 1636/1525,
  48230. bottom: 43/1679
  48231. }
  48232. },
  48233. back: {
  48234. height: math.unit(4, "feet"),
  48235. weight: math.unit(120, "lb"),
  48236. name: "Back",
  48237. image: {
  48238. source: "./media/characters/blue/back.svg",
  48239. extra: 1660/1560,
  48240. bottom: 57/1717
  48241. }
  48242. },
  48243. paws: {
  48244. height: math.unit(0.826, "feet"),
  48245. name: "Paws",
  48246. image: {
  48247. source: "./media/characters/blue/paws.svg"
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Micro",
  48254. height: math.unit(3, "inches")
  48255. },
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(4, "feet"),
  48259. default: true
  48260. },
  48261. {
  48262. name: "Femenine Form",
  48263. height: math.unit(14, "feet")
  48264. },
  48265. {
  48266. name: "Werebat Form",
  48267. height: math.unit(18, "feet")
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48273. {
  48274. female: {
  48275. height: math.unit(7 + 4/12, "feet"),
  48276. weight: math.unit(243, "lb"),
  48277. name: "Female",
  48278. image: {
  48279. source: "./media/characters/kaya/female.svg",
  48280. extra: 975/898,
  48281. bottom: 34/1009
  48282. }
  48283. },
  48284. herm: {
  48285. height: math.unit(7 + 4/12, "feet"),
  48286. weight: math.unit(243, "lb"),
  48287. name: "Herm",
  48288. image: {
  48289. source: "./media/characters/kaya/herm.svg",
  48290. extra: 975/898,
  48291. bottom: 34/1009
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(7 + 4/12, "feet"),
  48299. default: true
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48305. {
  48306. female: {
  48307. height: math.unit(9 + 4/12, "feet"),
  48308. weight: math.unit(398, "lb"),
  48309. name: "Female",
  48310. image: {
  48311. source: "./media/characters/kassandra/female.svg",
  48312. extra: 908/839,
  48313. bottom: 61/969
  48314. }
  48315. },
  48316. intersex: {
  48317. height: math.unit(9 + 4/12, "feet"),
  48318. weight: math.unit(398, "lb"),
  48319. name: "Intersex",
  48320. image: {
  48321. source: "./media/characters/kassandra/intersex.svg",
  48322. extra: 908/839,
  48323. bottom: 61/969
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(9 + 4/12, "feet"),
  48331. default: true
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(3, "meters"),
  48340. name: "Front",
  48341. image: {
  48342. source: "./media/characters/amy/front.svg",
  48343. extra: 1380/1343,
  48344. bottom: 70/1450
  48345. }
  48346. },
  48347. back: {
  48348. height: math.unit(3, "meters"),
  48349. name: "Back",
  48350. image: {
  48351. source: "./media/characters/amy/back.svg",
  48352. extra: 1380/1347,
  48353. bottom: 66/1446
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(3, "meters"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48367. {
  48368. side: {
  48369. height: math.unit(47, "cm"),
  48370. weight: math.unit(10.8, "kg"),
  48371. name: "Side",
  48372. image: {
  48373. source: "./media/characters/alphaschakal/side.svg",
  48374. extra: 1058/568,
  48375. bottom: 62/1120
  48376. }
  48377. },
  48378. back: {
  48379. height: math.unit(78, "cm"),
  48380. weight: math.unit(10.8, "kg"),
  48381. name: "Back",
  48382. image: {
  48383. source: "./media/characters/alphaschakal/back.svg",
  48384. extra: 1102/942,
  48385. bottom: 185/1287
  48386. }
  48387. },
  48388. head: {
  48389. height: math.unit(28, "cm"),
  48390. name: "Head",
  48391. image: {
  48392. source: "./media/characters/alphaschakal/head.svg",
  48393. extra: 696/508,
  48394. bottom: 0/696
  48395. }
  48396. },
  48397. paw: {
  48398. height: math.unit(16, "cm"),
  48399. name: "Paw",
  48400. image: {
  48401. source: "./media/characters/alphaschakal/paw.svg"
  48402. }
  48403. },
  48404. },
  48405. [
  48406. {
  48407. name: "Normal",
  48408. height: math.unit(47, "cm"),
  48409. default: true
  48410. },
  48411. {
  48412. name: "Macro",
  48413. height: math.unit(340, "cm")
  48414. },
  48415. ]
  48416. ))
  48417. characterMakers.push(() => makeCharacter(
  48418. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48419. {
  48420. front: {
  48421. height: math.unit(36, "earths"),
  48422. name: "Front",
  48423. image: {
  48424. source: "./media/characters/ecobyss/front.svg",
  48425. extra: 1282/1215,
  48426. bottom: 11/1293
  48427. }
  48428. },
  48429. back: {
  48430. height: math.unit(36, "earths"),
  48431. name: "Back",
  48432. image: {
  48433. source: "./media/characters/ecobyss/back.svg",
  48434. extra: 1291/1222,
  48435. bottom: 8/1299
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(36, "earths"),
  48443. default: true
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48449. {
  48450. front: {
  48451. height: math.unit(12, "feet"),
  48452. name: "Front",
  48453. image: {
  48454. source: "./media/characters/vasuk/front.svg",
  48455. extra: 1326/1207,
  48456. bottom: 64/1390
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(12, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48470. {
  48471. side: {
  48472. height: math.unit(100, "feet"),
  48473. name: "Side",
  48474. image: {
  48475. source: "./media/characters/linneaus/side.svg",
  48476. extra: 987/807,
  48477. bottom: 47/1034
  48478. }
  48479. },
  48480. },
  48481. [
  48482. {
  48483. name: "Macro",
  48484. height: math.unit(100, "feet"),
  48485. default: true
  48486. },
  48487. ]
  48488. ))
  48489. characterMakers.push(() => makeCharacter(
  48490. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48491. {
  48492. front: {
  48493. height: math.unit(8, "feet"),
  48494. weight: math.unit(1200, "lb"),
  48495. name: "Front",
  48496. image: {
  48497. source: "./media/characters/nyterious-daligdig/front.svg",
  48498. extra: 1284/1094,
  48499. bottom: 84/1368
  48500. }
  48501. },
  48502. back: {
  48503. height: math.unit(8, "feet"),
  48504. weight: math.unit(1200, "lb"),
  48505. name: "Back",
  48506. image: {
  48507. source: "./media/characters/nyterious-daligdig/back.svg",
  48508. extra: 1301/1121,
  48509. bottom: 129/1430
  48510. }
  48511. },
  48512. mouth: {
  48513. height: math.unit(1.464, "feet"),
  48514. name: "Mouth",
  48515. image: {
  48516. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48517. }
  48518. },
  48519. },
  48520. [
  48521. {
  48522. name: "Small",
  48523. height: math.unit(8, "feet"),
  48524. default: true
  48525. },
  48526. {
  48527. name: "Normal",
  48528. height: math.unit(15, "feet")
  48529. },
  48530. {
  48531. name: "Macro",
  48532. height: math.unit(90, "feet")
  48533. },
  48534. ]
  48535. ))
  48536. characterMakers.push(() => makeCharacter(
  48537. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48538. {
  48539. front: {
  48540. height: math.unit(7 + 4/12, "feet"),
  48541. weight: math.unit(252, "lb"),
  48542. name: "Front",
  48543. image: {
  48544. source: "./media/characters/bandel/front.svg",
  48545. extra: 1946/1775,
  48546. bottom: 26/1972
  48547. }
  48548. },
  48549. back: {
  48550. height: math.unit(7 + 4/12, "feet"),
  48551. weight: math.unit(252, "lb"),
  48552. name: "Back",
  48553. image: {
  48554. source: "./media/characters/bandel/back.svg",
  48555. extra: 1940/1770,
  48556. bottom: 25/1965
  48557. }
  48558. },
  48559. maw: {
  48560. height: math.unit(2.15, "feet"),
  48561. name: "Maw",
  48562. image: {
  48563. source: "./media/characters/bandel/maw.svg"
  48564. }
  48565. },
  48566. stomach: {
  48567. height: math.unit(1.95, "feet"),
  48568. name: "Stomach",
  48569. image: {
  48570. source: "./media/characters/bandel/stomach.svg"
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(7 + 4/12, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(10 + 5/12, "feet"),
  48587. weight: math.unit(773.5, "kg"),
  48588. name: "Front",
  48589. image: {
  48590. source: "./media/characters/zed/front.svg",
  48591. extra: 987/941,
  48592. bottom: 52/1039
  48593. }
  48594. },
  48595. },
  48596. [
  48597. {
  48598. name: "Short",
  48599. height: math.unit(5 + 4/12, "feet")
  48600. },
  48601. {
  48602. name: "Average",
  48603. height: math.unit(10 + 5/12, "feet"),
  48604. default: true
  48605. },
  48606. {
  48607. name: "Mini-Macro",
  48608. height: math.unit(24 + 9/12, "feet")
  48609. },
  48610. {
  48611. name: "Macro",
  48612. height: math.unit(249, "feet")
  48613. },
  48614. {
  48615. name: "Mega-Macro",
  48616. height: math.unit(12490, "feet")
  48617. },
  48618. {
  48619. name: "Giga-Macro",
  48620. height: math.unit(24.9, "miles")
  48621. },
  48622. {
  48623. name: "Tera-Macro",
  48624. height: math.unit(24900, "miles")
  48625. },
  48626. {
  48627. name: "Cosmic Scale",
  48628. height: math.unit(38.9, "lightyears")
  48629. },
  48630. {
  48631. name: "Universal Scale",
  48632. height: math.unit(138e12, "lightyears")
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(1561, "inches"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/ivan/front.svg",
  48644. extra: 1126/1071,
  48645. bottom: 26/1152
  48646. }
  48647. },
  48648. back: {
  48649. height: math.unit(1561, "inches"),
  48650. name: "Back",
  48651. image: {
  48652. source: "./media/characters/ivan/back.svg",
  48653. extra: 1134/1079,
  48654. bottom: 30/1164
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(1561, "inches"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48668. {
  48669. front: {
  48670. height: math.unit(5 + 7/12, "feet"),
  48671. weight: math.unit(150, "lb"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/robin-arctic-hare/front.svg",
  48675. extra: 1148/974,
  48676. bottom: 20/1168
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(5 + 7/12, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48690. {
  48691. side: {
  48692. height: math.unit(5, "feet"),
  48693. name: "Side",
  48694. image: {
  48695. source: "./media/characters/birch/side.svg",
  48696. extra: 985/796,
  48697. bottom: 111/1096
  48698. }
  48699. },
  48700. },
  48701. [
  48702. {
  48703. name: "Normal",
  48704. height: math.unit(5, "feet"),
  48705. default: true
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48711. {
  48712. front: {
  48713. height: math.unit(4, "feet"),
  48714. name: "Front",
  48715. image: {
  48716. source: "./media/characters/rasp/front.svg",
  48717. extra: 561/478,
  48718. bottom: 74/635
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(4, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(4 + 6/12, "feet"),
  48735. name: "Front",
  48736. image: {
  48737. source: "./media/characters/agatha/front.svg",
  48738. extra: 947/933,
  48739. bottom: 42/989
  48740. }
  48741. },
  48742. back: {
  48743. height: math.unit(4 + 6/12, "feet"),
  48744. name: "Back",
  48745. image: {
  48746. source: "./media/characters/agatha/back.svg",
  48747. extra: 935/922,
  48748. bottom: 48/983
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(4 + 6 /12, "feet"),
  48756. default: true
  48757. },
  48758. {
  48759. name: "Max Size",
  48760. height: math.unit(500, "feet")
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48766. {
  48767. side: {
  48768. height: math.unit(30, "feet"),
  48769. name: "Side",
  48770. image: {
  48771. source: "./media/characters/roggy/side.svg",
  48772. extra: 909/643,
  48773. bottom: 63/972
  48774. }
  48775. },
  48776. lounging: {
  48777. height: math.unit(20, "feet"),
  48778. name: "Lounging",
  48779. image: {
  48780. source: "./media/characters/roggy/lounging.svg",
  48781. extra: 643/479,
  48782. bottom: 145/788
  48783. }
  48784. },
  48785. handpaw: {
  48786. height: math.unit(13.1, "feet"),
  48787. name: "Handpaw",
  48788. image: {
  48789. source: "./media/characters/roggy/handpaw.svg"
  48790. }
  48791. },
  48792. footpaw: {
  48793. height: math.unit(15.8, "feet"),
  48794. name: "Footpaw",
  48795. image: {
  48796. source: "./media/characters/roggy/footpaw.svg"
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Menacing",
  48803. height: math.unit(30, "feet"),
  48804. default: true
  48805. },
  48806. ]
  48807. ))
  48808. characterMakers.push(() => makeCharacter(
  48809. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48810. {
  48811. front: {
  48812. height: math.unit(5 + 7/12, "feet"),
  48813. weight: math.unit(135, "lb"),
  48814. name: "Front",
  48815. image: {
  48816. source: "./media/characters/naomi/front.svg",
  48817. extra: 1209/1154,
  48818. bottom: 129/1338
  48819. }
  48820. },
  48821. back: {
  48822. height: math.unit(5 + 7/12, "feet"),
  48823. weight: math.unit(135, "lb"),
  48824. name: "Back",
  48825. image: {
  48826. source: "./media/characters/naomi/back.svg",
  48827. extra: 1252/1190,
  48828. bottom: 23/1275
  48829. }
  48830. },
  48831. },
  48832. [
  48833. {
  48834. name: "Normal",
  48835. height: math.unit(5 + 7 /12, "feet"),
  48836. default: true
  48837. },
  48838. ]
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48842. {
  48843. side: {
  48844. height: math.unit(35, "meters"),
  48845. name: "Side",
  48846. image: {
  48847. source: "./media/characters/kimpi/side.svg",
  48848. extra: 419/382,
  48849. bottom: 63/482
  48850. }
  48851. },
  48852. hand: {
  48853. height: math.unit(8.96, "meters"),
  48854. name: "Hand",
  48855. image: {
  48856. source: "./media/characters/kimpi/hand.svg"
  48857. }
  48858. },
  48859. },
  48860. [
  48861. {
  48862. name: "Normal",
  48863. height: math.unit(35, "meters"),
  48864. default: true
  48865. },
  48866. ]
  48867. ))
  48868. characterMakers.push(() => makeCharacter(
  48869. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48870. {
  48871. front: {
  48872. height: math.unit(4 + 4/12, "feet"),
  48873. name: "Front",
  48874. image: {
  48875. source: "./media/characters/pepper-purrloin/front.svg",
  48876. extra: 1141/1024,
  48877. bottom: 21/1162
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Normal",
  48884. height: math.unit(4 + 4/12, "feet"),
  48885. default: true
  48886. },
  48887. ]
  48888. ))
  48889. characterMakers.push(() => makeCharacter(
  48890. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48891. {
  48892. front: {
  48893. height: math.unit(6 + 2/12, "feet"),
  48894. name: "Front",
  48895. image: {
  48896. source: "./media/characters/raphael/front.svg",
  48897. extra: 1101/962,
  48898. bottom: 59/1160
  48899. }
  48900. },
  48901. },
  48902. [
  48903. {
  48904. name: "Normal",
  48905. height: math.unit(6 + 2/12, "feet"),
  48906. default: true
  48907. },
  48908. ]
  48909. ))
  48910. characterMakers.push(() => makeCharacter(
  48911. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48912. {
  48913. front: {
  48914. height: math.unit(6, "feet"),
  48915. weight: math.unit(150, "lb"),
  48916. name: "Front",
  48917. image: {
  48918. source: "./media/characters/victor-williams/front.svg",
  48919. extra: 1894/1825,
  48920. bottom: 67/1961
  48921. }
  48922. },
  48923. },
  48924. [
  48925. {
  48926. name: "Normal",
  48927. height: math.unit(6, "feet"),
  48928. default: true
  48929. },
  48930. ]
  48931. ))
  48932. characterMakers.push(() => makeCharacter(
  48933. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48934. {
  48935. front: {
  48936. height: math.unit(5 + 8/12, "feet"),
  48937. weight: math.unit(150, "lb"),
  48938. name: "Front",
  48939. image: {
  48940. source: "./media/characters/rachel/front.svg",
  48941. extra: 1902/1787,
  48942. bottom: 46/1948
  48943. }
  48944. },
  48945. },
  48946. [
  48947. {
  48948. name: "Base Height",
  48949. height: math.unit(5 + 8/12, "feet"),
  48950. default: true
  48951. },
  48952. {
  48953. name: "Macro",
  48954. height: math.unit(200, "feet")
  48955. },
  48956. {
  48957. name: "Mega Macro",
  48958. height: math.unit(1, "mile")
  48959. },
  48960. {
  48961. name: "Giga Macro",
  48962. height: math.unit(1500, "miles")
  48963. },
  48964. {
  48965. name: "Tera Macro",
  48966. height: math.unit(8000, "miles")
  48967. },
  48968. {
  48969. name: "Tera Macro+",
  48970. height: math.unit(2e5, "miles")
  48971. },
  48972. ]
  48973. ))
  48974. characterMakers.push(() => makeCharacter(
  48975. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48976. {
  48977. front: {
  48978. height: math.unit(6.5, "feet"),
  48979. name: "Front",
  48980. image: {
  48981. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48982. extra: 860/819,
  48983. bottom: 307/1167
  48984. }
  48985. },
  48986. back: {
  48987. height: math.unit(6.5, "feet"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48991. extra: 880/837,
  48992. bottom: 395/1275
  48993. }
  48994. },
  48995. sleeping: {
  48996. height: math.unit(2.79, "feet"),
  48997. name: "Sleeping",
  48998. image: {
  48999. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49000. extra: 465/383,
  49001. bottom: 263/728
  49002. }
  49003. },
  49004. maw: {
  49005. height: math.unit(2.52, "feet"),
  49006. name: "Maw",
  49007. image: {
  49008. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49009. }
  49010. },
  49011. },
  49012. [
  49013. {
  49014. name: "Normal",
  49015. height: math.unit(6.5, "feet"),
  49016. default: true
  49017. },
  49018. ]
  49019. ))
  49020. characterMakers.push(() => makeCharacter(
  49021. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49022. {
  49023. front: {
  49024. height: math.unit(5, "feet"),
  49025. name: "Front",
  49026. image: {
  49027. source: "./media/characters/nova-nerium/front.svg",
  49028. extra: 1548/1392,
  49029. bottom: 374/1922
  49030. }
  49031. },
  49032. back: {
  49033. height: math.unit(5, "feet"),
  49034. name: "Back",
  49035. image: {
  49036. source: "./media/characters/nova-nerium/back.svg",
  49037. extra: 1658/1468,
  49038. bottom: 257/1915
  49039. }
  49040. },
  49041. },
  49042. [
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(5, "feet"),
  49046. default: true
  49047. },
  49048. ]
  49049. ))
  49050. characterMakers.push(() => makeCharacter(
  49051. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49052. {
  49053. front: {
  49054. height: math.unit(5 + 4/12, "feet"),
  49055. name: "Front",
  49056. image: {
  49057. source: "./media/characters/ashe-pyriph/front.svg",
  49058. extra: 1935/1747,
  49059. bottom: 60/1995
  49060. }
  49061. },
  49062. },
  49063. [
  49064. {
  49065. name: "Normal",
  49066. height: math.unit(5 + 4/12, "feet"),
  49067. default: true
  49068. },
  49069. ]
  49070. ))
  49071. characterMakers.push(() => makeCharacter(
  49072. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49073. {
  49074. front: {
  49075. height: math.unit(8.7, "feet"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/flicker-wisp/front.svg",
  49079. extra: 1835/1613,
  49080. bottom: 449/2284
  49081. }
  49082. },
  49083. side: {
  49084. height: math.unit(8.7, "feet"),
  49085. name: "Side",
  49086. image: {
  49087. source: "./media/characters/flicker-wisp/side.svg",
  49088. extra: 1841/1642,
  49089. bottom: 336/2177
  49090. },
  49091. default: true
  49092. },
  49093. maw: {
  49094. height: math.unit(3.35, "feet"),
  49095. name: "Maw",
  49096. image: {
  49097. source: "./media/characters/flicker-wisp/maw.svg",
  49098. extra: 2338/1506,
  49099. bottom: 0/2338
  49100. }
  49101. },
  49102. ovipositor: {
  49103. height: math.unit(4.95, "feet"),
  49104. name: "Ovipositor",
  49105. image: {
  49106. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49107. }
  49108. },
  49109. egg: {
  49110. height: math.unit(0.385, "feet"),
  49111. weight: math.unit(2, "lb"),
  49112. name: "Egg",
  49113. image: {
  49114. source: "./media/characters/flicker-wisp/egg.svg"
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Normal",
  49121. height: math.unit(8.7, "feet"),
  49122. default: true
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49128. {
  49129. side: {
  49130. height: math.unit(11, "feet"),
  49131. name: "Side",
  49132. image: {
  49133. source: "./media/characters/faefnul/side.svg",
  49134. extra: 1100/1007,
  49135. bottom: 0/1100
  49136. }
  49137. },
  49138. },
  49139. [
  49140. {
  49141. name: "Normal",
  49142. height: math.unit(11, "feet"),
  49143. default: true
  49144. },
  49145. ]
  49146. ))
  49147. characterMakers.push(() => makeCharacter(
  49148. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49149. {
  49150. front: {
  49151. height: math.unit(6 + 2/12, "feet"),
  49152. name: "Front",
  49153. image: {
  49154. source: "./media/characters/shady/front.svg",
  49155. extra: 502/461,
  49156. bottom: 9/511
  49157. }
  49158. },
  49159. kneeling: {
  49160. height: math.unit(4.6, "feet"),
  49161. name: "Kneeling",
  49162. image: {
  49163. source: "./media/characters/shady/kneeling.svg",
  49164. extra: 1328/1219,
  49165. bottom: 117/1445
  49166. }
  49167. },
  49168. maw: {
  49169. height: math.unit(2, "feet"),
  49170. name: "Maw",
  49171. image: {
  49172. source: "./media/characters/shady/maw.svg"
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Nano",
  49179. height: math.unit(1, "mm")
  49180. },
  49181. {
  49182. name: "Micro",
  49183. height: math.unit(12, "mm")
  49184. },
  49185. {
  49186. name: "Tiny",
  49187. height: math.unit(3, "inches")
  49188. },
  49189. {
  49190. name: "Normal",
  49191. height: math.unit(6 + 2/12, "feet"),
  49192. default: true
  49193. },
  49194. {
  49195. name: "Big",
  49196. height: math.unit(15, "feet")
  49197. },
  49198. {
  49199. name: "Macro",
  49200. height: math.unit(150, "feet")
  49201. },
  49202. {
  49203. name: "Titanic",
  49204. height: math.unit(500, "feet")
  49205. },
  49206. ]
  49207. ))
  49208. characterMakers.push(() => makeCharacter(
  49209. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49210. {
  49211. front: {
  49212. height: math.unit(12, "feet"),
  49213. name: "Front",
  49214. image: {
  49215. source: "./media/characters/fenrir/front.svg",
  49216. extra: 968/875,
  49217. bottom: 22/990
  49218. }
  49219. },
  49220. },
  49221. [
  49222. {
  49223. name: "Big",
  49224. height: math.unit(12, "feet"),
  49225. default: true
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(5 + 4/12, "feet"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/makar/front.svg",
  49237. extra: 1181/1112,
  49238. bottom: 78/1259
  49239. }
  49240. },
  49241. },
  49242. [
  49243. {
  49244. name: "Normal",
  49245. height: math.unit(5 + 4/12, "feet"),
  49246. default: true
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49252. {
  49253. front: {
  49254. height: math.unit(5 + 7/12, "feet"),
  49255. name: "Front",
  49256. image: {
  49257. source: "./media/characters/callow/front.svg",
  49258. extra: 1482/1304,
  49259. bottom: 23/1505
  49260. }
  49261. },
  49262. back: {
  49263. height: math.unit(5 + 7/12, "feet"),
  49264. name: "Back",
  49265. image: {
  49266. source: "./media/characters/callow/back.svg",
  49267. extra: 1484/1296,
  49268. bottom: 25/1509
  49269. }
  49270. },
  49271. },
  49272. [
  49273. {
  49274. name: "Micro",
  49275. height: math.unit(3, "inches"),
  49276. default: true
  49277. },
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(5 + 7/12, "feet")
  49281. },
  49282. ]
  49283. ))
  49284. characterMakers.push(() => makeCharacter(
  49285. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49286. {
  49287. front: {
  49288. height: math.unit(6 + 2/12, "feet"),
  49289. name: "Front",
  49290. image: {
  49291. source: "./media/characters/natel/front.svg",
  49292. extra: 1833/1692,
  49293. bottom: 166/1999
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(6 + 2/12, "feet"),
  49301. default: true
  49302. },
  49303. ]
  49304. ))
  49305. characterMakers.push(() => makeCharacter(
  49306. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49307. {
  49308. front: {
  49309. height: math.unit(1.75, "meters"),
  49310. name: "Front",
  49311. image: {
  49312. source: "./media/characters/misu/front.svg",
  49313. extra: 1690/1558,
  49314. bottom: 234/1924
  49315. }
  49316. },
  49317. back: {
  49318. height: math.unit(1.75, "meters"),
  49319. name: "Back",
  49320. image: {
  49321. source: "./media/characters/misu/back.svg",
  49322. extra: 1762/1618,
  49323. bottom: 146/1908
  49324. }
  49325. },
  49326. frontNude: {
  49327. height: math.unit(1.75, "meters"),
  49328. name: "Front (Nude)",
  49329. image: {
  49330. source: "./media/characters/misu/front-nude.svg",
  49331. extra: 1690/1558,
  49332. bottom: 234/1924
  49333. }
  49334. },
  49335. backNude: {
  49336. height: math.unit(1.75, "meters"),
  49337. name: "Back (Nude)",
  49338. image: {
  49339. source: "./media/characters/misu/back-nude.svg",
  49340. extra: 1762/1618,
  49341. bottom: 146/1908
  49342. }
  49343. },
  49344. frontErect: {
  49345. height: math.unit(1.75, "meters"),
  49346. name: "Front (Erect)",
  49347. image: {
  49348. source: "./media/characters/misu/front-erect.svg",
  49349. extra: 1690/1558,
  49350. bottom: 234/1924
  49351. }
  49352. },
  49353. maw: {
  49354. height: math.unit(0.47, "meters"),
  49355. name: "Maw",
  49356. image: {
  49357. source: "./media/characters/misu/maw.svg"
  49358. }
  49359. },
  49360. head: {
  49361. height: math.unit(0.35, "meters"),
  49362. name: "Head",
  49363. image: {
  49364. source: "./media/characters/misu/head.svg"
  49365. }
  49366. },
  49367. rear: {
  49368. height: math.unit(0.47, "meters"),
  49369. name: "Rear",
  49370. image: {
  49371. source: "./media/characters/misu/rear.svg"
  49372. }
  49373. },
  49374. },
  49375. [
  49376. {
  49377. name: "Normal",
  49378. height: math.unit(1.75, "meters")
  49379. },
  49380. {
  49381. name: "Not good for the people",
  49382. height: math.unit(42, "meters")
  49383. },
  49384. {
  49385. name: "Not good for the neighborhood",
  49386. height: math.unit(135, "meters")
  49387. },
  49388. {
  49389. name: "Bit bigger problem",
  49390. height: math.unit(380, "meters"),
  49391. default: true
  49392. },
  49393. {
  49394. name: "Not good for the city",
  49395. height: math.unit(1.5, "km")
  49396. },
  49397. {
  49398. name: "Not good for the county",
  49399. height: math.unit(5.5, "km")
  49400. },
  49401. {
  49402. name: "Not good for the state",
  49403. height: math.unit(25, "km")
  49404. },
  49405. {
  49406. name: "Not good for the country",
  49407. height: math.unit(125, "km")
  49408. },
  49409. {
  49410. name: "Not good for the continent",
  49411. height: math.unit(2100, "km")
  49412. },
  49413. {
  49414. name: "Not good for the planet",
  49415. height: math.unit(35000, "km")
  49416. },
  49417. {
  49418. name: "Just no",
  49419. height: math.unit(8.5e18, "km")
  49420. },
  49421. ]
  49422. ))
  49423. characterMakers.push(() => makeCharacter(
  49424. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49425. {
  49426. front: {
  49427. height: math.unit(6.5, "feet"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/poppy/front.svg",
  49431. extra: 1878/1812,
  49432. bottom: 43/1921
  49433. }
  49434. },
  49435. feet: {
  49436. height: math.unit(1.06, "feet"),
  49437. name: "Feet",
  49438. image: {
  49439. source: "./media/characters/poppy/feet.svg",
  49440. extra: 1083/1083,
  49441. bottom: 87/1170
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Human",
  49448. height: math.unit(6.5, "feet")
  49449. },
  49450. {
  49451. name: "Default",
  49452. height: math.unit(300, "feet"),
  49453. default: true
  49454. },
  49455. {
  49456. name: "Huge",
  49457. height: math.unit(850, "feet")
  49458. },
  49459. {
  49460. name: "Mega",
  49461. height: math.unit(8000, "feet")
  49462. },
  49463. {
  49464. name: "Giga",
  49465. height: math.unit(300, "miles")
  49466. },
  49467. ]
  49468. ))
  49469. characterMakers.push(() => makeCharacter(
  49470. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49471. {
  49472. bipedal: {
  49473. height: math.unit(7, "feet"),
  49474. name: "Bipedal",
  49475. image: {
  49476. source: "./media/characters/zener/bipedal.svg",
  49477. extra: 874/805,
  49478. bottom: 109/983
  49479. }
  49480. },
  49481. quadrupedal: {
  49482. height: math.unit(4.64, "feet"),
  49483. name: "Quadrupedal",
  49484. image: {
  49485. source: "./media/characters/zener/quadrupedal.svg",
  49486. extra: 638/507,
  49487. bottom: 190/828
  49488. }
  49489. },
  49490. cock: {
  49491. height: math.unit(18, "inches"),
  49492. name: "Cock",
  49493. image: {
  49494. source: "./media/characters/zener/cock.svg"
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Normal",
  49501. height: math.unit(7, "feet"),
  49502. default: true
  49503. },
  49504. ]
  49505. ))
  49506. characterMakers.push(() => makeCharacter(
  49507. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49508. {
  49509. nude: {
  49510. height: math.unit(5 + 6/12, "feet"),
  49511. name: "Nude",
  49512. image: {
  49513. source: "./media/characters/charlie-dog/nude.svg",
  49514. extra: 768/734,
  49515. bottom: 26/794
  49516. }
  49517. },
  49518. dressed: {
  49519. height: math.unit(5 + 6/12, "feet"),
  49520. name: "Dressed",
  49521. image: {
  49522. source: "./media/characters/charlie-dog/dressed.svg",
  49523. extra: 768/734,
  49524. bottom: 26/794
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Normal",
  49531. height: math.unit(5 + 6/12, "feet"),
  49532. default: true
  49533. },
  49534. ]
  49535. ))
  49536. characterMakers.push(() => makeCharacter(
  49537. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49538. {
  49539. front: {
  49540. height: math.unit(6 + 4/12, "feet"),
  49541. name: "Front",
  49542. image: {
  49543. source: "./media/characters/ir'istrasz/front.svg",
  49544. extra: 1014/977,
  49545. bottom: 65/1079
  49546. }
  49547. },
  49548. back: {
  49549. height: math.unit(6 + 4/12, "feet"),
  49550. name: "Back",
  49551. image: {
  49552. source: "./media/characters/ir'istrasz/back.svg",
  49553. extra: 1024/992,
  49554. bottom: 34/1058
  49555. }
  49556. },
  49557. },
  49558. [
  49559. {
  49560. name: "Normal",
  49561. height: math.unit(6 + 4/12, "feet"),
  49562. default: true
  49563. },
  49564. ]
  49565. ))
  49566. characterMakers.push(() => makeCharacter(
  49567. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49568. {
  49569. front: {
  49570. height: math.unit(5 + 8/12, "feet"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/dee-ditto/front.svg",
  49574. extra: 1874/1785,
  49575. bottom: 68/1942
  49576. }
  49577. },
  49578. back: {
  49579. height: math.unit(5 + 8/12, "feet"),
  49580. name: "Back",
  49581. image: {
  49582. source: "./media/characters/dee-ditto/back.svg",
  49583. extra: 1870/1783,
  49584. bottom: 77/1947
  49585. }
  49586. },
  49587. },
  49588. [
  49589. {
  49590. name: "Normal",
  49591. height: math.unit(5 + 8/12, "feet"),
  49592. default: true
  49593. },
  49594. ]
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49598. {
  49599. front: {
  49600. height: math.unit(7 + 6/12, "feet"),
  49601. name: "Front",
  49602. image: {
  49603. source: "./media/characters/fey/front.svg",
  49604. extra: 995/979,
  49605. bottom: 30/1025
  49606. }
  49607. },
  49608. back: {
  49609. height: math.unit(7 + 6/12, "feet"),
  49610. name: "Back",
  49611. image: {
  49612. source: "./media/characters/fey/back.svg",
  49613. extra: 1079/1008,
  49614. bottom: 5/1084
  49615. }
  49616. },
  49617. dressed: {
  49618. height: math.unit(7 + 6/12, "feet"),
  49619. name: "Dressed",
  49620. image: {
  49621. source: "./media/characters/fey/dressed.svg",
  49622. extra: 995/979,
  49623. bottom: 30/1025
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(7 + 6/12, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49637. {
  49638. standing: {
  49639. height: math.unit(17, "feet"),
  49640. name: "Standing",
  49641. image: {
  49642. source: "./media/characters/aster/standing.svg",
  49643. extra: 1798/1598,
  49644. bottom: 117/1915
  49645. }
  49646. },
  49647. },
  49648. [
  49649. {
  49650. name: "Normal",
  49651. height: math.unit(17, "feet"),
  49652. default: true
  49653. },
  49654. {
  49655. name: "Homewrecker",
  49656. height: math.unit(95, "feet")
  49657. },
  49658. {
  49659. name: "Planet Devourer",
  49660. height: math.unit(1008000, "miles")
  49661. },
  49662. ]
  49663. ))
  49664. characterMakers.push(() => makeCharacter(
  49665. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49666. {
  49667. front: {
  49668. height: math.unit(6 + 5/12, "feet"),
  49669. weight: math.unit(265, "lb"),
  49670. name: "Front",
  49671. image: {
  49672. source: "./media/characters/devon-childs/front.svg",
  49673. extra: 1795/1721,
  49674. bottom: 41/1836
  49675. }
  49676. },
  49677. side: {
  49678. height: math.unit(6 + 5/12, "feet"),
  49679. weight: math.unit(265, "lb"),
  49680. name: "Side",
  49681. image: {
  49682. source: "./media/characters/devon-childs/side.svg",
  49683. extra: 1812/1738,
  49684. bottom: 30/1842
  49685. }
  49686. },
  49687. back: {
  49688. height: math.unit(6 + 5/12, "feet"),
  49689. weight: math.unit(265, "lb"),
  49690. name: "Back",
  49691. image: {
  49692. source: "./media/characters/devon-childs/back.svg",
  49693. extra: 1808/1735,
  49694. bottom: 23/1831
  49695. }
  49696. },
  49697. hand: {
  49698. height: math.unit(1.464, "feet"),
  49699. name: "Hand",
  49700. image: {
  49701. source: "./media/characters/devon-childs/hand.svg"
  49702. }
  49703. },
  49704. foot: {
  49705. height: math.unit(1.6, "feet"),
  49706. name: "Foot",
  49707. image: {
  49708. source: "./media/characters/devon-childs/foot.svg"
  49709. }
  49710. },
  49711. },
  49712. [
  49713. {
  49714. name: "Micro",
  49715. height: math.unit(7, "cm")
  49716. },
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(6 + 5/12, "feet"),
  49720. default: true
  49721. },
  49722. {
  49723. name: "Macro",
  49724. height: math.unit(154, "feet")
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49730. {
  49731. front: {
  49732. height: math.unit(6, "feet"),
  49733. weight: math.unit(180, "lb"),
  49734. name: "Front",
  49735. image: {
  49736. source: "./media/characters/lydemox-vir/front.svg",
  49737. extra: 1632/1435,
  49738. bottom: 58/1690
  49739. }
  49740. },
  49741. frontSFW: {
  49742. height: math.unit(6, "feet"),
  49743. weight: math.unit(180, "lb"),
  49744. name: "Front (SFW)",
  49745. image: {
  49746. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49747. extra: 1632/1435,
  49748. bottom: 58/1690
  49749. }
  49750. },
  49751. back: {
  49752. height: math.unit(6, "feet"),
  49753. weight: math.unit(180, "lb"),
  49754. name: "Back",
  49755. image: {
  49756. source: "./media/characters/lydemox-vir/back.svg",
  49757. extra: 1593/1408,
  49758. bottom: 31/1624
  49759. }
  49760. },
  49761. paw: {
  49762. height: math.unit(1.85, "feet"),
  49763. name: "Paw",
  49764. image: {
  49765. source: "./media/characters/lydemox-vir/paw.svg"
  49766. }
  49767. },
  49768. dick: {
  49769. height: math.unit(1.8, "feet"),
  49770. name: "Dick",
  49771. image: {
  49772. source: "./media/characters/lydemox-vir/dick.svg"
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Macro",
  49779. height: math.unit(100, "feet"),
  49780. default: true
  49781. },
  49782. {
  49783. name: "Teramacro",
  49784. height: math.unit(1, "earth")
  49785. },
  49786. {
  49787. name: "Planetary",
  49788. height: math.unit(20, "earths")
  49789. },
  49790. ]
  49791. ))
  49792. characterMakers.push(() => makeCharacter(
  49793. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49794. {
  49795. front: {
  49796. height: math.unit(15 + 8/12, "feet"),
  49797. weight: math.unit(1237, "kg"),
  49798. name: "Front",
  49799. image: {
  49800. source: "./media/characters/mia/front.svg",
  49801. extra: 1573/1446,
  49802. bottom: 58/1631
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Small",
  49809. height: math.unit(9 + 5/12, "feet")
  49810. },
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(15 + 8/12, "feet"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49820. {
  49821. front: {
  49822. height: math.unit(10 + 6/12, "feet"),
  49823. weight: math.unit(1.3, "tons"),
  49824. name: "Front",
  49825. image: {
  49826. source: "./media/characters/mr-graves/front.svg",
  49827. extra: 1779/1695,
  49828. bottom: 198/1977
  49829. }
  49830. },
  49831. },
  49832. [
  49833. {
  49834. name: "Normal",
  49835. height: math.unit(10 + 6 /12, "feet"),
  49836. default: true
  49837. },
  49838. ]
  49839. ))
  49840. characterMakers.push(() => makeCharacter(
  49841. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49842. {
  49843. dressedFront: {
  49844. height: math.unit(5 + 8/12, "feet"),
  49845. weight: math.unit(125, "lb"),
  49846. name: "Dressed (Front)",
  49847. image: {
  49848. source: "./media/characters/jess/dressed-front.svg",
  49849. extra: 1176/1152,
  49850. bottom: 42/1218
  49851. }
  49852. },
  49853. dressedSide: {
  49854. height: math.unit(5 + 8/12, "feet"),
  49855. weight: math.unit(125, "lb"),
  49856. name: "Dressed (Side)",
  49857. image: {
  49858. source: "./media/characters/jess/dressed-side.svg",
  49859. extra: 1204/1190,
  49860. bottom: 6/1210
  49861. }
  49862. },
  49863. nudeFront: {
  49864. height: math.unit(5 + 8/12, "feet"),
  49865. weight: math.unit(125, "lb"),
  49866. name: "Nude (Front)",
  49867. image: {
  49868. source: "./media/characters/jess/nude-front.svg",
  49869. extra: 1176/1152,
  49870. bottom: 42/1218
  49871. }
  49872. },
  49873. nudeSide: {
  49874. height: math.unit(5 + 8/12, "feet"),
  49875. weight: math.unit(125, "lb"),
  49876. name: "Nude (Side)",
  49877. image: {
  49878. source: "./media/characters/jess/nude-side.svg",
  49879. extra: 1204/1190,
  49880. bottom: 6/1210
  49881. }
  49882. },
  49883. organsFront: {
  49884. height: math.unit(2.83799342105, "feet"),
  49885. name: "Organs (Front)",
  49886. image: {
  49887. source: "./media/characters/jess/organs-front.svg"
  49888. }
  49889. },
  49890. organsSide: {
  49891. height: math.unit(2.64225290474, "feet"),
  49892. name: "Organs (Side)",
  49893. image: {
  49894. source: "./media/characters/jess/organs-side.svg"
  49895. }
  49896. },
  49897. digestiveTractFront: {
  49898. height: math.unit(2.8106580871, "feet"),
  49899. name: "Digestive Tract (Front)",
  49900. image: {
  49901. source: "./media/characters/jess/digestive-tract-front.svg"
  49902. }
  49903. },
  49904. digestiveTractSide: {
  49905. height: math.unit(2.54365045014, "feet"),
  49906. name: "Digestive Tract (Side)",
  49907. image: {
  49908. source: "./media/characters/jess/digestive-tract-side.svg"
  49909. }
  49910. },
  49911. respiratorySystemFront: {
  49912. height: math.unit(1.11196233456, "feet"),
  49913. name: "Respiratory System (Front)",
  49914. image: {
  49915. source: "./media/characters/jess/respiratory-system-front.svg"
  49916. }
  49917. },
  49918. respiratorySystemSide: {
  49919. height: math.unit(0.89327966297, "feet"),
  49920. name: "Respiratory System (Side)",
  49921. image: {
  49922. source: "./media/characters/jess/respiratory-system-side.svg"
  49923. }
  49924. },
  49925. urinaryTractFront: {
  49926. height: math.unit(1.16126356186, "feet"),
  49927. name: "Urinary Tract (Front)",
  49928. image: {
  49929. source: "./media/characters/jess/urinary-tract-front.svg"
  49930. }
  49931. },
  49932. urinaryTractSide: {
  49933. height: math.unit(1.20910039627, "feet"),
  49934. name: "Urinary Tract (Side)",
  49935. image: {
  49936. source: "./media/characters/jess/urinary-tract-side.svg"
  49937. }
  49938. },
  49939. reproductiveOrgansFront: {
  49940. height: math.unit(0.48422591566, "feet"),
  49941. name: "Reproductive Organs (Front)",
  49942. image: {
  49943. source: "./media/characters/jess/reproductive-organs-front.svg"
  49944. }
  49945. },
  49946. reproductiveOrgansSide: {
  49947. height: math.unit(0.61553314481, "feet"),
  49948. name: "Reproductive Organs (Side)",
  49949. image: {
  49950. source: "./media/characters/jess/reproductive-organs-side.svg"
  49951. }
  49952. },
  49953. breastsFront: {
  49954. height: math.unit(0.47690395121, "feet"),
  49955. name: "Breasts (Front)",
  49956. image: {
  49957. source: "./media/characters/jess/breasts-front.svg"
  49958. }
  49959. },
  49960. breastsSide: {
  49961. height: math.unit(0.30556998307, "feet"),
  49962. name: "Breasts (Side)",
  49963. image: {
  49964. source: "./media/characters/jess/breasts-side.svg"
  49965. }
  49966. },
  49967. heartFront: {
  49968. height: math.unit(0.53011022622, "feet"),
  49969. name: "Heart (Front)",
  49970. image: {
  49971. source: "./media/characters/jess/heart-front.svg"
  49972. }
  49973. },
  49974. heartSide: {
  49975. height: math.unit(0.51790695213, "feet"),
  49976. name: "Heart (Side)",
  49977. image: {
  49978. source: "./media/characters/jess/heart-side.svg"
  49979. }
  49980. },
  49981. earsAndNoseFront: {
  49982. height: math.unit(0.29385483995, "feet"),
  49983. name: "Ears and Nose (Front)",
  49984. image: {
  49985. source: "./media/characters/jess/ears-and-nose-front.svg"
  49986. }
  49987. },
  49988. earsAndNoseSide: {
  49989. height: math.unit(0.18109658741, "feet"),
  49990. name: "Ears and Nose (Side)",
  49991. image: {
  49992. source: "./media/characters/jess/ears-and-nose-side.svg"
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(5 + 8/12, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(6, "feet"),
  50009. weight: math.unit(6.64467e-7, "grams"),
  50010. name: "Front",
  50011. image: {
  50012. source: "./media/characters/wimpering/front.svg",
  50013. extra: 597/587,
  50014. bottom: 34/631
  50015. }
  50016. },
  50017. },
  50018. [
  50019. {
  50020. name: "Micro",
  50021. height: math.unit(0.4, "mm"),
  50022. default: true
  50023. },
  50024. ]
  50025. ))
  50026. characterMakers.push(() => makeCharacter(
  50027. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50028. {
  50029. front: {
  50030. height: math.unit(5 + 2/12, "feet"),
  50031. weight: math.unit(110, "lb"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/keltre/front.svg",
  50035. extra: 1099/1057,
  50036. bottom: 22/1121
  50037. }
  50038. },
  50039. back: {
  50040. height: math.unit(5 + 2/12, "feet"),
  50041. weight: math.unit(110, "lb"),
  50042. name: "Back",
  50043. image: {
  50044. source: "./media/characters/keltre/back.svg",
  50045. extra: 1095/1053,
  50046. bottom: 17/1112
  50047. }
  50048. },
  50049. dressed: {
  50050. height: math.unit(5 + 2/12, "feet"),
  50051. weight: math.unit(110, "lb"),
  50052. name: "Dressed",
  50053. image: {
  50054. source: "./media/characters/keltre/dressed.svg",
  50055. extra: 1099/1057,
  50056. bottom: 22/1121
  50057. }
  50058. },
  50059. winter: {
  50060. height: math.unit(5 + 2/12, "feet"),
  50061. weight: math.unit(110, "lb"),
  50062. name: "Winter",
  50063. image: {
  50064. source: "./media/characters/keltre/winter.svg",
  50065. extra: 1099/1057,
  50066. bottom: 22/1121
  50067. }
  50068. },
  50069. head: {
  50070. height: math.unit(1.61 * 0.86, "feet"),
  50071. name: "Head",
  50072. image: {
  50073. source: "./media/characters/keltre/head.svg",
  50074. extra: 534/421,
  50075. bottom: 0/534
  50076. }
  50077. },
  50078. hand: {
  50079. height: math.unit(1.3 * 0.86, "feet"),
  50080. name: "Hand",
  50081. image: {
  50082. source: "./media/characters/keltre/hand.svg"
  50083. }
  50084. },
  50085. foot: {
  50086. height: math.unit(1.8 * 0.86, "feet"),
  50087. name: "Foot",
  50088. image: {
  50089. source: "./media/characters/keltre/foot.svg"
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Fine",
  50096. height: math.unit(1, "inch")
  50097. },
  50098. {
  50099. name: "Dimnutive",
  50100. height: math.unit(4, "inches")
  50101. },
  50102. {
  50103. name: "Tiny",
  50104. height: math.unit(1, "foot")
  50105. },
  50106. {
  50107. name: "Small",
  50108. height: math.unit(3, "feet")
  50109. },
  50110. {
  50111. name: "Normal",
  50112. height: math.unit(5 + 2/12, "feet"),
  50113. default: true
  50114. },
  50115. ]
  50116. ))
  50117. characterMakers.push(() => makeCharacter(
  50118. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50119. {
  50120. front: {
  50121. height: math.unit(6 + 2/12, "feet"),
  50122. name: "Front",
  50123. image: {
  50124. source: "./media/characters/nox/front.svg",
  50125. extra: 1917/1830,
  50126. bottom: 74/1991
  50127. }
  50128. },
  50129. back: {
  50130. height: math.unit(6 + 2/12, "feet"),
  50131. name: "Back",
  50132. image: {
  50133. source: "./media/characters/nox/back.svg",
  50134. extra: 1896/1815,
  50135. bottom: 21/1917
  50136. }
  50137. },
  50138. head: {
  50139. height: math.unit(1.1, "feet"),
  50140. name: "Head",
  50141. image: {
  50142. source: "./media/characters/nox/head.svg",
  50143. extra: 874/704,
  50144. bottom: 0/874
  50145. }
  50146. },
  50147. tattoo: {
  50148. height: math.unit(0.729, "feet"),
  50149. name: "Tattoo",
  50150. image: {
  50151. source: "./media/characters/nox/tattoo.svg"
  50152. }
  50153. },
  50154. },
  50155. [
  50156. {
  50157. name: "Normal",
  50158. height: math.unit(6 + 2/12, "feet")
  50159. },
  50160. {
  50161. name: "Gigamacro",
  50162. height: math.unit(2, "earths"),
  50163. default: true
  50164. },
  50165. {
  50166. name: "Cosmic",
  50167. height: math.unit(867, "yottameters")
  50168. },
  50169. ]
  50170. ))
  50171. characterMakers.push(() => makeCharacter(
  50172. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50173. {
  50174. front: {
  50175. height: math.unit(6, "feet"),
  50176. weight: math.unit(150, "lb"),
  50177. name: "Front",
  50178. image: {
  50179. source: "./media/characters/caspian/front.svg",
  50180. extra: 1443/1359,
  50181. bottom: 0/1443
  50182. }
  50183. },
  50184. back: {
  50185. height: math.unit(6, "feet"),
  50186. weight: math.unit(150, "lb"),
  50187. name: "Back",
  50188. image: {
  50189. source: "./media/characters/caspian/back.svg",
  50190. extra: 1379/1309,
  50191. bottom: 0/1379
  50192. }
  50193. },
  50194. head: {
  50195. height: math.unit(0.9, "feet"),
  50196. name: "Head",
  50197. image: {
  50198. source: "./media/characters/caspian/head.svg",
  50199. extra: 692/492,
  50200. bottom: 0/692
  50201. }
  50202. },
  50203. headAlt: {
  50204. height: math.unit(0.95, "feet"),
  50205. name: "Head (Alt)",
  50206. image: {
  50207. source: "./media/characters/caspian/head-alt.svg",
  50208. extra: 668/508,
  50209. bottom: 0/668
  50210. }
  50211. },
  50212. hand: {
  50213. height: math.unit(0.8, "feet"),
  50214. name: "Hand",
  50215. image: {
  50216. source: "./media/characters/caspian/hand.svg"
  50217. }
  50218. },
  50219. paw: {
  50220. height: math.unit(0.95, "feet"),
  50221. name: "Paw",
  50222. image: {
  50223. source: "./media/characters/caspian/paw.svg"
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Normal",
  50230. height: math.unit(162, "feet"),
  50231. default: true
  50232. },
  50233. ]
  50234. ))
  50235. characterMakers.push(() => makeCharacter(
  50236. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50237. {
  50238. front: {
  50239. height: math.unit(6, "feet"),
  50240. name: "Front",
  50241. image: {
  50242. source: "./media/characters/myra-aisling/front.svg",
  50243. extra: 1268/1166,
  50244. bottom: 73/1341
  50245. }
  50246. },
  50247. back: {
  50248. height: math.unit(6, "feet"),
  50249. name: "Back",
  50250. image: {
  50251. source: "./media/characters/myra-aisling/back.svg",
  50252. extra: 1249/1149,
  50253. bottom: 79/1328
  50254. }
  50255. },
  50256. dressed: {
  50257. height: math.unit(6, "feet"),
  50258. name: "Dressed",
  50259. image: {
  50260. source: "./media/characters/myra-aisling/dressed.svg",
  50261. extra: 1290/1189,
  50262. bottom: 47/1337
  50263. }
  50264. },
  50265. hand: {
  50266. height: math.unit(1.1, "feet"),
  50267. name: "Hand",
  50268. image: {
  50269. source: "./media/characters/myra-aisling/hand.svg"
  50270. }
  50271. },
  50272. paw: {
  50273. height: math.unit(1.23, "feet"),
  50274. name: "Paw",
  50275. image: {
  50276. source: "./media/characters/myra-aisling/paw.svg"
  50277. }
  50278. },
  50279. },
  50280. [
  50281. {
  50282. name: "Normal",
  50283. height: math.unit(160, "feet"),
  50284. default: true
  50285. },
  50286. ]
  50287. ))
  50288. characterMakers.push(() => makeCharacter(
  50289. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50290. {
  50291. front: {
  50292. height: math.unit(6, "feet"),
  50293. name: "Front",
  50294. image: {
  50295. source: "./media/characters/tenley-sidero/front.svg",
  50296. extra: 1365/1276,
  50297. bottom: 47/1412
  50298. }
  50299. },
  50300. back: {
  50301. height: math.unit(6, "feet"),
  50302. name: "Back",
  50303. image: {
  50304. source: "./media/characters/tenley-sidero/back.svg",
  50305. extra: 1383/1283,
  50306. bottom: 35/1418
  50307. }
  50308. },
  50309. dressed: {
  50310. height: math.unit(6, "feet"),
  50311. name: "Dressed",
  50312. image: {
  50313. source: "./media/characters/tenley-sidero/dressed.svg",
  50314. extra: 1364/1275,
  50315. bottom: 42/1406
  50316. }
  50317. },
  50318. head: {
  50319. height: math.unit(1.47, "feet"),
  50320. name: "Head",
  50321. image: {
  50322. source: "./media/characters/tenley-sidero/head.svg",
  50323. extra: 610/490,
  50324. bottom: 0/610
  50325. }
  50326. },
  50327. },
  50328. [
  50329. {
  50330. name: "Normal",
  50331. height: math.unit(154, "feet"),
  50332. default: true
  50333. },
  50334. ]
  50335. ))
  50336. characterMakers.push(() => makeCharacter(
  50337. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50338. {
  50339. front: {
  50340. height: math.unit(5, "inches"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/mallory/front.svg",
  50344. extra: 1919/1678,
  50345. bottom: 29/1948
  50346. }
  50347. },
  50348. hand: {
  50349. height: math.unit(0.73, "inches"),
  50350. name: "Hand",
  50351. image: {
  50352. source: "./media/characters/mallory/hand.svg"
  50353. }
  50354. },
  50355. paw: {
  50356. height: math.unit(0.68, "inches"),
  50357. name: "Paw",
  50358. image: {
  50359. source: "./media/characters/mallory/paw.svg"
  50360. }
  50361. },
  50362. },
  50363. [
  50364. {
  50365. name: "Small",
  50366. height: math.unit(5, "inches"),
  50367. default: true
  50368. },
  50369. ]
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50373. {
  50374. naked: {
  50375. height: math.unit(6, "feet"),
  50376. name: "Naked",
  50377. image: {
  50378. source: "./media/characters/mab/naked.svg",
  50379. extra: 1855/1757,
  50380. bottom: 208/2063
  50381. }
  50382. },
  50383. outside: {
  50384. height: math.unit(6, "feet"),
  50385. name: "Outside",
  50386. image: {
  50387. source: "./media/characters/mab/outside.svg",
  50388. extra: 1855/1757,
  50389. bottom: 208/2063
  50390. }
  50391. },
  50392. party: {
  50393. height: math.unit(6, "feet"),
  50394. name: "Party",
  50395. image: {
  50396. source: "./media/characters/mab/party.svg",
  50397. extra: 1855/1757,
  50398. bottom: 208/2063
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Normal",
  50405. height: math.unit(165, "feet"),
  50406. default: true
  50407. },
  50408. ]
  50409. ))
  50410. characterMakers.push(() => makeCharacter(
  50411. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50412. {
  50413. feral: {
  50414. height: math.unit(12, "feet"),
  50415. weight: math.unit(20000, "lb"),
  50416. name: "Side",
  50417. image: {
  50418. source: "./media/characters/winter/feral.svg",
  50419. extra: 1286/943,
  50420. bottom: 112/1398
  50421. },
  50422. form: "feral",
  50423. default: true
  50424. },
  50425. feralNsfw: {
  50426. height: math.unit(12, "feet"),
  50427. weight: math.unit(20000, "lb"),
  50428. name: "Side (NSFW)",
  50429. image: {
  50430. source: "./media/characters/winter/feral-nsfw.svg",
  50431. extra: 1286/943,
  50432. bottom: 112/1398
  50433. },
  50434. form: "feral"
  50435. },
  50436. dick: {
  50437. height: math.unit(3.79, "feet"),
  50438. name: "Dick",
  50439. image: {
  50440. source: "./media/characters/winter/dick.svg"
  50441. },
  50442. form: "feral"
  50443. },
  50444. anthro: {
  50445. height: math.unit(12, "feet"),
  50446. weight: math.unit(10, "tons"),
  50447. name: "Anthro",
  50448. image: {
  50449. source: "./media/characters/winter/anthro.svg",
  50450. extra: 1701/1553,
  50451. bottom: 64/1765
  50452. },
  50453. form: "anthro",
  50454. default: true
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Big",
  50460. height: math.unit(12, "feet"),
  50461. default: true,
  50462. form: "feral"
  50463. },
  50464. {
  50465. name: "Big",
  50466. height: math.unit(12, "feet"),
  50467. default: true,
  50468. form: "anthro"
  50469. },
  50470. ],
  50471. {
  50472. "feral": {
  50473. name: "Feral",
  50474. default: true
  50475. },
  50476. "anthro": {
  50477. name: "Anthro"
  50478. }
  50479. }
  50480. ))
  50481. characterMakers.push(() => makeCharacter(
  50482. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50483. {
  50484. front: {
  50485. height: math.unit(4.1, "inches"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/alto/front.svg",
  50489. extra: 736/627,
  50490. bottom: 90/826
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(4.1, "inches"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50504. {
  50505. sitting: {
  50506. height: math.unit(3, "feet"),
  50507. name: "Sitting",
  50508. image: {
  50509. source: "./media/characters/ratstrid-v/sitting.svg",
  50510. extra: 355/310,
  50511. bottom: 136/491
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Normal",
  50518. height: math.unit(3, "feet"),
  50519. default: true
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50525. {
  50526. back: {
  50527. height: math.unit(6, "feet"),
  50528. weight: math.unit(450, "lb"),
  50529. name: "Back",
  50530. image: {
  50531. source: "./media/characters/siz/back.svg",
  50532. extra: 1449/1274,
  50533. bottom: 13/1462
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Smallest",
  50540. height: math.unit(18 + 3/12, "feet")
  50541. },
  50542. {
  50543. name: "Modest",
  50544. height: math.unit(56 + 8/12, "feet"),
  50545. default: true
  50546. },
  50547. {
  50548. name: "Largest",
  50549. height: math.unit(3590, "feet")
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(5 + 9/12, "feet"),
  50558. weight: math.unit(150, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/ven/front.svg",
  50562. extra: 1372/1320,
  50563. bottom: 73/1445
  50564. }
  50565. },
  50566. side: {
  50567. height: math.unit(5 + 9/12, "feet"),
  50568. weight: math.unit(1150, "lb"),
  50569. name: "Side",
  50570. image: {
  50571. source: "./media/characters/ven/side.svg",
  50572. extra: 1119/1070,
  50573. bottom: 42/1161
  50574. },
  50575. default: true
  50576. },
  50577. },
  50578. [
  50579. {
  50580. name: "Normal",
  50581. height: math.unit(5 + 9/12, "feet"),
  50582. default: true
  50583. },
  50584. ]
  50585. ))
  50586. characterMakers.push(() => makeCharacter(
  50587. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50588. {
  50589. front: {
  50590. height: math.unit(12, "feet"),
  50591. weight: math.unit(1000, "kg"),
  50592. name: "Front",
  50593. image: {
  50594. source: "./media/characters/maple/front.svg",
  50595. extra: 1193/1081,
  50596. bottom: 22/1215
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Compressed",
  50603. height: math.unit(7, "feet")
  50604. },
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(12, "feet"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50614. {
  50615. front: {
  50616. height: math.unit(9, "feet"),
  50617. weight: math.unit(1500, "lb"),
  50618. name: "Front",
  50619. image: {
  50620. source: "./media/characters/nora/front.svg",
  50621. extra: 1348/1286,
  50622. bottom: 218/1566
  50623. }
  50624. },
  50625. erect: {
  50626. height: math.unit(9, "feet"),
  50627. weight: math.unit(11500, "lb"),
  50628. name: "Erect",
  50629. image: {
  50630. source: "./media/characters/nora/erect.svg",
  50631. extra: 1488/1433,
  50632. bottom: 133/1621
  50633. }
  50634. },
  50635. },
  50636. [
  50637. {
  50638. name: "Normal",
  50639. height: math.unit(9, "feet"),
  50640. default: true
  50641. },
  50642. ]
  50643. ))
  50644. characterMakers.push(() => makeCharacter(
  50645. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50646. {
  50647. front: {
  50648. height: math.unit(25, "feet"),
  50649. weight: math.unit(27500, "lb"),
  50650. name: "Front",
  50651. image: {
  50652. source: "./media/characters/north-caudin/front.svg",
  50653. extra: 1184/1082,
  50654. bottom: 23/1207
  50655. }
  50656. },
  50657. },
  50658. [
  50659. {
  50660. name: "Compressed",
  50661. height: math.unit(10, "feet")
  50662. },
  50663. {
  50664. name: "Normal",
  50665. height: math.unit(25, "feet"),
  50666. default: true
  50667. },
  50668. ]
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50672. {
  50673. front: {
  50674. height: math.unit(9, "feet"),
  50675. weight: math.unit(1250, "lb"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/merrian/front.svg",
  50679. extra: 2393/2304,
  50680. bottom: 40/2433
  50681. }
  50682. },
  50683. },
  50684. [
  50685. {
  50686. name: "Normal",
  50687. height: math.unit(9, "feet"),
  50688. default: true
  50689. },
  50690. ]
  50691. ))
  50692. characterMakers.push(() => makeCharacter(
  50693. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50694. {
  50695. front: {
  50696. height: math.unit(9, "feet"),
  50697. weight: math.unit(1000, "lb"),
  50698. name: "Front",
  50699. image: {
  50700. source: "./media/characters/hazel/front.svg",
  50701. extra: 2351/2298,
  50702. bottom: 38/2389
  50703. }
  50704. },
  50705. },
  50706. [
  50707. {
  50708. name: "Normal",
  50709. height: math.unit(9, "feet"),
  50710. default: true
  50711. },
  50712. ]
  50713. ))
  50714. characterMakers.push(() => makeCharacter(
  50715. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50716. {
  50717. front: {
  50718. height: math.unit(13, "feet"),
  50719. weight: math.unit(3200, "lb"),
  50720. name: "Front",
  50721. image: {
  50722. source: "./media/characters/emma/front.svg",
  50723. extra: 2263/2029,
  50724. bottom: 68/2331
  50725. }
  50726. },
  50727. },
  50728. [
  50729. {
  50730. name: "Normal",
  50731. height: math.unit(13, "feet"),
  50732. default: true
  50733. },
  50734. ]
  50735. ))
  50736. characterMakers.push(() => makeCharacter(
  50737. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50738. {
  50739. front: {
  50740. height: math.unit(11 + 9/12, "feet"),
  50741. weight: math.unit(2500, "lb"),
  50742. name: "Front",
  50743. image: {
  50744. source: "./media/characters/ilumina/front.svg",
  50745. extra: 2248/2209,
  50746. bottom: 164/2412
  50747. }
  50748. },
  50749. },
  50750. [
  50751. {
  50752. name: "Normal",
  50753. height: math.unit(11 + 9/12, "feet"),
  50754. default: true
  50755. },
  50756. ]
  50757. ))
  50758. characterMakers.push(() => makeCharacter(
  50759. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50760. {
  50761. front: {
  50762. height: math.unit(8 + 10/12, "feet"),
  50763. weight: math.unit(1350, "lb"),
  50764. name: "Front",
  50765. image: {
  50766. source: "./media/characters/moonshine/front.svg",
  50767. extra: 2395/2288,
  50768. bottom: 40/2435
  50769. }
  50770. },
  50771. },
  50772. [
  50773. {
  50774. name: "Normal",
  50775. height: math.unit(8 + 10/12, "feet"),
  50776. default: true
  50777. },
  50778. ]
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(14, "feet"),
  50785. weight: math.unit(3400, "lb"),
  50786. name: "Front",
  50787. image: {
  50788. source: "./media/characters/aletia/front.svg",
  50789. extra: 1185/1052,
  50790. bottom: 21/1206
  50791. }
  50792. },
  50793. },
  50794. [
  50795. {
  50796. name: "Compressed",
  50797. height: math.unit(8, "feet")
  50798. },
  50799. {
  50800. name: "Normal",
  50801. height: math.unit(14, "feet"),
  50802. default: true
  50803. },
  50804. ]
  50805. ))
  50806. characterMakers.push(() => makeCharacter(
  50807. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50808. {
  50809. front: {
  50810. height: math.unit(17, "feet"),
  50811. weight: math.unit(6500, "lb"),
  50812. name: "Front",
  50813. image: {
  50814. source: "./media/characters/deidra/front.svg",
  50815. extra: 1201/1081,
  50816. bottom: 16/1217
  50817. }
  50818. },
  50819. },
  50820. [
  50821. {
  50822. name: "Compressed",
  50823. height: math.unit(9 + 6/12, "feet")
  50824. },
  50825. {
  50826. name: "Normal",
  50827. height: math.unit(17, "feet"),
  50828. default: true
  50829. },
  50830. ]
  50831. ))
  50832. characterMakers.push(() => makeCharacter(
  50833. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50834. {
  50835. front: {
  50836. height: math.unit(7 + 4/12, "feet"),
  50837. weight: math.unit(280, "lb"),
  50838. name: "Front",
  50839. image: {
  50840. source: "./media/characters/freki-yrmori/front.svg",
  50841. extra: 1286/1182,
  50842. bottom: 29/1315
  50843. }
  50844. },
  50845. maw: {
  50846. height: math.unit(0.9, "feet"),
  50847. name: "Maw",
  50848. image: {
  50849. source: "./media/characters/freki-yrmori/maw.svg"
  50850. }
  50851. },
  50852. },
  50853. [
  50854. {
  50855. name: "Normal",
  50856. height: math.unit(7 + 4/12, "feet"),
  50857. default: true
  50858. },
  50859. {
  50860. name: "Macro",
  50861. height: math.unit(38.5, "meters")
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50867. {
  50868. side: {
  50869. height: math.unit(47.2, "meters"),
  50870. weight: math.unit(10000, "tons"),
  50871. name: "Side",
  50872. image: {
  50873. source: "./media/characters/aetherios/side.svg",
  50874. extra: 2363/642,
  50875. bottom: 221/2584
  50876. }
  50877. },
  50878. top: {
  50879. height: math.unit(240, "meters"),
  50880. weight: math.unit(10000, "tons"),
  50881. name: "Top",
  50882. image: {
  50883. source: "./media/characters/aetherios/top.svg"
  50884. }
  50885. },
  50886. bottom: {
  50887. height: math.unit(240, "meters"),
  50888. weight: math.unit(10000, "tons"),
  50889. name: "Bottom",
  50890. image: {
  50891. source: "./media/characters/aetherios/bottom.svg"
  50892. }
  50893. },
  50894. head: {
  50895. height: math.unit(38.6, "meters"),
  50896. name: "Head",
  50897. image: {
  50898. source: "./media/characters/aetherios/head.svg",
  50899. extra: 1335/1112,
  50900. bottom: 0/1335
  50901. }
  50902. },
  50903. front: {
  50904. height: math.unit(29, "meters"),
  50905. name: "Front",
  50906. image: {
  50907. source: "./media/characters/aetherios/front.svg",
  50908. extra: 1266/953,
  50909. bottom: 158/1424
  50910. }
  50911. },
  50912. maw: {
  50913. height: math.unit(16.37, "meters"),
  50914. name: "Maw",
  50915. image: {
  50916. source: "./media/characters/aetherios/maw.svg",
  50917. extra: 748/637,
  50918. bottom: 0/748
  50919. },
  50920. extraAttributes: {
  50921. preyCapacity: {
  50922. name: "Capacity",
  50923. power: 3,
  50924. type: "volume",
  50925. base: math.unit(1000, "people")
  50926. },
  50927. tongueSize: {
  50928. name: "Tongue Size",
  50929. power: 2,
  50930. type: "area",
  50931. base: math.unit(21, "m^2")
  50932. }
  50933. }
  50934. },
  50935. forepaw: {
  50936. height: math.unit(18, "meters"),
  50937. name: "Forepaw",
  50938. image: {
  50939. source: "./media/characters/aetherios/forepaw.svg"
  50940. }
  50941. },
  50942. hindpaw: {
  50943. height: math.unit(23, "meters"),
  50944. name: "Hindpaw",
  50945. image: {
  50946. source: "./media/characters/aetherios/hindpaw.svg"
  50947. }
  50948. },
  50949. genitals: {
  50950. height: math.unit(42, "meters"),
  50951. name: "Genitals",
  50952. image: {
  50953. source: "./media/characters/aetherios/genitals.svg"
  50954. }
  50955. },
  50956. },
  50957. [
  50958. {
  50959. name: "Normal",
  50960. height: math.unit(47.2, "meters"),
  50961. default: true
  50962. },
  50963. {
  50964. name: "Macro",
  50965. height: math.unit(160, "meters")
  50966. },
  50967. {
  50968. name: "Mega",
  50969. height: math.unit(1.87, "km")
  50970. },
  50971. {
  50972. name: "Giga",
  50973. height: math.unit(40000, "km")
  50974. },
  50975. {
  50976. name: "Stellar",
  50977. height: math.unit(158000000, "km")
  50978. },
  50979. {
  50980. name: "Cosmic",
  50981. height: math.unit(9.46e12, "km")
  50982. },
  50983. ]
  50984. ))
  50985. characterMakers.push(() => makeCharacter(
  50986. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50987. {
  50988. front: {
  50989. height: math.unit(5 + 4/12, "feet"),
  50990. weight: math.unit(80, "lb"),
  50991. name: "Front",
  50992. image: {
  50993. source: "./media/characters/mizu-gieeg/front.svg",
  50994. extra: 850/709,
  50995. bottom: 52/902
  50996. }
  50997. },
  50998. back: {
  50999. height: math.unit(5 + 4/12, "feet"),
  51000. weight: math.unit(80, "lb"),
  51001. name: "Back",
  51002. image: {
  51003. source: "./media/characters/mizu-gieeg/back.svg",
  51004. extra: 882/745,
  51005. bottom: 25/907
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(5 + 4/12, "feet"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51019. {
  51020. front: {
  51021. height: math.unit(6, "feet"),
  51022. name: "Front",
  51023. image: {
  51024. source: "./media/characters/roselle-st-papier/front.svg",
  51025. extra: 1430/1280,
  51026. bottom: 37/1467
  51027. }
  51028. },
  51029. back: {
  51030. height: math.unit(6, "feet"),
  51031. name: "Back",
  51032. image: {
  51033. source: "./media/characters/roselle-st-papier/back.svg",
  51034. extra: 1491/1296,
  51035. bottom: 23/1514
  51036. }
  51037. },
  51038. ear: {
  51039. height: math.unit(1.26, "feet"),
  51040. name: "Ear",
  51041. image: {
  51042. source: "./media/characters/roselle-st-papier/ear.svg"
  51043. }
  51044. },
  51045. },
  51046. [
  51047. {
  51048. name: "Normal",
  51049. height: math.unit(150, "feet"),
  51050. default: true
  51051. },
  51052. ]
  51053. ))
  51054. characterMakers.push(() => makeCharacter(
  51055. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51056. {
  51057. front: {
  51058. height: math.unit(1, "inches"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/valargent/front.svg",
  51062. extra: 1825/1694,
  51063. bottom: 62/1887
  51064. }
  51065. },
  51066. back: {
  51067. height: math.unit(1, "inches"),
  51068. name: "Back",
  51069. image: {
  51070. source: "./media/characters/valargent/back.svg",
  51071. extra: 1775/1682,
  51072. bottom: 88/1863
  51073. }
  51074. },
  51075. },
  51076. [
  51077. {
  51078. name: "Micro",
  51079. height: math.unit(1, "inch"),
  51080. default: true
  51081. },
  51082. ]
  51083. ))
  51084. characterMakers.push(() => makeCharacter(
  51085. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51086. {
  51087. front: {
  51088. height: math.unit(3.4, "meters"),
  51089. name: "Front",
  51090. image: {
  51091. source: "./media/characters/zarina/front.svg",
  51092. extra: 1733/1425,
  51093. bottom: 93/1826
  51094. }
  51095. },
  51096. squatting: {
  51097. height: math.unit(2.14, "meters"),
  51098. name: "Squatting",
  51099. image: {
  51100. source: "./media/characters/zarina/squatting.svg",
  51101. extra: 1073/788,
  51102. bottom: 63/1136
  51103. }
  51104. },
  51105. back: {
  51106. height: math.unit(2.14, "meters"),
  51107. name: "Back",
  51108. image: {
  51109. source: "./media/characters/zarina/back.svg",
  51110. extra: 1128/885,
  51111. bottom: 0/1128
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(3.4, "meters"),
  51119. default: true
  51120. },
  51121. {
  51122. name: "Big",
  51123. height: math.unit(5, "meters")
  51124. },
  51125. {
  51126. name: "Macro",
  51127. height: math.unit(110, "meters")
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(7, "feet"),
  51136. name: "Front",
  51137. image: {
  51138. source: "./media/characters/ventus-astro-fox/front.svg",
  51139. extra: 1792/1623,
  51140. bottom: 28/1820
  51141. }
  51142. },
  51143. back: {
  51144. height: math.unit(7, "feet"),
  51145. name: "Back",
  51146. image: {
  51147. source: "./media/characters/ventus-astro-fox/back.svg",
  51148. extra: 1789/1620,
  51149. bottom: 31/1820
  51150. }
  51151. },
  51152. outfit: {
  51153. height: math.unit(7, "feet"),
  51154. name: "Outfit",
  51155. image: {
  51156. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51157. extra: 1054/925,
  51158. bottom: 15/1069
  51159. }
  51160. },
  51161. head: {
  51162. height: math.unit(1.12, "feet"),
  51163. name: "Head",
  51164. image: {
  51165. source: "./media/characters/ventus-astro-fox/head.svg",
  51166. extra: 866/504,
  51167. bottom: 0/866
  51168. }
  51169. },
  51170. hand: {
  51171. height: math.unit(1, "feet"),
  51172. name: "Hand",
  51173. image: {
  51174. source: "./media/characters/ventus-astro-fox/hand.svg"
  51175. }
  51176. },
  51177. paw: {
  51178. height: math.unit(1.5, "feet"),
  51179. name: "Paw",
  51180. image: {
  51181. source: "./media/characters/ventus-astro-fox/paw.svg"
  51182. }
  51183. },
  51184. },
  51185. [
  51186. {
  51187. name: "Normal",
  51188. height: math.unit(7, "feet"),
  51189. default: true
  51190. },
  51191. {
  51192. name: "Macro",
  51193. height: math.unit(200, "feet")
  51194. },
  51195. {
  51196. name: "Cosmic",
  51197. height: math.unit(3, "universes")
  51198. },
  51199. ]
  51200. ))
  51201. characterMakers.push(() => makeCharacter(
  51202. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51203. {
  51204. front: {
  51205. height: math.unit(3, "meters"),
  51206. weight: math.unit(7000, "lb"),
  51207. name: "Front",
  51208. image: {
  51209. source: "./media/characters/core-t/front.svg",
  51210. extra: 5729/4941,
  51211. bottom: 1129/6858
  51212. }
  51213. },
  51214. },
  51215. [
  51216. {
  51217. name: "Big",
  51218. height: math.unit(3, "meters"),
  51219. default: true
  51220. },
  51221. ]
  51222. ))
  51223. characterMakers.push(() => makeCharacter(
  51224. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51225. {
  51226. normal: {
  51227. height: math.unit(6 + 6/12, "feet"),
  51228. weight: math.unit(275, "lb"),
  51229. name: "Front",
  51230. image: {
  51231. source: "./media/characters/cadbunny/normal.svg",
  51232. extra: 1129/947,
  51233. bottom: 93/1222
  51234. },
  51235. default: true,
  51236. form: "normal"
  51237. },
  51238. gigantamax: {
  51239. height: math.unit(26, "feet"),
  51240. weight: math.unit(16000, "lb"),
  51241. name: "Front",
  51242. image: {
  51243. source: "./media/characters/cadbunny/gigantamax.svg",
  51244. extra: 1133/944,
  51245. bottom: 90/1223
  51246. },
  51247. default: true,
  51248. form: "gigantamax"
  51249. },
  51250. },
  51251. [
  51252. {
  51253. name: "Normal",
  51254. height: math.unit(6 + 6/12, "feet"),
  51255. default: true,
  51256. form: "normal"
  51257. },
  51258. {
  51259. name: "Small",
  51260. height: math.unit(26, "feet"),
  51261. default: true,
  51262. form: "gigantamax"
  51263. },
  51264. {
  51265. name: "Large",
  51266. height: math.unit(78, "feet"),
  51267. form: "gigantamax"
  51268. },
  51269. ],
  51270. {
  51271. "normal": {
  51272. name: "Normal",
  51273. default: true
  51274. },
  51275. "gigantamax": {
  51276. name: "Gigantamax"
  51277. }
  51278. }
  51279. ))
  51280. characterMakers.push(() => makeCharacter(
  51281. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51282. {
  51283. anthroFront: {
  51284. height: math.unit(8, "feet"),
  51285. weight: math.unit(300, "lb"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51289. extra: 1272/1176,
  51290. bottom: 53/1325
  51291. },
  51292. form: "anthro",
  51293. default: true
  51294. },
  51295. feralSide: {
  51296. height: math.unit(4, "feet"),
  51297. weight: math.unit(250, "lb"),
  51298. name: "Side",
  51299. image: {
  51300. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51301. extra: 731/621,
  51302. bottom: 0/731
  51303. },
  51304. form: "feral",
  51305. default: true
  51306. },
  51307. },
  51308. [
  51309. {
  51310. name: "Regular",
  51311. height: math.unit(8, "feet"),
  51312. form: "anthro"
  51313. },
  51314. {
  51315. name: "Macro",
  51316. height: math.unit(250, "feet"),
  51317. form: "anthro",
  51318. default: true
  51319. },
  51320. {
  51321. name: "Regular",
  51322. height: math.unit(4, "feet"),
  51323. form: "feral"
  51324. },
  51325. {
  51326. name: "Macro",
  51327. height: math.unit(125, "feet"),
  51328. form: "feral",
  51329. default: true
  51330. },
  51331. ],
  51332. {
  51333. "anthro": {
  51334. name: "Anthro",
  51335. default: true
  51336. },
  51337. "feral": {
  51338. name: "Feral",
  51339. },
  51340. }
  51341. ))
  51342. characterMakers.push(() => makeCharacter(
  51343. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51344. {
  51345. front: {
  51346. height: math.unit(11 + 10/12, "feet"),
  51347. weight: math.unit(1587, "kg"),
  51348. name: "Front",
  51349. image: {
  51350. source: "./media/characters/maple-javira-dragon/front.svg",
  51351. extra: 1136/744,
  51352. bottom: 73/1209
  51353. }
  51354. },
  51355. side: {
  51356. height: math.unit(11 + 10/12, "feet"),
  51357. weight: math.unit(1587, "kg"),
  51358. name: "Side",
  51359. image: {
  51360. source: "./media/characters/maple-javira-dragon/side.svg",
  51361. extra: 712/505,
  51362. bottom: 17/729
  51363. }
  51364. },
  51365. head: {
  51366. height: math.unit(8.05, "feet"),
  51367. name: "Head",
  51368. image: {
  51369. source: "./media/characters/maple-javira-dragon/head.svg",
  51370. extra: 1420/1344,
  51371. bottom: 0/1420
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Normal",
  51378. height: math.unit(11 + 10/12, "feet"),
  51379. default: true
  51380. },
  51381. ]
  51382. ))
  51383. characterMakers.push(() => makeCharacter(
  51384. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51385. {
  51386. front: {
  51387. height: math.unit(117, "cm"),
  51388. weight: math.unit(50, "kg"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/sonia-wyverntail/front.svg",
  51392. extra: 708/592,
  51393. bottom: 25/733
  51394. }
  51395. },
  51396. },
  51397. [
  51398. {
  51399. name: "Normal",
  51400. height: math.unit(117, "cm"),
  51401. default: true
  51402. },
  51403. ]
  51404. ))
  51405. characterMakers.push(() => makeCharacter(
  51406. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51407. {
  51408. front: {
  51409. height: math.unit(6 + 5/12, "feet"),
  51410. name: "Front",
  51411. image: {
  51412. source: "./media/characters/micah/front.svg",
  51413. extra: 1758/1546,
  51414. bottom: 214/1972
  51415. }
  51416. },
  51417. },
  51418. [
  51419. {
  51420. name: "Normal",
  51421. height: math.unit(6 + 5/12, "feet"),
  51422. default: true
  51423. },
  51424. ]
  51425. ))
  51426. characterMakers.push(() => makeCharacter(
  51427. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51428. {
  51429. front: {
  51430. height: math.unit(1.75, "meters"),
  51431. weight: math.unit(100, "kg"),
  51432. name: "Front",
  51433. image: {
  51434. source: "./media/characters/zarya/front.svg",
  51435. extra: 741/735,
  51436. bottom: 44/785
  51437. },
  51438. extraAttributes: {
  51439. "tailLength": {
  51440. name: "Tail Length",
  51441. power: 1,
  51442. type: "length",
  51443. base: math.unit(180, "cm")
  51444. },
  51445. "pawLength": {
  51446. name: "Paw Length",
  51447. power: 1,
  51448. type: "length",
  51449. base: math.unit(31, "cm")
  51450. },
  51451. }
  51452. },
  51453. side: {
  51454. height: math.unit(1.75, "meters"),
  51455. weight: math.unit(100, "kg"),
  51456. name: "Side",
  51457. image: {
  51458. source: "./media/characters/zarya/side.svg",
  51459. extra: 776/770,
  51460. bottom: 17/793
  51461. },
  51462. extraAttributes: {
  51463. "tailLength": {
  51464. name: "Tail Length",
  51465. power: 1,
  51466. type: "length",
  51467. base: math.unit(180, "cm")
  51468. },
  51469. "pawLength": {
  51470. name: "Paw Length",
  51471. power: 1,
  51472. type: "length",
  51473. base: math.unit(31, "cm")
  51474. },
  51475. }
  51476. },
  51477. back: {
  51478. height: math.unit(1.75, "meters"),
  51479. weight: math.unit(100, "kg"),
  51480. name: "Back",
  51481. image: {
  51482. source: "./media/characters/zarya/back.svg",
  51483. extra: 741/735,
  51484. bottom: 44/785
  51485. },
  51486. extraAttributes: {
  51487. "tailLength": {
  51488. name: "Tail Length",
  51489. power: 1,
  51490. type: "length",
  51491. base: math.unit(180, "cm")
  51492. },
  51493. "pawLength": {
  51494. name: "Paw Length",
  51495. power: 1,
  51496. type: "length",
  51497. base: math.unit(31, "cm")
  51498. },
  51499. }
  51500. },
  51501. frontNoTail: {
  51502. height: math.unit(1.75, "meters"),
  51503. weight: math.unit(100, "kg"),
  51504. name: "Front (No Tail)",
  51505. image: {
  51506. source: "./media/characters/zarya/front-no-tail.svg",
  51507. extra: 741/735,
  51508. bottom: 44/785
  51509. },
  51510. extraAttributes: {
  51511. "tailLength": {
  51512. name: "Tail Length",
  51513. power: 1,
  51514. type: "length",
  51515. base: math.unit(180, "cm")
  51516. },
  51517. "pawLength": {
  51518. name: "Paw Length",
  51519. power: 1,
  51520. type: "length",
  51521. base: math.unit(31, "cm")
  51522. },
  51523. }
  51524. },
  51525. dressed: {
  51526. height: math.unit(1.75, "meters"),
  51527. weight: math.unit(100, "kg"),
  51528. name: "Dressed",
  51529. image: {
  51530. source: "./media/characters/zarya/dressed.svg",
  51531. extra: 683/672,
  51532. bottom: 79/762
  51533. },
  51534. extraAttributes: {
  51535. "tailLength": {
  51536. name: "Tail Length",
  51537. power: 1,
  51538. type: "length",
  51539. base: math.unit(180, "cm")
  51540. },
  51541. "pawLength": {
  51542. name: "Paw Length",
  51543. power: 1,
  51544. type: "length",
  51545. base: math.unit(31, "cm")
  51546. },
  51547. }
  51548. },
  51549. },
  51550. [
  51551. {
  51552. name: "Micro",
  51553. height: math.unit(5, "cm")
  51554. },
  51555. {
  51556. name: "Normal",
  51557. height: math.unit(1.75, "meters"),
  51558. default: true
  51559. },
  51560. {
  51561. name: "Macro",
  51562. height: math.unit(122, "meters")
  51563. },
  51564. ]
  51565. ))
  51566. characterMakers.push(() => makeCharacter(
  51567. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51568. {
  51569. front: {
  51570. height: math.unit(7.5, "feet"),
  51571. name: "Front",
  51572. image: {
  51573. source: "./media/characters/sven-hatisson/front.svg",
  51574. extra: 917/857,
  51575. bottom: 42/959
  51576. }
  51577. },
  51578. back: {
  51579. height: math.unit(7.5, "feet"),
  51580. name: "Back",
  51581. image: {
  51582. source: "./media/characters/sven-hatisson/back.svg",
  51583. extra: 903/856,
  51584. bottom: 15/918
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Base Height",
  51591. height: math.unit(7.5, "feet")
  51592. },
  51593. {
  51594. name: "Usual Height",
  51595. height: math.unit(13.5, "feet"),
  51596. default: true
  51597. },
  51598. {
  51599. name: "Smaller Macro",
  51600. height: math.unit(85, "feet")
  51601. },
  51602. {
  51603. name: "Moderate Macro",
  51604. height: math.unit(320, "feet")
  51605. },
  51606. {
  51607. name: "Large Macro",
  51608. height: math.unit(1000, "feet")
  51609. },
  51610. {
  51611. name: "Largest Size",
  51612. height: math.unit(2, "miles")
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51618. {
  51619. side: {
  51620. height: math.unit(1.8, "meters"),
  51621. weight: math.unit(275, "kg"),
  51622. name: "Side",
  51623. image: {
  51624. source: "./media/characters/terra/side.svg",
  51625. extra: 1273/1147,
  51626. bottom: 0/1273
  51627. }
  51628. },
  51629. },
  51630. [
  51631. {
  51632. name: "Normal",
  51633. height: math.unit(16.2, "meters"),
  51634. default: true
  51635. },
  51636. ]
  51637. ))
  51638. characterMakers.push(() => makeCharacter(
  51639. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51640. {
  51641. borzoiFront: {
  51642. height: math.unit(6 + 9/12, "feet"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/rae/borzoi-front.svg",
  51646. extra: 1161/1098,
  51647. bottom: 31/1192
  51648. },
  51649. form: "borzoi",
  51650. default: true
  51651. },
  51652. werewolfFront: {
  51653. height: math.unit(8 + 7/12, "feet"),
  51654. name: "Front",
  51655. image: {
  51656. source: "./media/characters/rae/werewolf-front.svg",
  51657. extra: 1411/1334,
  51658. bottom: 127/1538
  51659. },
  51660. form: "werewolf",
  51661. default: true
  51662. },
  51663. },
  51664. [
  51665. {
  51666. name: "Normal",
  51667. height: math.unit(6 + 9/12, "feet"),
  51668. default: true,
  51669. form: "borzoi"
  51670. },
  51671. {
  51672. name: "Normal",
  51673. height: math.unit(8 + 7/12, "feet"),
  51674. default: true,
  51675. form: "werewolf"
  51676. },
  51677. ],
  51678. {
  51679. "borzoi": {
  51680. name: "Borzoi",
  51681. default: true
  51682. },
  51683. "werewolf": {
  51684. name: "Werewolf",
  51685. },
  51686. }
  51687. ))
  51688. characterMakers.push(() => makeCharacter(
  51689. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51690. {
  51691. front: {
  51692. height: math.unit(8 + 7/12, "feet"),
  51693. weight: math.unit(482, "lb"),
  51694. name: "Front",
  51695. image: {
  51696. source: "./media/characters/kit/front.svg",
  51697. extra: 1247/1103,
  51698. bottom: 41/1288
  51699. }
  51700. },
  51701. back: {
  51702. height: math.unit(8 + 7/12, "feet"),
  51703. weight: math.unit(482, "lb"),
  51704. name: "Back",
  51705. image: {
  51706. source: "./media/characters/kit/back.svg",
  51707. extra: 1252/1123,
  51708. bottom: 21/1273
  51709. }
  51710. },
  51711. paw: {
  51712. height: math.unit(1.46, "feet"),
  51713. name: "Paw",
  51714. image: {
  51715. source: "./media/characters/kit/paw.svg"
  51716. }
  51717. },
  51718. },
  51719. [
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(2.61, "meters"),
  51723. default: true
  51724. },
  51725. {
  51726. name: "\"Tall\"",
  51727. height: math.unit(8.21, "meters")
  51728. },
  51729. {
  51730. name: "Tall",
  51731. height: math.unit(19.6, "meters")
  51732. },
  51733. {
  51734. name: "Very Tall",
  51735. height: math.unit(57.91, "meters")
  51736. },
  51737. {
  51738. name: "Semi-Macro",
  51739. height: math.unit(138.64, "meters")
  51740. },
  51741. {
  51742. name: "Macro",
  51743. height: math.unit(831.99, "meters")
  51744. },
  51745. {
  51746. name: "EX-Macro",
  51747. height: math.unit(96451121, "meters")
  51748. },
  51749. {
  51750. name: "S1-Omnipotent",
  51751. height: math.unit(4.42074e+9, "meters")
  51752. },
  51753. {
  51754. name: "S2-Omnipotent",
  51755. height: math.unit(9.42074e+17, "meters")
  51756. },
  51757. {
  51758. name: "Omnipotent",
  51759. height: math.unit(4.23112e+24, "meters")
  51760. },
  51761. {
  51762. name: "Hypergod",
  51763. height: math.unit(5.05176e+27, "meters")
  51764. },
  51765. {
  51766. name: "Hypergod-EX",
  51767. height: math.unit(9.45532e+49, "meters")
  51768. },
  51769. {
  51770. name: "Hypergod-SP",
  51771. height: math.unit(9.45532e+195, "meters")
  51772. },
  51773. ]
  51774. ))
  51775. characterMakers.push(() => makeCharacter(
  51776. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51777. {
  51778. side: {
  51779. height: math.unit(0.6, "meters"),
  51780. weight: math.unit(24, "kg"),
  51781. name: "Side",
  51782. image: {
  51783. source: "./media/characters/celeste/side.svg",
  51784. extra: 810/517,
  51785. bottom: 53/863
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Velociraptor",
  51792. height: math.unit(0.6, "meters"),
  51793. default: true
  51794. },
  51795. {
  51796. name: "Utahraptor",
  51797. height: math.unit(1.8, "meters")
  51798. },
  51799. {
  51800. name: "Gallimimus",
  51801. height: math.unit(4.0, "meters")
  51802. },
  51803. {
  51804. name: "Large",
  51805. height: math.unit(20, "meters")
  51806. },
  51807. {
  51808. name: "Planetary",
  51809. height: math.unit(50, "megameters")
  51810. },
  51811. {
  51812. name: "Stellar",
  51813. height: math.unit(1.5, "gigameters")
  51814. },
  51815. {
  51816. name: "Galactic",
  51817. height: math.unit(100, "exameters")
  51818. },
  51819. ]
  51820. ))
  51821. characterMakers.push(() => makeCharacter(
  51822. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51823. {
  51824. front: {
  51825. height: math.unit(6, "feet"),
  51826. weight: math.unit(210, "lb"),
  51827. name: "Front",
  51828. image: {
  51829. source: "./media/characters/glacia/front.svg",
  51830. extra: 958/901,
  51831. bottom: 45/1003
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Macro",
  51838. height: math.unit(1000, "meters"),
  51839. default: true
  51840. },
  51841. ]
  51842. ))
  51843. characterMakers.push(() => makeCharacter(
  51844. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51845. {
  51846. front: {
  51847. height: math.unit(4, "meters"),
  51848. name: "Front",
  51849. image: {
  51850. source: "./media/characters/giri/front.svg",
  51851. extra: 966/894,
  51852. bottom: 21/987
  51853. }
  51854. },
  51855. },
  51856. [
  51857. {
  51858. name: "Normal",
  51859. height: math.unit(4, "meters"),
  51860. default: true
  51861. },
  51862. ]
  51863. ))
  51864. characterMakers.push(() => makeCharacter(
  51865. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51866. {
  51867. back: {
  51868. height: math.unit(4, "feet"),
  51869. weight: math.unit(37, "lb"),
  51870. name: "Back",
  51871. image: {
  51872. source: "./media/characters/tin/back.svg",
  51873. extra: 845/780,
  51874. bottom: 28/873
  51875. }
  51876. },
  51877. },
  51878. [
  51879. {
  51880. name: "Normal",
  51881. height: math.unit(4, "feet"),
  51882. default: true
  51883. },
  51884. ]
  51885. ))
  51886. characterMakers.push(() => makeCharacter(
  51887. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51888. {
  51889. front: {
  51890. height: math.unit(25, "feet"),
  51891. name: "Front",
  51892. image: {
  51893. source: "./media/characters/cadenza-vivace/front.svg",
  51894. extra: 1842/1578,
  51895. bottom: 30/1872
  51896. }
  51897. },
  51898. },
  51899. [
  51900. {
  51901. name: "Macro",
  51902. height: math.unit(25, "feet"),
  51903. default: true
  51904. },
  51905. ]
  51906. ))
  51907. characterMakers.push(() => makeCharacter(
  51908. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51909. {
  51910. front: {
  51911. height: math.unit(10, "feet"),
  51912. weight: math.unit(625, "kg"),
  51913. name: "Front",
  51914. image: {
  51915. source: "./media/characters/zain/front.svg",
  51916. extra: 1682/1498,
  51917. bottom: 223/1905
  51918. }
  51919. },
  51920. back: {
  51921. height: math.unit(10, "feet"),
  51922. weight: math.unit(625, "kg"),
  51923. name: "Back",
  51924. image: {
  51925. source: "./media/characters/zain/back.svg",
  51926. extra: 1814/1657,
  51927. bottom: 152/1966
  51928. }
  51929. },
  51930. head: {
  51931. height: math.unit(10, "feet"),
  51932. weight: math.unit(625, "kg"),
  51933. name: "Head",
  51934. image: {
  51935. source: "./media/characters/zain/head.svg",
  51936. extra: 1059/762,
  51937. bottom: 0/1059
  51938. }
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Normal",
  51944. height: math.unit(10, "feet"),
  51945. default: true
  51946. },
  51947. ]
  51948. ))
  51949. characterMakers.push(() => makeCharacter(
  51950. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51951. {
  51952. front: {
  51953. height: math.unit(6 + 5/12, "feet"),
  51954. weight: math.unit(750, "lb"),
  51955. name: "Front",
  51956. image: {
  51957. source: "./media/characters/ruchex/front.svg",
  51958. extra: 877/820,
  51959. bottom: 17/894
  51960. },
  51961. extraAttributes: {
  51962. "width": {
  51963. name: "Width",
  51964. power: 1,
  51965. type: "length",
  51966. base: math.unit(4.757, "feet")
  51967. },
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(6 + 5/12, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51981. {
  51982. dressedFront: {
  51983. height: math.unit(191, "cm"),
  51984. weight: math.unit(80, "kg"),
  51985. name: "Front",
  51986. image: {
  51987. source: "./media/characters/buster/dressed-front.svg",
  51988. extra: 1022/973,
  51989. bottom: 69/1091
  51990. }
  51991. },
  51992. dressedBack: {
  51993. height: math.unit(191, "cm"),
  51994. weight: math.unit(80, "kg"),
  51995. name: "Back",
  51996. image: {
  51997. source: "./media/characters/buster/dressed-back.svg",
  51998. extra: 1018/970,
  51999. bottom: 55/1073
  52000. }
  52001. },
  52002. nudeFront: {
  52003. height: math.unit(191, "cm"),
  52004. weight: math.unit(80, "kg"),
  52005. name: "Front (Nude)",
  52006. image: {
  52007. source: "./media/characters/buster/nude-front.svg",
  52008. extra: 1022/973,
  52009. bottom: 69/1091
  52010. }
  52011. },
  52012. nudeBack: {
  52013. height: math.unit(191, "cm"),
  52014. weight: math.unit(80, "kg"),
  52015. name: "Back (Nude)",
  52016. image: {
  52017. source: "./media/characters/buster/nude-back.svg",
  52018. extra: 1018/970,
  52019. bottom: 55/1073
  52020. }
  52021. },
  52022. dick: {
  52023. height: math.unit(2.59, "feet"),
  52024. name: "Dick",
  52025. image: {
  52026. source: "./media/characters/buster/dick.svg"
  52027. }
  52028. },
  52029. ass: {
  52030. height: math.unit(1.2, "feet"),
  52031. name: "Ass",
  52032. image: {
  52033. source: "./media/characters/buster/ass.svg"
  52034. }
  52035. },
  52036. },
  52037. [
  52038. {
  52039. name: "Normal",
  52040. height: math.unit(191, "cm"),
  52041. default: true
  52042. },
  52043. ]
  52044. ))
  52045. characterMakers.push(() => makeCharacter(
  52046. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52047. {
  52048. side: {
  52049. height: math.unit(8.1, "feet"),
  52050. weight: math.unit(3500, "lb"),
  52051. name: "Side",
  52052. image: {
  52053. source: "./media/characters/sonya/side.svg",
  52054. extra: 1730/1317,
  52055. bottom: 86/1816
  52056. }
  52057. },
  52058. },
  52059. [
  52060. {
  52061. name: "Normal",
  52062. height: math.unit(8.1, "feet"),
  52063. default: true
  52064. },
  52065. ]
  52066. ))
  52067. characterMakers.push(() => makeCharacter(
  52068. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52069. {
  52070. front: {
  52071. height: math.unit(6, "feet"),
  52072. weight: math.unit(150, "lb"),
  52073. name: "Front",
  52074. image: {
  52075. source: "./media/characters/cadence-andrysiak/front.svg",
  52076. extra: 1164/1121,
  52077. bottom: 60/1224
  52078. }
  52079. },
  52080. back: {
  52081. height: math.unit(6, "feet"),
  52082. weight: math.unit(150, "lb"),
  52083. name: "Back",
  52084. image: {
  52085. source: "./media/characters/cadence-andrysiak/back.svg",
  52086. extra: 1200/1165,
  52087. bottom: 9/1209
  52088. }
  52089. },
  52090. dressed: {
  52091. height: math.unit(6, "feet"),
  52092. weight: math.unit(150, "lb"),
  52093. name: "Dressed",
  52094. image: {
  52095. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52096. extra: 1164/1121,
  52097. bottom: 60/1224
  52098. }
  52099. },
  52100. },
  52101. [
  52102. {
  52103. name: "Micro",
  52104. height: math.unit(1, "mm")
  52105. },
  52106. {
  52107. name: "Normal",
  52108. height: math.unit(6, "feet"),
  52109. default: true
  52110. },
  52111. ]
  52112. ))
  52113. characterMakers.push(() => makeCharacter(
  52114. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52115. {
  52116. front: {
  52117. height: math.unit(60, "inches"),
  52118. weight: math.unit(16, "lb"),
  52119. preyCapacity: math.unit(80, "liters"),
  52120. name: "Front",
  52121. image: {
  52122. source: "./media/characters/penny-lynx/front.svg",
  52123. extra: 1959/1769,
  52124. bottom: 49/2008
  52125. }
  52126. },
  52127. },
  52128. [
  52129. {
  52130. name: "Nokia",
  52131. height: math.unit(2, "inches")
  52132. },
  52133. {
  52134. name: "Desktop",
  52135. height: math.unit(24, "inches")
  52136. },
  52137. {
  52138. name: "TV",
  52139. height: math.unit(60, "inches")
  52140. },
  52141. {
  52142. name: "Jumbotron",
  52143. height: math.unit(12, "feet")
  52144. },
  52145. {
  52146. name: "Billboard",
  52147. height: math.unit(48, "feet"),
  52148. default: true
  52149. },
  52150. {
  52151. name: "IMAX",
  52152. height: math.unit(96, "feet")
  52153. },
  52154. {
  52155. name: "SINGULARITY",
  52156. height: math.unit(864938, "miles")
  52157. },
  52158. ]
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52162. {
  52163. front: {
  52164. height: math.unit(5 + 4/12, "feet"),
  52165. weight: math.unit(230, "lb"),
  52166. name: "Front",
  52167. image: {
  52168. source: "./media/characters/sukebe/front.svg",
  52169. extra: 2130/2038,
  52170. bottom: 90/2220
  52171. }
  52172. },
  52173. back: {
  52174. height: math.unit(3.48, "feet"),
  52175. weight: math.unit(230, "lb"),
  52176. name: "Back",
  52177. image: {
  52178. source: "./media/characters/sukebe/back.svg",
  52179. extra: 1670/1604,
  52180. bottom: 0/1670
  52181. }
  52182. },
  52183. },
  52184. [
  52185. {
  52186. name: "Normal",
  52187. height: math.unit(5 + 4/12, "feet"),
  52188. default: true
  52189. },
  52190. ]
  52191. ))
  52192. characterMakers.push(() => makeCharacter(
  52193. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52194. {
  52195. front: {
  52196. height: math.unit(6, "feet"),
  52197. name: "Front",
  52198. image: {
  52199. source: "./media/characters/nylla/front.svg",
  52200. extra: 1868/1699,
  52201. bottom: 97/1965
  52202. }
  52203. },
  52204. back: {
  52205. height: math.unit(6, "feet"),
  52206. name: "Back",
  52207. image: {
  52208. source: "./media/characters/nylla/back.svg",
  52209. extra: 1889/1712,
  52210. bottom: 93/1982
  52211. }
  52212. },
  52213. frontNsfw: {
  52214. height: math.unit(6, "feet"),
  52215. name: "Front (NSFW)",
  52216. image: {
  52217. source: "./media/characters/nylla/front-nsfw.svg",
  52218. extra: 1868/1699,
  52219. bottom: 97/1965
  52220. },
  52221. extraAttributes: {
  52222. "dickLength": {
  52223. name: "Dick Length",
  52224. power: 1,
  52225. type: "length",
  52226. base: math.unit(1.4, "feet")
  52227. },
  52228. "cumVolume": {
  52229. name: "Cum Volume",
  52230. power: 3,
  52231. type: "volume",
  52232. base: math.unit(100, "mL")
  52233. },
  52234. }
  52235. },
  52236. backNsfw: {
  52237. height: math.unit(6, "feet"),
  52238. name: "Back (NSFW)",
  52239. image: {
  52240. source: "./media/characters/nylla/back-nsfw.svg",
  52241. extra: 1889/1712,
  52242. bottom: 93/1982
  52243. }
  52244. },
  52245. maw: {
  52246. height: math.unit(2.10, "feet"),
  52247. name: "Maw",
  52248. image: {
  52249. source: "./media/characters/nylla/maw.svg"
  52250. }
  52251. },
  52252. paws: {
  52253. height: math.unit(2.06, "feet"),
  52254. name: "Paws",
  52255. image: {
  52256. source: "./media/characters/nylla/paws.svg"
  52257. }
  52258. },
  52259. muzzle: {
  52260. height: math.unit(0.61, "feet"),
  52261. name: "Muzzle",
  52262. image: {
  52263. source: "./media/characters/nylla/muzzle.svg"
  52264. }
  52265. },
  52266. sheath: {
  52267. height: math.unit(1.305, "feet"),
  52268. name: "Sheath",
  52269. image: {
  52270. source: "./media/characters/nylla/sheath.svg"
  52271. }
  52272. },
  52273. },
  52274. [
  52275. {
  52276. name: "Micro",
  52277. height: math.unit(7.5, "inches")
  52278. },
  52279. {
  52280. name: "Normal",
  52281. height: math.unit(7, "feet"),
  52282. default: true
  52283. },
  52284. {
  52285. name: "Macro",
  52286. height: math.unit(60, "feet")
  52287. },
  52288. {
  52289. name: "Mega",
  52290. height: math.unit(200, "feet")
  52291. },
  52292. ]
  52293. ))
  52294. characterMakers.push(() => makeCharacter(
  52295. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52296. {
  52297. front: {
  52298. height: math.unit(10, "feet"),
  52299. weight: math.unit(2300, "lb"),
  52300. name: "Front",
  52301. image: {
  52302. source: "./media/characters/hunt3r/front.svg",
  52303. extra: 1909/1742,
  52304. bottom: 46/1955
  52305. }
  52306. },
  52307. },
  52308. [
  52309. {
  52310. name: "Normal",
  52311. height: math.unit(10, "feet"),
  52312. default: true
  52313. },
  52314. ]
  52315. ))
  52316. characterMakers.push(() => makeCharacter(
  52317. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52318. {
  52319. dressed: {
  52320. height: math.unit(11, "feet"),
  52321. weight: math.unit(18500, "lb"),
  52322. preyCapacity: math.unit(9, "people"),
  52323. name: "Dressed",
  52324. image: {
  52325. source: "./media/characters/cylphis/dressed.svg",
  52326. extra: 1028/1003,
  52327. bottom: 75/1103
  52328. },
  52329. },
  52330. undressed: {
  52331. height: math.unit(11, "feet"),
  52332. weight: math.unit(18500, "lb"),
  52333. preyCapacity: math.unit(9, "people"),
  52334. name: "Undressed",
  52335. image: {
  52336. source: "./media/characters/cylphis/undressed.svg",
  52337. extra: 1028/1003,
  52338. bottom: 75/1103
  52339. }
  52340. },
  52341. full: {
  52342. height: math.unit(11, "feet"),
  52343. weight: math.unit(18500 + 150*9, "lb"),
  52344. preyCapacity: math.unit(9, "people"),
  52345. name: "Full",
  52346. image: {
  52347. source: "./media/characters/cylphis/full.svg",
  52348. extra: 1028/1003,
  52349. bottom: 75/1103
  52350. }
  52351. },
  52352. },
  52353. [
  52354. {
  52355. name: "Small",
  52356. height: math.unit(8, "feet")
  52357. },
  52358. {
  52359. name: "Normal",
  52360. height: math.unit(11, "feet"),
  52361. default: true
  52362. },
  52363. ]
  52364. ))
  52365. characterMakers.push(() => makeCharacter(
  52366. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52367. {
  52368. front: {
  52369. height: math.unit(2 + 7/12, "feet"),
  52370. name: "Front",
  52371. image: {
  52372. source: "./media/characters/orishan/front.svg",
  52373. extra: 1058/1023,
  52374. bottom: 23/1081
  52375. }
  52376. },
  52377. back: {
  52378. height: math.unit(2 + 7/12, "feet"),
  52379. name: "Back",
  52380. image: {
  52381. source: "./media/characters/orishan/back.svg",
  52382. extra: 1058/1023,
  52383. bottom: 23/1081
  52384. }
  52385. },
  52386. },
  52387. [
  52388. {
  52389. name: "Micro",
  52390. height: math.unit(2, "cm")
  52391. },
  52392. {
  52393. name: "Normal",
  52394. height: math.unit(2 + 7/12, "feet"),
  52395. default: true
  52396. },
  52397. ]
  52398. ))
  52399. characterMakers.push(() => makeCharacter(
  52400. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52401. {
  52402. front: {
  52403. height: math.unit(3, "meters"),
  52404. weight: math.unit(508, "kg"),
  52405. name: "Front",
  52406. image: {
  52407. source: "./media/characters/seranis/front.svg",
  52408. extra: 1478/1454,
  52409. bottom: 41/1519
  52410. }
  52411. },
  52412. },
  52413. [
  52414. {
  52415. name: "Normal",
  52416. height: math.unit(3, "meters"),
  52417. default: true
  52418. },
  52419. {
  52420. name: "Macro",
  52421. height: math.unit(108, "meters")
  52422. },
  52423. {
  52424. name: "Megamacro",
  52425. height: math.unit(1250, "meters")
  52426. },
  52427. ]
  52428. ))
  52429. characterMakers.push(() => makeCharacter(
  52430. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52431. {
  52432. undressed: {
  52433. height: math.unit(5 + 3/12, "feet"),
  52434. name: "Undressed",
  52435. image: {
  52436. source: "./media/characters/ankou/undressed.svg",
  52437. extra: 1301/1213,
  52438. bottom: 87/1388
  52439. }
  52440. },
  52441. dressed: {
  52442. height: math.unit(5 + 3/12, "feet"),
  52443. name: "Dressed",
  52444. image: {
  52445. source: "./media/characters/ankou/dressed.svg",
  52446. extra: 1301/1213,
  52447. bottom: 87/1388
  52448. }
  52449. },
  52450. head: {
  52451. height: math.unit(1.61, "feet"),
  52452. name: "Head",
  52453. image: {
  52454. source: "./media/characters/ankou/head.svg"
  52455. }
  52456. },
  52457. },
  52458. [
  52459. {
  52460. name: "Normal",
  52461. height: math.unit(5 + 3/12, "feet"),
  52462. default: true
  52463. },
  52464. ]
  52465. ))
  52466. characterMakers.push(() => makeCharacter(
  52467. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52468. {
  52469. side: {
  52470. height: math.unit(6 + 3/12, "feet"),
  52471. weight: math.unit(200, "kg"),
  52472. name: "Side",
  52473. image: {
  52474. source: "./media/characters/juniper-skunktaur/side.svg",
  52475. extra: 1574/1229,
  52476. bottom: 38/1612
  52477. }
  52478. },
  52479. front: {
  52480. height: math.unit(6 + 3/12, "feet"),
  52481. weight: math.unit(200, "kg"),
  52482. name: "Front",
  52483. image: {
  52484. source: "./media/characters/juniper-skunktaur/front.svg",
  52485. extra: 1337/1278,
  52486. bottom: 22/1359
  52487. }
  52488. },
  52489. back: {
  52490. height: math.unit(6 + 3/12, "feet"),
  52491. weight: math.unit(200, "kg"),
  52492. name: "Back",
  52493. image: {
  52494. source: "./media/characters/juniper-skunktaur/back.svg",
  52495. extra: 1618/1273,
  52496. bottom: 13/1631
  52497. }
  52498. },
  52499. top: {
  52500. height: math.unit(2.62, "feet"),
  52501. weight: math.unit(200, "kg"),
  52502. name: "Top",
  52503. image: {
  52504. source: "./media/characters/juniper-skunktaur/top.svg"
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(6 + 3/12, "feet"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(20.5, "feet"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/rei/front.svg",
  52524. extra: 1349/1195,
  52525. bottom: 31/1380
  52526. }
  52527. },
  52528. back: {
  52529. height: math.unit(20.5, "feet"),
  52530. name: "Back",
  52531. image: {
  52532. source: "./media/characters/rei/back.svg",
  52533. extra: 1358/1204,
  52534. bottom: 22/1380
  52535. }
  52536. },
  52537. pawsDigi: {
  52538. height: math.unit(3.45, "feet"),
  52539. name: "Paws (Digi)",
  52540. image: {
  52541. source: "./media/characters/rei/paws-digi.svg"
  52542. }
  52543. },
  52544. pawsPlanti: {
  52545. height: math.unit(3.45, "feet"),
  52546. name: "Paws (Planti)",
  52547. image: {
  52548. source: "./media/characters/rei/paws-planti.svg"
  52549. }
  52550. },
  52551. },
  52552. [
  52553. {
  52554. name: "Normal",
  52555. height: math.unit(20.5, "feet"),
  52556. default: true
  52557. },
  52558. ]
  52559. ))
  52560. characterMakers.push(() => makeCharacter(
  52561. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52562. {
  52563. front: {
  52564. height: math.unit(5 + 11/12, "feet"),
  52565. name: "Front",
  52566. image: {
  52567. source: "./media/characters/carina/front.svg",
  52568. extra: 1720/1449,
  52569. bottom: 14/1734
  52570. }
  52571. },
  52572. back: {
  52573. height: math.unit(5 + 11/12, "feet"),
  52574. name: "Back",
  52575. image: {
  52576. source: "./media/characters/carina/back.svg",
  52577. extra: 1493/1445,
  52578. bottom: 17/1510
  52579. }
  52580. },
  52581. paw: {
  52582. height: math.unit(0.92, "feet"),
  52583. name: "Paw",
  52584. image: {
  52585. source: "./media/characters/carina/paw.svg"
  52586. }
  52587. },
  52588. },
  52589. [
  52590. {
  52591. name: "Normal",
  52592. height: math.unit(5 + 11/12, "feet"),
  52593. default: true
  52594. },
  52595. ]
  52596. ))
  52597. characterMakers.push(() => makeCharacter(
  52598. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52599. {
  52600. normal_front: {
  52601. height: math.unit(4.88, "meters"),
  52602. name: "Front",
  52603. image: {
  52604. source: "./media/characters/maya/normal-front.svg",
  52605. extra: 1222/1145,
  52606. bottom: 57/1279
  52607. },
  52608. form: "normal",
  52609. default: true
  52610. },
  52611. monstrous_front: {
  52612. height: math.unit(10, "meters"),
  52613. name: "Front",
  52614. image: {
  52615. source: "./media/characters/maya/monstrous-front.svg",
  52616. extra: 1523/1109,
  52617. bottom: 113/1636
  52618. },
  52619. form: "monstrous",
  52620. extraAttributes: {
  52621. "swallowSize": {
  52622. name: "Tailmaw Bite Size",
  52623. power: 3,
  52624. type: "volume",
  52625. base: math.unit(43000, "liters")
  52626. },
  52627. }
  52628. },
  52629. taur_front: {
  52630. height: math.unit(10, "meters"),
  52631. name: "Front",
  52632. image: {
  52633. source: "./media/characters/maya/taur-front.svg",
  52634. extra: 743/506,
  52635. bottom: 101/844
  52636. },
  52637. form: "taur",
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(4.88, "meters"),
  52644. default: true,
  52645. form: "normal"
  52646. },
  52647. {
  52648. name: "Macro",
  52649. height: math.unit(38.1, "meters"),
  52650. form: "normal"
  52651. },
  52652. {
  52653. name: "Macro+",
  52654. height: math.unit(152.4, "meters"),
  52655. form: "normal"
  52656. },
  52657. {
  52658. name: "Macro++",
  52659. height: math.unit(16.09, "km"),
  52660. form: "normal"
  52661. },
  52662. {
  52663. name: "Mega-macro",
  52664. height: math.unit(700, "megameters"),
  52665. form: "normal"
  52666. },
  52667. {
  52668. name: "Satiated",
  52669. height: math.unit(10, "meters"),
  52670. default: true,
  52671. form: "monstrous"
  52672. },
  52673. {
  52674. name: "Hungry",
  52675. height: math.unit(75, "meters"),
  52676. form: "monstrous"
  52677. },
  52678. {
  52679. name: "Ravenous",
  52680. height: math.unit(500, "meters"),
  52681. form: "monstrous"
  52682. },
  52683. {
  52684. name: "\"Normal\"",
  52685. height: math.unit(10, "meters"),
  52686. form: "taur"
  52687. },
  52688. {
  52689. name: "Macro",
  52690. height: math.unit(50, "meters"),
  52691. form: "taur"
  52692. },
  52693. ],
  52694. {
  52695. "normal": {
  52696. name: "Normal",
  52697. default: true
  52698. },
  52699. "monstrous": {
  52700. name: "Monstrous",
  52701. },
  52702. "taur": {
  52703. name: "Taur",
  52704. },
  52705. }
  52706. ))
  52707. characterMakers.push(() => makeCharacter(
  52708. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52709. {
  52710. front: {
  52711. height: math.unit(6 + 2/12, "feet"),
  52712. weight: math.unit(500, "lb"),
  52713. preyCapacity: math.unit(4, "people"),
  52714. name: "Front",
  52715. image: {
  52716. source: "./media/characters/yepir/front.svg"
  52717. }
  52718. },
  52719. side: {
  52720. height: math.unit(6 + 2/12, "feet"),
  52721. weight: math.unit(500, "lb"),
  52722. preyCapacity: math.unit(4, "people"),
  52723. name: "Side",
  52724. image: {
  52725. source: "./media/characters/yepir/side.svg"
  52726. }
  52727. },
  52728. paw: {
  52729. height: math.unit(1.05, "feet"),
  52730. name: "Paw",
  52731. image: {
  52732. source: "./media/characters/yepir/paw.svg"
  52733. }
  52734. },
  52735. },
  52736. [
  52737. {
  52738. name: "Normal",
  52739. height: math.unit(6 + 2/12, "feet"),
  52740. default: true
  52741. },
  52742. ]
  52743. ))
  52744. characterMakers.push(() => makeCharacter(
  52745. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52746. {
  52747. front: {
  52748. height: math.unit(5 + 4/12, "feet"),
  52749. name: "Front",
  52750. image: {
  52751. source: "./media/characters/russec/front.svg",
  52752. extra: 1926/1626,
  52753. bottom: 72/1998
  52754. }
  52755. },
  52756. back: {
  52757. height: math.unit(5 + 4/12, "feet"),
  52758. name: "Back",
  52759. image: {
  52760. source: "./media/characters/russec/back.svg",
  52761. extra: 1910/1591,
  52762. bottom: 48/1958
  52763. }
  52764. },
  52765. },
  52766. [
  52767. {
  52768. name: "Small",
  52769. height: math.unit(5 + 4/12, "feet")
  52770. },
  52771. {
  52772. name: "Normal",
  52773. height: math.unit(72, "feet"),
  52774. default: true
  52775. },
  52776. ]
  52777. ))
  52778. characterMakers.push(() => makeCharacter(
  52779. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52780. {
  52781. side: {
  52782. height: math.unit(12, "feet"),
  52783. name: "Side",
  52784. image: {
  52785. source: "./media/characters/cianus/side.svg",
  52786. extra: 808/526,
  52787. bottom: 61/869
  52788. }
  52789. },
  52790. },
  52791. [
  52792. {
  52793. name: "Normal",
  52794. height: math.unit(12, "feet"),
  52795. default: true
  52796. },
  52797. ]
  52798. ))
  52799. characterMakers.push(() => makeCharacter(
  52800. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52801. {
  52802. front: {
  52803. height: math.unit(9 + 6/12, "feet"),
  52804. weight: math.unit(300, "lb"),
  52805. name: "Front",
  52806. image: {
  52807. source: "./media/characters/ahab/front.svg",
  52808. extra: 1897/1868,
  52809. bottom: 121/2018
  52810. }
  52811. },
  52812. frontNsfw: {
  52813. height: math.unit(9 + 6/12, "feet"),
  52814. weight: math.unit(300, "lb"),
  52815. name: "Front-nsfw",
  52816. image: {
  52817. source: "./media/characters/ahab/front-nsfw.svg",
  52818. extra: 1897/1868,
  52819. bottom: 121/2018
  52820. }
  52821. },
  52822. },
  52823. [
  52824. {
  52825. name: "Normal",
  52826. height: math.unit(9 + 6/12, "feet")
  52827. },
  52828. {
  52829. name: "Macro",
  52830. height: math.unit(657, "feet"),
  52831. default: true
  52832. },
  52833. ]
  52834. ))
  52835. characterMakers.push(() => makeCharacter(
  52836. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52837. {
  52838. front: {
  52839. height: math.unit(2.69, "meters"),
  52840. weight: math.unit(132, "kg"),
  52841. name: "Front",
  52842. image: {
  52843. source: "./media/characters/aarkus/front.svg",
  52844. extra: 1400/1231,
  52845. bottom: 34/1434
  52846. }
  52847. },
  52848. back: {
  52849. height: math.unit(2.69, "meters"),
  52850. weight: math.unit(132, "kg"),
  52851. name: "Back",
  52852. image: {
  52853. source: "./media/characters/aarkus/back.svg",
  52854. extra: 1381/1218,
  52855. bottom: 30/1411
  52856. }
  52857. },
  52858. frontNsfw: {
  52859. height: math.unit(2.69, "meters"),
  52860. weight: math.unit(132, "kg"),
  52861. name: "Front (NSFW)",
  52862. image: {
  52863. source: "./media/characters/aarkus/front-nsfw.svg",
  52864. extra: 1400/1231,
  52865. bottom: 34/1434
  52866. }
  52867. },
  52868. foot: {
  52869. height: math.unit(1.45, "feet"),
  52870. name: "Foot",
  52871. image: {
  52872. source: "./media/characters/aarkus/foot.svg"
  52873. }
  52874. },
  52875. head: {
  52876. height: math.unit(2.85, "feet"),
  52877. name: "Head",
  52878. image: {
  52879. source: "./media/characters/aarkus/head.svg"
  52880. }
  52881. },
  52882. headAlt: {
  52883. height: math.unit(3.07, "feet"),
  52884. name: "Head (Alt)",
  52885. image: {
  52886. source: "./media/characters/aarkus/head-alt.svg"
  52887. }
  52888. },
  52889. mouth: {
  52890. height: math.unit(1.25, "feet"),
  52891. name: "Mouth",
  52892. image: {
  52893. source: "./media/characters/aarkus/mouth.svg"
  52894. }
  52895. },
  52896. dick: {
  52897. height: math.unit(1.77, "feet"),
  52898. name: "Dick",
  52899. image: {
  52900. source: "./media/characters/aarkus/dick.svg"
  52901. }
  52902. },
  52903. },
  52904. [
  52905. {
  52906. name: "Normal",
  52907. height: math.unit(2.69, "meters"),
  52908. default: true
  52909. },
  52910. {
  52911. name: "Macro",
  52912. height: math.unit(269, "meters")
  52913. },
  52914. {
  52915. name: "Macro+",
  52916. height: math.unit(672.5, "meters")
  52917. },
  52918. {
  52919. name: "Megamacro",
  52920. height: math.unit(2.017, "km")
  52921. },
  52922. ]
  52923. ))
  52924. characterMakers.push(() => makeCharacter(
  52925. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52926. {
  52927. front: {
  52928. height: math.unit(23.47, "cm"),
  52929. weight: math.unit(600, "grams"),
  52930. name: "Front",
  52931. image: {
  52932. source: "./media/characters/diode/front.svg",
  52933. extra: 1778/1396,
  52934. bottom: 95/1873
  52935. }
  52936. },
  52937. side: {
  52938. height: math.unit(23.47, "cm"),
  52939. weight: math.unit(600, "grams"),
  52940. name: "Side",
  52941. image: {
  52942. source: "./media/characters/diode/side.svg",
  52943. extra: 1831/1404,
  52944. bottom: 86/1917
  52945. }
  52946. },
  52947. wings: {
  52948. height: math.unit(0.683, "feet"),
  52949. name: "Wings",
  52950. image: {
  52951. source: "./media/characters/diode/wings.svg"
  52952. }
  52953. },
  52954. },
  52955. [
  52956. {
  52957. name: "Normal",
  52958. height: math.unit(23.47, "cm"),
  52959. default: true
  52960. },
  52961. ]
  52962. ))
  52963. characterMakers.push(() => makeCharacter(
  52964. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52965. {
  52966. front: {
  52967. height: math.unit(6 + 3/12, "feet"),
  52968. weight: math.unit(250, "lb"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/reika/front.svg",
  52972. extra: 1120/1078,
  52973. bottom: 86/1206
  52974. }
  52975. },
  52976. },
  52977. [
  52978. {
  52979. name: "Normal",
  52980. height: math.unit(6 + 3/12, "feet"),
  52981. default: true
  52982. },
  52983. ]
  52984. ))
  52985. characterMakers.push(() => makeCharacter(
  52986. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52987. {
  52988. front: {
  52989. height: math.unit(16 + 8/12, "feet"),
  52990. weight: math.unit(9000, "lb"),
  52991. name: "Front",
  52992. image: {
  52993. source: "./media/characters/lokuto-takama/front.svg",
  52994. extra: 1774/1632,
  52995. bottom: 147/1921
  52996. },
  52997. extraAttributes: {
  52998. "bustWidth": {
  52999. name: "Bust Width",
  53000. power: 1,
  53001. type: "length",
  53002. base: math.unit(2.4, "meters")
  53003. },
  53004. "breastWeight": {
  53005. name: "Breast Weight",
  53006. power: 3,
  53007. type: "mass",
  53008. base: math.unit(1000, "kg")
  53009. },
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(16 + 8/12, "feet"),
  53017. default: true
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(10, "cm"),
  53026. weight: math.unit(850, "grams"),
  53027. name: "Front",
  53028. image: {
  53029. source: "./media/characters/owak-bone/front.svg",
  53030. extra: 1965/1801,
  53031. bottom: 31/1996
  53032. }
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Normal",
  53038. height: math.unit(10, "cm"),
  53039. default: true
  53040. },
  53041. ]
  53042. ))
  53043. characterMakers.push(() => makeCharacter(
  53044. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53045. {
  53046. front: {
  53047. height: math.unit(2 + 6/12, "feet"),
  53048. weight: math.unit(9, "lb"),
  53049. name: "Front",
  53050. image: {
  53051. source: "./media/characters/muffin/front.svg",
  53052. extra: 1220/1195,
  53053. bottom: 84/1304
  53054. }
  53055. },
  53056. },
  53057. [
  53058. {
  53059. name: "Normal",
  53060. height: math.unit(2 + 6/12, "feet"),
  53061. default: true
  53062. },
  53063. ]
  53064. ))
  53065. characterMakers.push(() => makeCharacter(
  53066. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53067. {
  53068. front: {
  53069. height: math.unit(7, "feet"),
  53070. name: "Front",
  53071. image: {
  53072. source: "./media/characters/chimera/front.svg",
  53073. extra: 1752/1614,
  53074. bottom: 68/1820
  53075. }
  53076. },
  53077. },
  53078. [
  53079. {
  53080. name: "Normal",
  53081. height: math.unit(7, "feet")
  53082. },
  53083. {
  53084. name: "Gigamacro",
  53085. height: math.unit(2.9, "gigameters"),
  53086. default: true
  53087. },
  53088. {
  53089. name: "Universal",
  53090. height: math.unit(1.56e26, "yottameters")
  53091. },
  53092. ]
  53093. ))
  53094. characterMakers.push(() => makeCharacter(
  53095. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53096. {
  53097. front: {
  53098. height: math.unit(3, "feet"),
  53099. weight: math.unit(20, "lb"),
  53100. name: "Front",
  53101. image: {
  53102. source: "./media/characters/kit-fennec-fox/front.svg",
  53103. extra: 1027/932,
  53104. bottom: 16/1043
  53105. }
  53106. },
  53107. back: {
  53108. height: math.unit(3, "feet"),
  53109. weight: math.unit(20, "lb"),
  53110. name: "Back",
  53111. image: {
  53112. source: "./media/characters/kit-fennec-fox/back.svg",
  53113. extra: 1027/932,
  53114. bottom: 16/1043
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(3, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(167, "cm"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/blue-otter/front.svg",
  53134. extra: 1951/1920,
  53135. bottom: 31/1982
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Otter-Sized",
  53142. height: math.unit(100, "cm")
  53143. },
  53144. {
  53145. name: "Normal",
  53146. height: math.unit(167, "cm"),
  53147. default: true
  53148. },
  53149. ]
  53150. ))
  53151. characterMakers.push(() => makeCharacter(
  53152. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53153. {
  53154. front: {
  53155. height: math.unit(4 + 4/12, "feet"),
  53156. name: "Front",
  53157. image: {
  53158. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53159. extra: 1072/1067,
  53160. bottom: 117/1189
  53161. }
  53162. },
  53163. back: {
  53164. height: math.unit(4 + 4/12, "feet"),
  53165. name: "Back",
  53166. image: {
  53167. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53168. extra: 1135/1129,
  53169. bottom: 57/1192
  53170. }
  53171. },
  53172. head: {
  53173. height: math.unit(1.77, "feet"),
  53174. name: "Head",
  53175. image: {
  53176. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53177. }
  53178. },
  53179. },
  53180. [
  53181. {
  53182. name: "Normal",
  53183. height: math.unit(4 + 4/12, "feet"),
  53184. default: true
  53185. },
  53186. ]
  53187. ))
  53188. characterMakers.push(() => makeCharacter(
  53189. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53190. {
  53191. front: {
  53192. height: math.unit(2, "inches"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/carley-hartford/front.svg",
  53196. extra: 1035/988,
  53197. bottom: 23/1058
  53198. }
  53199. },
  53200. back: {
  53201. height: math.unit(2, "inches"),
  53202. name: "Back",
  53203. image: {
  53204. source: "./media/characters/carley-hartford/back.svg",
  53205. extra: 1035/988,
  53206. bottom: 23/1058
  53207. }
  53208. },
  53209. dressed: {
  53210. height: math.unit(2, "inches"),
  53211. name: "Dressed",
  53212. image: {
  53213. source: "./media/characters/carley-hartford/dressed.svg",
  53214. extra: 651/620,
  53215. bottom: 0/651
  53216. }
  53217. },
  53218. },
  53219. [
  53220. {
  53221. name: "Micro",
  53222. height: math.unit(2, "inches"),
  53223. default: true
  53224. },
  53225. {
  53226. name: "Macro",
  53227. height: math.unit(6 + 3/12, "feet")
  53228. },
  53229. ]
  53230. ))
  53231. characterMakers.push(() => makeCharacter(
  53232. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53233. {
  53234. front: {
  53235. height: math.unit(2 + 3/12, "feet"),
  53236. weight: math.unit(15 + 7/16, "lb"),
  53237. name: "Front",
  53238. image: {
  53239. source: "./media/characters/duke/front.svg",
  53240. extra: 910/815,
  53241. bottom: 30/940
  53242. }
  53243. },
  53244. },
  53245. [
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(2 + 3/12, "feet"),
  53249. default: true
  53250. },
  53251. ]
  53252. ))
  53253. characterMakers.push(() => makeCharacter(
  53254. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53255. {
  53256. front: {
  53257. height: math.unit(5 + 4/12, "feet"),
  53258. weight: math.unit(156, "lb"),
  53259. name: "Front",
  53260. image: {
  53261. source: "./media/characters/dein/front.svg",
  53262. extra: 855/815,
  53263. bottom: 48/903
  53264. }
  53265. },
  53266. side: {
  53267. height: math.unit(5 + 4/12, "feet"),
  53268. weight: math.unit(156, "lb"),
  53269. name: "side",
  53270. image: {
  53271. source: "./media/characters/dein/side.svg",
  53272. extra: 846/803,
  53273. bottom: 25/871
  53274. }
  53275. },
  53276. maw: {
  53277. height: math.unit(1.45, "feet"),
  53278. name: "Maw",
  53279. image: {
  53280. source: "./media/characters/dein/maw.svg"
  53281. }
  53282. },
  53283. },
  53284. [
  53285. {
  53286. name: "Ferret Sized",
  53287. height: math.unit(2 + 5/12, "feet")
  53288. },
  53289. {
  53290. name: "Normal",
  53291. height: math.unit(5 + 4/12, "feet"),
  53292. default: true
  53293. },
  53294. ]
  53295. ))
  53296. characterMakers.push(() => makeCharacter(
  53297. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53298. {
  53299. front: {
  53300. height: math.unit(84 + 8/12, "feet"),
  53301. weight: math.unit(942180, "lb"),
  53302. name: "Front",
  53303. image: {
  53304. source: "./media/characters/daurine-arima/front.svg",
  53305. extra: 1989/1782,
  53306. bottom: 37/2026
  53307. }
  53308. },
  53309. side: {
  53310. height: math.unit(84 + 8/12, "feet"),
  53311. weight: math.unit(942180, "lb"),
  53312. name: "Side",
  53313. image: {
  53314. source: "./media/characters/daurine-arima/side.svg",
  53315. extra: 1997/1790,
  53316. bottom: 21/2018
  53317. }
  53318. },
  53319. back: {
  53320. height: math.unit(84 + 8/12, "feet"),
  53321. weight: math.unit(942180, "lb"),
  53322. name: "Back",
  53323. image: {
  53324. source: "./media/characters/daurine-arima/back.svg",
  53325. extra: 1992/1800,
  53326. bottom: 12/2004
  53327. }
  53328. },
  53329. head: {
  53330. height: math.unit(15.5, "feet"),
  53331. name: "Head",
  53332. image: {
  53333. source: "./media/characters/daurine-arima/head.svg"
  53334. }
  53335. },
  53336. headAlt: {
  53337. height: math.unit(19.19, "feet"),
  53338. name: "Head (Alt)",
  53339. image: {
  53340. source: "./media/characters/daurine-arima/head-alt.svg"
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Minimum height",
  53347. height: math.unit(8 + 10/12, "feet")
  53348. },
  53349. {
  53350. name: "Comfort height",
  53351. height: math.unit(19 + 6 /12, "feet")
  53352. },
  53353. {
  53354. name: "\"Normal\" height",
  53355. height: math.unit(28 + 10/12, "feet")
  53356. },
  53357. {
  53358. name: "Base height",
  53359. height: math.unit(84 + 8/12, "feet"),
  53360. default: true
  53361. },
  53362. {
  53363. name: "Mini-macro",
  53364. height: math.unit(2360, "feet")
  53365. },
  53366. {
  53367. name: "Macro",
  53368. height: math.unit(10, "miles")
  53369. },
  53370. {
  53371. name: "Goddess",
  53372. height: math.unit(9.99e40, "yottameters")
  53373. },
  53374. ]
  53375. ))
  53376. characterMakers.push(() => makeCharacter(
  53377. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53378. {
  53379. front: {
  53380. height: math.unit(2.3, "meters"),
  53381. name: "Front",
  53382. image: {
  53383. source: "./media/characters/cilenomon/front.svg",
  53384. extra: 1963/1778,
  53385. bottom: 54/2017
  53386. }
  53387. },
  53388. },
  53389. [
  53390. {
  53391. name: "Normal",
  53392. height: math.unit(2.3, "meters"),
  53393. default: true
  53394. },
  53395. {
  53396. name: "Big",
  53397. height: math.unit(5, "meters")
  53398. },
  53399. {
  53400. name: "Macro",
  53401. height: math.unit(30, "meters")
  53402. },
  53403. {
  53404. name: "True",
  53405. height: math.unit(1, "universe")
  53406. },
  53407. ]
  53408. ))
  53409. characterMakers.push(() => makeCharacter(
  53410. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53411. {
  53412. front: {
  53413. height: math.unit(5, "feet"),
  53414. name: "Front",
  53415. image: {
  53416. source: "./media/characters/sen-mink/front.svg",
  53417. extra: 1727/1675,
  53418. bottom: 35/1762
  53419. }
  53420. },
  53421. },
  53422. [
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(5, "feet"),
  53426. default: true
  53427. },
  53428. ]
  53429. ))
  53430. characterMakers.push(() => makeCharacter(
  53431. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53432. {
  53433. front: {
  53434. height: math.unit(5.42999, "feet"),
  53435. weight: math.unit(100, "lb"),
  53436. name: "Front",
  53437. image: {
  53438. source: "./media/characters/ophois/front.svg",
  53439. extra: 1429/1286,
  53440. bottom: 60/1489
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Normal",
  53447. height: math.unit(5.42999, "feet"),
  53448. default: true
  53449. },
  53450. ]
  53451. ))
  53452. characterMakers.push(() => makeCharacter(
  53453. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53454. {
  53455. front: {
  53456. height: math.unit(2, "meters"),
  53457. name: "Front",
  53458. image: {
  53459. source: "./media/characters/riley/front.svg",
  53460. extra: 1779/1754,
  53461. bottom: 139/1918
  53462. }
  53463. },
  53464. },
  53465. [
  53466. {
  53467. name: "Normal",
  53468. height: math.unit(2, "meters"),
  53469. default: true
  53470. },
  53471. ]
  53472. ))
  53473. characterMakers.push(() => makeCharacter(
  53474. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53475. {
  53476. front: {
  53477. height: math.unit(6 + 2/12, "feet"),
  53478. weight: math.unit(195, "lb"),
  53479. preyCapacity: math.unit(6, "people"),
  53480. name: "Front",
  53481. image: {
  53482. source: "./media/characters/shuken-flash/front.svg",
  53483. extra: 1905/1739,
  53484. bottom: 65/1970
  53485. }
  53486. },
  53487. back: {
  53488. height: math.unit(6 + 2/12, "feet"),
  53489. weight: math.unit(195, "lb"),
  53490. preyCapacity: math.unit(6, "people"),
  53491. name: "Back",
  53492. image: {
  53493. source: "./media/characters/shuken-flash/back.svg",
  53494. extra: 1912/1751,
  53495. bottom: 13/1925
  53496. }
  53497. },
  53498. },
  53499. [
  53500. {
  53501. name: "Normal",
  53502. height: math.unit(6 + 2/12, "feet"),
  53503. default: true
  53504. },
  53505. ]
  53506. ))
  53507. characterMakers.push(() => makeCharacter(
  53508. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53509. {
  53510. front: {
  53511. height: math.unit(5 + 9/12, "feet"),
  53512. weight: math.unit(150, "lb"),
  53513. name: "Front",
  53514. image: {
  53515. source: "./media/characters/plat/front.svg",
  53516. extra: 1816/1703,
  53517. bottom: 43/1859
  53518. }
  53519. },
  53520. side: {
  53521. height: math.unit(5 + 9/12, "feet"),
  53522. weight: math.unit(300, "lb"),
  53523. name: "Side",
  53524. image: {
  53525. source: "./media/characters/plat/side.svg",
  53526. extra: 1824/1699,
  53527. bottom: 18/1842
  53528. }
  53529. },
  53530. },
  53531. [
  53532. {
  53533. name: "Normal",
  53534. height: math.unit(5 + 9/12, "feet"),
  53535. default: true
  53536. },
  53537. ]
  53538. ))
  53539. characterMakers.push(() => makeCharacter(
  53540. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53541. {
  53542. front: {
  53543. height: math.unit(9, "feet"),
  53544. weight: math.unit(1800, "lb"),
  53545. name: "Front",
  53546. image: {
  53547. source: "./media/characters/elaine/front.svg",
  53548. extra: 1833/1354,
  53549. bottom: 25/1858
  53550. }
  53551. },
  53552. back: {
  53553. height: math.unit(8.8, "feet"),
  53554. weight: math.unit(1800, "lb"),
  53555. name: "Back",
  53556. image: {
  53557. source: "./media/characters/elaine/back.svg",
  53558. extra: 1641/1233,
  53559. bottom: 53/1694
  53560. }
  53561. },
  53562. },
  53563. [
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(9, "feet"),
  53567. default: true
  53568. },
  53569. ]
  53570. ))
  53571. characterMakers.push(() => makeCharacter(
  53572. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53573. {
  53574. front: {
  53575. height: math.unit(17 + 9/12, "feet"),
  53576. weight: math.unit(8000, "lb"),
  53577. name: "Front",
  53578. image: {
  53579. source: "./media/characters/vera-raven/front.svg",
  53580. extra: 1457/1412,
  53581. bottom: 121/1578
  53582. }
  53583. },
  53584. side: {
  53585. height: math.unit(17 + 9/12, "feet"),
  53586. weight: math.unit(8000, "lb"),
  53587. name: "Side",
  53588. image: {
  53589. source: "./media/characters/vera-raven/side.svg",
  53590. extra: 1510/1464,
  53591. bottom: 54/1564
  53592. }
  53593. },
  53594. },
  53595. [
  53596. {
  53597. name: "Normal",
  53598. height: math.unit(17 + 9/12, "feet"),
  53599. default: true
  53600. },
  53601. ]
  53602. ))
  53603. characterMakers.push(() => makeCharacter(
  53604. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53605. {
  53606. dressed: {
  53607. height: math.unit(6 + 9/12, "feet"),
  53608. name: "Dressed",
  53609. image: {
  53610. source: "./media/characters/nakisha/dressed.svg",
  53611. extra: 1909/1757,
  53612. bottom: 48/1957
  53613. }
  53614. },
  53615. nude: {
  53616. height: math.unit(6 + 9/12, "feet"),
  53617. name: "Nude",
  53618. image: {
  53619. source: "./media/characters/nakisha/nude.svg",
  53620. extra: 1917/1765,
  53621. bottom: 34/1951
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Normal",
  53628. height: math.unit(6 + 9/12, "feet"),
  53629. default: true
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(87, "meters"),
  53638. name: "Front",
  53639. image: {
  53640. source: "./media/characters/serafin/front.svg",
  53641. extra: 1919/1776,
  53642. bottom: 65/1984
  53643. }
  53644. },
  53645. },
  53646. [
  53647. {
  53648. name: "Normal",
  53649. height: math.unit(87, "meters"),
  53650. default: true
  53651. },
  53652. ]
  53653. ))
  53654. characterMakers.push(() => makeCharacter(
  53655. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53656. {
  53657. front: {
  53658. height: math.unit(6, "feet"),
  53659. weight: math.unit(200, "lb"),
  53660. name: "Front",
  53661. image: {
  53662. source: "./media/characters/poptart/front.svg",
  53663. extra: 615/583,
  53664. bottom: 23/638
  53665. }
  53666. },
  53667. back: {
  53668. height: math.unit(6, "feet"),
  53669. weight: math.unit(200, "lb"),
  53670. name: "Back",
  53671. image: {
  53672. source: "./media/characters/poptart/back.svg",
  53673. extra: 617/584,
  53674. bottom: 22/639
  53675. }
  53676. },
  53677. frontNsfw: {
  53678. height: math.unit(6, "feet"),
  53679. weight: math.unit(200, "lb"),
  53680. name: "Front (NSFW)",
  53681. image: {
  53682. source: "./media/characters/poptart/front-nsfw.svg",
  53683. extra: 615/583,
  53684. bottom: 23/638
  53685. }
  53686. },
  53687. backNsfw: {
  53688. height: math.unit(6, "feet"),
  53689. weight: math.unit(200, "lb"),
  53690. name: "Back (NSFW)",
  53691. image: {
  53692. source: "./media/characters/poptart/back-nsfw.svg",
  53693. extra: 617/584,
  53694. bottom: 22/639
  53695. }
  53696. },
  53697. hand: {
  53698. height: math.unit(1.14, "feet"),
  53699. name: "Hand",
  53700. image: {
  53701. source: "./media/characters/poptart/hand.svg"
  53702. }
  53703. },
  53704. foot: {
  53705. height: math.unit(1.5, "feet"),
  53706. name: "Foot",
  53707. image: {
  53708. source: "./media/characters/poptart/foot.svg"
  53709. }
  53710. },
  53711. },
  53712. [
  53713. {
  53714. name: "Normal",
  53715. height: math.unit(6, "feet"),
  53716. default: true
  53717. },
  53718. {
  53719. name: "Grande",
  53720. height: math.unit(350, "feet")
  53721. },
  53722. {
  53723. name: "Massif",
  53724. height: math.unit(967, "feet")
  53725. },
  53726. ]
  53727. ))
  53728. characterMakers.push(() => makeCharacter(
  53729. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53730. {
  53731. hyenaSide: {
  53732. height: math.unit(120, "cm"),
  53733. weight: math.unit(120, "lb"),
  53734. name: "Side",
  53735. image: {
  53736. source: "./media/characters/trance/hyena-side.svg",
  53737. extra: 998/904,
  53738. bottom: 76/1074
  53739. }
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(120, "cm"),
  53746. default: true
  53747. },
  53748. {
  53749. name: "Dire",
  53750. height: math.unit(230, "cm")
  53751. },
  53752. {
  53753. name: "Macro",
  53754. height: math.unit(37, "feet")
  53755. },
  53756. ]
  53757. ))
  53758. characterMakers.push(() => makeCharacter(
  53759. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53760. {
  53761. front: {
  53762. height: math.unit(6 + 3/12, "feet"),
  53763. name: "Front",
  53764. image: {
  53765. source: "./media/characters/michael-berretta/front.svg",
  53766. extra: 515/494,
  53767. bottom: 20/535
  53768. }
  53769. },
  53770. back: {
  53771. height: math.unit(6 + 3/12, "feet"),
  53772. name: "Back",
  53773. image: {
  53774. source: "./media/characters/michael-berretta/back.svg",
  53775. extra: 520/497,
  53776. bottom: 21/541
  53777. }
  53778. },
  53779. frontNsfw: {
  53780. height: math.unit(6 + 3/12, "feet"),
  53781. name: "Front (NSFW)",
  53782. image: {
  53783. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53784. extra: 515/494,
  53785. bottom: 20/535
  53786. }
  53787. },
  53788. dick: {
  53789. height: math.unit(1, "feet"),
  53790. name: "Dick",
  53791. image: {
  53792. source: "./media/characters/michael-berretta/dick.svg"
  53793. }
  53794. },
  53795. },
  53796. [
  53797. {
  53798. name: "Normal",
  53799. height: math.unit(6 + 3/12, "feet"),
  53800. default: true
  53801. },
  53802. {
  53803. name: "Big",
  53804. height: math.unit(12, "feet")
  53805. },
  53806. {
  53807. name: "Macro",
  53808. height: math.unit(187.5, "feet")
  53809. },
  53810. ]
  53811. ))
  53812. characterMakers.push(() => makeCharacter(
  53813. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53814. {
  53815. front: {
  53816. height: math.unit(9 + 9/12, "feet"),
  53817. weight: math.unit(1244, "lb"),
  53818. name: "Front",
  53819. image: {
  53820. source: "./media/characters/stella-edgecomb/front.svg",
  53821. extra: 1835/1706,
  53822. bottom: 49/1884
  53823. }
  53824. },
  53825. pen: {
  53826. height: math.unit(0.95, "feet"),
  53827. name: "Pen",
  53828. image: {
  53829. source: "./media/characters/stella-edgecomb/pen.svg"
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "Cozy Bear",
  53836. height: math.unit(0.5, "inches")
  53837. },
  53838. {
  53839. name: "Normal",
  53840. height: math.unit(9 + 9/12, "feet"),
  53841. default: true
  53842. },
  53843. {
  53844. name: "Giga Bear",
  53845. height: math.unit(1, "mile")
  53846. },
  53847. {
  53848. name: "Great Bear",
  53849. height: math.unit(53, "miles")
  53850. },
  53851. {
  53852. name: "Goddess Bear",
  53853. height: math.unit(40000, "miles")
  53854. },
  53855. {
  53856. name: "Sun Bear",
  53857. height: math.unit(900000, "miles")
  53858. },
  53859. ]
  53860. ))
  53861. characterMakers.push(() => makeCharacter(
  53862. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53863. {
  53864. anthroFront: {
  53865. height: math.unit(556, "cm"),
  53866. weight: math.unit(2650, "kg"),
  53867. preyCapacity: math.unit(3, "people"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/ash´iika/front.svg",
  53871. extra: 710/673,
  53872. bottom: 15/725
  53873. },
  53874. form: "anthro",
  53875. default: true
  53876. },
  53877. anthroSide: {
  53878. height: math.unit(556, "cm"),
  53879. weight: math.unit(2650, "kg"),
  53880. preyCapacity: math.unit(3, "people"),
  53881. name: "Side",
  53882. image: {
  53883. source: "./media/characters/ash´iika/side.svg",
  53884. extra: 696/676,
  53885. bottom: 13/709
  53886. },
  53887. form: "anthro"
  53888. },
  53889. anthroDressed: {
  53890. height: math.unit(556, "cm"),
  53891. weight: math.unit(2650, "kg"),
  53892. preyCapacity: math.unit(3, "people"),
  53893. name: "Dressed",
  53894. image: {
  53895. source: "./media/characters/ash´iika/dressed.svg",
  53896. extra: 710/673,
  53897. bottom: 15/725
  53898. },
  53899. form: "anthro"
  53900. },
  53901. anthroHead: {
  53902. height: math.unit(3.5, "feet"),
  53903. name: "Head",
  53904. image: {
  53905. source: "./media/characters/ash´iika/head.svg",
  53906. extra: 348/291,
  53907. bottom: 45/393
  53908. },
  53909. form: "anthro"
  53910. },
  53911. feralSide: {
  53912. height: math.unit(870, "cm"),
  53913. weight: math.unit(17500, "kg"),
  53914. preyCapacity: math.unit(15, "people"),
  53915. name: "Side",
  53916. image: {
  53917. source: "./media/characters/ash´iika/feral.svg",
  53918. extra: 595/199,
  53919. bottom: 7/602
  53920. },
  53921. form: "feral",
  53922. default: true,
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Normal",
  53928. height: math.unit(556, "cm"),
  53929. default: true,
  53930. form: "anthro"
  53931. },
  53932. {
  53933. name: "Macro",
  53934. height: math.unit(88, "meters"),
  53935. form: "anthro"
  53936. },
  53937. {
  53938. name: "Normal",
  53939. height: math.unit(870, "cm"),
  53940. default: true,
  53941. form: "feral"
  53942. },
  53943. {
  53944. name: "Large",
  53945. height: math.unit(25, "meters"),
  53946. form: "feral"
  53947. },
  53948. ],
  53949. {
  53950. "anthro": {
  53951. name: "Anthro",
  53952. default: true
  53953. },
  53954. "feral": {
  53955. name: "Feral",
  53956. },
  53957. }
  53958. ))
  53959. characterMakers.push(() => makeCharacter(
  53960. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53961. {
  53962. front: {
  53963. height: math.unit(10, "feet"),
  53964. weight: math.unit(800, "lb"),
  53965. name: "Front",
  53966. image: {
  53967. source: "./media/characters/yen/front.svg",
  53968. extra: 443/411,
  53969. bottom: 6/449
  53970. }
  53971. },
  53972. sleeping: {
  53973. height: math.unit(10, "feet"),
  53974. weight: math.unit(800, "lb"),
  53975. name: "Sleeping",
  53976. image: {
  53977. source: "./media/characters/yen/sleeping.svg",
  53978. extra: 470/422,
  53979. bottom: 0/470
  53980. }
  53981. },
  53982. head: {
  53983. height: math.unit(2.2, "feet"),
  53984. name: "Head",
  53985. image: {
  53986. source: "./media/characters/yen/head.svg"
  53987. }
  53988. },
  53989. headAlt: {
  53990. height: math.unit(2.1, "feet"),
  53991. name: "Head (Alt)",
  53992. image: {
  53993. source: "./media/characters/yen/head-alt.svg"
  53994. }
  53995. },
  53996. },
  53997. [
  53998. {
  53999. name: "Normal",
  54000. height: math.unit(10, "feet"),
  54001. default: true
  54002. },
  54003. ]
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54007. {
  54008. front: {
  54009. height: math.unit(12, "feet"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/citra/front.svg",
  54013. extra: 1950/1710,
  54014. bottom: 47/1997
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(12, "feet"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54028. {
  54029. side: {
  54030. height: math.unit(7 + 10/12, "feet"),
  54031. name: "Side",
  54032. image: {
  54033. source: "./media/characters/sholstim/side.svg",
  54034. extra: 786/682,
  54035. bottom: 40/826
  54036. }
  54037. },
  54038. },
  54039. [
  54040. {
  54041. name: "Normal",
  54042. height: math.unit(7 + 10/12, "feet"),
  54043. default: true
  54044. },
  54045. ]
  54046. ))
  54047. characterMakers.push(() => makeCharacter(
  54048. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54049. {
  54050. front: {
  54051. height: math.unit(3.10, "meters"),
  54052. name: "Front",
  54053. image: {
  54054. source: "./media/characters/aggyn/front.svg",
  54055. extra: 1188/963,
  54056. bottom: 24/1212
  54057. }
  54058. },
  54059. },
  54060. [
  54061. {
  54062. name: "Normal",
  54063. height: math.unit(3.10, "meters"),
  54064. default: true
  54065. },
  54066. ]
  54067. ))
  54068. characterMakers.push(() => makeCharacter(
  54069. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54070. {
  54071. front: {
  54072. height: math.unit(7 + 5/12, "feet"),
  54073. weight: math.unit(687, "lb"),
  54074. name: "Front",
  54075. image: {
  54076. source: "./media/characters/alsandair-hergenroether/front.svg",
  54077. extra: 1251/1186,
  54078. bottom: 75/1326
  54079. }
  54080. },
  54081. back: {
  54082. height: math.unit(7 + 5/12, "feet"),
  54083. weight: math.unit(687, "lb"),
  54084. name: "Back",
  54085. image: {
  54086. source: "./media/characters/alsandair-hergenroether/back.svg",
  54087. extra: 1290/1229,
  54088. bottom: 17/1307
  54089. }
  54090. },
  54091. },
  54092. [
  54093. {
  54094. name: "Max Compression",
  54095. height: math.unit(7 + 5/12, "feet"),
  54096. default: true
  54097. },
  54098. {
  54099. name: "\"Normal\"",
  54100. height: math.unit(2, "universes")
  54101. },
  54102. ]
  54103. ))
  54104. characterMakers.push(() => makeCharacter(
  54105. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54106. {
  54107. front: {
  54108. height: math.unit(4 + 1/12, "feet"),
  54109. weight: math.unit(92, "lb"),
  54110. name: "Front",
  54111. image: {
  54112. source: "./media/characters/ie/front.svg",
  54113. extra: 1585/1352,
  54114. bottom: 91/1676
  54115. }
  54116. },
  54117. },
  54118. [
  54119. {
  54120. name: "Normal",
  54121. height: math.unit(4 + 1/12, "feet"),
  54122. default: true
  54123. },
  54124. ]
  54125. ))
  54126. characterMakers.push(() => makeCharacter(
  54127. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54128. {
  54129. anthro: {
  54130. height: math.unit(6, "feet"),
  54131. weight: math.unit(150, "lb"),
  54132. name: "Front",
  54133. image: {
  54134. source: "./media/characters/willow/anthro.svg",
  54135. extra: 1073/986,
  54136. bottom: 34/1107
  54137. },
  54138. form: "anthro",
  54139. default: true
  54140. },
  54141. taur: {
  54142. height: math.unit(6, "feet"),
  54143. weight: math.unit(150, "lb"),
  54144. name: "Side",
  54145. image: {
  54146. source: "./media/characters/willow/taur.svg",
  54147. extra: 647/512,
  54148. bottom: 136/783
  54149. },
  54150. form: "taur",
  54151. default: true
  54152. },
  54153. },
  54154. [
  54155. {
  54156. name: "Humanoid",
  54157. height: math.unit(2.7, "meters"),
  54158. form: "anthro"
  54159. },
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(9, "meters"),
  54163. form: "anthro",
  54164. default: true
  54165. },
  54166. {
  54167. name: "Humanoid",
  54168. height: math.unit(2.1, "meters"),
  54169. form: "taur"
  54170. },
  54171. {
  54172. name: "Normal",
  54173. height: math.unit(7, "meters"),
  54174. form: "taur",
  54175. default: true
  54176. },
  54177. ],
  54178. {
  54179. "anthro": {
  54180. name: "Anthro",
  54181. default: true
  54182. },
  54183. "taur": {
  54184. name: "Taur",
  54185. },
  54186. }
  54187. ))
  54188. characterMakers.push(() => makeCharacter(
  54189. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54190. {
  54191. front: {
  54192. height: math.unit(2 + 5/12, "feet"),
  54193. name: "Front",
  54194. image: {
  54195. source: "./media/characters/kyan/front.svg",
  54196. extra: 460/334,
  54197. bottom: 23/483
  54198. },
  54199. extraAttributes: {
  54200. "toeLength": {
  54201. name: "Toe Length",
  54202. power: 1,
  54203. type: "length",
  54204. base: math.unit(7, "cm")
  54205. },
  54206. "toeclawLength": {
  54207. name: "Toeclaw Length",
  54208. power: 1,
  54209. type: "length",
  54210. base: math.unit(4.7, "cm")
  54211. },
  54212. "earHeight": {
  54213. name: "Ear Height",
  54214. power: 1,
  54215. type: "length",
  54216. base: math.unit(14.1, "cm")
  54217. },
  54218. }
  54219. },
  54220. paws: {
  54221. height: math.unit(0.45, "feet"),
  54222. name: "Paws",
  54223. image: {
  54224. source: "./media/characters/kyan/paws.svg",
  54225. extra: 581/581,
  54226. bottom: 114/695
  54227. }
  54228. },
  54229. },
  54230. [
  54231. {
  54232. name: "Normal",
  54233. height: math.unit(2 + 5/12, "feet"),
  54234. default: true
  54235. },
  54236. ]
  54237. ))
  54238. characterMakers.push(() => makeCharacter(
  54239. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54240. {
  54241. front: {
  54242. height: math.unit(2 + 2/3, "feet"),
  54243. name: "Front",
  54244. image: {
  54245. source: "./media/characters/xazzon/front.svg",
  54246. extra: 1109/984,
  54247. bottom: 42/1151
  54248. }
  54249. },
  54250. back: {
  54251. height: math.unit(2 + 2/3, "feet"),
  54252. name: "Back",
  54253. image: {
  54254. source: "./media/characters/xazzon/back.svg",
  54255. extra: 1095/971,
  54256. bottom: 23/1118
  54257. }
  54258. },
  54259. },
  54260. [
  54261. {
  54262. name: "Normal",
  54263. height: math.unit(2 + 2/3, "feet"),
  54264. default: true
  54265. },
  54266. ]
  54267. ))
  54268. characterMakers.push(() => makeCharacter(
  54269. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54270. {
  54271. dressed: {
  54272. height: math.unit(5 + 7/12, "feet"),
  54273. weight: math.unit(173, "lb"),
  54274. name: "Dressed",
  54275. image: {
  54276. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54277. extra: 3262/2862,
  54278. bottom: 188/3450
  54279. }
  54280. },
  54281. undressed: {
  54282. height: math.unit(5 + 7/12, "feet"),
  54283. weight: math.unit(173, "lb"),
  54284. name: "Undressed",
  54285. image: {
  54286. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54287. extra: 3262/2862,
  54288. bottom: 188/3450
  54289. }
  54290. },
  54291. },
  54292. [
  54293. {
  54294. name: "The void",
  54295. height: math.unit(7.29193e-34, "angstroms")
  54296. },
  54297. {
  54298. name: "Uh-Oh.",
  54299. height: math.unit(5.734e-7, "angstroms")
  54300. },
  54301. {
  54302. name: "Pico",
  54303. height: math.unit(0.876, "angstroms")
  54304. },
  54305. {
  54306. name: "Nano",
  54307. height: math.unit(0.000134200, "mm")
  54308. },
  54309. {
  54310. name: "Micro",
  54311. height: math.unit(0.0673020, "mm")
  54312. },
  54313. {
  54314. name: "Tiny",
  54315. height: math.unit(2.4, "mm")
  54316. },
  54317. {
  54318. name: "Actual Normal",
  54319. height: math.unit(3, "inches"),
  54320. default: true
  54321. },
  54322. {
  54323. name: "Normal",
  54324. height: math.unit(5 + 8/12, "feet")
  54325. },
  54326. {
  54327. name: "Giant",
  54328. height: math.unit(12, "feet")
  54329. },
  54330. {
  54331. name: "City Ruler",
  54332. height: math.unit(270, "meters")
  54333. },
  54334. {
  54335. name: "Giga",
  54336. height: math.unit(1117.6, "km")
  54337. },
  54338. {
  54339. name: "All-Powerful Queen",
  54340. height: math.unit(70.8, "gigameters")
  54341. },
  54342. {
  54343. name: "'Goddess'",
  54344. height: math.unit(600, "yottameters")
  54345. },
  54346. {
  54347. name: "Biggest!",
  54348. height: math.unit(4.23e5, "yottameters")
  54349. },
  54350. ]
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(8, "feet"),
  54357. weight: math.unit(300, "lb"),
  54358. name: "Front",
  54359. image: {
  54360. source: "./media/characters/khyla-shadowsong/front.svg",
  54361. extra: 861/798,
  54362. bottom: 32/893
  54363. }
  54364. },
  54365. side: {
  54366. height: math.unit(8, "feet"),
  54367. weight: math.unit(300, "lb"),
  54368. name: "Side",
  54369. image: {
  54370. source: "./media/characters/khyla-shadowsong/side.svg",
  54371. extra: 790/750,
  54372. bottom: 87/877
  54373. }
  54374. },
  54375. back: {
  54376. height: math.unit(8, "feet"),
  54377. weight: math.unit(300, "lb"),
  54378. name: "Back",
  54379. image: {
  54380. source: "./media/characters/khyla-shadowsong/back.svg",
  54381. extra: 855/808,
  54382. bottom: 14/869
  54383. }
  54384. },
  54385. head: {
  54386. height: math.unit(2.7, "feet"),
  54387. name: "Head",
  54388. image: {
  54389. source: "./media/characters/khyla-shadowsong/head.svg"
  54390. }
  54391. },
  54392. },
  54393. [
  54394. {
  54395. name: "Micro",
  54396. height: math.unit(6, "inches")
  54397. },
  54398. {
  54399. name: "Normal",
  54400. height: math.unit(8, "feet"),
  54401. default: true
  54402. },
  54403. ]
  54404. ))
  54405. characterMakers.push(() => makeCharacter(
  54406. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54407. {
  54408. hyperFront: {
  54409. height: math.unit(9 + 4/12, "feet"),
  54410. weight: math.unit(2000, "lb"),
  54411. name: "Front",
  54412. image: {
  54413. source: "./media/characters/tiden/hyper-front.svg",
  54414. extra: 400/382,
  54415. bottom: 6/406
  54416. },
  54417. form: "hyper",
  54418. },
  54419. regularFront: {
  54420. height: math.unit(7 + 10/12, "feet"),
  54421. weight: math.unit(470, "lb"),
  54422. name: "Front",
  54423. image: {
  54424. source: "./media/characters/tiden/regular-front.svg",
  54425. extra: 468/442,
  54426. bottom: 6/474
  54427. },
  54428. form: "regular",
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Normal",
  54434. height: math.unit(9 + 4/12, "feet"),
  54435. default: true,
  54436. form: "hyper"
  54437. },
  54438. {
  54439. name: "Normal",
  54440. height: math.unit(7 + 10/12, "feet"),
  54441. default: true,
  54442. form: "regular"
  54443. },
  54444. ],
  54445. {
  54446. "hyper": {
  54447. name: "Hyper",
  54448. default: true
  54449. },
  54450. "regular": {
  54451. name: "Regular",
  54452. },
  54453. }
  54454. ))
  54455. characterMakers.push(() => makeCharacter(
  54456. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54457. {
  54458. side: {
  54459. height: math.unit(6, "feet"),
  54460. weight: math.unit(150, "lb"),
  54461. name: "Side",
  54462. image: {
  54463. source: "./media/characters/jason-crowe/side.svg",
  54464. extra: 1771/766,
  54465. bottom: 219/1990
  54466. }
  54467. },
  54468. },
  54469. [
  54470. {
  54471. name: "Pocket Gryphon",
  54472. height: math.unit(6, "cm")
  54473. },
  54474. {
  54475. name: "Raven",
  54476. height: math.unit(60, "cm")
  54477. },
  54478. {
  54479. name: "Normal",
  54480. height: math.unit(1, "meter"),
  54481. default: true
  54482. },
  54483. ]
  54484. ))
  54485. characterMakers.push(() => makeCharacter(
  54486. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54487. {
  54488. front: {
  54489. height: math.unit(9 + 6/12, "feet"),
  54490. weight: math.unit(1100, "lb"),
  54491. name: "Front",
  54492. image: {
  54493. source: "./media/characters/django/front.svg",
  54494. extra: 1231/1136,
  54495. bottom: 34/1265
  54496. }
  54497. },
  54498. side: {
  54499. height: math.unit(9 + 6/12, "feet"),
  54500. weight: math.unit(1100, "lb"),
  54501. name: "Side",
  54502. image: {
  54503. source: "./media/characters/django/side.svg",
  54504. extra: 1267/1174,
  54505. bottom: 9/1276
  54506. }
  54507. },
  54508. },
  54509. [
  54510. {
  54511. name: "Normal",
  54512. height: math.unit(9 + 6/12, "feet"),
  54513. default: true
  54514. },
  54515. {
  54516. name: "Macro 1",
  54517. height: math.unit(50, "feet")
  54518. },
  54519. {
  54520. name: "Macro 2",
  54521. height: math.unit(500, "feet")
  54522. },
  54523. {
  54524. name: "Mega Macro",
  54525. height: math.unit(5300, "feet")
  54526. },
  54527. ]
  54528. ))
  54529. characterMakers.push(() => makeCharacter(
  54530. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54531. {
  54532. frontSfw: {
  54533. height: math.unit(120, "cm"),
  54534. weight: math.unit(15, "kg"),
  54535. name: "Front (SFW)",
  54536. image: {
  54537. source: "./media/characters/eri/front-sfw.svg",
  54538. extra: 1014/939,
  54539. bottom: 37/1051
  54540. },
  54541. form: "moth",
  54542. },
  54543. frontNsfw: {
  54544. height: math.unit(120, "cm"),
  54545. weight: math.unit(15, "kg"),
  54546. name: "Front (NSFW)",
  54547. image: {
  54548. source: "./media/characters/eri/front-nsfw.svg",
  54549. extra: 1014/939,
  54550. bottom: 37/1051
  54551. },
  54552. form: "moth",
  54553. default: true
  54554. },
  54555. egg: {
  54556. height: math.unit(10, "cm"),
  54557. name: "Egg",
  54558. image: {
  54559. source: "./media/characters/eri/egg.svg"
  54560. },
  54561. form: "egg",
  54562. default: true
  54563. },
  54564. },
  54565. [
  54566. {
  54567. name: "Normal",
  54568. height: math.unit(120, "cm"),
  54569. default: true,
  54570. form: "moth"
  54571. },
  54572. {
  54573. name: "Normal",
  54574. height: math.unit(10, "cm"),
  54575. default: true,
  54576. form: "egg"
  54577. },
  54578. ],
  54579. {
  54580. "moth": {
  54581. name: "Moth",
  54582. default: true
  54583. },
  54584. "egg": {
  54585. name: "Egg",
  54586. },
  54587. }
  54588. ))
  54589. characterMakers.push(() => makeCharacter(
  54590. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54591. {
  54592. front: {
  54593. height: math.unit(200, "feet"),
  54594. name: "Front",
  54595. image: {
  54596. source: "./media/characters/bishop-dowser/front.svg",
  54597. extra: 933/868,
  54598. bottom: 106/1039
  54599. }
  54600. },
  54601. },
  54602. [
  54603. {
  54604. name: "Giant",
  54605. height: math.unit(200, "feet"),
  54606. default: true
  54607. },
  54608. ]
  54609. ))
  54610. characterMakers.push(() => makeCharacter(
  54611. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54612. {
  54613. front: {
  54614. height: math.unit(2, "meters"),
  54615. preyCapacity: math.unit(3, "people"),
  54616. name: "Front",
  54617. image: {
  54618. source: "./media/characters/fryra/front.svg",
  54619. extra: 1025/948,
  54620. bottom: 30/1055
  54621. },
  54622. extraAttributes: {
  54623. "breastVolume": {
  54624. name: "Breast Volume",
  54625. power: 3,
  54626. type: "volume",
  54627. base: math.unit(8, "liters")
  54628. },
  54629. }
  54630. },
  54631. back: {
  54632. height: math.unit(2, "meters"),
  54633. preyCapacity: math.unit(3, "people"),
  54634. name: "Back",
  54635. image: {
  54636. source: "./media/characters/fryra/back.svg",
  54637. extra: 993/938,
  54638. bottom: 38/1031
  54639. },
  54640. extraAttributes: {
  54641. "breastVolume": {
  54642. name: "Breast Volume",
  54643. power: 3,
  54644. type: "volume",
  54645. base: math.unit(8, "liters")
  54646. },
  54647. }
  54648. },
  54649. head: {
  54650. height: math.unit(1.33, "feet"),
  54651. name: "Head",
  54652. image: {
  54653. source: "./media/characters/fryra/head.svg"
  54654. }
  54655. },
  54656. maw: {
  54657. height: math.unit(0.56, "feet"),
  54658. name: "Maw",
  54659. image: {
  54660. source: "./media/characters/fryra/maw.svg"
  54661. }
  54662. },
  54663. },
  54664. [
  54665. {
  54666. name: "Micro",
  54667. height: math.unit(5, "cm")
  54668. },
  54669. {
  54670. name: "Normal",
  54671. height: math.unit(2, "meters"),
  54672. default: true
  54673. },
  54674. {
  54675. name: "Small Macro",
  54676. height: math.unit(8, "meters")
  54677. },
  54678. {
  54679. name: "Macro",
  54680. height: math.unit(50, "meters")
  54681. },
  54682. {
  54683. name: "Megamacro",
  54684. height: math.unit(1, "km")
  54685. },
  54686. {
  54687. name: "Planetary",
  54688. height: math.unit(300000, "km")
  54689. },
  54690. {
  54691. name: "Universal",
  54692. height: math.unit(250, "lightyears")
  54693. },
  54694. {
  54695. name: "Fabric of Reality",
  54696. height: math.unit(1000, "multiverses")
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54702. {
  54703. frontDressed: {
  54704. height: math.unit(6 + 2/12, "feet"),
  54705. name: "Front (Dressed)",
  54706. image: {
  54707. source: "./media/characters/fiera/front-dressed.svg",
  54708. extra: 1883/1793,
  54709. bottom: 70/1953
  54710. }
  54711. },
  54712. backDressed: {
  54713. height: math.unit(6 + 2/12, "feet"),
  54714. name: "Back (Dressed)",
  54715. image: {
  54716. source: "./media/characters/fiera/back-dressed.svg",
  54717. extra: 1847/1780,
  54718. bottom: 70/1917
  54719. }
  54720. },
  54721. frontNude: {
  54722. height: math.unit(6 + 2/12, "feet"),
  54723. name: "Front (Nude)",
  54724. image: {
  54725. source: "./media/characters/fiera/front-nude.svg",
  54726. extra: 1875/1785,
  54727. bottom: 66/1941
  54728. }
  54729. },
  54730. backNude: {
  54731. height: math.unit(6 + 2/12, "feet"),
  54732. name: "Back (Nude)",
  54733. image: {
  54734. source: "./media/characters/fiera/back-nude.svg",
  54735. extra: 1855/1788,
  54736. bottom: 44/1899
  54737. }
  54738. },
  54739. maw: {
  54740. height: math.unit(1.3, "feet"),
  54741. name: "Maw",
  54742. image: {
  54743. source: "./media/characters/fiera/maw.svg"
  54744. }
  54745. },
  54746. paw: {
  54747. height: math.unit(1, "feet"),
  54748. name: "Paw",
  54749. image: {
  54750. source: "./media/characters/fiera/paw.svg"
  54751. }
  54752. },
  54753. shoe: {
  54754. height: math.unit(1.05, "feet"),
  54755. name: "Shoe",
  54756. image: {
  54757. source: "./media/characters/fiera/shoe.svg"
  54758. }
  54759. },
  54760. },
  54761. [
  54762. {
  54763. name: "Normal",
  54764. height: math.unit(6 + 2/12, "feet"),
  54765. default: true
  54766. },
  54767. {
  54768. name: "Size Difference",
  54769. height: math.unit(13, "feet")
  54770. },
  54771. {
  54772. name: "Macro",
  54773. height: math.unit(60, "feet")
  54774. },
  54775. {
  54776. name: "Mega Macro",
  54777. height: math.unit(200, "feet")
  54778. },
  54779. ]
  54780. ))
  54781. characterMakers.push(() => makeCharacter(
  54782. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54783. {
  54784. back: {
  54785. height: math.unit(6, "feet"),
  54786. name: "Back",
  54787. image: {
  54788. source: "./media/characters/flare/back.svg",
  54789. extra: 1883/1765,
  54790. bottom: 32/1915
  54791. }
  54792. },
  54793. },
  54794. [
  54795. {
  54796. name: "Normal",
  54797. height: math.unit(6 + 2/12, "feet"),
  54798. default: true
  54799. },
  54800. {
  54801. name: "Size Difference",
  54802. height: math.unit(13, "feet")
  54803. },
  54804. {
  54805. name: "Macro",
  54806. height: math.unit(60, "feet")
  54807. },
  54808. {
  54809. name: "Macro 2",
  54810. height: math.unit(100, "feet")
  54811. },
  54812. {
  54813. name: "Mega Macro",
  54814. height: math.unit(200, "feet")
  54815. },
  54816. ]
  54817. ))
  54818. characterMakers.push(() => makeCharacter(
  54819. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54820. {
  54821. front: {
  54822. height: math.unit(2.2, "m"),
  54823. weight: math.unit(300, "kg"),
  54824. name: "Front",
  54825. image: {
  54826. source: "./media/characters/hanna/front.svg",
  54827. extra: 1696/1502,
  54828. bottom: 206/1902
  54829. }
  54830. },
  54831. },
  54832. [
  54833. {
  54834. name: "Humanoid",
  54835. height: math.unit(2.2, "meters")
  54836. },
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(4.8, "meters"),
  54840. default: true
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54846. {
  54847. front: {
  54848. height: math.unit(2.8, "meters"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/argo/front.svg",
  54852. extra: 731/518,
  54853. bottom: 84/815
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(3, "meters"),
  54861. default: true
  54862. },
  54863. ]
  54864. ))
  54865. characterMakers.push(() => makeCharacter(
  54866. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54867. {
  54868. side: {
  54869. height: math.unit(3.8, "meters"),
  54870. name: "Side",
  54871. image: {
  54872. source: "./media/characters/sybil/side.svg",
  54873. extra: 382/361,
  54874. bottom: 25/407
  54875. }
  54876. },
  54877. },
  54878. [
  54879. {
  54880. name: "Normal",
  54881. height: math.unit(3.8, "meters"),
  54882. default: true
  54883. },
  54884. ]
  54885. ))
  54886. characterMakers.push(() => makeCharacter(
  54887. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54888. {
  54889. side: {
  54890. height: math.unit(6, "meters"),
  54891. name: "Side",
  54892. image: {
  54893. source: "./media/characters/plum/side.svg",
  54894. extra: 858/755,
  54895. bottom: 45/903
  54896. },
  54897. form: "taur",
  54898. default: true
  54899. },
  54900. back: {
  54901. height: math.unit(6.3, "meters"),
  54902. name: "Back",
  54903. image: {
  54904. source: "./media/characters/plum/back.svg",
  54905. extra: 887/813,
  54906. bottom: 32/919
  54907. },
  54908. form: "taur",
  54909. },
  54910. feral: {
  54911. height: math.unit(5.5, "meter"),
  54912. name: "Front",
  54913. image: {
  54914. source: "./media/characters/plum/feral.svg",
  54915. extra: 568/403,
  54916. bottom: 51/619
  54917. },
  54918. form: "feral",
  54919. default: true
  54920. },
  54921. head: {
  54922. height: math.unit(1.46, "meter"),
  54923. name: "Head",
  54924. image: {
  54925. source: "./media/characters/plum/head.svg"
  54926. },
  54927. form: "taur"
  54928. },
  54929. tailTop: {
  54930. height: math.unit(5.6, "meter"),
  54931. name: "Tail (Top)",
  54932. image: {
  54933. source: "./media/characters/plum/tail-top.svg"
  54934. },
  54935. form: "taur",
  54936. },
  54937. tailBottom: {
  54938. height: math.unit(5.6, "meter"),
  54939. name: "Tail (Bottom)",
  54940. image: {
  54941. source: "./media/characters/plum/tail-bottom.svg"
  54942. },
  54943. form: "taur",
  54944. },
  54945. feralHead: {
  54946. height: math.unit(2.56549521, "meter"),
  54947. name: "Head",
  54948. image: {
  54949. source: "./media/characters/plum/head.svg"
  54950. },
  54951. form: "feral"
  54952. },
  54953. feralTailTop: {
  54954. height: math.unit(5.44728435, "meter"),
  54955. name: "Tail (Top)",
  54956. image: {
  54957. source: "./media/characters/plum/tail-top.svg"
  54958. },
  54959. form: "feral",
  54960. },
  54961. feralTailBottom: {
  54962. height: math.unit(5.44728435, "meter"),
  54963. name: "Tail (Bottom)",
  54964. image: {
  54965. source: "./media/characters/plum/tail-bottom.svg"
  54966. },
  54967. form: "feral",
  54968. },
  54969. },
  54970. [
  54971. {
  54972. name: "Normal",
  54973. height: math.unit(6, "meters"),
  54974. default: true,
  54975. form: "taur"
  54976. },
  54977. {
  54978. name: "Normal",
  54979. height: math.unit(5.5, "meters"),
  54980. default: true,
  54981. form: "feral"
  54982. },
  54983. ],
  54984. {
  54985. "taur": {
  54986. name: "Taur",
  54987. default: true
  54988. },
  54989. "feral": {
  54990. name: "Feral",
  54991. },
  54992. }
  54993. ))
  54994. characterMakers.push(() => makeCharacter(
  54995. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54996. {
  54997. front: {
  54998. height: math.unit(6, "feet"),
  54999. weight: math.unit(115, "lb"),
  55000. name: "Front",
  55001. image: {
  55002. source: "./media/characters/celeste-kitsune/front.svg",
  55003. extra: 393/366,
  55004. bottom: 7/400
  55005. }
  55006. },
  55007. side: {
  55008. height: math.unit(6, "feet"),
  55009. weight: math.unit(115, "lb"),
  55010. name: "Side",
  55011. image: {
  55012. source: "./media/characters/celeste-kitsune/side.svg",
  55013. extra: 818/765,
  55014. bottom: 40/858
  55015. }
  55016. },
  55017. },
  55018. [
  55019. {
  55020. name: "Megamacro",
  55021. height: math.unit(1500, "miles"),
  55022. default: true
  55023. },
  55024. ]
  55025. ))
  55026. characterMakers.push(() => makeCharacter(
  55027. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55028. {
  55029. front: {
  55030. height: math.unit(8, "meters"),
  55031. name: "Front",
  55032. image: {
  55033. source: "./media/characters/io/front.svg",
  55034. extra: 865/722,
  55035. bottom: 58/923
  55036. }
  55037. },
  55038. back: {
  55039. height: math.unit(8, "meters"),
  55040. name: "Back",
  55041. image: {
  55042. source: "./media/characters/io/back.svg",
  55043. extra: 920/776,
  55044. bottom: 42/962
  55045. }
  55046. },
  55047. head: {
  55048. height: math.unit(5.09, "meters"),
  55049. name: "Head",
  55050. image: {
  55051. source: "./media/characters/io/head.svg"
  55052. }
  55053. },
  55054. hand: {
  55055. height: math.unit(1.6, "meters"),
  55056. name: "Hand",
  55057. image: {
  55058. source: "./media/characters/io/hand.svg"
  55059. }
  55060. },
  55061. foot: {
  55062. height: math.unit(2.4, "meters"),
  55063. name: "Foot",
  55064. image: {
  55065. source: "./media/characters/io/foot.svg"
  55066. }
  55067. },
  55068. },
  55069. [
  55070. {
  55071. name: "Normal",
  55072. height: math.unit(8, "meters"),
  55073. default: true
  55074. },
  55075. ]
  55076. ))
  55077. characterMakers.push(() => makeCharacter(
  55078. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55079. {
  55080. side: {
  55081. height: math.unit(6 + 3/12, "feet"),
  55082. weight: math.unit(225, "lb"),
  55083. name: "Side",
  55084. image: {
  55085. source: "./media/characters/silas/side.svg",
  55086. extra: 703/653,
  55087. bottom: 23/726
  55088. },
  55089. extraAttributes: {
  55090. "pawLength": {
  55091. name: "Paw Length",
  55092. power: 1,
  55093. type: "length",
  55094. base: math.unit(12, "inches")
  55095. },
  55096. "pawWidth": {
  55097. name: "Paw Width",
  55098. power: 1,
  55099. type: "length",
  55100. base: math.unit(4.5, "inches")
  55101. },
  55102. "pawArea": {
  55103. name: "Paw Area",
  55104. power: 2,
  55105. type: "area",
  55106. base: math.unit(12 * 4.5, "inches^2")
  55107. },
  55108. }
  55109. },
  55110. },
  55111. [
  55112. {
  55113. name: "Normal",
  55114. height: math.unit(6 + 3/12, "feet"),
  55115. default: true
  55116. },
  55117. ]
  55118. ))
  55119. characterMakers.push(() => makeCharacter(
  55120. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55121. {
  55122. back: {
  55123. height: math.unit(1.6, "meters"),
  55124. weight: math.unit(150, "lb"),
  55125. name: "Back",
  55126. image: {
  55127. source: "./media/characters/zari/back.svg",
  55128. extra: 424/411,
  55129. bottom: 32/456
  55130. },
  55131. extraAttributes: {
  55132. "bladderCapacity": {
  55133. name: "Bladder Size",
  55134. power: 3,
  55135. type: "volume",
  55136. base: math.unit(500, "mL")
  55137. },
  55138. "bladderFlow": {
  55139. name: "Flow Rate",
  55140. power: 3,
  55141. type: "volume",
  55142. base: math.unit(25, "mL")
  55143. },
  55144. }
  55145. },
  55146. },
  55147. [
  55148. {
  55149. name: "Normal",
  55150. height: math.unit(1.6, "meters"),
  55151. default: true
  55152. },
  55153. ]
  55154. ))
  55155. characterMakers.push(() => makeCharacter(
  55156. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55157. {
  55158. front: {
  55159. height: math.unit(25, "feet"),
  55160. weight: math.unit(5, "tons"),
  55161. name: "Front",
  55162. image: {
  55163. source: "./media/characters/charlie-human/front.svg",
  55164. extra: 1870/1740,
  55165. bottom: 102/1972
  55166. },
  55167. extraAttributes: {
  55168. "dickLength": {
  55169. name: "Dick Length",
  55170. power: 1,
  55171. type: "length",
  55172. base: math.unit(9, "feet")
  55173. },
  55174. }
  55175. },
  55176. back: {
  55177. height: math.unit(25, "feet"),
  55178. weight: math.unit(5, "tons"),
  55179. name: "Back",
  55180. image: {
  55181. source: "./media/characters/charlie-human/back.svg",
  55182. extra: 1858/1733,
  55183. bottom: 105/1963
  55184. },
  55185. extraAttributes: {
  55186. "dickLength": {
  55187. name: "Dick Length",
  55188. power: 1,
  55189. type: "length",
  55190. base: math.unit(9, "feet")
  55191. },
  55192. }
  55193. },
  55194. },
  55195. [
  55196. {
  55197. name: "\"Normal\"",
  55198. height: math.unit(6 + 4/12, "feet")
  55199. },
  55200. {
  55201. name: "Big",
  55202. height: math.unit(25, "feet"),
  55203. default: true
  55204. },
  55205. ]
  55206. ))
  55207. characterMakers.push(() => makeCharacter(
  55208. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55209. {
  55210. front: {
  55211. height: math.unit(6 + 4/12, "feet"),
  55212. weight: math.unit(320, "lb"),
  55213. name: "Front",
  55214. image: {
  55215. source: "./media/characters/ookitsu/front.svg",
  55216. extra: 1160/976,
  55217. bottom: 38/1198
  55218. }
  55219. },
  55220. frontNsfw: {
  55221. height: math.unit(6 + 4/12, "feet"),
  55222. weight: math.unit(320, "lb"),
  55223. name: "Front (NSFW)",
  55224. image: {
  55225. source: "./media/characters/ookitsu/front-nsfw.svg",
  55226. extra: 1160/976,
  55227. bottom: 38/1198
  55228. }
  55229. },
  55230. back: {
  55231. height: math.unit(6 + 4/12, "feet"),
  55232. weight: math.unit(320, "lb"),
  55233. name: "Back",
  55234. image: {
  55235. source: "./media/characters/ookitsu/back.svg",
  55236. extra: 1030/975,
  55237. bottom: 70/1100
  55238. }
  55239. },
  55240. head: {
  55241. height: math.unit(1.79, "feet"),
  55242. name: "Head",
  55243. image: {
  55244. source: "./media/characters/ookitsu/head.svg"
  55245. }
  55246. },
  55247. hand: {
  55248. height: math.unit(0.92, "feet"),
  55249. name: "Hand",
  55250. image: {
  55251. source: "./media/characters/ookitsu/hand.svg"
  55252. }
  55253. },
  55254. tails: {
  55255. height: math.unit(3.3, "feet"),
  55256. name: "Tails",
  55257. image: {
  55258. source: "./media/characters/ookitsu/tails.svg"
  55259. }
  55260. },
  55261. dick: {
  55262. height: math.unit(1.10833, "feet"),
  55263. name: "Dick",
  55264. image: {
  55265. source: "./media/characters/ookitsu/dick.svg"
  55266. }
  55267. },
  55268. },
  55269. [
  55270. {
  55271. name: "Normal",
  55272. height: math.unit(6 + 4/12, "feet"),
  55273. default: true
  55274. },
  55275. {
  55276. name: "Macro",
  55277. height: math.unit(30, "feet")
  55278. },
  55279. ]
  55280. ))
  55281. characterMakers.push(() => makeCharacter(
  55282. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55283. {
  55284. anthroFront: {
  55285. height: math.unit(6, "feet"),
  55286. weight: math.unit(250, "lb"),
  55287. name: "Front",
  55288. image: {
  55289. source: "./media/characters/jhusky/anthro-front.svg",
  55290. extra: 474/439,
  55291. bottom: 7/481
  55292. },
  55293. form: "anthro",
  55294. default: true
  55295. },
  55296. taurSideSfw: {
  55297. height: math.unit(6 + 4/12, "feet"),
  55298. weight: math.unit(500, "lb"),
  55299. name: "Side (SFW)",
  55300. image: {
  55301. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55302. extra: 1741/1629,
  55303. bottom: 196/1937
  55304. },
  55305. form: "taur",
  55306. default: true
  55307. },
  55308. taurSideNsfw: {
  55309. height: math.unit(6 + 4/12, "feet"),
  55310. weight: math.unit(500, "lb"),
  55311. name: "Taur (NSFW)",
  55312. image: {
  55313. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55314. extra: 1741/1629,
  55315. bottom: 196/1937
  55316. },
  55317. form: "taur",
  55318. },
  55319. },
  55320. [
  55321. {
  55322. name: "Huge",
  55323. height: math.unit(500, "feet"),
  55324. form: "anthro"
  55325. },
  55326. {
  55327. name: "Macro",
  55328. height: math.unit(1000, "feet"),
  55329. default: true,
  55330. form: "anthro"
  55331. },
  55332. {
  55333. name: "Megamacro",
  55334. height: math.unit(10000, "feet"),
  55335. form: "anthro"
  55336. },
  55337. {
  55338. name: "Huge",
  55339. height: math.unit(528, "feet"),
  55340. form: "taur"
  55341. },
  55342. {
  55343. name: "Macro",
  55344. height: math.unit(1056, "feet"),
  55345. default: true,
  55346. form: "taur"
  55347. },
  55348. {
  55349. name: "Megamacro",
  55350. height: math.unit(10556, "feet"),
  55351. form: "taur"
  55352. },
  55353. ],
  55354. {
  55355. "anthro": {
  55356. name: "Anthro",
  55357. default: true
  55358. },
  55359. "taur": {
  55360. name: "Taur",
  55361. },
  55362. }
  55363. ))
  55364. characterMakers.push(() => makeCharacter(
  55365. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55366. {
  55367. front: {
  55368. height: math.unit(8, "feet"),
  55369. weight: math.unit(500, "lb"),
  55370. name: "Front",
  55371. image: {
  55372. source: "./media/characters/armail/front.svg",
  55373. extra: 1753/1669,
  55374. bottom: 155/1908
  55375. }
  55376. },
  55377. back: {
  55378. height: math.unit(8, "feet"),
  55379. weight: math.unit(500, "lb"),
  55380. name: "Back",
  55381. image: {
  55382. source: "./media/characters/armail/back.svg",
  55383. extra: 1872/1803,
  55384. bottom: 63/1935
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Micro",
  55391. height: math.unit(0.25, "feet")
  55392. },
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(8, "feet"),
  55396. default: true
  55397. },
  55398. {
  55399. name: "Mini-macro",
  55400. height: math.unit(30, "feet")
  55401. },
  55402. {
  55403. name: "Macro",
  55404. height: math.unit(400, "feet")
  55405. },
  55406. {
  55407. name: "Mega-macro",
  55408. height: math.unit(6000, "feet")
  55409. },
  55410. ]
  55411. ))
  55412. characterMakers.push(() => makeCharacter(
  55413. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55414. {
  55415. front: {
  55416. height: math.unit(6 + 7/12, "feet"),
  55417. weight: math.unit(210, "lb"),
  55418. name: "Front",
  55419. image: {
  55420. source: "./media/characters/wilfred-t-buxton/front.svg",
  55421. extra: 1068/882,
  55422. bottom: 28/1096
  55423. }
  55424. },
  55425. },
  55426. [
  55427. {
  55428. name: "Normal",
  55429. height: math.unit(6 + 7/12, "feet"),
  55430. default: true
  55431. },
  55432. ]
  55433. ))
  55434. characterMakers.push(() => makeCharacter(
  55435. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55436. {
  55437. front: {
  55438. height: math.unit(5 + 2/12, "feet"),
  55439. weight: math.unit(120, "lb"),
  55440. name: "Front",
  55441. image: {
  55442. source: "./media/characters/leighton-marrow/front.svg",
  55443. extra: 441/409,
  55444. bottom: 37/478
  55445. }
  55446. },
  55447. },
  55448. [
  55449. {
  55450. name: "Normal",
  55451. height: math.unit(5 + 2/12, "feet"),
  55452. default: true
  55453. },
  55454. ]
  55455. ))
  55456. characterMakers.push(() => makeCharacter(
  55457. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55458. {
  55459. front: {
  55460. height: math.unit(4, "meters"),
  55461. weight: math.unit(1200, "kg"),
  55462. name: "Front",
  55463. image: {
  55464. source: "./media/characters/licos/front.svg",
  55465. extra: 1727/1604,
  55466. bottom: 101/1828
  55467. },
  55468. form: "anthro",
  55469. default: true
  55470. },
  55471. taur_side: {
  55472. height: math.unit(20, "meters"),
  55473. weight: math.unit(1100000, "kg"),
  55474. name: "Side",
  55475. image: {
  55476. source: "./media/characters/licos/taur.svg",
  55477. extra: 1158/1091,
  55478. bottom: 80/1238
  55479. },
  55480. form: "taur",
  55481. default: true
  55482. },
  55483. },
  55484. [
  55485. {
  55486. name: "Normal",
  55487. height: math.unit(4, "meters"),
  55488. default: true,
  55489. form: "anthro"
  55490. },
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(20, "meters"),
  55494. default: true,
  55495. form: "taur"
  55496. },
  55497. ],
  55498. {
  55499. "anthro": {
  55500. name: "Anthro",
  55501. default: true
  55502. },
  55503. "taur": {
  55504. name: "Taur",
  55505. },
  55506. }
  55507. ))
  55508. characterMakers.push(() => makeCharacter(
  55509. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55510. {
  55511. front: {
  55512. height: math.unit(10 + 3/12, "feet"),
  55513. name: "Front",
  55514. image: {
  55515. source: "./media/characters/theo-monkey/front.svg",
  55516. extra: 1735/1658,
  55517. bottom: 73/1808
  55518. }
  55519. },
  55520. back: {
  55521. height: math.unit(10 + 3/12, "feet"),
  55522. name: "Back",
  55523. image: {
  55524. source: "./media/characters/theo-monkey/back.svg",
  55525. extra: 1742/1664,
  55526. bottom: 33/1775
  55527. }
  55528. },
  55529. head: {
  55530. height: math.unit(2.29, "feet"),
  55531. name: "Head",
  55532. image: {
  55533. source: "./media/characters/theo-monkey/head.svg"
  55534. }
  55535. },
  55536. handPalm: {
  55537. height: math.unit(1.73, "feet"),
  55538. name: "Hand (Palm)",
  55539. image: {
  55540. source: "./media/characters/theo-monkey/hand-palm.svg"
  55541. }
  55542. },
  55543. handBack: {
  55544. height: math.unit(1.63, "feet"),
  55545. name: "Hand (Back)",
  55546. image: {
  55547. source: "./media/characters/theo-monkey/hand-back.svg"
  55548. }
  55549. },
  55550. footSole: {
  55551. height: math.unit(2.15, "feet"),
  55552. name: "Foot (Sole)",
  55553. image: {
  55554. source: "./media/characters/theo-monkey/foot-sole.svg"
  55555. }
  55556. },
  55557. footSide: {
  55558. height: math.unit(1.6, "feet"),
  55559. name: "Foot (Side)",
  55560. image: {
  55561. source: "./media/characters/theo-monkey/foot-side.svg"
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "Normal",
  55568. height: math.unit(10 + 3/12, "feet"),
  55569. default: true
  55570. },
  55571. ]
  55572. ))
  55573. characterMakers.push(() => makeCharacter(
  55574. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55575. {
  55576. front: {
  55577. height: math.unit(11, "feet"),
  55578. weight: math.unit(3000, "lb"),
  55579. preyCapacity: math.unit(10, "people"),
  55580. name: "Front",
  55581. image: {
  55582. source: "./media/characters/brook/front.svg",
  55583. extra: 909/835,
  55584. bottom: 108/1017
  55585. }
  55586. },
  55587. back: {
  55588. height: math.unit(11, "feet"),
  55589. weight: math.unit(3000, "lb"),
  55590. preyCapacity: math.unit(10, "people"),
  55591. name: "Back",
  55592. image: {
  55593. source: "./media/characters/brook/back.svg",
  55594. extra: 976/916,
  55595. bottom: 34/1010
  55596. }
  55597. },
  55598. backAlt: {
  55599. height: math.unit(11, "feet"),
  55600. weight: math.unit(3000, "lb"),
  55601. preyCapacity: math.unit(10, "people"),
  55602. name: "Back (Alt)",
  55603. image: {
  55604. source: "./media/characters/brook/back-alt.svg",
  55605. extra: 1283/1213,
  55606. bottom: 35/1318
  55607. }
  55608. },
  55609. bust: {
  55610. height: math.unit(9.0859030837, "feet"),
  55611. weight: math.unit(3000, "lb"),
  55612. preyCapacity: math.unit(10, "people"),
  55613. name: "Bust",
  55614. image: {
  55615. source: "./media/characters/brook/bust.svg",
  55616. extra: 2043/1923,
  55617. bottom: 0/2043
  55618. }
  55619. },
  55620. },
  55621. [
  55622. {
  55623. name: "Small",
  55624. height: math.unit(11, "feet"),
  55625. default: true
  55626. },
  55627. {
  55628. name: "Towering",
  55629. height: math.unit(5, "km")
  55630. },
  55631. {
  55632. name: "Enormous",
  55633. height: math.unit(25, "earths")
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55639. {
  55640. front: {
  55641. height: math.unit(4, "feet"),
  55642. weight: math.unit(150, "lb"),
  55643. name: "Front",
  55644. image: {
  55645. source: "./media/characters/squishi/front.svg",
  55646. extra: 1428/1271,
  55647. bottom: 30/1458
  55648. },
  55649. extraAttributes: {
  55650. "pawSize": {
  55651. name: "Paw Size",
  55652. power: 1,
  55653. type: "length",
  55654. base: math.unit(14, "ShoeSizeMensUS"),
  55655. defaultUnit: "ShoeSizeMensUS"
  55656. },
  55657. }
  55658. },
  55659. side: {
  55660. height: math.unit(4, "feet"),
  55661. weight: math.unit(150, "lb"),
  55662. name: "Side",
  55663. image: {
  55664. source: "./media/characters/squishi/side.svg",
  55665. extra: 1428/1271,
  55666. bottom: 30/1458
  55667. },
  55668. extraAttributes: {
  55669. "pawSize": {
  55670. name: "Paw Size",
  55671. power: 1,
  55672. type: "length",
  55673. base: math.unit(14, "ShoeSizeMensUS"),
  55674. defaultUnit: "ShoeSizeMensUS"
  55675. },
  55676. }
  55677. },
  55678. back: {
  55679. height: math.unit(4, "feet"),
  55680. weight: math.unit(150, "lb"),
  55681. name: "Back",
  55682. image: {
  55683. source: "./media/characters/squishi/back.svg",
  55684. extra: 1428/1271,
  55685. bottom: 30/1458
  55686. },
  55687. extraAttributes: {
  55688. "pawSize": {
  55689. name: "Paw Size",
  55690. power: 1,
  55691. type: "length",
  55692. base: math.unit(14, "ShoeSizeMensUS"),
  55693. defaultUnit: "ShoeSizeMensUS"
  55694. },
  55695. }
  55696. },
  55697. },
  55698. [
  55699. {
  55700. name: "Normal",
  55701. height: math.unit(4, "feet"),
  55702. default: true
  55703. },
  55704. ]
  55705. ))
  55706. characterMakers.push(() => makeCharacter(
  55707. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55708. {
  55709. front: {
  55710. height: math.unit(7 + 8/12, "feet"),
  55711. weight: math.unit(333, "lb"),
  55712. name: "Front",
  55713. image: {
  55714. source: "./media/characters/vincent-vasroc/front.svg",
  55715. extra: 1962/1860,
  55716. bottom: 41/2003
  55717. }
  55718. },
  55719. back: {
  55720. height: math.unit(7 + 8/12, "feet"),
  55721. weight: math.unit(333, "lb"),
  55722. name: "Back",
  55723. image: {
  55724. source: "./media/characters/vincent-vasroc/back.svg",
  55725. extra: 1952/1815,
  55726. bottom: 33/1985
  55727. }
  55728. },
  55729. paw: {
  55730. height: math.unit(1.24, "feet"),
  55731. name: "Paw",
  55732. image: {
  55733. source: "./media/characters/vincent-vasroc/paw.svg"
  55734. }
  55735. },
  55736. ear: {
  55737. height: math.unit(0.75, "feet"),
  55738. name: "Ear",
  55739. image: {
  55740. source: "./media/characters/vincent-vasroc/ear.svg"
  55741. }
  55742. },
  55743. },
  55744. [
  55745. {
  55746. name: "Nano",
  55747. height: math.unit(92, "micrometers")
  55748. },
  55749. {
  55750. name: "Normal",
  55751. height: math.unit(7 + 8/12, "feet"),
  55752. default: true
  55753. },
  55754. ]
  55755. ))
  55756. characterMakers.push(() => makeCharacter(
  55757. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55758. {
  55759. frontNsfw: {
  55760. height: math.unit(40, "feet"),
  55761. weight: math.unit(58, "tons"),
  55762. name: "Front (NSFW)",
  55763. image: {
  55764. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55765. extra: 1265/965,
  55766. bottom: 155/1420
  55767. }
  55768. },
  55769. frontSfw: {
  55770. height: math.unit(40, "feet"),
  55771. weight: math.unit(58, "tons"),
  55772. name: "Front (SFW)",
  55773. image: {
  55774. source: "./media/characters/ru-kahn/front-sfw.svg",
  55775. extra: 1265/965,
  55776. bottom: 80/1345
  55777. }
  55778. },
  55779. },
  55780. [
  55781. {
  55782. name: "Small",
  55783. height: math.unit(4, "feet")
  55784. },
  55785. {
  55786. name: "Normal",
  55787. height: math.unit(40, "feet"),
  55788. default: true
  55789. },
  55790. {
  55791. name: "Macro",
  55792. height: math.unit(400, "feet")
  55793. },
  55794. ]
  55795. ))
  55796. characterMakers.push(() => makeCharacter(
  55797. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55798. {
  55799. frontNude: {
  55800. height: math.unit(6 + 5/12, "feet"),
  55801. name: "Front (Nude)",
  55802. image: {
  55803. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55804. extra: 1369/1366,
  55805. bottom: 68/1437
  55806. }
  55807. },
  55808. frontDressed: {
  55809. height: math.unit(6 + 5/12, "feet"),
  55810. name: "Front (Dressed)",
  55811. image: {
  55812. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55813. extra: 1369/1366,
  55814. bottom: 68/1437
  55815. }
  55816. },
  55817. },
  55818. [
  55819. {
  55820. name: "Normal",
  55821. height: math.unit(6 + 5/12, "feet"),
  55822. default: true
  55823. },
  55824. {
  55825. name: "Maximum",
  55826. height: math.unit(1930, "feet")
  55827. },
  55828. ]
  55829. ))
  55830. characterMakers.push(() => makeCharacter(
  55831. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55832. {
  55833. front: {
  55834. height: math.unit(5 + 6/12, "feet"),
  55835. name: "Front",
  55836. image: {
  55837. source: "./media/characters/kaja/front.svg",
  55838. extra: 1874/1514,
  55839. bottom: 117/1991
  55840. }
  55841. },
  55842. },
  55843. [
  55844. {
  55845. name: "Normal",
  55846. height: math.unit(5 + 6/12, "feet"),
  55847. default: true
  55848. },
  55849. ]
  55850. ))
  55851. characterMakers.push(() => makeCharacter(
  55852. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55853. {
  55854. front: {
  55855. height: math.unit(5 + 9/12, "feet"),
  55856. weight: math.unit(200, "lb"),
  55857. name: "Front",
  55858. image: {
  55859. source: "./media/characters/mark-smith/front.svg",
  55860. extra: 1004/943,
  55861. bottom: 58/1062
  55862. }
  55863. },
  55864. back: {
  55865. height: math.unit(5 + 9/12, "feet"),
  55866. weight: math.unit(200, "lb"),
  55867. name: "Back",
  55868. image: {
  55869. source: "./media/characters/mark-smith/back.svg",
  55870. extra: 1023/953,
  55871. bottom: 24/1047
  55872. }
  55873. },
  55874. head: {
  55875. height: math.unit(1.82, "feet"),
  55876. name: "Head",
  55877. image: {
  55878. source: "./media/characters/mark-smith/head.svg"
  55879. }
  55880. },
  55881. hand: {
  55882. height: math.unit(1.4, "feet"),
  55883. name: "Hand",
  55884. image: {
  55885. source: "./media/characters/mark-smith/hand.svg"
  55886. }
  55887. },
  55888. paw: {
  55889. height: math.unit(1.69, "feet"),
  55890. name: "Paw",
  55891. image: {
  55892. source: "./media/characters/mark-smith/paw.svg"
  55893. }
  55894. },
  55895. },
  55896. [
  55897. {
  55898. name: "Micro",
  55899. height: math.unit(0.25, "inches")
  55900. },
  55901. {
  55902. name: "Normal",
  55903. height: math.unit(5 + 9/12, "feet"),
  55904. default: true
  55905. },
  55906. {
  55907. name: "Macro",
  55908. height: math.unit(500, "feet")
  55909. },
  55910. ]
  55911. ))
  55912. characterMakers.push(() => makeCharacter(
  55913. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55914. {
  55915. frontNude: {
  55916. height: math.unit(6, "feet"),
  55917. name: "Front (Nude)",
  55918. image: {
  55919. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55920. extra: 1384/1321,
  55921. bottom: 57/1441
  55922. }
  55923. },
  55924. frontDressed: {
  55925. height: math.unit(6, "feet"),
  55926. name: "Front (Dressed)",
  55927. image: {
  55928. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55929. extra: 1384/1321,
  55930. bottom: 57/1441
  55931. }
  55932. },
  55933. },
  55934. [
  55935. {
  55936. name: "Normal",
  55937. height: math.unit(6, "feet"),
  55938. default: true
  55939. },
  55940. {
  55941. name: "Maximum",
  55942. height: math.unit(1776, "feet")
  55943. },
  55944. ]
  55945. ))
  55946. characterMakers.push(() => makeCharacter(
  55947. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55948. {
  55949. front: {
  55950. height: math.unit(2 + 4/12, "feet"),
  55951. weight: math.unit(350, "lb"),
  55952. name: "Front",
  55953. image: {
  55954. source: "./media/characters/devos/front.svg",
  55955. extra: 958/852,
  55956. bottom: 143/1101
  55957. }
  55958. },
  55959. },
  55960. [
  55961. {
  55962. name: "Base",
  55963. height: math.unit(2 + 4/12, "feet"),
  55964. default: true
  55965. },
  55966. ]
  55967. ))
  55968. characterMakers.push(() => makeCharacter(
  55969. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55970. {
  55971. front: {
  55972. height: math.unit(9 + 2/12, "feet"),
  55973. name: "Front",
  55974. image: {
  55975. source: "./media/characters/hiveheart/front.svg",
  55976. extra: 394/364,
  55977. bottom: 65/459
  55978. }
  55979. },
  55980. back: {
  55981. height: math.unit(9 + 2/12, "feet"),
  55982. name: "Back",
  55983. image: {
  55984. source: "./media/characters/hiveheart/back.svg",
  55985. extra: 374/357,
  55986. bottom: 63/437
  55987. }
  55988. },
  55989. },
  55990. [
  55991. {
  55992. name: "Base",
  55993. height: math.unit(9 + 2/12, "feet"),
  55994. default: true
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56000. {
  56001. front: {
  56002. height: math.unit(2.5, "inches"),
  56003. weight: math.unit(0.6, "oz"),
  56004. name: "Front",
  56005. image: {
  56006. source: "./media/characters/bryn/front.svg",
  56007. extra: 1480/1205,
  56008. bottom: 27/1507
  56009. }
  56010. },
  56011. back: {
  56012. height: math.unit(2.5, "inches"),
  56013. weight: math.unit(0.6, "oz"),
  56014. name: "Back",
  56015. image: {
  56016. source: "./media/characters/bryn/back.svg",
  56017. extra: 1475/1201,
  56018. bottom: 39/1514
  56019. }
  56020. },
  56021. foot: {
  56022. height: math.unit(0.4, "inches"),
  56023. name: "Foot",
  56024. image: {
  56025. source: "./media/characters/bryn/foot.svg"
  56026. }
  56027. },
  56028. },
  56029. [
  56030. {
  56031. name: "Normal",
  56032. height: math.unit(2.5, "inches"),
  56033. default: true
  56034. },
  56035. ]
  56036. ))
  56037. characterMakers.push(() => makeCharacter(
  56038. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56039. {
  56040. side: {
  56041. height: math.unit(7, "feet"),
  56042. weight: math.unit(657, "kg"),
  56043. name: "Side",
  56044. image: {
  56045. source: "./media/characters/delta/side.svg",
  56046. extra: 781/212,
  56047. bottom: 7/788
  56048. },
  56049. extraAttributes: {
  56050. "wingspan": {
  56051. name: "Wingspan",
  56052. power: 1,
  56053. type: "length",
  56054. base: math.unit(48, "feet")
  56055. },
  56056. "length": {
  56057. name: "Length",
  56058. power: 1,
  56059. type: "length",
  56060. base: math.unit(21, "feet")
  56061. },
  56062. "pawSize": {
  56063. name: "Paw Size",
  56064. power: 2,
  56065. type: "area",
  56066. base: math.unit(1.5*1.4, "feet^2")
  56067. },
  56068. }
  56069. },
  56070. },
  56071. [
  56072. {
  56073. name: "Normal",
  56074. height: math.unit(6, "feet"),
  56075. default: true
  56076. },
  56077. ]
  56078. ))
  56079. characterMakers.push(() => makeCharacter(
  56080. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56081. {
  56082. front: {
  56083. height: math.unit(6, "feet"),
  56084. name: "Front",
  56085. image: {
  56086. source: "./media/characters/pyrow/front.svg",
  56087. extra: 513/486,
  56088. bottom: 14/527
  56089. }
  56090. },
  56091. frontWing: {
  56092. height: math.unit(6, "feet"),
  56093. name: "Front (Wing)",
  56094. image: {
  56095. source: "./media/characters/pyrow/front-wing.svg",
  56096. extra: 539/383,
  56097. bottom: 20/559
  56098. }
  56099. },
  56100. back: {
  56101. height: math.unit(6, "feet"),
  56102. name: "Back",
  56103. image: {
  56104. source: "./media/characters/pyrow/back.svg",
  56105. extra: 500/473,
  56106. bottom: 9/509
  56107. }
  56108. },
  56109. },
  56110. [
  56111. {
  56112. name: "Normal",
  56113. height: math.unit(6, "feet"),
  56114. default: true
  56115. },
  56116. ]
  56117. ))
  56118. characterMakers.push(() => makeCharacter(
  56119. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56120. {
  56121. front: {
  56122. height: math.unit(5, "meters"),
  56123. weight: math.unit(3, "tonnes"),
  56124. name: "Front",
  56125. image: {
  56126. source: "./media/characters/velikan/front.svg",
  56127. extra: 867/744,
  56128. bottom: 71/938
  56129. },
  56130. extraAttributes: {
  56131. "shoeSize": {
  56132. name: "Shoe Size",
  56133. power: 1,
  56134. type: "length",
  56135. base: math.unit(135, "ShoeSizeUK"),
  56136. defaultUnit: "ShoeSizeUK"
  56137. },
  56138. }
  56139. },
  56140. },
  56141. [
  56142. {
  56143. name: "Normal",
  56144. height: math.unit(5, "meters"),
  56145. default: true
  56146. },
  56147. {
  56148. name: "Macro",
  56149. height: math.unit(1, "km")
  56150. },
  56151. {
  56152. name: "Mega Macro",
  56153. height: math.unit(100, "km")
  56154. },
  56155. {
  56156. name: "Giga Macro",
  56157. height: math.unit(2, "megameters")
  56158. },
  56159. {
  56160. name: "Planetary",
  56161. height: math.unit(22, "megameters")
  56162. },
  56163. {
  56164. name: "Solar",
  56165. height: math.unit(8, "gigameters")
  56166. },
  56167. {
  56168. name: "Cosmic",
  56169. height: math.unit(10, "zettameters")
  56170. },
  56171. {
  56172. name: "Omni",
  56173. height: math.unit(9e260, "multiverses")
  56174. },
  56175. ]
  56176. ))
  56177. characterMakers.push(() => makeCharacter(
  56178. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56179. {
  56180. front: {
  56181. height: math.unit(4 + 3/12, "feet"),
  56182. weight: math.unit(90, "lb"),
  56183. name: "Front",
  56184. image: {
  56185. source: "./media/characters/sabiki/front.svg",
  56186. extra: 1662/1423,
  56187. bottom: 65/1727
  56188. }
  56189. },
  56190. },
  56191. [
  56192. {
  56193. name: "Normal",
  56194. height: math.unit(4 + 3/12, "feet"),
  56195. default: true
  56196. },
  56197. ]
  56198. ))
  56199. characterMakers.push(() => makeCharacter(
  56200. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56201. {
  56202. frontSfw: {
  56203. height: math.unit(2, "mm"),
  56204. name: "Front (SFW)",
  56205. image: {
  56206. source: "./media/characters/carmel/front-sfw.svg",
  56207. extra: 1131/1006,
  56208. bottom: 66/1197
  56209. }
  56210. },
  56211. frontNsfw: {
  56212. height: math.unit(2, "mm"),
  56213. name: "Front (NSFW)",
  56214. image: {
  56215. source: "./media/characters/carmel/front-nsfw.svg",
  56216. extra: 1131/1006,
  56217. bottom: 66/1197
  56218. }
  56219. },
  56220. foot: {
  56221. height: math.unit(0.3, "mm"),
  56222. name: "Foot",
  56223. image: {
  56224. source: "./media/characters/carmel/foot.svg"
  56225. }
  56226. },
  56227. tongue: {
  56228. height: math.unit(0.71, "mm"),
  56229. name: "Tongue",
  56230. image: {
  56231. source: "./media/characters/carmel/tongue.svg"
  56232. }
  56233. },
  56234. dick: {
  56235. height: math.unit(0.085, "mm"),
  56236. name: "Dick",
  56237. image: {
  56238. source: "./media/characters/carmel/dick.svg"
  56239. }
  56240. },
  56241. },
  56242. [
  56243. {
  56244. name: "Micro",
  56245. height: math.unit(2, "mm"),
  56246. default: true
  56247. },
  56248. {
  56249. name: "Normal",
  56250. height: math.unit(4 + 8/12, "feet")
  56251. },
  56252. {
  56253. name: "Mega Macro",
  56254. height: math.unit(250, "feet")
  56255. },
  56256. {
  56257. name: "BIGGER",
  56258. height: math.unit(1000, "feet")
  56259. },
  56260. {
  56261. name: "BIGGEST",
  56262. height: math.unit(2, "miles")
  56263. },
  56264. ]
  56265. ))
  56266. characterMakers.push(() => makeCharacter(
  56267. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56268. {
  56269. front: {
  56270. height: math.unit(6.5, "feet"),
  56271. weight: math.unit(198, "lb"),
  56272. name: "Front",
  56273. image: {
  56274. source: "./media/characters/tamani/anthro.svg",
  56275. extra: 930/890,
  56276. bottom: 34/964
  56277. },
  56278. form: "anthro",
  56279. default: true
  56280. },
  56281. side: {
  56282. height: math.unit(6, "feet"),
  56283. weight: math.unit(198*2, "lb"),
  56284. name: "Side",
  56285. image: {
  56286. source: "./media/characters/tamani/feral.svg",
  56287. extra: 559/519,
  56288. bottom: 43/602
  56289. },
  56290. form: "feral"
  56291. },
  56292. },
  56293. [
  56294. {
  56295. name: "Normal",
  56296. height: math.unit(6.5, "feet"),
  56297. default: true,
  56298. form: "anthro"
  56299. },
  56300. {
  56301. name: "Normal",
  56302. height: math.unit(6, "feet"),
  56303. default: true,
  56304. form: "feral"
  56305. },
  56306. ],
  56307. {
  56308. "anthro": {
  56309. name: "Anthro",
  56310. default: true
  56311. },
  56312. "feral": {
  56313. name: "Feral",
  56314. },
  56315. }
  56316. ))
  56317. characterMakers.push(() => makeCharacter(
  56318. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56319. {
  56320. front: {
  56321. height: math.unit(4 + 1/12, "feet"),
  56322. weight: math.unit(114, "lb"),
  56323. name: "Front",
  56324. image: {
  56325. source: "./media/characters/dex/front.svg",
  56326. extra: 787/680,
  56327. bottom: 18/805
  56328. }
  56329. },
  56330. side: {
  56331. height: math.unit(4 + 1/12, "feet"),
  56332. weight: math.unit(114, "lb"),
  56333. name: "Side",
  56334. image: {
  56335. source: "./media/characters/dex/side.svg",
  56336. extra: 785/680,
  56337. bottom: 12/797
  56338. }
  56339. },
  56340. back: {
  56341. height: math.unit(4 + 1/12, "feet"),
  56342. weight: math.unit(114, "lb"),
  56343. name: "Back",
  56344. image: {
  56345. source: "./media/characters/dex/back.svg",
  56346. extra: 785/681,
  56347. bottom: 17/802
  56348. }
  56349. },
  56350. loungewear: {
  56351. height: math.unit(4 + 1/12, "feet"),
  56352. weight: math.unit(114, "lb"),
  56353. name: "Loungewear",
  56354. image: {
  56355. source: "./media/characters/dex/loungewear.svg",
  56356. extra: 787/680,
  56357. bottom: 18/805
  56358. }
  56359. },
  56360. workout: {
  56361. height: math.unit(4 + 1/12, "feet"),
  56362. weight: math.unit(114, "lb"),
  56363. name: "Workout",
  56364. image: {
  56365. source: "./media/characters/dex/workout.svg",
  56366. extra: 787/680,
  56367. bottom: 18/805
  56368. }
  56369. },
  56370. schoolUniform: {
  56371. height: math.unit(4 + 1/12, "feet"),
  56372. weight: math.unit(114, "lb"),
  56373. name: "School-uniform",
  56374. image: {
  56375. source: "./media/characters/dex/school-uniform.svg",
  56376. extra: 787/680,
  56377. bottom: 18/805
  56378. }
  56379. },
  56380. maw: {
  56381. height: math.unit(0.55, "feet"),
  56382. name: "Maw",
  56383. image: {
  56384. source: "./media/characters/dex/maw.svg"
  56385. }
  56386. },
  56387. paw: {
  56388. height: math.unit(0.87, "feet"),
  56389. name: "Paw",
  56390. image: {
  56391. source: "./media/characters/dex/paw.svg"
  56392. }
  56393. },
  56394. bust: {
  56395. height: math.unit(1.67, "feet"),
  56396. name: "Bust",
  56397. image: {
  56398. source: "./media/characters/dex/bust.svg"
  56399. }
  56400. },
  56401. },
  56402. [
  56403. {
  56404. name: "Normal",
  56405. height: math.unit(4 + 1/12, "feet"),
  56406. default: true
  56407. },
  56408. ]
  56409. ))
  56410. characterMakers.push(() => makeCharacter(
  56411. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56412. {
  56413. front: {
  56414. height: math.unit(4 + 3/12, "feet"),
  56415. weight: math.unit(60, "lb"),
  56416. name: "Front",
  56417. image: {
  56418. source: "./media/characters/silke/front.svg",
  56419. extra: 1334/1122,
  56420. bottom: 21/1355
  56421. }
  56422. },
  56423. back: {
  56424. height: math.unit(4 + 3/12, "feet"),
  56425. weight: math.unit(60, "lb"),
  56426. name: "Back",
  56427. image: {
  56428. source: "./media/characters/silke/back.svg",
  56429. extra: 1328/1092,
  56430. bottom: 16/1344
  56431. }
  56432. },
  56433. dressed: {
  56434. height: math.unit(4 + 3/12, "feet"),
  56435. weight: math.unit(60, "lb"),
  56436. name: "Dressed",
  56437. image: {
  56438. source: "./media/characters/silke/dressed.svg",
  56439. extra: 1334/1122,
  56440. bottom: 43/1377
  56441. }
  56442. },
  56443. },
  56444. [
  56445. {
  56446. name: "Normal",
  56447. height: math.unit(4 + 3/12, "feet"),
  56448. default: true
  56449. },
  56450. ]
  56451. ))
  56452. characterMakers.push(() => makeCharacter(
  56453. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56454. {
  56455. front: {
  56456. height: math.unit(1.58, "meters"),
  56457. weight: math.unit(47, "kg"),
  56458. name: "Front",
  56459. image: {
  56460. source: "./media/characters/wireshark/front.svg",
  56461. extra: 883/838,
  56462. bottom: 66/949
  56463. }
  56464. },
  56465. },
  56466. [
  56467. {
  56468. name: "Normal",
  56469. height: math.unit(1.58, "meters"),
  56470. default: true
  56471. },
  56472. ]
  56473. ))
  56474. characterMakers.push(() => makeCharacter(
  56475. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56476. {
  56477. front: {
  56478. height: math.unit(6, "meters"),
  56479. weight: math.unit(15000, "kg"),
  56480. name: "Front",
  56481. image: {
  56482. source: "./media/characters/gallagher/front.svg",
  56483. extra: 532/493,
  56484. bottom: 0/532
  56485. }
  56486. },
  56487. },
  56488. [
  56489. {
  56490. name: "Normal",
  56491. height: math.unit(6, "meters"),
  56492. default: true
  56493. },
  56494. ]
  56495. ))
  56496. characterMakers.push(() => makeCharacter(
  56497. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56498. {
  56499. front: {
  56500. height: math.unit(2.4, "meters"),
  56501. weight: math.unit(270, "kg"),
  56502. name: "Front",
  56503. image: {
  56504. source: "./media/characters/alice/front.svg",
  56505. extra: 950/900,
  56506. bottom: 36/986
  56507. }
  56508. },
  56509. side: {
  56510. height: math.unit(2.4, "meters"),
  56511. weight: math.unit(270, "kg"),
  56512. name: "Side",
  56513. image: {
  56514. source: "./media/characters/alice/side.svg",
  56515. extra: 921/876,
  56516. bottom: 19/940
  56517. }
  56518. },
  56519. dressed: {
  56520. height: math.unit(2.4, "meters"),
  56521. weight: math.unit(270, "kg"),
  56522. name: "Dressed",
  56523. image: {
  56524. source: "./media/characters/alice/dressed.svg",
  56525. extra: 905/850,
  56526. bottom: 81/986
  56527. }
  56528. },
  56529. fishnet: {
  56530. height: math.unit(2.4, "meters"),
  56531. weight: math.unit(270, "kg"),
  56532. name: "Fishnet",
  56533. image: {
  56534. source: "./media/characters/alice/fishnet.svg",
  56535. extra: 905/850,
  56536. bottom: 81/986
  56537. }
  56538. },
  56539. },
  56540. [
  56541. {
  56542. name: "Normal",
  56543. height: math.unit(2.4, "meters"),
  56544. default: true
  56545. },
  56546. ]
  56547. ))
  56548. characterMakers.push(() => makeCharacter(
  56549. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56550. {
  56551. front: {
  56552. height: math.unit(175.25, "feet"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/fio/front.svg",
  56556. extra: 1883/1591,
  56557. bottom: 34/1917
  56558. }
  56559. },
  56560. },
  56561. [
  56562. {
  56563. name: "Normal",
  56564. height: math.unit(175.25, "cm"),
  56565. default: true
  56566. },
  56567. ]
  56568. ))
  56569. characterMakers.push(() => makeCharacter(
  56570. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56571. {
  56572. side: {
  56573. height: math.unit(6, "meters"),
  56574. weight: math.unit(3400, "kg"),
  56575. preyCapacity: math.unit(1700, "liters"),
  56576. name: "Side",
  56577. image: {
  56578. source: "./media/characters/hass/side.svg",
  56579. extra: 1058/997,
  56580. bottom: 177/1235
  56581. }
  56582. },
  56583. feeding: {
  56584. height: math.unit(6*0.63, "meters"),
  56585. weight: math.unit(3400, "kg"),
  56586. preyCapacity: math.unit(1700, "liters"),
  56587. name: "Feeding",
  56588. image: {
  56589. source: "./media/characters/hass/feeding.svg",
  56590. extra: 689/579,
  56591. bottom: 146/835
  56592. }
  56593. },
  56594. guts: {
  56595. height: math.unit(6, "meters"),
  56596. weight: math.unit(3400, "kg"),
  56597. name: "Guts",
  56598. image: {
  56599. source: "./media/characters/hass/guts.svg",
  56600. extra: 1223/1198,
  56601. bottom: 182/1405
  56602. }
  56603. },
  56604. dickFront: {
  56605. height: math.unit(1.4, "meters"),
  56606. name: "Dick (Front)",
  56607. image: {
  56608. source: "./media/characters/hass/dick-front.svg"
  56609. }
  56610. },
  56611. dickSide: {
  56612. height: math.unit(1.3, "meters"),
  56613. name: "Dick (Side)",
  56614. image: {
  56615. source: "./media/characters/hass/dick-side.svg"
  56616. }
  56617. },
  56618. dickBack: {
  56619. height: math.unit(1.4, "meters"),
  56620. name: "Dick (Back)",
  56621. image: {
  56622. source: "./media/characters/hass/dick-back.svg"
  56623. }
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(6, "meters"),
  56630. default: true
  56631. },
  56632. ]
  56633. ))
  56634. characterMakers.push(() => makeCharacter(
  56635. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56636. {
  56637. front: {
  56638. height: math.unit(4, "feet"),
  56639. weight: math.unit(60, "lb"),
  56640. name: "Front",
  56641. image: {
  56642. source: "./media/characters/hickory-finnegan/front.svg",
  56643. extra: 444/411,
  56644. bottom: 10/454
  56645. }
  56646. },
  56647. side: {
  56648. height: math.unit(4, "feet"),
  56649. weight: math.unit(60, "lb"),
  56650. name: "Side",
  56651. image: {
  56652. source: "./media/characters/hickory-finnegan/side.svg",
  56653. extra: 444/411,
  56654. bottom: 10/454
  56655. }
  56656. },
  56657. back: {
  56658. height: math.unit(4, "feet"),
  56659. weight: math.unit(60, "lb"),
  56660. name: "Back",
  56661. image: {
  56662. source: "./media/characters/hickory-finnegan/back.svg",
  56663. extra: 444/411,
  56664. bottom: 10/454
  56665. }
  56666. },
  56667. },
  56668. [
  56669. {
  56670. name: "Normal",
  56671. height: math.unit(4, "feet"),
  56672. default: true
  56673. },
  56674. ]
  56675. ))
  56676. characterMakers.push(() => makeCharacter(
  56677. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56678. {
  56679. snivy_front: {
  56680. height: math.unit(2, "feet"),
  56681. weight: math.unit(17.9, "lb"),
  56682. name: "Front",
  56683. image: {
  56684. source: "./media/characters/robin-phox/snivy-front.svg",
  56685. extra: 569/504,
  56686. bottom: 33/602
  56687. },
  56688. form: "snivy",
  56689. default: true
  56690. },
  56691. snivy_frontNsfw: {
  56692. height: math.unit(2, "feet"),
  56693. weight: math.unit(17.9, "lb"),
  56694. name: "Front (NSFW)",
  56695. image: {
  56696. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56697. extra: 569/504,
  56698. bottom: 33/602
  56699. },
  56700. form: "snivy",
  56701. },
  56702. snivy_back: {
  56703. height: math.unit(2, "feet"),
  56704. weight: math.unit(17.9, "lb"),
  56705. name: "Back",
  56706. image: {
  56707. source: "./media/characters/robin-phox/snivy-back.svg",
  56708. extra: 577/508,
  56709. bottom: 21/598
  56710. },
  56711. form: "snivy",
  56712. },
  56713. snivy_foot: {
  56714. height: math.unit(0.68, "feet"),
  56715. name: "Foot",
  56716. image: {
  56717. source: "./media/characters/robin-phox/snivy-foot.svg"
  56718. },
  56719. form: "snivy",
  56720. },
  56721. snivy_sole: {
  56722. height: math.unit(0.68, "feet"),
  56723. name: "Sole",
  56724. image: {
  56725. source: "./media/characters/robin-phox/snivy-sole.svg"
  56726. },
  56727. form: "snivy",
  56728. },
  56729. yoshi_front: {
  56730. height: math.unit(6, "feet"),
  56731. weight: math.unit(150, "lb"),
  56732. name: "Front",
  56733. image: {
  56734. source: "./media/characters/robin-phox/yoshi-front.svg",
  56735. extra: 890/792,
  56736. bottom: 29/919
  56737. },
  56738. form: "yoshi",
  56739. default: true
  56740. },
  56741. yoshi_frontNsfw: {
  56742. height: math.unit(6, "feet"),
  56743. weight: math.unit(150, "lb"),
  56744. name: "Front (NSFW)",
  56745. image: {
  56746. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56747. extra: 890/792,
  56748. bottom: 29/919
  56749. },
  56750. form: "yoshi",
  56751. },
  56752. yoshi_back: {
  56753. height: math.unit(6, "feet"),
  56754. weight: math.unit(150, "lb"),
  56755. name: "Back",
  56756. image: {
  56757. source: "./media/characters/robin-phox/yoshi-back.svg",
  56758. extra: 890/792,
  56759. bottom: 29/919
  56760. },
  56761. form: "yoshi",
  56762. },
  56763. yoshi_foot: {
  56764. height: math.unit(1.5, "feet"),
  56765. name: "Foot",
  56766. image: {
  56767. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56768. },
  56769. form: "yoshi",
  56770. },
  56771. delphox_front: {
  56772. height: math.unit(4 + 11/12, "feet"),
  56773. weight: math.unit(86, "lb"),
  56774. name: "Front",
  56775. image: {
  56776. source: "./media/characters/robin-phox/delphox-front.svg",
  56777. extra: 1266/1069,
  56778. bottom: 32/1298
  56779. },
  56780. form: "delphox",
  56781. default: true
  56782. },
  56783. delphox_frontNsfw: {
  56784. height: math.unit(4 + 11/12, "feet"),
  56785. weight: math.unit(86, "lb"),
  56786. name: "Front (NSFW)",
  56787. image: {
  56788. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56789. extra: 1266/1069,
  56790. bottom: 32/1298
  56791. },
  56792. form: "delphox",
  56793. },
  56794. delphox_back: {
  56795. height: math.unit(4 + 11/12, "feet"),
  56796. weight: math.unit(86, "lb"),
  56797. name: "Back",
  56798. image: {
  56799. source: "./media/characters/robin-phox/delphox-back.svg",
  56800. extra: 1269/1083,
  56801. bottom: 15/1284
  56802. },
  56803. form: "delphox",
  56804. },
  56805. mienshao_front: {
  56806. height: math.unit(4 + 7/12, "feet"),
  56807. weight: math.unit(78.3, "lb"),
  56808. name: "Front",
  56809. image: {
  56810. source: "./media/characters/robin-phox/mienshao-front.svg",
  56811. extra: 1052/970,
  56812. bottom: 108/1160
  56813. },
  56814. form: "mienshao",
  56815. default: true
  56816. },
  56817. mienshao_frontNsfw: {
  56818. height: math.unit(4 + 7/12, "feet"),
  56819. weight: math.unit(78.3, "lb"),
  56820. name: "Front (NSFW)",
  56821. image: {
  56822. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56823. extra: 1052/970,
  56824. bottom: 108/1160
  56825. },
  56826. form: "mienshao",
  56827. },
  56828. mienshao_back: {
  56829. height: math.unit(4 + 7/12, "feet"),
  56830. weight: math.unit(78.3, "lb"),
  56831. name: "Back",
  56832. image: {
  56833. source: "./media/characters/robin-phox/mienshao-back.svg",
  56834. extra: 1102/982,
  56835. bottom: 32/1134
  56836. },
  56837. form: "mienshao",
  56838. },
  56839. inteleon_front: {
  56840. height: math.unit(6 + 3/12, "feet"),
  56841. weight: math.unit(99.6, "lb"),
  56842. name: "Front",
  56843. image: {
  56844. source: "./media/characters/robin-phox/inteleon-front.svg",
  56845. extra: 910/799,
  56846. bottom: 76/986
  56847. },
  56848. form: "inteleon",
  56849. default: true
  56850. },
  56851. inteleon_frontNsfw: {
  56852. height: math.unit(6 + 3/12, "feet"),
  56853. weight: math.unit(99.6, "lb"),
  56854. name: "Front (NSFW)",
  56855. image: {
  56856. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56857. extra: 910/799,
  56858. bottom: 76/986
  56859. },
  56860. form: "inteleon",
  56861. },
  56862. inteleon_back: {
  56863. height: math.unit(6 + 3/12, "feet"),
  56864. weight: math.unit(99.6, "lb"),
  56865. name: "Back",
  56866. image: {
  56867. source: "./media/characters/robin-phox/inteleon-back.svg",
  56868. extra: 907/796,
  56869. bottom: 25/932
  56870. },
  56871. form: "inteleon",
  56872. },
  56873. reshiram_front: {
  56874. height: math.unit(10 + 6/12, "feet"),
  56875. weight: math.unit(727.5, "lb"),
  56876. name: "Front",
  56877. image: {
  56878. source: "./media/characters/robin-phox/reshiram-front.svg",
  56879. extra: 1198/940,
  56880. bottom: 123/1321
  56881. },
  56882. form: "reshiram",
  56883. },
  56884. reshiram_frontNsfw: {
  56885. height: math.unit(10 + 6/12, "feet"),
  56886. weight: math.unit(727.5, "lb"),
  56887. name: "Front-nsfw",
  56888. image: {
  56889. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56890. extra: 1198/940,
  56891. bottom: 123/1321
  56892. },
  56893. form: "reshiram",
  56894. },
  56895. reshiram_back: {
  56896. height: math.unit(10 + 6/12, "feet"),
  56897. weight: math.unit(727.5, "lb"),
  56898. name: "Back",
  56899. image: {
  56900. source: "./media/characters/robin-phox/reshiram-back.svg",
  56901. extra: 1024/904,
  56902. bottom: 85/1109
  56903. },
  56904. form: "reshiram",
  56905. },
  56906. samurott_front: {
  56907. height: math.unit(8, "feet"),
  56908. weight: math.unit(208.6, "lb"),
  56909. name: "Front",
  56910. image: {
  56911. source: "./media/characters/robin-phox/samurott-front.svg",
  56912. extra: 1048/984,
  56913. bottom: 100/1148
  56914. },
  56915. form: "samurott",
  56916. },
  56917. samurott_frontNsfw: {
  56918. height: math.unit(8, "feet"),
  56919. weight: math.unit(208.6, "lb"),
  56920. name: "Front-nsfw",
  56921. image: {
  56922. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56923. extra: 1048/984,
  56924. bottom: 100/1148
  56925. },
  56926. form: "samurott",
  56927. },
  56928. samurott_back: {
  56929. height: math.unit(8, "feet"),
  56930. weight: math.unit(208.6, "lb"),
  56931. name: "Back",
  56932. image: {
  56933. source: "./media/characters/robin-phox/samurott-back.svg",
  56934. extra: 1110/1042,
  56935. bottom: 12/1122
  56936. },
  56937. form: "samurott",
  56938. },
  56939. samurott_feral: {
  56940. height: math.unit(4 + 11/12, "feet"),
  56941. weight: math.unit(208.6, "lb"),
  56942. name: "Feral",
  56943. image: {
  56944. source: "./media/characters/robin-phox/samurott-feral.svg",
  56945. extra: 766/681,
  56946. bottom: 108/874
  56947. },
  56948. form: "samurott",
  56949. },
  56950. },
  56951. [
  56952. {
  56953. name: "Normal",
  56954. height: math.unit(2, "feet"),
  56955. default: true,
  56956. form: "snivy"
  56957. },
  56958. {
  56959. name: "Normal",
  56960. height: math.unit(6, "feet"),
  56961. default: true,
  56962. form: "yoshi"
  56963. },
  56964. {
  56965. name: "Normal",
  56966. height: math.unit(4 + 11/12, "feet"),
  56967. default: true,
  56968. form: "delphox"
  56969. },
  56970. {
  56971. name: "Normal",
  56972. height: math.unit(4 + 7/12, "feet"),
  56973. default: true,
  56974. form: "mienshao"
  56975. },
  56976. {
  56977. name: "Normal",
  56978. height: math.unit(6 + 3/12, "feet"),
  56979. default: true,
  56980. form: "inteleon"
  56981. },
  56982. {
  56983. name: "Normal",
  56984. height: math.unit(10 + 6/12, "feet"),
  56985. default: true,
  56986. form: "reshiram"
  56987. },
  56988. {
  56989. name: "Normal",
  56990. height: math.unit(8, "feet"),
  56991. default: true,
  56992. form: "samurott"
  56993. },
  56994. {
  56995. name: "Macro",
  56996. height: math.unit(500, "feet"),
  56997. allForms: true
  56998. },
  56999. {
  57000. name: "Mega Macro",
  57001. height: math.unit(10, "earths"),
  57002. allForms: true
  57003. },
  57004. {
  57005. name: "Giga Macro",
  57006. height: math.unit(1, "galaxy"),
  57007. allForms: true
  57008. },
  57009. {
  57010. name: "Godly Macro",
  57011. height: math.unit(1e10, "multiverses"),
  57012. allForms: true
  57013. },
  57014. ],
  57015. {
  57016. "snivy": {
  57017. name: "Snivy",
  57018. default: true
  57019. },
  57020. "yoshi": {
  57021. name: "Yoshi",
  57022. },
  57023. "delphox": {
  57024. name: "Delphox",
  57025. },
  57026. "mienshao": {
  57027. name: "Mienshao",
  57028. },
  57029. "inteleon": {
  57030. name: "Inteleon",
  57031. },
  57032. "reshiram": {
  57033. name: "Reshiram",
  57034. },
  57035. "samurott": {
  57036. name: "Samurott",
  57037. },
  57038. }
  57039. ))
  57040. characterMakers.push(() => makeCharacter(
  57041. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57042. {
  57043. front: {
  57044. height: math.unit(4, "feet"),
  57045. name: "Front",
  57046. image: {
  57047. source: "./media/characters/ash-leung/front.svg",
  57048. extra: 1916/1792,
  57049. bottom: 50/1966
  57050. }
  57051. },
  57052. },
  57053. [
  57054. {
  57055. name: "Atomic",
  57056. height: math.unit(1, "angstrom")
  57057. },
  57058. {
  57059. name: "Microscopic",
  57060. height: math.unit(4000, "angstroms")
  57061. },
  57062. {
  57063. name: "Speck",
  57064. height: math.unit(1, "mm")
  57065. },
  57066. {
  57067. name: "Small",
  57068. height: math.unit(1, "inch")
  57069. },
  57070. {
  57071. name: "Normal",
  57072. height: math.unit(4, "feet"),
  57073. default: true
  57074. },
  57075. ]
  57076. ))
  57077. characterMakers.push(() => makeCharacter(
  57078. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57079. {
  57080. frontDressed: {
  57081. height: math.unit(2.08, "meters"),
  57082. weight: math.unit(175, "lb"),
  57083. name: "Front (Dressed)",
  57084. image: {
  57085. source: "./media/characters/carie/front-dressed.svg",
  57086. extra: 456/417,
  57087. bottom: 7/463
  57088. }
  57089. },
  57090. backDressed: {
  57091. height: math.unit(2.08, "meters"),
  57092. weight: math.unit(175, "lb"),
  57093. name: "Back (Dressed)",
  57094. image: {
  57095. source: "./media/characters/carie/back-dressed.svg",
  57096. extra: 455/414,
  57097. bottom: 11/466
  57098. }
  57099. },
  57100. front: {
  57101. height: math.unit(2, "meters"),
  57102. weight: math.unit(175, "lb"),
  57103. name: "Front",
  57104. image: {
  57105. source: "./media/characters/carie/front.svg",
  57106. extra: 438/399,
  57107. bottom: 12/450
  57108. }
  57109. },
  57110. back: {
  57111. height: math.unit(2, "meters"),
  57112. weight: math.unit(175, "lb"),
  57113. name: "Back",
  57114. image: {
  57115. source: "./media/characters/carie/back.svg",
  57116. extra: 438/397,
  57117. bottom: 7/445
  57118. }
  57119. },
  57120. },
  57121. [
  57122. {
  57123. name: "Normal",
  57124. height: math.unit(2.08, "meters"),
  57125. default: true
  57126. },
  57127. {
  57128. name: "Macro",
  57129. height: math.unit(2.08e3, "meters")
  57130. },
  57131. {
  57132. name: "Mega Macro",
  57133. height: math.unit(2.08e6, "meters")
  57134. },
  57135. {
  57136. name: "Giga Macro",
  57137. height: math.unit(2.08e9, "meters")
  57138. },
  57139. {
  57140. name: "Tera Macro",
  57141. height: math.unit(2.08e12, "meters")
  57142. },
  57143. {
  57144. name: "Peta Macro",
  57145. height: math.unit(2.08e15, "meters")
  57146. },
  57147. {
  57148. name: "Exa Macro",
  57149. height: math.unit(2.08e18, "meters")
  57150. },
  57151. {
  57152. name: "Zetta Macro",
  57153. height: math.unit(2.08e21, "meters")
  57154. },
  57155. {
  57156. name: "Yotta Macro",
  57157. height: math.unit(2.08e24, "meters")
  57158. },
  57159. ]
  57160. ))
  57161. characterMakers.push(() => makeCharacter(
  57162. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57163. {
  57164. front: {
  57165. height: math.unit(5 + 2/12, "feet"),
  57166. weight: math.unit(120, "lb"),
  57167. name: "Front",
  57168. image: {
  57169. source: "./media/characters/sai-bree/front.svg",
  57170. extra: 1843/1702,
  57171. bottom: 91/1934
  57172. }
  57173. },
  57174. back: {
  57175. height: math.unit(5 + 2/12, "feet"),
  57176. weight: math.unit(120, "lb"),
  57177. name: "Back",
  57178. image: {
  57179. source: "./media/characters/sai-bree/back.svg",
  57180. extra: 1809/1637,
  57181. bottom: 56/1865
  57182. }
  57183. },
  57184. },
  57185. [
  57186. {
  57187. name: "Normal",
  57188. height: math.unit(5 + 2/12, "feet"),
  57189. default: true
  57190. },
  57191. {
  57192. name: "Macro",
  57193. height: math.unit(500, "feet")
  57194. },
  57195. ]
  57196. ))
  57197. characterMakers.push(() => makeCharacter(
  57198. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57199. {
  57200. side: {
  57201. height: math.unit(0.77, "meters"),
  57202. weight: math.unit(120, "lb"),
  57203. name: "Side",
  57204. image: {
  57205. source: "./media/characters/davwyn/side.svg",
  57206. extra: 1557/1225,
  57207. bottom: 131/1688
  57208. }
  57209. },
  57210. front: {
  57211. height: math.unit(0.835410, "meters"),
  57212. weight: math.unit(120, "lb"),
  57213. name: "Front",
  57214. image: {
  57215. source: "./media/characters/davwyn/front.svg",
  57216. extra: 870/843,
  57217. bottom: 175/1045
  57218. }
  57219. },
  57220. },
  57221. [
  57222. {
  57223. name: "Minidrake",
  57224. height: math.unit(0.77/4, "meters")
  57225. },
  57226. {
  57227. name: "Normal",
  57228. height: math.unit(0.77, "meters"),
  57229. default: true
  57230. },
  57231. ]
  57232. ))
  57233. characterMakers.push(() => makeCharacter(
  57234. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57235. {
  57236. front: {
  57237. height: math.unit(10 + 3/12, "feet"),
  57238. weight: math.unit(2857, "lb"),
  57239. name: "Front",
  57240. image: {
  57241. source: "./media/characters/balans/front.svg",
  57242. extra: 427/402,
  57243. bottom: 26/453
  57244. }
  57245. },
  57246. side: {
  57247. height: math.unit(10 + 3/12, "feet"),
  57248. weight: math.unit(2857, "lb"),
  57249. name: "Side",
  57250. image: {
  57251. source: "./media/characters/balans/side.svg",
  57252. extra: 397/371,
  57253. bottom: 17/414
  57254. }
  57255. },
  57256. back: {
  57257. height: math.unit(10 + 3/12, "feet"),
  57258. weight: math.unit(2857, "lb"),
  57259. name: "Back",
  57260. image: {
  57261. source: "./media/characters/balans/back.svg",
  57262. extra: 408/381,
  57263. bottom: 14/422
  57264. }
  57265. },
  57266. hand: {
  57267. height: math.unit(1.15, "feet"),
  57268. name: "Hand",
  57269. image: {
  57270. source: "./media/characters/balans/hand.svg"
  57271. }
  57272. },
  57273. footRest: {
  57274. height: math.unit(3.1, "feet"),
  57275. name: "Foot (Rest)",
  57276. image: {
  57277. source: "./media/characters/balans/foot-rest.svg"
  57278. }
  57279. },
  57280. footActive: {
  57281. height: math.unit(3.5, "feet"),
  57282. name: "Foot (Active)",
  57283. image: {
  57284. source: "./media/characters/balans/foot-active.svg"
  57285. }
  57286. },
  57287. },
  57288. [
  57289. {
  57290. name: "Normal",
  57291. height: math.unit(10 + 3/12, "feet"),
  57292. default: true
  57293. },
  57294. ]
  57295. ))
  57296. characterMakers.push(() => makeCharacter(
  57297. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57298. {
  57299. side: {
  57300. height: math.unit(9, "meters"),
  57301. weight: math.unit(114, "tonnes"),
  57302. name: "Side",
  57303. image: {
  57304. source: "./media/characters/eldkveikir/side.svg",
  57305. extra: 1927/338,
  57306. bottom: 42/1969
  57307. }
  57308. },
  57309. sitting: {
  57310. height: math.unit(13.4, "meters"),
  57311. weight: math.unit(114, "tonnes"),
  57312. name: "Sitting",
  57313. image: {
  57314. source: "./media/characters/eldkveikir/sitting.svg",
  57315. extra: 1108/963,
  57316. bottom: 610/1718
  57317. }
  57318. },
  57319. maw: {
  57320. height: math.unit(8.36, "meters"),
  57321. name: "Maw",
  57322. image: {
  57323. source: "./media/characters/eldkveikir/maw.svg"
  57324. }
  57325. },
  57326. hand: {
  57327. height: math.unit(4.84, "meters"),
  57328. name: "Hand",
  57329. image: {
  57330. source: "./media/characters/eldkveikir/hand.svg"
  57331. }
  57332. },
  57333. foot: {
  57334. height: math.unit(6.9, "meters"),
  57335. name: "Foot",
  57336. image: {
  57337. source: "./media/characters/eldkveikir/foot.svg"
  57338. }
  57339. },
  57340. genitals: {
  57341. height: math.unit(9.6, "meters"),
  57342. name: "Genitals",
  57343. image: {
  57344. source: "./media/characters/eldkveikir/genitals.svg"
  57345. }
  57346. },
  57347. },
  57348. [
  57349. {
  57350. name: "Normal",
  57351. height: math.unit(9, "meters"),
  57352. default: true
  57353. },
  57354. ]
  57355. ))
  57356. characterMakers.push(() => makeCharacter(
  57357. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57358. {
  57359. front: {
  57360. height: math.unit(14, "feet"),
  57361. weight: math.unit(4100, "lb"),
  57362. name: "Front",
  57363. image: {
  57364. source: "./media/characters/arrow/front.svg",
  57365. extra: 330/318,
  57366. bottom: 56/386
  57367. }
  57368. },
  57369. },
  57370. [
  57371. {
  57372. name: "Normal",
  57373. height: math.unit(14, "feet"),
  57374. default: true
  57375. },
  57376. {
  57377. name: "Minimacro",
  57378. height: math.unit(63, "feet")
  57379. },
  57380. {
  57381. name: "Macro",
  57382. height: math.unit(630, "feet")
  57383. },
  57384. {
  57385. name: "Megamacro",
  57386. height: math.unit(12600, "feet")
  57387. },
  57388. {
  57389. name: "Gigamacro",
  57390. height: math.unit(18000, "miles")
  57391. },
  57392. ]
  57393. ))
  57394. characterMakers.push(() => makeCharacter(
  57395. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57396. {
  57397. front: {
  57398. height: math.unit(10, "feet"),
  57399. weight: math.unit(2.4, "tons"),
  57400. name: "Front",
  57401. image: {
  57402. source: "./media/characters/3yk-k0-unit/front.svg",
  57403. extra: 573/561,
  57404. bottom: 33/606
  57405. }
  57406. },
  57407. back: {
  57408. height: math.unit(10, "feet"),
  57409. weight: math.unit(2.4, "tons"),
  57410. name: "Back",
  57411. image: {
  57412. source: "./media/characters/3yk-k0-unit/back.svg",
  57413. extra: 614/573,
  57414. bottom: 32/646
  57415. }
  57416. },
  57417. maw: {
  57418. height: math.unit(2.15, "feet"),
  57419. name: "Maw",
  57420. image: {
  57421. source: "./media/characters/3yk-k0-unit/maw.svg"
  57422. }
  57423. },
  57424. },
  57425. [
  57426. {
  57427. name: "Normal",
  57428. height: math.unit(10, "feet"),
  57429. default: true
  57430. },
  57431. ]
  57432. ))
  57433. characterMakers.push(() => makeCharacter(
  57434. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57435. {
  57436. front: {
  57437. height: math.unit(8 + 8/12, "feet"),
  57438. name: "Front",
  57439. image: {
  57440. source: "./media/characters/nemo/front.svg",
  57441. extra: 1308/1217,
  57442. bottom: 57/1365
  57443. }
  57444. },
  57445. },
  57446. [
  57447. {
  57448. name: "Normal",
  57449. height: math.unit(8 + 8/12, "feet"),
  57450. default: true
  57451. },
  57452. ]
  57453. ))
  57454. characterMakers.push(() => makeCharacter(
  57455. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57456. {
  57457. front: {
  57458. height: math.unit(8, "feet"),
  57459. weight: math.unit(760, "lb"),
  57460. name: "Front",
  57461. image: {
  57462. source: "./media/characters/rexx/front.svg",
  57463. extra: 786/750,
  57464. bottom: 17/803
  57465. },
  57466. extraAttributes: {
  57467. "pawLength": {
  57468. name: "Paw Length",
  57469. power: 1,
  57470. type: "length",
  57471. base: math.unit(27, "inches")
  57472. },
  57473. }
  57474. },
  57475. },
  57476. [
  57477. {
  57478. name: "Micro",
  57479. height: math.unit(2, "inches")
  57480. },
  57481. {
  57482. name: "Normal",
  57483. height: math.unit(8, "feet"),
  57484. default: true
  57485. },
  57486. {
  57487. name: "Macro",
  57488. height: math.unit(150, "feet")
  57489. },
  57490. ]
  57491. ))
  57492. characterMakers.push(() => makeCharacter(
  57493. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57494. {
  57495. front: {
  57496. height: math.unit(18, "feet"),
  57497. weight: math.unit(1975, "lb"),
  57498. name: "Front",
  57499. image: {
  57500. source: "./media/characters/draco/front.svg",
  57501. extra: 1325/1241,
  57502. bottom: 83/1408
  57503. }
  57504. },
  57505. back: {
  57506. height: math.unit(18, "feet"),
  57507. weight: math.unit(1975, "lb"),
  57508. name: "Back",
  57509. image: {
  57510. source: "./media/characters/draco/back.svg",
  57511. extra: 1332/1250,
  57512. bottom: 43/1375
  57513. }
  57514. },
  57515. dick: {
  57516. height: math.unit(7.5, "feet"),
  57517. name: "Dick",
  57518. image: {
  57519. source: "./media/characters/draco/dick.svg"
  57520. }
  57521. },
  57522. },
  57523. [
  57524. {
  57525. name: "Normal",
  57526. height: math.unit(18, "feet"),
  57527. default: true
  57528. },
  57529. ]
  57530. ))
  57531. characterMakers.push(() => makeCharacter(
  57532. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57533. {
  57534. front: {
  57535. height: math.unit(3.2, "meters"),
  57536. name: "Front",
  57537. image: {
  57538. source: "./media/characters/harriett/front.svg",
  57539. extra: 1966/1915,
  57540. bottom: 9/1975
  57541. }
  57542. },
  57543. },
  57544. [
  57545. {
  57546. name: "Normal",
  57547. height: math.unit(3.2, "meters"),
  57548. default: true
  57549. },
  57550. ]
  57551. ))
  57552. characterMakers.push(() => makeCharacter(
  57553. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57554. {
  57555. sitting: {
  57556. height: math.unit(0.8, "meter"),
  57557. name: "Sitting",
  57558. image: {
  57559. source: "./media/characters/serpentus/sitting.svg",
  57560. extra: 293/290,
  57561. bottom: 140/433
  57562. }
  57563. },
  57564. },
  57565. [
  57566. {
  57567. name: "Normal",
  57568. height: math.unit(0.8, "meter"),
  57569. default: true
  57570. },
  57571. ]
  57572. ))
  57573. characterMakers.push(() => makeCharacter(
  57574. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57575. {
  57576. front: {
  57577. height: math.unit(5.7174385736, "feet"),
  57578. name: "Front",
  57579. image: {
  57580. source: "./media/characters/nova-polecat/front.svg",
  57581. extra: 1317/1216,
  57582. bottom: 92/1409
  57583. }
  57584. },
  57585. },
  57586. [
  57587. {
  57588. name: "Normal",
  57589. height: math.unit(5.7174385736, "feet"),
  57590. default: true
  57591. },
  57592. ]
  57593. ))
  57594. characterMakers.push(() => makeCharacter(
  57595. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57596. {
  57597. front: {
  57598. height: math.unit(5 + 4/12, "feet"),
  57599. weight: math.unit(250, "lb"),
  57600. name: "Front",
  57601. image: {
  57602. source: "./media/characters/mook/front.svg",
  57603. extra: 1088/1037,
  57604. bottom: 132/1220
  57605. }
  57606. },
  57607. back: {
  57608. height: math.unit(5 + 1/12, "feet"),
  57609. weight: math.unit(250, "lb"),
  57610. name: "Back",
  57611. image: {
  57612. source: "./media/characters/mook/back.svg",
  57613. extra: 1184/905,
  57614. bottom: 96/1280
  57615. }
  57616. },
  57617. head: {
  57618. height: math.unit(1.85, "feet"),
  57619. name: "Head",
  57620. image: {
  57621. source: "./media/characters/mook/head.svg"
  57622. }
  57623. },
  57624. hand: {
  57625. height: math.unit(1.9, "feet"),
  57626. name: "Hand",
  57627. image: {
  57628. source: "./media/characters/mook/hand.svg"
  57629. }
  57630. },
  57631. palm: {
  57632. height: math.unit(1.84, "feet"),
  57633. name: "Palm",
  57634. image: {
  57635. source: "./media/characters/mook/palm.svg"
  57636. }
  57637. },
  57638. foot: {
  57639. height: math.unit(1.44, "feet"),
  57640. name: "Foot",
  57641. image: {
  57642. source: "./media/characters/mook/foot.svg"
  57643. }
  57644. },
  57645. sole: {
  57646. height: math.unit(1.44, "feet"),
  57647. name: "Sole",
  57648. image: {
  57649. source: "./media/characters/mook/sole.svg"
  57650. }
  57651. },
  57652. },
  57653. [
  57654. {
  57655. name: "Normal",
  57656. height: math.unit(5 + 4/12, "feet"),
  57657. default: true
  57658. },
  57659. {
  57660. name: "Big",
  57661. height: math.unit(12, "feet")
  57662. },
  57663. ]
  57664. ))
  57665. characterMakers.push(() => makeCharacter(
  57666. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57667. {
  57668. front: {
  57669. height: math.unit(6 + 10/12, "feet"),
  57670. weight: math.unit(233, "lb"),
  57671. name: "Front",
  57672. image: {
  57673. source: "./media/characters/kayla/front.svg",
  57674. extra: 1850/1775,
  57675. bottom: 65/1915
  57676. }
  57677. },
  57678. },
  57679. [
  57680. {
  57681. name: "Normal",
  57682. height: math.unit(6 + 10/12, "feet"),
  57683. default: true
  57684. },
  57685. {
  57686. name: "Amazonian",
  57687. height: math.unit(12 + 5/12, "feet")
  57688. },
  57689. {
  57690. name: "Mini Giantess",
  57691. height: math.unit(26, "feet")
  57692. },
  57693. {
  57694. name: "Giantess",
  57695. height: math.unit(200, "feet")
  57696. },
  57697. {
  57698. name: "Mega Giantess",
  57699. height: math.unit(2500, "feet")
  57700. },
  57701. {
  57702. name: "City Sized",
  57703. height: math.unit(50, "miles")
  57704. },
  57705. {
  57706. name: "Country Sized",
  57707. height: math.unit(500, "miles")
  57708. },
  57709. {
  57710. name: "Continent Sized",
  57711. height: math.unit(2500, "miles")
  57712. },
  57713. {
  57714. name: "Planet Sized",
  57715. height: math.unit(10000, "miles")
  57716. },
  57717. {
  57718. name: "Star Sized",
  57719. height: math.unit(5e6, "miles")
  57720. },
  57721. {
  57722. name: "Solar System Sized",
  57723. height: math.unit(125, "AU")
  57724. },
  57725. {
  57726. name: "Galaxy Sized",
  57727. height: math.unit(300e3, "lightyears")
  57728. },
  57729. {
  57730. name: "Universe Sized",
  57731. height: math.unit(200e9, "lightyears")
  57732. },
  57733. {
  57734. name: "Multiverse Sized",
  57735. height: math.unit(20, "exauniverses")
  57736. },
  57737. {
  57738. name: "Mother of Existence",
  57739. height: math.unit(1e6, "yottauniverses")
  57740. },
  57741. ]
  57742. ))
  57743. characterMakers.push(() => makeCharacter(
  57744. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57745. {
  57746. side: {
  57747. height: math.unit(9.5, "meters"),
  57748. name: "Side",
  57749. image: {
  57750. source: "./media/characters/kulve-ragnarok/side.svg",
  57751. extra: 364/326,
  57752. bottom: 50/414
  57753. }
  57754. },
  57755. },
  57756. [
  57757. {
  57758. name: "Normal",
  57759. height: math.unit(9.5, "meters"),
  57760. default: true
  57761. },
  57762. ]
  57763. ))
  57764. characterMakers.push(() => makeCharacter(
  57765. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57766. {
  57767. front: {
  57768. height: math.unit(8 + 9/12, "feet"),
  57769. name: "Front",
  57770. image: {
  57771. source: "./media/characters/atlas-goat/front.svg",
  57772. extra: 1462/1323,
  57773. bottom: 12/1474
  57774. }
  57775. },
  57776. },
  57777. [
  57778. {
  57779. name: "Normal",
  57780. height: math.unit(8 + 9/12, "feet"),
  57781. default: true
  57782. },
  57783. {
  57784. name: "Skyline",
  57785. height: math.unit(845, "feet")
  57786. },
  57787. {
  57788. name: "Orbital",
  57789. height: math.unit(93000, "miles")
  57790. },
  57791. {
  57792. name: "Constellation",
  57793. height: math.unit(27000, "lightyears")
  57794. },
  57795. ]
  57796. ))
  57797. characterMakers.push(() => makeCharacter(
  57798. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57799. {
  57800. side: {
  57801. height: math.unit(1.8, "meters"),
  57802. weight: math.unit(120, "kg"),
  57803. name: "Side",
  57804. image: {
  57805. source: "./media/characters/xie-ling/side.svg",
  57806. extra: 646/574,
  57807. bottom: 44/690
  57808. }
  57809. },
  57810. },
  57811. [
  57812. {
  57813. name: "Tiny",
  57814. height: math.unit(1.80, "meters")
  57815. },
  57816. {
  57817. name: "Small",
  57818. height: math.unit(6, "meters")
  57819. },
  57820. {
  57821. name: "Medium",
  57822. height: math.unit(15, "meters")
  57823. },
  57824. {
  57825. name: "Normal",
  57826. height: math.unit(30, "meters"),
  57827. default: true
  57828. },
  57829. {
  57830. name: "Above Normal",
  57831. height: math.unit(60, "meters")
  57832. },
  57833. {
  57834. name: "Big",
  57835. height: math.unit(220, "meters")
  57836. },
  57837. {
  57838. name: "Giant",
  57839. height: math.unit(2.2, "km")
  57840. },
  57841. {
  57842. name: "Macro",
  57843. height: math.unit(25, "km")
  57844. },
  57845. {
  57846. name: "Mega Macro",
  57847. height: math.unit(350, "km")
  57848. },
  57849. {
  57850. name: "Mega Macro+",
  57851. height: math.unit(5000, "km")
  57852. },
  57853. {
  57854. name: "Goddess",
  57855. height: math.unit(3, "multiverses")
  57856. },
  57857. ]
  57858. ))
  57859. characterMakers.push(() => makeCharacter(
  57860. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57861. {
  57862. frontSfw: {
  57863. height: math.unit(5 + 11/12, "feet"),
  57864. weight: math.unit(210, "lb"),
  57865. name: "Front",
  57866. image: {
  57867. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57868. extra: 1928/1821,
  57869. bottom: 45/1973
  57870. }
  57871. },
  57872. backSfw: {
  57873. height: math.unit(5 + 11/12, "feet"),
  57874. weight: math.unit(210, "lb"),
  57875. name: "Back",
  57876. image: {
  57877. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57878. extra: 1920/1813,
  57879. bottom: 34/1954
  57880. }
  57881. },
  57882. frontNsfw: {
  57883. height: math.unit(5 + 11/12, "feet"),
  57884. weight: math.unit(210, "lb"),
  57885. name: "Front (NSFW)",
  57886. image: {
  57887. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57888. extra: 1928/1821,
  57889. bottom: 45/1973
  57890. }
  57891. },
  57892. backNsfw: {
  57893. height: math.unit(5 + 11/12, "feet"),
  57894. weight: math.unit(210, "lb"),
  57895. name: "Back (NSFW)",
  57896. image: {
  57897. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57898. extra: 1920/1813,
  57899. bottom: 34/1954
  57900. }
  57901. },
  57902. },
  57903. [
  57904. {
  57905. name: "Normal",
  57906. height: math.unit(5 + 11/12, "feet"),
  57907. default: true
  57908. },
  57909. {
  57910. name: "Goddess",
  57911. height: math.unit(20 + 3/12, "feet")
  57912. },
  57913. {
  57914. name: "Breaker of Man",
  57915. height: math.unit(329 + 9/12, "feet")
  57916. },
  57917. {
  57918. name: "Solar Justice",
  57919. height: math.unit(0.6, "solarradii")
  57920. },
  57921. {
  57922. name: "She Who Judges",
  57923. height: math.unit(1, "universe")
  57924. },
  57925. ]
  57926. ))
  57927. characterMakers.push(() => makeCharacter(
  57928. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57929. {
  57930. casual_front: {
  57931. height: math.unit(6 + 1/12, "feet"),
  57932. weight: math.unit(190, "lb"),
  57933. preyCapacity: math.unit(1, "people"),
  57934. name: "Front",
  57935. image: {
  57936. source: "./media/characters/managarmr/casual-front.svg",
  57937. extra: 411/381,
  57938. bottom: 15/426
  57939. },
  57940. extraAttributes: {
  57941. "pawSize": {
  57942. name: "Paw Size",
  57943. power: 1,
  57944. type: "length",
  57945. base: math.unit(0.2, "meters")
  57946. },
  57947. },
  57948. form: "casual",
  57949. },
  57950. casual_back: {
  57951. height: math.unit(6 + 1/12, "feet"),
  57952. weight: math.unit(190, "lb"),
  57953. preyCapacity: math.unit(1, "people"),
  57954. name: "Back",
  57955. image: {
  57956. source: "./media/characters/managarmr/casual-back.svg",
  57957. extra: 413/383,
  57958. bottom: 13/426
  57959. },
  57960. extraAttributes: {
  57961. "pawSize": {
  57962. name: "Paw Size",
  57963. power: 1,
  57964. type: "length",
  57965. base: math.unit(0.2, "meters")
  57966. },
  57967. },
  57968. form: "casual",
  57969. },
  57970. base_front: {
  57971. height: math.unit(7, "feet"),
  57972. weight: math.unit(210, "lb"),
  57973. preyCapacity: math.unit(2, "people"),
  57974. name: "Front",
  57975. image: {
  57976. source: "./media/characters/managarmr/base-front.svg",
  57977. extra: 580/485,
  57978. bottom: 32/612
  57979. },
  57980. extraAttributes: {
  57981. "wingspan": {
  57982. name: "Wingspan",
  57983. power: 1,
  57984. type: "length",
  57985. base: math.unit(4, "meters")
  57986. },
  57987. "pawSize": {
  57988. name: "Paw Size",
  57989. power: 1,
  57990. type: "length",
  57991. base: math.unit(0.2, "meters")
  57992. },
  57993. },
  57994. form: "base",
  57995. },
  57996. "true-divine_front": {
  57997. height: math.unit(40, "feet"),
  57998. weight: math.unit(39000, "lb"),
  57999. preyCapacity: math.unit(375, "people"),
  58000. name: "Front",
  58001. image: {
  58002. source: "./media/characters/managarmr/true-divine-front.svg",
  58003. extra: 725/573,
  58004. bottom: 120/845
  58005. },
  58006. extraAttributes: {
  58007. "wingspan": {
  58008. name: "Wingspan",
  58009. power: 1,
  58010. type: "length",
  58011. base: math.unit(20, "meters")
  58012. },
  58013. "pawSize": {
  58014. name: "Paw Size",
  58015. power: 1,
  58016. type: "length",
  58017. base: math.unit(1.5, "meters")
  58018. },
  58019. },
  58020. form: "true-divine",
  58021. },
  58022. },
  58023. [
  58024. {
  58025. name: "Normal",
  58026. height: math.unit(6 + 1/12, "feet"),
  58027. form: "casual",
  58028. default: true
  58029. },
  58030. {
  58031. name: "Normal",
  58032. height: math.unit(7, "feet"),
  58033. form: "base",
  58034. default: true
  58035. },
  58036. ],
  58037. {
  58038. "casual": {
  58039. name: "Casual",
  58040. default: true
  58041. },
  58042. "base": {
  58043. name: "Base",
  58044. },
  58045. "true-divine": {
  58046. name: "True Divine",
  58047. },
  58048. }
  58049. ))
  58050. characterMakers.push(() => makeCharacter(
  58051. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58052. {
  58053. front: {
  58054. height: math.unit(1.8, "meters"),
  58055. weight: math.unit(110, "kg"),
  58056. name: "Front",
  58057. image: {
  58058. source: "./media/characters/mystra/front.svg",
  58059. extra: 529/442,
  58060. bottom: 31/560
  58061. }
  58062. },
  58063. frontLewd: {
  58064. height: math.unit(1.8, "meters"),
  58065. weight: math.unit(110, "kg"),
  58066. name: "Front (Lewd)",
  58067. image: {
  58068. source: "./media/characters/mystra/front-lewd.svg",
  58069. extra: 529/442,
  58070. bottom: 31/560
  58071. }
  58072. },
  58073. head: {
  58074. height: math.unit(1.63, "feet"),
  58075. name: "Head",
  58076. image: {
  58077. source: "./media/characters/mystra/head.svg"
  58078. }
  58079. },
  58080. paw: {
  58081. height: math.unit(1.9, "feet"),
  58082. name: "Paw",
  58083. image: {
  58084. source: "./media/characters/mystra/paw.svg"
  58085. }
  58086. },
  58087. },
  58088. [
  58089. {
  58090. name: "Incognito",
  58091. height: math.unit(2.3, "meters")
  58092. },
  58093. {
  58094. name: "Small Macro",
  58095. height: math.unit(300, "meters")
  58096. },
  58097. {
  58098. name: "Small Mega",
  58099. height: math.unit(2, "km")
  58100. },
  58101. {
  58102. name: "Mega",
  58103. height: math.unit(30, "km")
  58104. },
  58105. {
  58106. name: "Small Giga",
  58107. height: math.unit(100, "km")
  58108. },
  58109. {
  58110. name: "Giga",
  58111. height: math.unit(1000, "km"),
  58112. default: true
  58113. },
  58114. {
  58115. name: "Continental",
  58116. height: math.unit(5000, "km")
  58117. },
  58118. {
  58119. name: "Terra",
  58120. height: math.unit(20000, "km")
  58121. },
  58122. {
  58123. name: "Solar",
  58124. height: math.unit(2e6, "km")
  58125. },
  58126. {
  58127. name: "Galactic",
  58128. height: math.unit(528502, "lightyears")
  58129. },
  58130. {
  58131. name: "Universal",
  58132. height: math.unit(20, "universes")
  58133. },
  58134. ]
  58135. ))
  58136. characterMakers.push(() => makeCharacter(
  58137. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58138. {
  58139. front: {
  58140. height: math.unit(2, "meters"),
  58141. weight: math.unit(140, "kg"),
  58142. name: "Front",
  58143. image: {
  58144. source: "./media/characters/caleb/front.svg",
  58145. extra: 873/817,
  58146. bottom: 47/920
  58147. }
  58148. },
  58149. back: {
  58150. height: math.unit(2, "meters"),
  58151. weight: math.unit(140, "kg"),
  58152. name: "Back",
  58153. image: {
  58154. source: "./media/characters/caleb/back.svg",
  58155. extra: 877/828,
  58156. bottom: 24/901
  58157. }
  58158. },
  58159. snakeTail: {
  58160. height: math.unit(1.44, "feet"),
  58161. name: "Snake Tail",
  58162. image: {
  58163. source: "./media/characters/caleb/snake-tail.svg"
  58164. }
  58165. },
  58166. dick: {
  58167. height: math.unit(2.6, "feet"),
  58168. name: "Dick",
  58169. image: {
  58170. source: "./media/characters/caleb/dick.svg"
  58171. }
  58172. },
  58173. },
  58174. [
  58175. {
  58176. name: "Incognito",
  58177. height: math.unit(3, "meters")
  58178. },
  58179. {
  58180. name: "Home Size",
  58181. height: math.unit(200, "meters"),
  58182. default: true
  58183. },
  58184. {
  58185. name: "Macro",
  58186. height: math.unit(500, "meters")
  58187. },
  58188. {
  58189. name: "Big Macro",
  58190. height: math.unit(5, "km")
  58191. },
  58192. {
  58193. name: "Giga",
  58194. height: math.unit(250, "km")
  58195. },
  58196. {
  58197. name: "Giga+",
  58198. height: math.unit(5000, "km")
  58199. },
  58200. {
  58201. name: "Small Terra",
  58202. height: math.unit(35e3, "km")
  58203. },
  58204. {
  58205. name: "Terra",
  58206. height: math.unit(2e6, "km")
  58207. },
  58208. {
  58209. name: "Terra+",
  58210. height: math.unit(1.5e6, "km")
  58211. },
  58212. ]
  58213. ))
  58214. characterMakers.push(() => makeCharacter(
  58215. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58216. {
  58217. front: {
  58218. height: math.unit(2, "meters"),
  58219. weight: math.unit(120, "kg"),
  58220. name: "Front",
  58221. image: {
  58222. source: "./media/characters/gilirian/front.svg",
  58223. extra: 805/737,
  58224. bottom: 13/818
  58225. }
  58226. },
  58227. side: {
  58228. height: math.unit(2, "meters"),
  58229. weight: math.unit(120, "kg"),
  58230. name: "Side",
  58231. image: {
  58232. source: "./media/characters/gilirian/side.svg",
  58233. extra: 810/746,
  58234. bottom: 6/816
  58235. }
  58236. },
  58237. back: {
  58238. height: math.unit(2, "meters"),
  58239. weight: math.unit(120, "kg"),
  58240. name: "Back",
  58241. image: {
  58242. source: "./media/characters/gilirian/back.svg",
  58243. extra: 815/745,
  58244. bottom: 15/830
  58245. }
  58246. },
  58247. frontNsfw: {
  58248. height: math.unit(2, "meters"),
  58249. weight: math.unit(120, "kg"),
  58250. name: "Front (NSFW)",
  58251. image: {
  58252. source: "./media/characters/gilirian/front-nsfw.svg",
  58253. extra: 805/737,
  58254. bottom: 13/818
  58255. }
  58256. },
  58257. sideNsfw: {
  58258. height: math.unit(2, "meters"),
  58259. weight: math.unit(120, "kg"),
  58260. name: "Side (NSFW)",
  58261. image: {
  58262. source: "./media/characters/gilirian/side-nsfw.svg",
  58263. extra: 810/746,
  58264. bottom: 6/816
  58265. }
  58266. },
  58267. },
  58268. [
  58269. {
  58270. name: "Incognito",
  58271. height: math.unit(2, "meters"),
  58272. default: true
  58273. },
  58274. {
  58275. name: "Macro",
  58276. height: math.unit(250, "meters")
  58277. },
  58278. {
  58279. name: "Big Macro",
  58280. height: math.unit(1500, "meters")
  58281. },
  58282. {
  58283. name: "Mega",
  58284. height: math.unit(40, "km")
  58285. },
  58286. {
  58287. name: "Giga",
  58288. height: math.unit(300, "km")
  58289. },
  58290. {
  58291. name: "Extra Giga",
  58292. height: math.unit(5000, "km")
  58293. },
  58294. {
  58295. name: "Small Terra",
  58296. height: math.unit(10e3, "km")
  58297. },
  58298. {
  58299. name: "Terra",
  58300. height: math.unit(3e5, "km")
  58301. },
  58302. {
  58303. name: "Galactic",
  58304. height: math.unit(369950, "lightyears")
  58305. },
  58306. ]
  58307. ))
  58308. characterMakers.push(() => makeCharacter(
  58309. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58310. {
  58311. front: {
  58312. height: math.unit(2.5, "meters"),
  58313. weight: math.unit(230, "lb"),
  58314. name: "Front",
  58315. image: {
  58316. source: "./media/characters/tarken/front.svg",
  58317. extra: 764/720,
  58318. bottom: 49/813
  58319. }
  58320. },
  58321. back: {
  58322. height: math.unit(2.5, "meters"),
  58323. weight: math.unit(230, "lb"),
  58324. name: "Back",
  58325. image: {
  58326. source: "./media/characters/tarken/back.svg",
  58327. extra: 756/720,
  58328. bottom: 35/791
  58329. }
  58330. },
  58331. frontNsfw: {
  58332. height: math.unit(2.5, "meters"),
  58333. weight: math.unit(230, "lb"),
  58334. name: "Front (NSFW)",
  58335. image: {
  58336. source: "./media/characters/tarken/front-nsfw.svg",
  58337. extra: 764/720,
  58338. bottom: 49/813
  58339. }
  58340. },
  58341. backNsfw: {
  58342. height: math.unit(2.5, "meters"),
  58343. weight: math.unit(230, "lb"),
  58344. name: "Back (NSFW)",
  58345. image: {
  58346. source: "./media/characters/tarken/back-nsfw.svg",
  58347. extra: 756/720,
  58348. bottom: 35/791
  58349. }
  58350. },
  58351. head: {
  58352. height: math.unit(2.22, "feet"),
  58353. name: "Head",
  58354. image: {
  58355. source: "./media/characters/tarken/head.svg"
  58356. }
  58357. },
  58358. tail: {
  58359. height: math.unit(5.25, "feet"),
  58360. name: "Tail",
  58361. image: {
  58362. source: "./media/characters/tarken/tail.svg"
  58363. }
  58364. },
  58365. dick: {
  58366. height: math.unit(1.95, "feet"),
  58367. name: "Dick",
  58368. image: {
  58369. source: "./media/characters/tarken/dick.svg"
  58370. }
  58371. },
  58372. hand: {
  58373. height: math.unit(1.78, "feet"),
  58374. name: "Hand",
  58375. image: {
  58376. source: "./media/characters/tarken/hand.svg"
  58377. }
  58378. },
  58379. beam: {
  58380. height: math.unit(1.5, "feet"),
  58381. name: "Beam",
  58382. image: {
  58383. source: "./media/characters/tarken/beam.svg"
  58384. }
  58385. },
  58386. },
  58387. [
  58388. {
  58389. name: "Original Size",
  58390. height: math.unit(2.5, "meters")
  58391. },
  58392. {
  58393. name: "Macro",
  58394. height: math.unit(150, "meters"),
  58395. default: true
  58396. },
  58397. {
  58398. name: "Macro+",
  58399. height: math.unit(300, "meters")
  58400. },
  58401. {
  58402. name: "Mega",
  58403. height: math.unit(2, "km")
  58404. },
  58405. {
  58406. name: "Mega+",
  58407. height: math.unit(35, "km")
  58408. },
  58409.  {
  58410. name: "Mega++",
  58411. height: math.unit(60, "km")
  58412. },
  58413. {
  58414. name: "Giga",
  58415. height: math.unit(200, "km")
  58416. },
  58417. {
  58418. name: "Giga+",
  58419. height: math.unit(2500, "km")
  58420. },
  58421. {
  58422. name: "Giga++",
  58423. height: math.unit(6600, "km")
  58424. },
  58425. {
  58426. name: "Terra",
  58427. height: math.unit(20000, "km")
  58428. },
  58429. {
  58430. name: "Terra+",
  58431. height: math.unit(300000, "km")
  58432. },
  58433. ]
  58434. ))
  58435. characterMakers.push(() => makeCharacter(
  58436. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58437. {
  58438. magpie_dressed: {
  58439. height: math.unit(1.7, "meters"),
  58440. weight: math.unit(70, "kg"),
  58441. name: "Dressed",
  58442. image: {
  58443. source: "./media/characters/otreus/magpie-dressed.svg",
  58444. extra: 691/672,
  58445. bottom: 116/807
  58446. },
  58447. form: "magpie",
  58448. default: true
  58449. },
  58450. magpie_nude: {
  58451. height: math.unit(1.7, "meters"),
  58452. weight: math.unit(70, "kg"),
  58453. name: "Nude",
  58454. image: {
  58455. source: "./media/characters/otreus/magpie-nude.svg",
  58456. extra: 691/672,
  58457. bottom: 116/807
  58458. },
  58459. form: "magpie",
  58460. },
  58461. magpie_dressedLewd: {
  58462. height: math.unit(1.7, "meters"),
  58463. weight: math.unit(70, "kg"),
  58464. name: "Dressed (Lewd)",
  58465. image: {
  58466. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58467. extra: 691/672,
  58468. bottom: 116/807
  58469. },
  58470. form: "magpie",
  58471. },
  58472. magpie_nudeLewd: {
  58473. height: math.unit(1.7, "meters"),
  58474. weight: math.unit(70, "kg"),
  58475. name: "Nude (Lewd)",
  58476. image: {
  58477. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58478. extra: 691/672,
  58479. bottom: 116/807
  58480. },
  58481. form: "magpie",
  58482. },
  58483. magpie_leftFoot: {
  58484. height: math.unit(1.58, "feet"),
  58485. name: "Left Foot",
  58486. image: {
  58487. source: "./media/characters/otreus/magpie-left-foot.svg"
  58488. },
  58489. form: "magpie",
  58490. },
  58491. magpie_rightFoot: {
  58492. height: math.unit(1.58, "feet"),
  58493. name: "Right Foot",
  58494. image: {
  58495. source: "./media/characters/otreus/magpie-right-foot.svg"
  58496. },
  58497. form: "magpie",
  58498. },
  58499. magpie_wingspan: {
  58500. height: math.unit(2, "meters"),
  58501. weight: math.unit(70, "kg"),
  58502. name: "Wingspan",
  58503. image: {
  58504. source: "./media/characters/otreus/magpie-wingspan.svg"
  58505. },
  58506. extraAttributes: {
  58507. "wingspan": {
  58508. name: "Wingspan",
  58509. power: 1,
  58510. type: "length",
  58511. base: math.unit(3.35, "meters")
  58512. },
  58513. },
  58514. form: "magpie",
  58515. },
  58516. hippogriff_dressed: {
  58517. height: math.unit(1.7, "meters"),
  58518. weight: math.unit(70, "kg"),
  58519. name: "Dressed",
  58520. image: {
  58521. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58522. extra: 710/689,
  58523. bottom: 67/777
  58524. },
  58525. form: "hippogriff",
  58526. default: true
  58527. },
  58528. hippogriff_nude: {
  58529. height: math.unit(1.7, "meters"),
  58530. weight: math.unit(70, "kg"),
  58531. name: "Nude",
  58532. image: {
  58533. source: "./media/characters/otreus/hippogriff-nude.svg",
  58534. extra: 710/689,
  58535. bottom: 67/777
  58536. },
  58537. form: "hippogriff",
  58538. },
  58539. hippogriff_dressedLewd: {
  58540. height: math.unit(1.7, "meters"),
  58541. weight: math.unit(70, "kg"),
  58542. name: "Dressed (Lewd)",
  58543. image: {
  58544. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58545. extra: 710/689,
  58546. bottom: 67/777
  58547. },
  58548. form: "hippogriff",
  58549. },
  58550. hippogriff_nudeLewd: {
  58551. height: math.unit(1.7, "meters"),
  58552. weight: math.unit(70, "kg"),
  58553. name: "Nude (Lewd)",
  58554. image: {
  58555. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58556. extra: 710/689,
  58557. bottom: 67/777
  58558. },
  58559. form: "hippogriff",
  58560. },
  58561. },
  58562. [
  58563. {
  58564. name: "Original Size",
  58565. height: math.unit(1.7, "meters"),
  58566. allForms: true
  58567. },
  58568. {
  58569. name: "Incognito Size",
  58570. height: math.unit(2, "meters"),
  58571. allForms: true
  58572. },
  58573. {
  58574. name: "Mega",
  58575. height: math.unit(2, "km"),
  58576. allForms: true
  58577. },
  58578. {
  58579. name: "Mega+",
  58580. height: math.unit(40, "km"),
  58581. allForms: true
  58582. },
  58583. {
  58584. name: "Giga",
  58585. height: math.unit(250, "km"),
  58586. allForms: true
  58587. },
  58588. {
  58589. name: "Giga+",
  58590. height: math.unit(3000, "km"),
  58591. allForms: true
  58592. },
  58593. {
  58594. name: "Terra",
  58595. height: math.unit(20000, "km"),
  58596. allForms: true
  58597. },
  58598. {
  58599. name: "Solar (Home Size)",
  58600. height: math.unit(3e6, "km"),
  58601. allForms: true,
  58602. default: true
  58603. },
  58604. ],
  58605. {
  58606. "magpie": {
  58607. name: "Magpie",
  58608. default: true
  58609. },
  58610. "hippogriff": {
  58611. name: "Hippogriff",
  58612. },
  58613. }
  58614. ))
  58615. characterMakers.push(() => makeCharacter(
  58616. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58617. {
  58618. frontDressed: {
  58619. height: math.unit(1.8, "meters"),
  58620. weight: math.unit(90, "kg"),
  58621. name: "Front (Dressed)",
  58622. image: {
  58623. source: "./media/characters/thalia/front-dressed.svg",
  58624. extra: 478/402,
  58625. bottom: 55/533
  58626. }
  58627. },
  58628. backDressed: {
  58629. height: math.unit(1.8, "meters"),
  58630. weight: math.unit(90, "kg"),
  58631. name: "Back (Dressed)",
  58632. image: {
  58633. source: "./media/characters/thalia/back-dressed.svg",
  58634. extra: 500/424,
  58635. bottom: 15/515
  58636. }
  58637. },
  58638. frontNude: {
  58639. height: math.unit(1.8, "meters"),
  58640. weight: math.unit(90, "kg"),
  58641. name: "Front (Nude)",
  58642. image: {
  58643. source: "./media/characters/thalia/front-nude.svg",
  58644. extra: 478/402,
  58645. bottom: 55/533
  58646. }
  58647. },
  58648. backNude: {
  58649. height: math.unit(1.8, "meters"),
  58650. weight: math.unit(90, "kg"),
  58651. name: "Back (Nude)",
  58652. image: {
  58653. source: "./media/characters/thalia/back-nude.svg",
  58654. extra: 500/424,
  58655. bottom: 15/515
  58656. }
  58657. },
  58658. },
  58659. [
  58660. {
  58661. name: "Incognito",
  58662. height: math.unit(3, "meters")
  58663. },
  58664. {
  58665. name: "Macro",
  58666. height: math.unit(500, "meters")
  58667. },
  58668. {
  58669. name: "Mega",
  58670. height: math.unit(5, "km")
  58671. },
  58672. {
  58673. name: "Mega+",
  58674. height: math.unit(30, "km")
  58675. },
  58676. {
  58677. name: "Giga",
  58678. height: math.unit(350, "km")
  58679. },
  58680. {
  58681. name: "Giga+",
  58682. height: math.unit(4000, "km")
  58683. },
  58684. {
  58685. name: "Terra",
  58686. height: math.unit(35000, "km")
  58687. },
  58688. {
  58689. name: "Original Size",
  58690. height: math.unit(130000, "km")
  58691. },
  58692. {
  58693. name: "Solar (Home Size)",
  58694. height: math.unit(4e6, "km"),
  58695. default: true
  58696. },
  58697. ]
  58698. ))
  58699. characterMakers.push(() => makeCharacter(
  58700. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58701. {
  58702. front: {
  58703. height: math.unit(1.8, "meters"),
  58704. weight: math.unit(95, "kg"),
  58705. name: "Front",
  58706. image: {
  58707. source: "./media/characters/shango/front.svg",
  58708. extra: 1925/1774,
  58709. bottom: 67/1992
  58710. }
  58711. },
  58712. back: {
  58713. height: math.unit(1.8, "meters"),
  58714. weight: math.unit(95, "kg"),
  58715. name: "Back",
  58716. image: {
  58717. source: "./media/characters/shango/back.svg",
  58718. extra: 1915/1766,
  58719. bottom: 52/1967
  58720. }
  58721. },
  58722. frontLewd: {
  58723. height: math.unit(1.8, "meters"),
  58724. weight: math.unit(95, "kg"),
  58725. name: "Front (Lewd)",
  58726. image: {
  58727. source: "./media/characters/shango/front-lewd.svg",
  58728. extra: 1925/1774,
  58729. bottom: 67/1992
  58730. }
  58731. },
  58732. backLewd: {
  58733. height: math.unit(1.8, "meters"),
  58734. weight: math.unit(95, "kg"),
  58735. name: "Back (Lewd)",
  58736. image: {
  58737. source: "./media/characters/shango/back-lewd.svg",
  58738. extra: 1915/1766,
  58739. bottom: 52/1967
  58740. }
  58741. },
  58742. maw: {
  58743. height: math.unit(1.64, "feet"),
  58744. name: "Maw",
  58745. image: {
  58746. source: "./media/characters/shango/maw.svg"
  58747. }
  58748. },
  58749. dick: {
  58750. height: math.unit(2.14, "feet"),
  58751. name: "Dick",
  58752. image: {
  58753. source: "./media/characters/shango/dick.svg"
  58754. }
  58755. },
  58756. },
  58757. [
  58758. {
  58759. name: "Incognito",
  58760. height: math.unit(1.8, "meters")
  58761. },
  58762. {
  58763. name: "Home Size",
  58764. height: math.unit(60, "meters"),
  58765. default: true
  58766. },
  58767. {
  58768. name: "Macro",
  58769. height: math.unit(450, "meters")
  58770. },
  58771. {
  58772. name: "Mega",
  58773. height: math.unit(6, "km")
  58774. },
  58775. {
  58776. name: "Mega+",
  58777. height: math.unit(35, "km")
  58778. },
  58779. {
  58780. name: "Giga",
  58781. height: math.unit(500, "km")
  58782. },
  58783. {
  58784. name: "Giga+",
  58785. height: math.unit(5000, "km")
  58786. },
  58787. {
  58788. name: "Terra",
  58789. height: math.unit(60000, "km")
  58790. },
  58791. {
  58792. name: "Terra+",
  58793. height: math.unit(400000, "km")
  58794. },
  58795. ]
  58796. ))
  58797. characterMakers.push(() => makeCharacter(
  58798. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58799. {
  58800. front: {
  58801. height: math.unit(2, "meters"),
  58802. weight: math.unit(95, "kg"),
  58803. name: "Front",
  58804. image: {
  58805. source: "./media/characters/osiris-gryphon/front.svg",
  58806. extra: 1508/1313,
  58807. bottom: 87/1595
  58808. }
  58809. },
  58810. back: {
  58811. height: math.unit(2, "meters"),
  58812. weight: math.unit(95, "kg"),
  58813. name: "Back",
  58814. image: {
  58815. source: "./media/characters/osiris-gryphon/back.svg",
  58816. extra: 1436/1309,
  58817. bottom: 64/1500
  58818. }
  58819. },
  58820. frontLewd: {
  58821. height: math.unit(2, "meters"),
  58822. weight: math.unit(95, "kg"),
  58823. name: "Front-lewd",
  58824. image: {
  58825. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58826. extra: 1508/1313,
  58827. bottom: 87/1595
  58828. }
  58829. },
  58830. wing: {
  58831. height: math.unit(6.3333, "feet"),
  58832. name: "Wing",
  58833. image: {
  58834. source: "./media/characters/osiris-gryphon/wing.svg"
  58835. }
  58836. },
  58837. },
  58838. [
  58839. {
  58840. name: "Incognito",
  58841. height: math.unit(2, "meters")
  58842. },
  58843. {
  58844. name: "Home Size",
  58845. height: math.unit(30, "meters"),
  58846. default: true
  58847. },
  58848. {
  58849. name: "Macro",
  58850. height: math.unit(100, "meters")
  58851. },
  58852. {
  58853. name: "Macro+",
  58854. height: math.unit(350, "meters")
  58855. },
  58856. {
  58857. name: "Mega",
  58858. height: math.unit(40, "km")
  58859. },
  58860. {
  58861. name: "Giga",
  58862. height: math.unit(300, "km")
  58863. },
  58864. {
  58865. name: "Giga+",
  58866. height: math.unit(2000, "km")
  58867. },
  58868. {
  58869. name: "Terra",
  58870. height: math.unit(30000, "km")
  58871. },
  58872. ]
  58873. ))
  58874. characterMakers.push(() => makeCharacter(
  58875. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58876. {
  58877. front: {
  58878. height: math.unit(2.5, "meters"),
  58879. weight: math.unit(200, "kg"),
  58880. name: "Front",
  58881. image: {
  58882. source: "./media/characters/atlas-dragon/front.svg",
  58883. extra: 745/462,
  58884. bottom: 36/781
  58885. }
  58886. },
  58887. back: {
  58888. height: math.unit(2.5, "meters"),
  58889. weight: math.unit(200, "kg"),
  58890. name: "Back",
  58891. image: {
  58892. source: "./media/characters/atlas-dragon/back.svg",
  58893. extra: 848/822,
  58894. bottom: 57/905
  58895. }
  58896. },
  58897. frontLewd: {
  58898. height: math.unit(2.5, "meters"),
  58899. weight: math.unit(200, "kg"),
  58900. name: "Front (Lewd)",
  58901. image: {
  58902. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58903. extra: 745/462,
  58904. bottom: 36/781
  58905. }
  58906. },
  58907. backLewd: {
  58908. height: math.unit(2.5, "meters"),
  58909. weight: math.unit(200, "kg"),
  58910. name: "Back (Lewd)",
  58911. image: {
  58912. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58913. extra: 848/822,
  58914. bottom: 57/905
  58915. }
  58916. },
  58917. },
  58918. [
  58919. {
  58920. name: "Incognito",
  58921. height: math.unit(2.5, "meters")
  58922. },
  58923. {
  58924. name: "Small Macro",
  58925. height: math.unit(50, "meters")
  58926. },
  58927. {
  58928. name: "Macro",
  58929. height: math.unit(350, "meters")
  58930. },
  58931. {
  58932. name: "Mega",
  58933. height: math.unit(5.5, "kilometers")
  58934. },
  58935. {
  58936. name: "Mega+",
  58937. height: math.unit(50, "km")
  58938. },
  58939. {
  58940. name: "Giga",
  58941. height: math.unit(350, "km")
  58942. },
  58943. {
  58944. name: "Giga+",
  58945. height: math.unit(2000, "km")
  58946. },
  58947. {
  58948. name: "Giga++",
  58949. height: math.unit(6500, "km")
  58950. },
  58951. {
  58952. name: "Terra",
  58953. height: math.unit(30000, "km")
  58954. },
  58955. {
  58956. name: "Terra+",
  58957. height: math.unit(250000, "km")
  58958. },
  58959. {
  58960. name: "True Size",
  58961. height: math.unit(100, "multiverses"),
  58962. default: true
  58963. },
  58964. ]
  58965. ))
  58966. characterMakers.push(() => makeCharacter(
  58967. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58968. {
  58969. front: {
  58970. height: math.unit(1.8, "m"),
  58971. weight: math.unit(120, "kg"),
  58972. name: "Front",
  58973. image: {
  58974. source: "./media/characters/chey/front.svg",
  58975. extra: 1359/1270,
  58976. bottom: 18/1377
  58977. }
  58978. },
  58979. arm: {
  58980. height: math.unit(2.05, "feet"),
  58981. name: "Arm",
  58982. image: {
  58983. source: "./media/characters/chey/arm.svg"
  58984. }
  58985. },
  58986. head: {
  58987. height: math.unit(1.89, "feet"),
  58988. name: "Head",
  58989. image: {
  58990. source: "./media/characters/chey/head.svg"
  58991. }
  58992. },
  58993. },
  58994. [
  58995. {
  58996. name: "Original Size",
  58997. height: math.unit(5, "cm")
  58998. },
  58999. {
  59000. name: "Incognito Size",
  59001. height: math.unit(2.4, "m")
  59002. },
  59003. {
  59004. name: "Home Size",
  59005. height: math.unit(200, "meters"),
  59006. default: true
  59007. },
  59008. {
  59009. name: "Mega",
  59010. height: math.unit(2, "km")
  59011. },
  59012. {
  59013. name: "Giga (Preferred Size)",
  59014. height: math.unit(2000, "km")
  59015. },
  59016. {
  59017. name: "Giga+",
  59018. height: math.unit(6000, "km")
  59019. },
  59020. {
  59021. name: "Terra",
  59022. height: math.unit(17000, "km")
  59023. },
  59024. {
  59025. name: "Terra+",
  59026. height: math.unit(75000, "km")
  59027. },
  59028. {
  59029. name: "Terra++",
  59030. height: math.unit(225000, "km")
  59031. },
  59032. ]
  59033. ))
  59034. characterMakers.push(() => makeCharacter(
  59035. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59036. {
  59037. side: {
  59038. height: math.unit(7.8, "meters"),
  59039. name: "Side",
  59040. image: {
  59041. source: "./media/characters/ragnarok/side.svg",
  59042. extra: 725/621,
  59043. bottom: 72/797
  59044. }
  59045. },
  59046. },
  59047. [
  59048. {
  59049. name: "Normal",
  59050. height: math.unit(7.8, "meters"),
  59051. default: true
  59052. },
  59053. ]
  59054. ))
  59055. characterMakers.push(() => makeCharacter(
  59056. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59057. {
  59058. hyena_front: {
  59059. height: math.unit(2.1, "meters"),
  59060. weight: math.unit(110, "kg"),
  59061. name: "Front",
  59062. image: {
  59063. source: "./media/characters/nima/hyena-front.svg",
  59064. extra: 1904/1796,
  59065. bottom: 67/1971
  59066. },
  59067. form: "hyena",
  59068. },
  59069. hyena_back: {
  59070. height: math.unit(2.1, "meters"),
  59071. weight: math.unit(110, "kg"),
  59072. name: "Back",
  59073. image: {
  59074. source: "./media/characters/nima/hyena-back.svg",
  59075. extra: 1964/1884,
  59076. bottom: 35/1999
  59077. },
  59078. form: "hyena",
  59079. },
  59080. shark_front: {
  59081. height: math.unit(1.95, "meters"),
  59082. weight: math.unit(110, "kg"),
  59083. name: "Front",
  59084. image: {
  59085. source: "./media/characters/nima/shark-front.svg",
  59086. extra: 2238/2013,
  59087. bottom: 0/223
  59088. },
  59089. form: "shark",
  59090. },
  59091. paw: {
  59092. height: math.unit(1, "feet"),
  59093. name: "Paw",
  59094. image: {
  59095. source: "./media/characters/nima/paw.svg"
  59096. }
  59097. },
  59098. circlet: {
  59099. height: math.unit(0.3, "feet"),
  59100. name: "Circlet",
  59101. image: {
  59102. source: "./media/characters/nima/circlet.svg"
  59103. }
  59104. },
  59105. necklace: {
  59106. height: math.unit(1.2, "feet"),
  59107. name: "Necklace",
  59108. image: {
  59109. source: "./media/characters/nima/necklace.svg"
  59110. }
  59111. },
  59112. bracelet: {
  59113. height: math.unit(0.51, "feet"),
  59114. name: "Bracelet",
  59115. image: {
  59116. source: "./media/characters/nima/bracelet.svg"
  59117. }
  59118. },
  59119. armband: {
  59120. height: math.unit(1.3, "feet"),
  59121. name: "Armband",
  59122. image: {
  59123. source: "./media/characters/nima/armband.svg"
  59124. }
  59125. },
  59126. },
  59127. [
  59128. {
  59129. name: "Incognito",
  59130. height: math.unit(2.1, "meters"),
  59131. allForms: true
  59132. },
  59133. {
  59134. name: "Small Macro",
  59135. height: math.unit(50, "meters"),
  59136. allForms: true
  59137. },
  59138. {
  59139. name: "Macro",
  59140. height: math.unit(200, "meters"),
  59141. allForms: true
  59142. },
  59143. {
  59144. name: "Mega",
  59145. height: math.unit(2.5, "km"),
  59146. allForms: true
  59147. },
  59148. {
  59149. name: "Mega+",
  59150. height: math.unit(30, "km"),
  59151. allForms: true
  59152. },
  59153. {
  59154. name: "Giga (Home Size)",
  59155. height: math.unit(400, "km"),
  59156. allForms: true,
  59157. default: true
  59158. },
  59159. {
  59160. name: "Giga+",
  59161. height: math.unit(2500, "km"),
  59162. allForms: true
  59163. },
  59164. {
  59165. name: "Giga++",
  59166. height: math.unit(8000, "km"),
  59167. allForms: true
  59168. },
  59169. {
  59170. name: "Terra",
  59171. height: math.unit(20000, "km"),
  59172. allForms: true
  59173. },
  59174. {
  59175. name: "Terra+",
  59176. height: math.unit(70000, "km"),
  59177. allForms: true
  59178. },
  59179. {
  59180. name: "Terra++",
  59181. height: math.unit(600000, "km"),
  59182. allForms: true
  59183. },
  59184. {
  59185. name: "Galactic",
  59186. height: math.unit(40, "galaxies"),
  59187. allForms: true
  59188. },
  59189. {
  59190. name: "Universal",
  59191. height: math.unit(40, "universes"),
  59192. allForms: true
  59193. },
  59194. ],
  59195. {
  59196. "hyena": {
  59197. name: "Hyena",
  59198. default: true
  59199. },
  59200. "shark": {
  59201. name: "Shark",
  59202. },
  59203. }
  59204. ))
  59205. characterMakers.push(() => makeCharacter(
  59206. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59207. {
  59208. anthro_front: {
  59209. height: math.unit(1.5, "meters"),
  59210. name: "Front",
  59211. image: {
  59212. source: "./media/characters/adelaide/anthro-front.svg",
  59213. extra: 860/783,
  59214. bottom: 60/920
  59215. },
  59216. form: "anthro",
  59217. default: true
  59218. },
  59219. hand: {
  59220. height: math.unit(0.65, "feet"),
  59221. name: "Hand",
  59222. image: {
  59223. source: "./media/characters/adelaide/hand.svg"
  59224. },
  59225. form: "anthro"
  59226. },
  59227. foot: {
  59228. height: math.unit(1.38 * 259 / 314, "feet"),
  59229. name: "Foot",
  59230. image: {
  59231. source: "./media/characters/adelaide/foot.svg",
  59232. extra: 259/259,
  59233. bottom: 55/314
  59234. },
  59235. form: "anthro"
  59236. },
  59237. feather: {
  59238. height: math.unit(0.85, "feet"),
  59239. name: "Feather",
  59240. image: {
  59241. source: "./media/characters/adelaide/feather.svg"
  59242. },
  59243. form: "anthro"
  59244. },
  59245. feral_side: {
  59246. height: math.unit(1, "meters"),
  59247. name: "Side",
  59248. image: {
  59249. source: "./media/characters/adelaide/feral-side.svg",
  59250. extra: 550/467,
  59251. bottom: 37/587
  59252. },
  59253. form: "feral",
  59254. default: true
  59255. },
  59256. feral_hand: {
  59257. height: math.unit(0.58, "feet"),
  59258. name: "Hand",
  59259. image: {
  59260. source: "./media/characters/adelaide/hand.svg"
  59261. },
  59262. form: "feral"
  59263. },
  59264. feral_foot: {
  59265. height: math.unit(1.2 * 259 / 314, "feet"),
  59266. name: "Foot",
  59267. image: {
  59268. source: "./media/characters/adelaide/foot.svg",
  59269. extra: 259/259,
  59270. bottom: 55/314
  59271. },
  59272. form: "feral"
  59273. },
  59274. feral_feather: {
  59275. height: math.unit(0.63, "feet"),
  59276. name: "Feather",
  59277. image: {
  59278. source: "./media/characters/adelaide/feather.svg"
  59279. },
  59280. form: "feral"
  59281. },
  59282. },
  59283. [
  59284. {
  59285. name: "Normal",
  59286. height: math.unit(1.5, "meters"),
  59287. form: "anthro",
  59288. default: true
  59289. },
  59290. {
  59291. name: "Normal",
  59292. height: math.unit(1, "meters"),
  59293. form: "feral",
  59294. default: true
  59295. },
  59296. ],
  59297. {
  59298. "anthro": {
  59299. name: "Anthro",
  59300. default: true
  59301. },
  59302. "feral": {
  59303. name: "Feral",
  59304. },
  59305. }
  59306. ))
  59307. characterMakers.push(() => makeCharacter(
  59308. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59309. {
  59310. front: {
  59311. height: math.unit(2.5, "meters"),
  59312. name: "Front",
  59313. image: {
  59314. source: "./media/characters/goa/front.svg",
  59315. extra: 1109/1013,
  59316. bottom: 150/1259
  59317. }
  59318. },
  59319. },
  59320. [
  59321. {
  59322. name: "Normal",
  59323. height: math.unit(2.5, "meters"),
  59324. default: true
  59325. },
  59326. ]
  59327. ))
  59328. characterMakers.push(() => makeCharacter(
  59329. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59330. {
  59331. front: {
  59332. height: math.unit(2, "meters"),
  59333. weight: math.unit(100, "kg"),
  59334. name: "Front",
  59335. image: {
  59336. source: "./media/characters/kiki-weavile/front.svg",
  59337. extra: 357/332,
  59338. bottom: 60/417
  59339. }
  59340. },
  59341. },
  59342. [
  59343. {
  59344. name: "Normal",
  59345. height: math.unit(2, "meters"),
  59346. default: true
  59347. },
  59348. ]
  59349. ))
  59350. characterMakers.push(() => makeCharacter(
  59351. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59352. {
  59353. side: {
  59354. height: math.unit(1.6, "meters"),
  59355. name: "Side",
  59356. image: {
  59357. source: "./media/characters/liza/side.svg",
  59358. extra: 943/915,
  59359. bottom: 72/1015
  59360. }
  59361. },
  59362. },
  59363. [
  59364. {
  59365. name: "Normal",
  59366. height: math.unit(1.6, "meters"),
  59367. default: true
  59368. },
  59369. ]
  59370. ))
  59371. characterMakers.push(() => makeCharacter(
  59372. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59373. {
  59374. side: {
  59375. height: math.unit(2.5, "meters"),
  59376. name: "Side",
  59377. image: {
  59378. source: "./media/characters/persephone-sweetbreath/side.svg",
  59379. extra: 796/700,
  59380. bottom: 44/840
  59381. }
  59382. },
  59383. },
  59384. [
  59385. {
  59386. name: "Normal",
  59387. height: math.unit(2.5, "meters"),
  59388. default: true
  59389. },
  59390. ]
  59391. ))
  59392. characterMakers.push(() => makeCharacter(
  59393. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59394. {
  59395. front: {
  59396. height: math.unit(32, "meters"),
  59397. name: "Front",
  59398. image: {
  59399. source: "./media/characters/pierce/front.svg",
  59400. extra: 1695/1475,
  59401. bottom: 185/1880
  59402. }
  59403. },
  59404. side: {
  59405. height: math.unit(32, "meters"),
  59406. name: "Side",
  59407. image: {
  59408. source: "./media/characters/pierce/side.svg",
  59409. extra: 974/859,
  59410. bottom: 43/1017
  59411. }
  59412. },
  59413. frontWingless: {
  59414. height: math.unit(32, "meters"),
  59415. name: "Front (Wingless)",
  59416. image: {
  59417. source: "./media/characters/pierce/front-wingless.svg",
  59418. extra: 1695/1475,
  59419. bottom: 185/1880
  59420. }
  59421. },
  59422. sideWingless: {
  59423. height: math.unit(32, "meters"),
  59424. name: "Side (Wingless)",
  59425. image: {
  59426. source: "./media/characters/pierce/side-wingless.svg",
  59427. extra: 974/859,
  59428. bottom: 43/1017
  59429. }
  59430. },
  59431. maw: {
  59432. height: math.unit(19.3, "meters"),
  59433. name: "Maw",
  59434. image: {
  59435. source: "./media/characters/pierce/maw.svg"
  59436. }
  59437. },
  59438. },
  59439. [
  59440. {
  59441. name: "Small",
  59442. height: math.unit(8.5, "meters")
  59443. },
  59444. {
  59445. name: "Normal",
  59446. height: math.unit(32, "meters"),
  59447. default: true
  59448. },
  59449. ]
  59450. ))
  59451. characterMakers.push(() => makeCharacter(
  59452. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59453. {
  59454. front: {
  59455. height: math.unit(2.3, "meters"),
  59456. weight: math.unit(165, "kg"),
  59457. name: "Front",
  59458. image: {
  59459. source: "./media/characters/shira/front.svg",
  59460. extra: 924/919,
  59461. bottom: 17/941
  59462. },
  59463. form: "cobra",
  59464. default: true
  59465. },
  59466. back: {
  59467. height: math.unit(2.3, "meters"),
  59468. weight: math.unit(165, "kg"),
  59469. name: "Back",
  59470. image: {
  59471. source: "./media/characters/shira/back.svg",
  59472. extra: 928/922,
  59473. bottom: 18/946
  59474. },
  59475. form: "cobra"
  59476. },
  59477. frontLewd: {
  59478. height: math.unit(2.3, "meters"),
  59479. weight: math.unit(165, "kg"),
  59480. name: "Front (Lewd)",
  59481. image: {
  59482. source: "./media/characters/shira/front-lewd.svg",
  59483. extra: 924/919,
  59484. bottom: 17/941
  59485. },
  59486. form: "cobra"
  59487. },
  59488. backLewd: {
  59489. height: math.unit(2.3, "meters"),
  59490. weight: math.unit(165, "kg"),
  59491. name: "Back (Lewd)",
  59492. image: {
  59493. source: "./media/characters/shira/back-lewd.svg",
  59494. extra: 928/922,
  59495. bottom: 18/946
  59496. },
  59497. form: "cobra"
  59498. },
  59499. maw: {
  59500. height: math.unit(1.14, "feet"),
  59501. name: "Maw",
  59502. image: {
  59503. source: "./media/characters/shira/maw.svg"
  59504. },
  59505. form: "cobra"
  59506. },
  59507. magma_front: {
  59508. height: math.unit(2.3, "meters"),
  59509. weight: math.unit(165, "kg"),
  59510. name: "Front",
  59511. image: {
  59512. source: "./media/characters/shira/magma-front.svg",
  59513. extra: 1870/1693,
  59514. bottom: 24/1894
  59515. },
  59516. form: "magma",
  59517. },
  59518. magma_back: {
  59519. height: math.unit(2.3, "meters"),
  59520. weight: math.unit(165, "kg"),
  59521. name: "Back",
  59522. image: {
  59523. source: "./media/characters/shira/magma-back.svg",
  59524. extra: 1918/1756,
  59525. bottom: 46/1964
  59526. },
  59527. form: "magma",
  59528. },
  59529. },
  59530. [
  59531. {
  59532. name: "Incognito",
  59533. height: math.unit(2.3, "meters"),
  59534. allForms: true
  59535. },
  59536. {
  59537. name: "Home Size",
  59538. height: math.unit(150, "meters"),
  59539. default: true,
  59540. allForms: true
  59541. },
  59542. {
  59543. name: "Macro",
  59544. height: math.unit(2, "km"),
  59545. allForms: true
  59546. },
  59547. {
  59548. name: "Mega",
  59549. height: math.unit(30, "km"),
  59550. allForms: true
  59551. },
  59552. {
  59553. name: "Giga",
  59554. height: math.unit(450, "km"),
  59555. allForms: true
  59556. },
  59557. {
  59558. name: "Giga+",
  59559. height: math.unit(3000, "km"),
  59560. allForms: true
  59561. },
  59562. {
  59563. name: "Giga++",
  59564. height: math.unit(6000, "km"),
  59565. allForms: true
  59566. },
  59567. {
  59568. name: "Terra",
  59569. height: math.unit(80000, "km"),
  59570. allForms: true
  59571. },
  59572. {
  59573. name: "Terra+",
  59574. height: math.unit(350000, "km"),
  59575. allForms: true
  59576. },
  59577. {
  59578. name: "Solar",
  59579. height: math.unit(1e6, "km"),
  59580. allForms: true
  59581. },
  59582. ],
  59583. {
  59584. "cobra": {
  59585. name: "Cobra",
  59586. default: true
  59587. },
  59588. "magma": {
  59589. name: "Magma Dragon",
  59590. },
  59591. }
  59592. ))
  59593. characterMakers.push(() => makeCharacter(
  59594. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59595. {
  59596. front: {
  59597. height: math.unit(2, "meters"),
  59598. weight: math.unit(160, "kg"),
  59599. name: "Front",
  59600. image: {
  59601. source: "./media/characters/daxerios/front.svg",
  59602. extra: 1334/1277,
  59603. bottom: 45/1379
  59604. }
  59605. },
  59606. frontLewd: {
  59607. height: math.unit(2, "meters"),
  59608. weight: math.unit(160, "kg"),
  59609. name: "Front (Lewd)",
  59610. image: {
  59611. source: "./media/characters/daxerios/front-lewd.svg",
  59612. extra: 1334/1277,
  59613. bottom: 45/1379
  59614. }
  59615. },
  59616. dick: {
  59617. height: math.unit(2.35, "feet"),
  59618. name: "Dick",
  59619. image: {
  59620. source: "./media/characters/daxerios/dick.svg"
  59621. }
  59622. },
  59623. },
  59624. [
  59625. {
  59626. name: "\"Small\"",
  59627. height: math.unit(5, "meters")
  59628. },
  59629. {
  59630. name: "Original Size",
  59631. height: math.unit(500, "meters"),
  59632. default: true
  59633. },
  59634. {
  59635. name: "Mega",
  59636. height: math.unit(2, "km")
  59637. },
  59638. {
  59639. name: "Mega+",
  59640. height: math.unit(35, "km")
  59641. },
  59642. {
  59643. name: "Giga",
  59644. height: math.unit(250, "km")
  59645. },
  59646. {
  59647. name: "Giga+",
  59648. height: math.unit(3000, "km")
  59649. },
  59650. {
  59651. name: "Terra",
  59652. height: math.unit(25000, "km")
  59653. },
  59654. {
  59655. name: "Terra+",
  59656. height: math.unit(300000, "km")
  59657. },
  59658. {
  59659. name: "Solar",
  59660. height: math.unit(1e6, "km")
  59661. },
  59662. ]
  59663. ))
  59664. characterMakers.push(() => makeCharacter(
  59665. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59666. {
  59667. front: {
  59668. height: math.unit(8 + 4/12, "feet"),
  59669. weight: math.unit(464, "lb"),
  59670. name: "Front",
  59671. image: {
  59672. source: "./media/characters/caveat/front.svg",
  59673. extra: 1861/1678,
  59674. bottom: 40/1901
  59675. }
  59676. },
  59677. },
  59678. [
  59679. {
  59680. name: "Normal",
  59681. height: math.unit(8 + 4/12, "feet"),
  59682. default: true
  59683. },
  59684. ]
  59685. ))
  59686. characterMakers.push(() => makeCharacter(
  59687. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59688. {
  59689. front: {
  59690. height: math.unit(12, "feet"),
  59691. weight: math.unit(1800, "lb"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/centbair/front.svg",
  59695. extra: 781/663,
  59696. bottom: 25/806
  59697. }
  59698. },
  59699. frontNsfw: {
  59700. height: math.unit(12, "feet"),
  59701. weight: math.unit(1800, "lb"),
  59702. name: "Front (NSFW)",
  59703. image: {
  59704. source: "./media/characters/centbair/front-nsfw.svg",
  59705. extra: 781/663,
  59706. bottom: 25/806
  59707. }
  59708. },
  59709. back: {
  59710. height: math.unit(12, "feet"),
  59711. weight: math.unit(1800, "lb"),
  59712. name: "Back",
  59713. image: {
  59714. source: "./media/characters/centbair/back.svg",
  59715. extra: 808/761,
  59716. bottom: 19/827
  59717. }
  59718. },
  59719. dick: {
  59720. height: math.unit(6.5, "feet"),
  59721. name: "Dick",
  59722. image: {
  59723. source: "./media/characters/centbair/dick.svg"
  59724. }
  59725. },
  59726. slit: {
  59727. height: math.unit(3.25, "feet"),
  59728. name: "Slit",
  59729. image: {
  59730. source: "./media/characters/centbair/slit.svg"
  59731. }
  59732. },
  59733. },
  59734. [
  59735. {
  59736. name: "Normal",
  59737. height: math.unit(12, "feet"),
  59738. default: true
  59739. },
  59740. ]
  59741. ))
  59742. characterMakers.push(() => makeCharacter(
  59743. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59744. {
  59745. front: {
  59746. height: math.unit(5 + 7/12, "feet"),
  59747. name: "Front",
  59748. image: {
  59749. source: "./media/characters/andy/front.svg",
  59750. extra: 634/588,
  59751. bottom: 36/670
  59752. },
  59753. extraAttributes: {
  59754. "pawLength": {
  59755. name: "Paw Length",
  59756. power: 1,
  59757. type: "length",
  59758. base: math.unit(1, "feet")
  59759. },
  59760. }
  59761. },
  59762. side: {
  59763. height: math.unit(5 + 7/12, "feet"),
  59764. name: "Side",
  59765. image: {
  59766. source: "./media/characters/andy/side.svg",
  59767. extra: 641/596,
  59768. bottom: 34/675
  59769. },
  59770. extraAttributes: {
  59771. "pawLength": {
  59772. name: "Paw Length",
  59773. power: 1,
  59774. type: "length",
  59775. base: math.unit(1, "feet")
  59776. },
  59777. }
  59778. },
  59779. back: {
  59780. height: math.unit(5 + 7/12, "feet"),
  59781. name: "Back",
  59782. image: {
  59783. source: "./media/characters/andy/back.svg",
  59784. extra: 618/583,
  59785. bottom: 39/657
  59786. },
  59787. extraAttributes: {
  59788. "pawLength": {
  59789. name: "Paw Length",
  59790. power: 1,
  59791. type: "length",
  59792. base: math.unit(1, "feet")
  59793. },
  59794. }
  59795. },
  59796. paw: {
  59797. height: math.unit(1.13, "feet"),
  59798. name: "Paw",
  59799. image: {
  59800. source: "./media/characters/andy/paw.svg"
  59801. }
  59802. },
  59803. },
  59804. [
  59805. {
  59806. name: "Micro",
  59807. height: math.unit(4, "inches")
  59808. },
  59809. {
  59810. name: "Normal",
  59811. height: math.unit(5 + 7/12, "feet"),
  59812. default: true
  59813. },
  59814. {
  59815. name: "Macro",
  59816. height: math.unit(390.42, "feet")
  59817. },
  59818. ]
  59819. ))
  59820. characterMakers.push(() => makeCharacter(
  59821. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59822. {
  59823. front: {
  59824. height: math.unit(7, "feet"),
  59825. weight: math.unit(250, "lb"),
  59826. name: "Front",
  59827. image: {
  59828. source: "./media/characters/vix-titan/front.svg",
  59829. extra: 460/428,
  59830. bottom: 15/475
  59831. },
  59832. extraAttributes: {
  59833. "pawWidth": {
  59834. name: "Paw Width",
  59835. power: 1,
  59836. type: "length",
  59837. base: math.unit(0.75, "feet")
  59838. },
  59839. }
  59840. },
  59841. },
  59842. [
  59843. {
  59844. name: "Normal",
  59845. height: math.unit(7, "feet"),
  59846. default: true
  59847. },
  59848. {
  59849. name: "Giant",
  59850. height: math.unit(1500, "feet")
  59851. },
  59852. {
  59853. name: "Mega",
  59854. height: math.unit(10, "miles")
  59855. },
  59856. {
  59857. name: "Giga",
  59858. height: math.unit(150, "miles")
  59859. },
  59860. {
  59861. name: "Tera",
  59862. height: math.unit(144000, "miles")
  59863. },
  59864. ]
  59865. ))
  59866. characterMakers.push(() => makeCharacter(
  59867. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59868. {
  59869. front: {
  59870. height: math.unit(6 + 2/12, "feet"),
  59871. name: "Front",
  59872. image: {
  59873. source: "./media/characters/reiku/front.svg",
  59874. extra: 1910/1757,
  59875. bottom: 103/2013
  59876. },
  59877. extraAttributes: {
  59878. "thighThickness": {
  59879. name: "Thigh Thickness",
  59880. power: 1,
  59881. type: "length",
  59882. base: math.unit(1.12, "feet")
  59883. },
  59884. "assThickness": {
  59885. name: "Ass Thickness",
  59886. power: 1,
  59887. type: "length",
  59888. base: math.unit(1.12*2, "feet")
  59889. },
  59890. }
  59891. },
  59892. side: {
  59893. height: math.unit(6 + 2/12, "feet"),
  59894. name: "Side",
  59895. image: {
  59896. source: "./media/characters/reiku/side.svg",
  59897. extra: 1846/1748,
  59898. bottom: 99/1945
  59899. },
  59900. extraAttributes: {
  59901. "thighThickness": {
  59902. name: "Thigh Thickness",
  59903. power: 1,
  59904. type: "length",
  59905. base: math.unit(1.12, "feet")
  59906. },
  59907. "assThickness": {
  59908. name: "Ass Thickness",
  59909. power: 1,
  59910. type: "length",
  59911. base: math.unit(1.12*2, "feet")
  59912. },
  59913. }
  59914. },
  59915. back: {
  59916. height: math.unit(6 + 2/12, "feet"),
  59917. name: "Back",
  59918. image: {
  59919. source: "./media/characters/reiku/back.svg",
  59920. extra: 1941/1786,
  59921. bottom: 34/1975
  59922. },
  59923. extraAttributes: {
  59924. "thighThickness": {
  59925. name: "Thigh Thickness",
  59926. power: 1,
  59927. type: "length",
  59928. base: math.unit(1.12, "feet")
  59929. },
  59930. "assThickness": {
  59931. name: "Ass Thickness",
  59932. power: 1,
  59933. type: "length",
  59934. base: math.unit(1.12*2, "feet")
  59935. },
  59936. }
  59937. },
  59938. head: {
  59939. height: math.unit(1.8, "feet"),
  59940. name: "Head",
  59941. image: {
  59942. source: "./media/characters/reiku/head.svg"
  59943. }
  59944. },
  59945. tailTop: {
  59946. height: math.unit(8.4, "feet"),
  59947. name: "Tail (Top)",
  59948. image: {
  59949. source: "./media/characters/reiku/tail-top.svg"
  59950. }
  59951. },
  59952. tailBottom: {
  59953. height: math.unit(8.4, "feet"),
  59954. name: "Tail (Bottom)",
  59955. image: {
  59956. source: "./media/characters/reiku/tail-bottom.svg"
  59957. }
  59958. },
  59959. foot: {
  59960. height: math.unit(2.6, "feet"),
  59961. name: "Foot",
  59962. image: {
  59963. source: "./media/characters/reiku/foot.svg"
  59964. }
  59965. },
  59966. footCurled: {
  59967. height: math.unit(2.3, "feet"),
  59968. name: "Foot (Curled)",
  59969. image: {
  59970. source: "./media/characters/reiku/foot-curled.svg"
  59971. }
  59972. },
  59973. footSide: {
  59974. height: math.unit(1.26, "feet"),
  59975. name: "Foot (Side)",
  59976. image: {
  59977. source: "./media/characters/reiku/foot-side.svg"
  59978. }
  59979. },
  59980. },
  59981. [
  59982. {
  59983. name: "Normal",
  59984. height: math.unit(6 + 2/12, "feet"),
  59985. default: true
  59986. },
  59987. ]
  59988. ))
  59989. characterMakers.push(() => makeCharacter(
  59990. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  59991. {
  59992. front: {
  59993. height: math.unit(7, "feet"),
  59994. weight: math.unit(500, "kg"),
  59995. name: "Front",
  59996. image: {
  59997. source: "./media/characters/cialda/front.svg",
  59998. extra: 912/745,
  59999. bottom: 55/967
  60000. }
  60001. },
  60002. },
  60003. [
  60004. {
  60005. name: "Normal",
  60006. height: math.unit(7, "feet"),
  60007. default: true
  60008. },
  60009. ]
  60010. ))
  60011. characterMakers.push(() => makeCharacter(
  60012. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60013. {
  60014. side: {
  60015. height: math.unit(6, "feet"),
  60016. weight: math.unit(600, "lb"),
  60017. preyCapacity: math.unit(25, "liters"),
  60018. name: "Side",
  60019. image: {
  60020. source: "./media/characters/darkkin/side.svg",
  60021. extra: 1597/1447,
  60022. bottom: 101/1698
  60023. }
  60024. },
  60025. },
  60026. [
  60027. {
  60028. name: "Canon Height",
  60029. height: math.unit(568, "feet"),
  60030. default: true
  60031. },
  60032. ]
  60033. ))
  60034. characterMakers.push(() => makeCharacter(
  60035. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60036. {
  60037. front: {
  60038. height: math.unit(6, "feet"),
  60039. weight: math.unit(1500, "lb"),
  60040. preyCapacity: math.unit(3, "people"),
  60041. name: "Front",
  60042. image: {
  60043. source: "./media/characters/livnia/front.svg",
  60044. extra: 934/932,
  60045. bottom: 83/1017
  60046. }
  60047. },
  60048. back: {
  60049. height: math.unit(6, "feet"),
  60050. weight: math.unit(1500, "lb"),
  60051. preyCapacity: math.unit(3, "people"),
  60052. name: "Back",
  60053. image: {
  60054. source: "./media/characters/livnia/back.svg",
  60055. extra: 916/915,
  60056. bottom: 58/974
  60057. }
  60058. },
  60059. head: {
  60060. height: math.unit(1.53, "feet"),
  60061. name: "Head",
  60062. image: {
  60063. source: "./media/characters/livnia/head.svg"
  60064. }
  60065. },
  60066. maw: {
  60067. height: math.unit(0.78, "feet"),
  60068. name: "Maw",
  60069. image: {
  60070. source: "./media/characters/livnia/maw.svg"
  60071. }
  60072. },
  60073. genitals: {
  60074. height: math.unit(0.35, "feet"),
  60075. name: "Genitals",
  60076. image: {
  60077. source: "./media/characters/livnia/genitals.svg"
  60078. }
  60079. },
  60080. },
  60081. [
  60082. {
  60083. name: "Normal",
  60084. height: math.unit(1000, "feet"),
  60085. default: true
  60086. },
  60087. ]
  60088. ))
  60089. characterMakers.push(() => makeCharacter(
  60090. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60091. {
  60092. front: {
  60093. height: math.unit(4, "feet"),
  60094. weight: math.unit(73, "lb"),
  60095. name: "Front",
  60096. image: {
  60097. source: "./media/characters/hayaku/front.svg",
  60098. extra: 1011/888,
  60099. bottom: 33/1044
  60100. }
  60101. },
  60102. back: {
  60103. height: math.unit(4, "feet"),
  60104. weight: math.unit(73, "lb"),
  60105. name: "Back",
  60106. image: {
  60107. source: "./media/characters/hayaku/back.svg",
  60108. extra: 1040/930,
  60109. bottom: 20/1060
  60110. }
  60111. },
  60112. },
  60113. [
  60114. {
  60115. name: "Normal",
  60116. height: math.unit(4, "feet"),
  60117. default: true
  60118. },
  60119. ]
  60120. ))
  60121. characterMakers.push(() => makeCharacter(
  60122. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60123. {
  60124. front: {
  60125. height: math.unit(6 + 7/12, "feet"),
  60126. weight: math.unit(300, "lb"),
  60127. name: "Front",
  60128. image: {
  60129. source: "./media/characters/athena-bryzant/front.svg",
  60130. extra: 870/835,
  60131. bottom: 33/903
  60132. }
  60133. },
  60134. back: {
  60135. height: math.unit(6 + 7/12, "feet"),
  60136. weight: math.unit(300, "lb"),
  60137. name: "Back",
  60138. image: {
  60139. source: "./media/characters/athena-bryzant/back.svg",
  60140. extra: 858/823,
  60141. bottom: 30/888
  60142. }
  60143. },
  60144. head: {
  60145. height: math.unit(2.38, "feet"),
  60146. name: "Head",
  60147. image: {
  60148. source: "./media/characters/athena-bryzant/head.svg"
  60149. }
  60150. },
  60151. wings: {
  60152. height: math.unit(2.85, "feet"),
  60153. name: "Wings",
  60154. image: {
  60155. source: "./media/characters/athena-bryzant/wings.svg"
  60156. }
  60157. },
  60158. },
  60159. [
  60160. {
  60161. name: "Normal",
  60162. height: math.unit(6 + 7/12, "feet"),
  60163. default: true
  60164. },
  60165. {
  60166. name: "Big",
  60167. height: math.unit(8, "feet")
  60168. },
  60169. {
  60170. name: "Very Big",
  60171. height: math.unit(11, "feet")
  60172. },
  60173. ]
  60174. ))
  60175. characterMakers.push(() => makeCharacter(
  60176. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60177. {
  60178. side: {
  60179. height: math.unit(3, "meters"),
  60180. weight: math.unit(7500, "kg"),
  60181. preyCapacity: math.unit(1e12, "people"),
  60182. name: "Side",
  60183. image: {
  60184. source: "./media/characters/zel-kesh/side.svg",
  60185. extra: 910/407,
  60186. bottom: 147/1057
  60187. }
  60188. },
  60189. },
  60190. [
  60191. {
  60192. name: "Normal",
  60193. height: math.unit(3, "meters"),
  60194. default: true
  60195. },
  60196. ]
  60197. ))
  60198. characterMakers.push(() => makeCharacter(
  60199. { name: "Kane (Fox)", species: ["fox"], tags: ["anthro"] },
  60200. {
  60201. front: {
  60202. height: math.unit(2, "meters"),
  60203. weight: math.unit(95, "kg"),
  60204. name: "Front",
  60205. image: {
  60206. source: "./media/characters/kane-fox/front.svg",
  60207. extra: 945/888,
  60208. bottom: 27/972
  60209. }
  60210. },
  60211. back: {
  60212. height: math.unit(2, "meters"),
  60213. weight: math.unit(95, "kg"),
  60214. name: "Back",
  60215. image: {
  60216. source: "./media/characters/kane-fox/back.svg",
  60217. extra: 959/914,
  60218. bottom: 15/974
  60219. }
  60220. },
  60221. frontLewd: {
  60222. height: math.unit(2, "meters"),
  60223. weight: math.unit(95, "kg"),
  60224. name: "Front (Lewd)",
  60225. image: {
  60226. source: "./media/characters/kane-fox/front-lewd.svg",
  60227. extra: 945/888,
  60228. bottom: 27/972
  60229. }
  60230. },
  60231. },
  60232. [
  60233. {
  60234. name: "Home Size",
  60235. height: math.unit(2, "meters"),
  60236. default: true
  60237. },
  60238. {
  60239. name: "Macro",
  60240. height: math.unit(200, "meters")
  60241. },
  60242. {
  60243. name: "Small Mega",
  60244. height: math.unit(3, "km")
  60245. },
  60246. {
  60247. name: "Mega",
  60248. height: math.unit(50, "km")
  60249. },
  60250. {
  60251. name: "Giga",
  60252. height: math.unit(200, "km")
  60253. },
  60254. {
  60255. name: "Giga+",
  60256. height: math.unit(2500, "km")
  60257. },
  60258. {
  60259. name: "Terra",
  60260. height: math.unit(70000, "km")
  60261. },
  60262. {
  60263. name: "Terra+",
  60264. height: math.unit(150000, "km")
  60265. },
  60266. {
  60267. name: "Terra++",
  60268. height: math.unit(400000, "km")
  60269. },
  60270. ]
  60271. ))
  60272. //characters
  60273. function makeCharacters() {
  60274. const results = [];
  60275. characterMakers.forEach(character => {
  60276. results.push(character());
  60277. });
  60278. return results;
  60279. }