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

56695 строки
1.4 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. },
  143. tiger: {
  144. name: "Tiger",
  145. parents: [
  146. "cat"
  147. ]
  148. },
  149. cat: {
  150. name: "Cat",
  151. parents: [
  152. "feliform"
  153. ]
  154. },
  155. "blue-jay": {
  156. name: "Blue Jay",
  157. parents: [
  158. "corvid"
  159. ]
  160. },
  161. wolf: {
  162. name: "Wolf",
  163. parents: [
  164. "mammal"
  165. ]
  166. },
  167. coyote: {
  168. name: "Coyote",
  169. parents: [
  170. "mammal"
  171. ]
  172. },
  173. raccoon: {
  174. name: "Raccoon",
  175. parents: [
  176. "mammal"
  177. ]
  178. },
  179. weasel: {
  180. name: "Weasel",
  181. parents: [
  182. "mustelid"
  183. ]
  184. },
  185. "red-panda": {
  186. name: "Red Panda",
  187. parents: [
  188. "mammal"
  189. ]
  190. },
  191. dolphin: {
  192. name: "Dolphin",
  193. parents: [
  194. "mammal"
  195. ]
  196. },
  197. "african-wild-dog": {
  198. name: "African Wild Dog",
  199. parents: [
  200. "canine"
  201. ]
  202. },
  203. "hyena": {
  204. name: "Hyena",
  205. parents: [
  206. "feliform"
  207. ]
  208. },
  209. "carbuncle": {
  210. name: "Carbuncle",
  211. parents: [
  212. "animal"
  213. ]
  214. },
  215. bat: {
  216. name: "Bat",
  217. parents: [
  218. "mammal"
  219. ]
  220. },
  221. "leaf-nosed-bat": {
  222. name: "Leaf-Nosed Bat",
  223. parents: [
  224. "bat"
  225. ]
  226. },
  227. "fish": {
  228. name: "Fish",
  229. parents: [
  230. "animal"
  231. ]
  232. },
  233. "ram": {
  234. name: "Ram",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "demon": {
  240. name: "Demon",
  241. parents: [
  242. "supernatural"
  243. ]
  244. },
  245. "cougar": {
  246. name: "Cougar",
  247. parents: [
  248. "cat"
  249. ]
  250. },
  251. "goat": {
  252. name: "Goat",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "lion": {
  258. name: "Lion",
  259. parents: [
  260. "cat"
  261. ]
  262. },
  263. "harpy-eager": {
  264. name: "Harpy Eagle",
  265. parents: [
  266. "avian"
  267. ]
  268. },
  269. "deer": {
  270. name: "Deer",
  271. parents: [
  272. "mammal"
  273. ]
  274. },
  275. "phoenix": {
  276. name: "Phoenix",
  277. parents: [
  278. "avian"
  279. ]
  280. },
  281. "aeromorph": {
  282. name: "Aeromorph",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "machine": {
  288. name: "Machine",
  289. },
  290. "android": {
  291. name: "Android",
  292. parents: [
  293. "machine"
  294. ]
  295. },
  296. "jackal": {
  297. name: "Jackal",
  298. parents: [
  299. "canine"
  300. ]
  301. },
  302. "corvid": {
  303. name: "Corvid",
  304. parents: [
  305. "passerine"
  306. ]
  307. },
  308. "pharaoh-hound": {
  309. name: "Pharaoh Hound",
  310. parents: [
  311. "dog"
  312. ]
  313. },
  314. "skunk": {
  315. name: "Skunk",
  316. parents: [
  317. "mammal"
  318. ]
  319. },
  320. "shark": {
  321. name: "Shark",
  322. parents: [
  323. "fish"
  324. ]
  325. },
  326. "black-panther": {
  327. name: "Black Panther",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "umbra": {
  333. name: "Umbra",
  334. parents: [
  335. "animal"
  336. ]
  337. },
  338. "raven": {
  339. name: "Raven",
  340. parents: [
  341. "corvid"
  342. ]
  343. },
  344. "snow-leopard": {
  345. name: "Snow Leopard",
  346. parents: [
  347. "cat"
  348. ]
  349. },
  350. "barbary-lion": {
  351. name: "Barbary Lion",
  352. parents: [
  353. "lion"
  354. ]
  355. },
  356. "dra'gal": {
  357. name: "Dra'Gal",
  358. parents: [
  359. "mammal"
  360. ]
  361. },
  362. "german-shepherd": {
  363. name: "German Shepherd",
  364. parents: [
  365. "dog"
  366. ]
  367. },
  368. "bayleef": {
  369. name: "Bayleef",
  370. parents: [
  371. "pokemon",
  372. "plant",
  373. "animal"
  374. ]
  375. },
  376. "mouse": {
  377. name: "Mouse",
  378. parents: [
  379. "rodent"
  380. ]
  381. },
  382. "rat": {
  383. name: "Rat",
  384. parents: [
  385. "mammal"
  386. ]
  387. },
  388. "hoshiko-beast": {
  389. name: "Hoshiko Beast",
  390. parents: ["animal"]
  391. },
  392. "snow-jugani": {
  393. name: "Snow Jugani",
  394. parents: ["cat"]
  395. },
  396. "patamon": {
  397. name: "Patamon",
  398. parents: ["digimon", "guinea-pig"]
  399. },
  400. "digimon": {
  401. name: "Digimon",
  402. },
  403. "jugani": {
  404. name: "Jugani",
  405. parents: ["cat"]
  406. },
  407. "luxray": {
  408. name: "Luxray",
  409. parents: ["pokemon", "lion"]
  410. },
  411. "mech": {
  412. name: "Mech",
  413. parents: ["machine"]
  414. },
  415. "zoid": {
  416. name: "Zoid",
  417. parents: ["mech"]
  418. },
  419. "monster": {
  420. name: "Monster",
  421. parents: ["animal"]
  422. },
  423. "foo-dog": {
  424. name: "Foo Dog",
  425. parents: ["mammal"]
  426. },
  427. "elephant": {
  428. name: "Elephant",
  429. parents: ["mammal"]
  430. },
  431. "eagle": {
  432. name: "Eagle",
  433. parents: ["bird-of-prey"]
  434. },
  435. "cow": {
  436. name: "Cow",
  437. parents: ["mammal"]
  438. },
  439. "crocodile": {
  440. name: "Crocodile",
  441. parents: ["reptile"]
  442. },
  443. "borzoi": {
  444. name: "Borzoi",
  445. parents: ["dog"]
  446. },
  447. "snake": {
  448. name: "Snake",
  449. parents: ["reptile"]
  450. },
  451. "horned-bush-viper": {
  452. name: "Horned Bush Viper",
  453. parents: ["viper"]
  454. },
  455. "cobra": {
  456. name: "Cobra",
  457. parents: ["snake"]
  458. },
  459. "harpy-eagle": {
  460. name: "Harpy Eagle",
  461. parents: ["eagle"]
  462. },
  463. "raptor": {
  464. name: "Raptor",
  465. parents: ["dinosaur"]
  466. },
  467. "dinosaur": {
  468. name: "Dinosaur",
  469. parents: ["reptile"]
  470. },
  471. "veilhound": {
  472. name: "Veilhound",
  473. parents: ["hellhound"]
  474. },
  475. "hellhound": {
  476. name: "Hellhound",
  477. parents: ["canine", "demon"]
  478. },
  479. "insect": {
  480. name: "Insect",
  481. parents: ["animal"]
  482. },
  483. "beetle": {
  484. name: "Beetle",
  485. parents: ["insect"]
  486. },
  487. "moth": {
  488. name: "Moth",
  489. parents: ["insect"]
  490. },
  491. "eastern-dragon": {
  492. name: "Eastern Dragon",
  493. parents: ["dragon"]
  494. },
  495. "jaguar": {
  496. name: "Jaguar",
  497. parents: ["cat"]
  498. },
  499. "horse": {
  500. name: "Horse",
  501. parents: ["mammal"]
  502. },
  503. "sergal": {
  504. name: "Sergal",
  505. parents: ["mammal", "avian", "vilous"]
  506. },
  507. "gryphon": {
  508. name: "Gryphon",
  509. parents: ["lion", "eagle"]
  510. },
  511. "robot": {
  512. name: "Robot",
  513. parents: ["machine"]
  514. },
  515. "medihound": {
  516. name: "Medihound",
  517. parents: ["robot", "dog"]
  518. },
  519. "sylveon": {
  520. name: "Sylveon",
  521. parents: ["pokemon"]
  522. },
  523. "catgirl": {
  524. name: "Catgirl",
  525. parents: ["mammal"]
  526. },
  527. "cowgirl": {
  528. name: "Cowgirl",
  529. parents: ["mammal"]
  530. },
  531. "pony": {
  532. name: "Pony",
  533. parents: ["horse"]
  534. },
  535. "rabbit": {
  536. name: "Rabbit",
  537. parents: ["leporidae"]
  538. },
  539. "fennec-fox": {
  540. name: "Fennec Fox",
  541. parents: ["fox"]
  542. },
  543. "azodian": {
  544. name: "Azodian",
  545. parents: ["mouse"]
  546. },
  547. "shiba-inu": {
  548. name: "Shiba Inu",
  549. parents: ["dog"]
  550. },
  551. "changeling": {
  552. name: "Changeling",
  553. parents: ["insect"]
  554. },
  555. "cheetah": {
  556. name: "Cheetah",
  557. parents: ["cat"]
  558. },
  559. "golden-jackal": {
  560. name: "Golden Jackal",
  561. parents: ["jackal"]
  562. },
  563. "manectric": {
  564. name: "Manectric",
  565. parents: ["pokemon", "wolf"]
  566. },
  567. "rat": {
  568. name: "Rat",
  569. parents: ["rodent"]
  570. },
  571. "rodent": {
  572. name: "Rodent",
  573. parents: ["mammal"]
  574. },
  575. "octocoon": {
  576. name: "Octocoon",
  577. parents: ["raccoon", "octopus"]
  578. },
  579. "octopus": {
  580. name: "Octopus",
  581. parents: ["fish"]
  582. },
  583. "werewolf": {
  584. name: "Werewolf",
  585. parents: ["wolf", "werebeast"]
  586. },
  587. "werebeast": {
  588. name: "Werebeast",
  589. parents: ["monster"]
  590. },
  591. "meerkat": {
  592. name: "Meerkat",
  593. parents: ["mammal"]
  594. },
  595. "human": {
  596. name: "Human",
  597. parents: ["mammal"]
  598. },
  599. "geth": {
  600. name: "Geth",
  601. parents: ["android"]
  602. },
  603. "husky": {
  604. name: "Husky",
  605. parents: ["dog"]
  606. },
  607. "long-eared-bat": {
  608. name: "Long Eared Bat",
  609. parents: ["bat"]
  610. },
  611. "lizard": {
  612. name: "Lizard",
  613. parents: ["reptile"]
  614. },
  615. "salamander": {
  616. name: "Salamander",
  617. parents: ["lizard"]
  618. },
  619. "chameleon": {
  620. name: "Chameleon",
  621. parents: ["lizard"]
  622. },
  623. "gecko": {
  624. name: "Gecko",
  625. parents: ["lizard"]
  626. },
  627. "kobold": {
  628. name: "Kobold",
  629. parents: ["reptile"]
  630. },
  631. "charizard": {
  632. name: "Charizard",
  633. parents: ["pokemon", "dragon"]
  634. },
  635. "lugia": {
  636. name: "Lugia",
  637. parents: ["pokemon", "avian"]
  638. },
  639. "cerberus": {
  640. name: "Cerberus",
  641. parents: ["dog"]
  642. },
  643. "tyrantrum": {
  644. name: "Tyrantrum",
  645. parents: ["pokemon"]
  646. },
  647. "lemur": {
  648. name: "Lemur",
  649. parents: ["mammal"]
  650. },
  651. "kelpie": {
  652. name: "Kelpie",
  653. parents: ["horse", "monster"]
  654. },
  655. "labrador": {
  656. name: "Labrador",
  657. parents: ["dog"]
  658. },
  659. "sylveon": {
  660. name: "Sylveon",
  661. parents: ["eeveelution"]
  662. },
  663. "eeveelution": {
  664. name: "Eeveelution",
  665. parents: ["pokemon", "cat"]
  666. },
  667. "polar-bear": {
  668. name: "Polar Bear",
  669. parents: ["bear"]
  670. },
  671. "bear": {
  672. name: "Bear",
  673. parents: ["mammal"]
  674. },
  675. "absol": {
  676. name: "Absol",
  677. parents: ["pokemon", "cat"]
  678. },
  679. "wolver": {
  680. name: "Wolver",
  681. parents: ["mammal"]
  682. },
  683. "rottweiler": {
  684. name: "Rottweiler",
  685. parents: ["dog"]
  686. },
  687. "zebra": {
  688. name: "Zebra",
  689. parents: ["horse"]
  690. },
  691. "yoshi": {
  692. name: "Yoshi",
  693. parents: ["lizard"]
  694. },
  695. "lynx": {
  696. name: "Lynx",
  697. parents: ["cat"]
  698. },
  699. "unknown": {
  700. name: "Unknown",
  701. parents: []
  702. },
  703. "thylacine": {
  704. name: "Thylacine",
  705. parents: ["mammal"]
  706. },
  707. "gabumon": {
  708. name: "Gabumon",
  709. parents: ["digimon"]
  710. },
  711. "border-collie": {
  712. name: "Border Collie",
  713. parents: ["dog"]
  714. },
  715. "imp": {
  716. name: "Imp",
  717. parents: ["demon"]
  718. },
  719. "kangaroo": {
  720. name: "Kangaroo",
  721. parents: ["marsupial"]
  722. },
  723. "renamon": {
  724. name: "Renamon",
  725. parents: ["digimon", "fox"]
  726. },
  727. "candy-orca-dragon": {
  728. name: "Candy Orca Dragon",
  729. parents: ["fish", "dragon", "candy"]
  730. },
  731. "sabertooth-tiger": {
  732. name: "Sabertooth Tiger",
  733. parents: ["cat"]
  734. },
  735. "espurr": {
  736. name: "Espurr",
  737. parents: ["pokemon", "cat"]
  738. },
  739. "otter": {
  740. name: "Otter",
  741. parents: ["mustelid"]
  742. },
  743. "elemental": {
  744. name: "Elemental",
  745. parents: ["mammal"]
  746. },
  747. "mew": {
  748. name: "Mew",
  749. parents: ["pokemon"]
  750. },
  751. "goodra": {
  752. name: "Goodra",
  753. parents: ["pokemon"]
  754. },
  755. "fairy": {
  756. name: "Fairy",
  757. parents: ["magical"]
  758. },
  759. "typhlosion": {
  760. name: "Typhlosion",
  761. parents: ["pokemon"]
  762. },
  763. "magical": {
  764. name: "Magical",
  765. parents: []
  766. },
  767. "xenomorph": {
  768. name: "Xenomorph",
  769. parents: ["monster", "alien"]
  770. },
  771. "charr": {
  772. name: "Charr",
  773. parents: ["cat"]
  774. },
  775. "siberian-husky": {
  776. name: "Siberian Husky",
  777. parents: ["husky"]
  778. },
  779. "alligator": {
  780. name: "Alligator",
  781. parents: ["reptile"]
  782. },
  783. "bernese-mountain-dog": {
  784. name: "Bernese Mountain Dog",
  785. parents: ["dog"]
  786. },
  787. "reshiram": {
  788. name: "Reshiram",
  789. parents: ["pokemon", "dragon"]
  790. },
  791. "grizzly-bear": {
  792. name: "Grizzly Bear",
  793. parents: ["bear"]
  794. },
  795. "water-monitor": {
  796. name: "Water Monitor",
  797. parents: ["lizard"]
  798. },
  799. "banchofossa": {
  800. name: "Banchofossa",
  801. parents: ["mammal"]
  802. },
  803. "kirin": {
  804. name: "Kirin",
  805. parents: ["monster"]
  806. },
  807. "quilava": {
  808. name: "Quilava",
  809. parents: ["pokemon"]
  810. },
  811. "seviper": {
  812. name: "Seviper",
  813. parents: ["pokemon", "viper"]
  814. },
  815. "flying-fox": {
  816. name: "Flying Fox",
  817. parents: ["bat"]
  818. },
  819. "keynain": {
  820. name: "Keynain",
  821. parents: ["avian"]
  822. },
  823. "lucario": {
  824. name: "Lucario",
  825. parents: ["pokemon", "jackal"]
  826. },
  827. "siamese-cat": {
  828. name: "Siamese Cat",
  829. parents: ["cat"]
  830. },
  831. "spider": {
  832. name: "Spider",
  833. parents: ["insect"]
  834. },
  835. "samurott": {
  836. name: "Samurott",
  837. parents: ["pokemon", "otter"]
  838. },
  839. "megalodon": {
  840. name: "Megalodon",
  841. parents: ["shark"]
  842. },
  843. "unicorn": {
  844. name: "Unicorn",
  845. parents: ["horse"]
  846. },
  847. "greninja": {
  848. name: "Greninja",
  849. parents: ["pokemon", "frog"]
  850. },
  851. "water-dragon": {
  852. name: "Water Dragon",
  853. parents: ["dragon"]
  854. },
  855. "cross-fox": {
  856. name: "Cross Fox",
  857. parents: ["fox"]
  858. },
  859. "synth": {
  860. name: "Synth",
  861. parents: ["machine"]
  862. },
  863. "construct": {
  864. name: "Construct",
  865. parents: []
  866. },
  867. "mexican-wolf": {
  868. name: "Mexican Wolf",
  869. parents: ["wolf"]
  870. },
  871. "leopard": {
  872. name: "Leopard",
  873. parents: ["cat"]
  874. },
  875. "pig": {
  876. name: "Pig",
  877. parents: ["mammal"]
  878. },
  879. "ampharos": {
  880. name: "Ampharos",
  881. parents: ["pokemon", "sheep"]
  882. },
  883. "orca": {
  884. name: "Orca",
  885. parents: ["fish"]
  886. },
  887. "lycanroc": {
  888. name: "Lycanroc",
  889. parents: ["pokemon", "wolf"]
  890. },
  891. "surkanu": {
  892. name: "Surkanu",
  893. parents: ["monster"]
  894. },
  895. "seal": {
  896. name: "Seal",
  897. parents: ["mammal"]
  898. },
  899. "keldeo": {
  900. name: "Keldeo",
  901. parents: ["pokemon"]
  902. },
  903. "great-dane": {
  904. name: "Great Dane",
  905. parents: ["dog"]
  906. },
  907. "black-backed-jackal": {
  908. name: "Black Backed Jackal",
  909. parents: ["jackal"]
  910. },
  911. "sheep": {
  912. name: "Sheep",
  913. parents: ["mammal"]
  914. },
  915. "leopard-seal": {
  916. name: "Leopard Seal",
  917. parents: ["seal"]
  918. },
  919. "zoroark": {
  920. name: "Zoroark",
  921. parents: ["pokemon", "fox"]
  922. },
  923. "maned-wolf": {
  924. name: "Maned Wolf",
  925. parents: ["canine"]
  926. },
  927. "dracha": {
  928. name: "Dracha",
  929. parents: ["dragon"]
  930. },
  931. "wolxi": {
  932. name: "Wolxi",
  933. parents: ["mammal", "alien"]
  934. },
  935. "dratini": {
  936. name: "Dratini",
  937. parents: ["pokemon", "dragon"]
  938. },
  939. "skaven": {
  940. name: "Skaven",
  941. parents: ["rat"]
  942. },
  943. "mongoose": {
  944. name: "Mongoose",
  945. parents: ["mammal"]
  946. },
  947. "lopunny": {
  948. name: "Lopunny",
  949. parents: ["pokemon", "rabbit"]
  950. },
  951. "feraligatr": {
  952. name: "Feraligatr",
  953. parents: ["pokemon", "alligator"]
  954. },
  955. "houndoom": {
  956. name: "Houndoom",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "protogen": {
  960. name: "Protogen",
  961. parents: ["machine"]
  962. },
  963. "saint-bernard": {
  964. name: "Saint Bernard",
  965. parents: ["dog"]
  966. },
  967. "crow": {
  968. name: "Crow",
  969. parents: ["corvid"]
  970. },
  971. "delphox": {
  972. name: "Delphox",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "moose": {
  976. name: "Moose",
  977. parents: ["mammal"]
  978. },
  979. "joraxian": {
  980. name: "Joraxian",
  981. parents: ["monster", "canine", "demon"]
  982. },
  983. "nimbat": {
  984. name: "Nimbat",
  985. parents: ["mammal"]
  986. },
  987. "aardwolf": {
  988. name: "Aardwolf",
  989. parents: ["canine"]
  990. },
  991. "fluudrani": {
  992. name: "Fluudrani",
  993. parents: ["animal"]
  994. },
  995. "arcanine": {
  996. name: "Arcanine",
  997. parents: ["pokemon", "dog"]
  998. },
  999. "inteleon": {
  1000. name: "Inteleon",
  1001. parents: ["pokemon", "fish"]
  1002. },
  1003. "ninetales": {
  1004. name: "Ninetales",
  1005. parents: ["pokemon", "kitsune"]
  1006. },
  1007. "tigrex": {
  1008. name: "Tigrex",
  1009. parents: ["tiger"]
  1010. },
  1011. "zorua": {
  1012. name: "Zorua",
  1013. parents: ["pokemon", "fox"]
  1014. },
  1015. "vulpix": {
  1016. name: "Vulpix",
  1017. parents: ["pokemon", "fox"]
  1018. },
  1019. "barghest": {
  1020. name: "Barghest",
  1021. parents: ["monster"]
  1022. },
  1023. "gray-wolf": {
  1024. name: "Gray Wolf",
  1025. parents: ["wolf"]
  1026. },
  1027. "ruppells-fox": {
  1028. name: "Rüppell's Fox",
  1029. parents: ["fox"]
  1030. },
  1031. "bull-terrier": {
  1032. name: "Bull Terrier",
  1033. parents: ["dog"]
  1034. },
  1035. "european-honey-buzzard": {
  1036. name: "European Honey Buzzard",
  1037. parents: ["avian"]
  1038. },
  1039. "t-rex": {
  1040. name: "Tyrannosaurus Rex",
  1041. parents: ["dinosaur"]
  1042. },
  1043. "mactarian": {
  1044. name: "Mactarian",
  1045. parents: ["shark", "monster"]
  1046. },
  1047. "mewtwo-y": {
  1048. name: "Mewtwo Y",
  1049. parents: ["mewtwo"]
  1050. },
  1051. "mewtwo": {
  1052. name: "Mewtwo",
  1053. parents: ["pokemon"]
  1054. },
  1055. "eevee": {
  1056. name: "Eevee",
  1057. parents: ["eeveelution"]
  1058. },
  1059. "mienshao": {
  1060. name: "Mienshao",
  1061. parents: ["pokemon"]
  1062. },
  1063. "sugar-glider": {
  1064. name: "Sugar Glider",
  1065. parents: ["opossum"]
  1066. },
  1067. "spectral-bat": {
  1068. name: "Spectral Bat",
  1069. parents: ["bat"]
  1070. },
  1071. "scolipede": {
  1072. name: "Scolipede",
  1073. parents: ["pokemon", "insect"]
  1074. },
  1075. "jackalope": {
  1076. name: "Jackalope",
  1077. parents: ["rabbit", "antelope"]
  1078. },
  1079. "caracal": {
  1080. name: "Caracal",
  1081. parents: ["cat"]
  1082. },
  1083. "stoat": {
  1084. name: "Stoat",
  1085. parents: ["mammal"]
  1086. },
  1087. "african-golden-cat": {
  1088. name: "African Golden Cat",
  1089. parents: ["cat"]
  1090. },
  1091. "gigantosaurus": {
  1092. name: "Gigantosaurus",
  1093. parents: ["dinosaur"]
  1094. },
  1095. "zorgoia": {
  1096. name: "Zorgoia",
  1097. parents: ["mammal"]
  1098. },
  1099. "monitor-lizard": {
  1100. name: "Monitor Lizard",
  1101. parents: ["lizard"]
  1102. },
  1103. "ziralkia": {
  1104. name: "Ziralkia",
  1105. parents: ["mammal"]
  1106. },
  1107. "kiiasi": {
  1108. name: "Kiiasi",
  1109. parents: ["animal"]
  1110. },
  1111. "synx": {
  1112. name: "Synx",
  1113. parents: ["monster"]
  1114. },
  1115. "panther": {
  1116. name: "Panther",
  1117. parents: ["cat"]
  1118. },
  1119. "azumarill": {
  1120. name: "Azumarill",
  1121. parents: ["pokemon"]
  1122. },
  1123. "river-snaptail": {
  1124. name: "River Snaptail",
  1125. parents: ["otter", "crocodile"]
  1126. },
  1127. "great-blue-heron": {
  1128. name: "Great Blue Heron",
  1129. parents: ["avian"]
  1130. },
  1131. "smeargle": {
  1132. name: "Smeargle",
  1133. parents: ["pokemon"]
  1134. },
  1135. "vendeilen": {
  1136. name: "Vendeilen",
  1137. parents: ["monster"]
  1138. },
  1139. "ventura": {
  1140. name: "Ventura",
  1141. parents: ["canine"]
  1142. },
  1143. "clouded-leopard": {
  1144. name: "Clouded Leopard",
  1145. parents: ["leopard"]
  1146. },
  1147. "argonian": {
  1148. name: "Argonian",
  1149. parents: ["lizard"]
  1150. },
  1151. "salazzle": {
  1152. name: "Salazzle",
  1153. parents: ["pokemon", "lizard"]
  1154. },
  1155. "je-stoff-drachen": {
  1156. name: "Je-Stoff Drachen",
  1157. parents: ["dragon"]
  1158. },
  1159. "finnish-spitz-dog": {
  1160. name: "Finnish Spitz Dog",
  1161. parents: ["dog"]
  1162. },
  1163. "gray-fox": {
  1164. name: "Gray Fox",
  1165. parents: ["fox"]
  1166. },
  1167. "opossum": {
  1168. name: "Opossum",
  1169. parents: ["mammal"]
  1170. },
  1171. "antelope": {
  1172. name: "Antelope",
  1173. parents: ["mammal"]
  1174. },
  1175. "weavile": {
  1176. name: "Weavile",
  1177. parents: ["pokemon"]
  1178. },
  1179. "pikachu": {
  1180. name: "Pikachu",
  1181. parents: ["pokemon", "mouse"]
  1182. },
  1183. "grovyle": {
  1184. name: "Grovyle",
  1185. parents: ["pokemon", "plant"]
  1186. },
  1187. "sthara": {
  1188. name: "Sthara",
  1189. parents: ["snow-leopard", "reptile"]
  1190. },
  1191. "star-warrior": {
  1192. name: "Star Warrior",
  1193. parents: ["magical"]
  1194. },
  1195. "dragonoid": {
  1196. name: "Dragonoid",
  1197. parents: ["dragon"]
  1198. },
  1199. "suicune": {
  1200. name: "Suicune",
  1201. parents: ["pokemon"]
  1202. },
  1203. "vole": {
  1204. name: "Vole",
  1205. parents: ["mammal"]
  1206. },
  1207. "blaziken": {
  1208. name: "Blaziken",
  1209. parents: ["pokemon", "avian"]
  1210. },
  1211. "buizel": {
  1212. name: "Buizel",
  1213. parents: ["pokemon", "fish"]
  1214. },
  1215. "floatzel": {
  1216. name: "Floatzel",
  1217. parents: ["pokemon", "fish"]
  1218. },
  1219. "umok": {
  1220. name: "Umok",
  1221. parents: ["avian"]
  1222. },
  1223. "sea-monster": {
  1224. name: "Sea Monster",
  1225. parents: ["monster", "fish"]
  1226. },
  1227. "egyptian-vulture": {
  1228. name: "Egyptian Vulture",
  1229. parents: ["avian"]
  1230. },
  1231. "doberman": {
  1232. name: "Doberman",
  1233. parents: ["dog"]
  1234. },
  1235. "zangoose": {
  1236. name: "Zangoose",
  1237. parents: ["pokemon", "mongoose"]
  1238. },
  1239. "mongoose": {
  1240. name: "Mongoose",
  1241. parents: ["mammal"]
  1242. },
  1243. "wickerbeast": {
  1244. name: "Wickerbeast",
  1245. parents: ["monster"]
  1246. },
  1247. "zenari": {
  1248. name: "Zenari",
  1249. parents: ["lizard"]
  1250. },
  1251. "plant": {
  1252. name: "Plant",
  1253. parents: []
  1254. },
  1255. "raskatox": {
  1256. name: "Raskatox",
  1257. parents: ["raccoon", "skunk", "cat", "fox"]
  1258. },
  1259. "mikromare": {
  1260. name: "mikromare",
  1261. parents: ["alien"]
  1262. },
  1263. "alien": {
  1264. name: "Alien",
  1265. parents: ["animal"]
  1266. },
  1267. "deity": {
  1268. name: "Deity",
  1269. parents: []
  1270. },
  1271. "skarlan": {
  1272. name: "Skarlan",
  1273. parents: ["slug", "dragon"]
  1274. },
  1275. "slug": {
  1276. name: "Slug",
  1277. parents: ["mollusk"]
  1278. },
  1279. "mollusk": {
  1280. name: "Mollusk",
  1281. parents: ["animal"]
  1282. },
  1283. "chimera": {
  1284. name: "Chimera",
  1285. parents: ["monster"]
  1286. },
  1287. "gestalt": {
  1288. name: "Gestalt",
  1289. parents: ["construct"]
  1290. },
  1291. "mimic": {
  1292. name: "Mimic",
  1293. parents: ["monster"]
  1294. },
  1295. "calico-rat": {
  1296. name: "Calico Rat",
  1297. parents: ["rat"]
  1298. },
  1299. "panda": {
  1300. name: "Panda",
  1301. parents: ["mammal"]
  1302. },
  1303. "oni": {
  1304. name: "Oni",
  1305. parents: ["monster"]
  1306. },
  1307. "pegasus": {
  1308. name: "Pegasus",
  1309. parents: ["horse"]
  1310. },
  1311. "vulpera": {
  1312. name: "Vulpera",
  1313. parents: ["fennec-fox"]
  1314. },
  1315. "ceratosaurus": {
  1316. name: "Ceratosaurus",
  1317. parents: ["dinosaur"]
  1318. },
  1319. "nykur": {
  1320. name: "Nykur",
  1321. parents: ["horse", "monster"]
  1322. },
  1323. "giraffe": {
  1324. name: "Giraffe",
  1325. parents: ["mammal"]
  1326. },
  1327. "tauren": {
  1328. name: "Tauren",
  1329. parents: ["cow"]
  1330. },
  1331. "draconi": {
  1332. name: "Draconi",
  1333. parents: ["alien", "cat", "cyborg"]
  1334. },
  1335. "dire-wolf": {
  1336. name: "Dire Wolf",
  1337. parents: ["wolf"]
  1338. },
  1339. "ferromorph": {
  1340. name: "Ferromorph",
  1341. parents: ["construct"]
  1342. },
  1343. "meowth": {
  1344. name: "Meowth",
  1345. parents: ["cat", "pokemon"]
  1346. },
  1347. "pavodragon": {
  1348. name: "Pavodragon",
  1349. parents: ["dragon"]
  1350. },
  1351. "aaltranae": {
  1352. name: "Aaltranae",
  1353. parents: ["dragon"]
  1354. },
  1355. "cyborg": {
  1356. name: "Cyborg",
  1357. parents: ["machine"]
  1358. },
  1359. "draptor": {
  1360. name: "Draptor",
  1361. parents: ["dragon"]
  1362. },
  1363. "candy": {
  1364. name: "Candy",
  1365. parents: []
  1366. },
  1367. "drenath": {
  1368. name: "Drenath",
  1369. parents: ["dragon", "snake", "rabbit"]
  1370. },
  1371. "coyju": {
  1372. name: "Coyju",
  1373. parents: ["coyote", "kaiju"]
  1374. },
  1375. "kaiju": {
  1376. name: "Kaiju",
  1377. parents: ["monster"]
  1378. },
  1379. "nickit": {
  1380. name: "Nickit",
  1381. parents: ["pokemon", "cat"]
  1382. },
  1383. "lopunny": {
  1384. name: "Lopunny",
  1385. parents: ["pokemon", "rabbit"]
  1386. },
  1387. "korean-jindo-dog": {
  1388. name: "Korean Jindo Dog",
  1389. parents: ["dog"]
  1390. },
  1391. "naga": {
  1392. name: "Naga",
  1393. parents: ["snake", "monster"]
  1394. },
  1395. "undead": {
  1396. name: "Undead",
  1397. parents: ["monster"]
  1398. },
  1399. "whale": {
  1400. name: "Whale",
  1401. parents: ["fish"]
  1402. },
  1403. "gelato-bee": {
  1404. name: "Gelato Bee",
  1405. parents: ["bee"]
  1406. },
  1407. "bee": {
  1408. name: "Bee",
  1409. parents: ["insect"]
  1410. },
  1411. "gardevoir": {
  1412. name: "Gardevoir",
  1413. parents: ["pokemon"]
  1414. },
  1415. "ant": {
  1416. name: "Ant",
  1417. parents: ["insect"]
  1418. },
  1419. "frog": {
  1420. name: "Frog",
  1421. parents: ["amphibian"]
  1422. },
  1423. "amphibian": {
  1424. name: "Amphibian",
  1425. parents: ["animal"]
  1426. },
  1427. "pangolin": {
  1428. name: "Pangolin",
  1429. parents: ["mammal"]
  1430. },
  1431. "uragi'viidorn": {
  1432. name: "Uragi'viidorn",
  1433. parents: ["avian", "bear"]
  1434. },
  1435. "gryphdelphais": {
  1436. name: "Gryphdelphais",
  1437. parents: ["dolphin", "gryphon"]
  1438. },
  1439. "plush": {
  1440. name: "Plush",
  1441. parents: ["construct"]
  1442. },
  1443. "draiger": {
  1444. name: "Draiger",
  1445. parents: ["dragon","tiger"]
  1446. },
  1447. "foxsky": {
  1448. name: "Foxsky",
  1449. parents: ["fox", "husky"]
  1450. },
  1451. "umbreon": {
  1452. name: "Umbreon",
  1453. parents: ["eeveelution"]
  1454. },
  1455. "slime-dragon": {
  1456. name: "Slime Dragon",
  1457. parents: ["dragon", "goo"]
  1458. },
  1459. "enderman": {
  1460. name: "Enderman",
  1461. parents: ["monster"]
  1462. },
  1463. "gremlin": {
  1464. name: "Gremlin",
  1465. parents: ["monster"]
  1466. },
  1467. "dragonsune": {
  1468. name: "Dragonsune",
  1469. parents: ["dragon", "kitsune"]
  1470. },
  1471. "ghost": {
  1472. name: "Ghost",
  1473. parents: ["supernatural"]
  1474. },
  1475. "false-vampire-bat": {
  1476. name: "False Vampire Bat",
  1477. parents: ["bat"]
  1478. },
  1479. "succubus": {
  1480. name: "Succubus",
  1481. parents: ["demon"]
  1482. },
  1483. "mia": {
  1484. name: "Mia",
  1485. parents: ["canine"]
  1486. },
  1487. "rainbow": {
  1488. name: "Rainbow",
  1489. parents: ["monster"]
  1490. },
  1491. "solgaleo": {
  1492. name: "Solgaleo",
  1493. parents: ["pokemon"]
  1494. },
  1495. "lucent-nargacuga": {
  1496. name: "Lucent Nargacuga",
  1497. parents: ["nargacuga"]
  1498. },
  1499. "monster-hunter": {
  1500. name: "Monster Hunter",
  1501. parents: ["monster"]
  1502. },
  1503. "leviathan": {
  1504. "name": "Leviathan",
  1505. "url": "sea-monster"
  1506. },
  1507. "bull": {
  1508. name: "Bull",
  1509. parents: ["mammal"]
  1510. },
  1511. "tanuki": {
  1512. name: "Tanuki",
  1513. parents: ["monster"]
  1514. },
  1515. "chakat": {
  1516. name: "Chakat",
  1517. parents: ["cat"]
  1518. },
  1519. "hydra": {
  1520. name: "Hydra",
  1521. parents: ["monster"]
  1522. },
  1523. "zigzagoon": {
  1524. name: "Zigzagoon",
  1525. parents: ["raccoon", "pokemon"]
  1526. },
  1527. "vulture": {
  1528. name: "Vulture",
  1529. parents: ["avian"]
  1530. },
  1531. "eastern-dragon": {
  1532. name: "Eastern Dragon",
  1533. parents: ["dragon"]
  1534. },
  1535. "gryffon": {
  1536. name: "Gryffon",
  1537. parents: ["phoenix", "red-panda"]
  1538. },
  1539. "amtsvane": {
  1540. name: "Amtsvane",
  1541. parents: ["reptile"]
  1542. },
  1543. "kigavi": {
  1544. name: "Kigavi",
  1545. parents: ["avian"]
  1546. },
  1547. "turian": {
  1548. name: "Turian",
  1549. parents: ["avian"]
  1550. },
  1551. "zeraora": {
  1552. name: "Zeraora",
  1553. parents: ["pokemon", "cat"]
  1554. },
  1555. "sandshrew": {
  1556. name: "Sandshrew",
  1557. parents: ["pokemon", "pangolin"]
  1558. },
  1559. "valais-blacknose-sheep": {
  1560. name: "Valais Blacknose Sheep",
  1561. parents: ["sheep"]
  1562. },
  1563. "novaleit": {
  1564. name: "Novaleit",
  1565. parents: ["mammal"]
  1566. },
  1567. "dunnoh": {
  1568. name: "Dunnoh",
  1569. parents: ["mammal"]
  1570. },
  1571. "lunaral-dragon": {
  1572. name: "Lunaral Dragon",
  1573. parents: ["dragon"]
  1574. },
  1575. "arctic-wolf": {
  1576. name: "Arctic Wolf",
  1577. parents: ["wolf"]
  1578. },
  1579. "donkey": {
  1580. name: "Donkey",
  1581. parents: ["horse"]
  1582. },
  1583. "chinchilla": {
  1584. name: "Chinchilla",
  1585. parents: ["rodent"]
  1586. },
  1587. "felkin": {
  1588. name: "Felkin",
  1589. parents: ["dragon"]
  1590. },
  1591. "tykeriel": {
  1592. name: "Tykeriel",
  1593. parents: ["avian"]
  1594. },
  1595. "folf": {
  1596. name: "Folf",
  1597. parents: ["fox", "wolf"]
  1598. },
  1599. "pooltoy": {
  1600. name: "Pooltoy",
  1601. parents: ["construct"]
  1602. },
  1603. "demi": {
  1604. name: "Demi",
  1605. parents: ["human"]
  1606. },
  1607. "stegosaurus": {
  1608. name: "Stegosaurus",
  1609. parents: ["dinosaur"]
  1610. },
  1611. "computer-virus": {
  1612. name: "Computer Virus",
  1613. parents: ["program"]
  1614. },
  1615. "program": {
  1616. name: "Program",
  1617. parents: ["construct"]
  1618. },
  1619. "space-springhare": {
  1620. name: "Space Springhare",
  1621. parents: ["hare"]
  1622. },
  1623. "river-drake": {
  1624. name: "River Drake",
  1625. parents: ["dragon"]
  1626. },
  1627. "djinn": {
  1628. "name": "Djinn",
  1629. "url": "supernatural"
  1630. },
  1631. "supernatural": {
  1632. name: "Supernatural",
  1633. parents: ["monster"]
  1634. },
  1635. "grasshopper-mouse": {
  1636. name: "Grasshopper Mouse",
  1637. parents: ["mouse"]
  1638. },
  1639. "somali-cat": {
  1640. name: "Somali Cat",
  1641. parents: ["cat"]
  1642. },
  1643. "minccino": {
  1644. name: "Minccino",
  1645. parents: ["pokemon", "chinchilla"]
  1646. },
  1647. "pine-marten": {
  1648. name: "Pine Marten",
  1649. parents: ["marten"]
  1650. },
  1651. "marten": {
  1652. name: "Marten",
  1653. parents: ["mustelid"]
  1654. },
  1655. "mustelid": {
  1656. name: "Mustelid",
  1657. parents: ["mammal"]
  1658. },
  1659. "caribou": {
  1660. name: "Caribou",
  1661. parents: ["deer"]
  1662. },
  1663. "gnoll": {
  1664. name: "Gnoll",
  1665. parents: ["hyena", "monster"]
  1666. },
  1667. "peacekeeper": {
  1668. name: "Peacekeeper",
  1669. parents: ["human"]
  1670. },
  1671. "river-otter": {
  1672. name: "River Otter",
  1673. parents: ["otter"]
  1674. },
  1675. "dhole": {
  1676. name: "Dhole",
  1677. parents: ["canine"]
  1678. },
  1679. "springbok": {
  1680. name: "Springbok",
  1681. parents: ["antelope"]
  1682. },
  1683. "marsupial": {
  1684. name: "Marsupial",
  1685. parents: ["mammal"]
  1686. },
  1687. "townsend-big-eared-bat": {
  1688. name: "Townsend Big-eared Bat",
  1689. parents: ["bat"]
  1690. },
  1691. "squirrel": {
  1692. name: "Squirrel",
  1693. parents: ["rodent"]
  1694. },
  1695. "magpie": {
  1696. name: "Magpie",
  1697. parents: ["corvid"]
  1698. },
  1699. "civet": {
  1700. name: "Civet",
  1701. parents: ["feliform"]
  1702. },
  1703. "feliform": {
  1704. name: "Feliform",
  1705. parents: ["mammal"]
  1706. },
  1707. "tiefling": {
  1708. name: "Tiefling",
  1709. parents: ["devil"]
  1710. },
  1711. "devil": {
  1712. name: "Devil",
  1713. parents: ["supernatural"]
  1714. },
  1715. "sika-deer": {
  1716. name: "Sika Deer",
  1717. parents: ["deer"]
  1718. },
  1719. "vaporeon": {
  1720. name: "Vaporeon",
  1721. parents: ["eeveelution"]
  1722. },
  1723. "leafeon": {
  1724. name: "Leafeon",
  1725. parents: ["eeveelution"]
  1726. },
  1727. "jolteon": {
  1728. name: "Jolteon",
  1729. parents: ["eeveelution"]
  1730. },
  1731. "spireborn": {
  1732. name: "Spireborn",
  1733. parents: ["zorgoia"]
  1734. },
  1735. "vampire": {
  1736. name: "Vampire",
  1737. parents: ["monster"]
  1738. },
  1739. "extraplanar": {
  1740. name: "Extraplanar",
  1741. parents: []
  1742. },
  1743. "goo": {
  1744. name: "Goo",
  1745. parents: []
  1746. },
  1747. "skink": {
  1748. name: "Skink",
  1749. parents: ["lizard"]
  1750. },
  1751. "bat-eared-fox": {
  1752. name: "Bat-eared Fox",
  1753. parents: ["fox"]
  1754. },
  1755. "belted-kingfisher": {
  1756. name: "Belted Kingfisher",
  1757. parents: ["avian"]
  1758. },
  1759. "omnifalcon": {
  1760. name: "Omnifalcon",
  1761. parents: ["gryphon", "falcon", "harpy-eagle"]
  1762. },
  1763. "falcon": {
  1764. name: "Falcon",
  1765. parents: ["bird-of-prey"]
  1766. },
  1767. "avali": {
  1768. name: "Avali",
  1769. parents: ["avian", "alien"]
  1770. },
  1771. "arctic-fox": {
  1772. name: "Arctic Fox",
  1773. parents: ["fox"]
  1774. },
  1775. "snow-tiger": {
  1776. name: "Snow Tiger",
  1777. parents: ["tiger"]
  1778. },
  1779. "marble-fox": {
  1780. name: "Marble Fox",
  1781. parents: ["fox"]
  1782. },
  1783. "king-wickerbeast": {
  1784. name: "King Wickerbeast",
  1785. parents: ["wickerbeast"]
  1786. },
  1787. "wickerbeast": {
  1788. name: "Wickerbeast",
  1789. parents: ["mammal"]
  1790. },
  1791. "european-polecat": {
  1792. name: "European Polecat",
  1793. parents: ["mustelid"]
  1794. },
  1795. "teshari": {
  1796. name: "Teshari",
  1797. parents: ["avian", "raptor"]
  1798. },
  1799. "alicorn": {
  1800. name: "Alicorn",
  1801. parents: ["horse"]
  1802. },
  1803. "atlas-moth": {
  1804. name: "Atlas Moth",
  1805. parents: ["moth"]
  1806. },
  1807. "owlbear": {
  1808. name: "Owlbear",
  1809. parents: ["owl", "bear", "monster"]
  1810. },
  1811. "owl": {
  1812. name: "Owl",
  1813. parents: ["avian"]
  1814. },
  1815. "silvertongue": {
  1816. name: "Silvertongue",
  1817. parents: ["reptile"]
  1818. },
  1819. "ahuizotl": {
  1820. name: "Ahuizotl",
  1821. parents: ["monster"]
  1822. },
  1823. "ender-dragon": {
  1824. name: "Ender Dragon",
  1825. parents: ["dragon"]
  1826. },
  1827. "bruhathkayosaurus": {
  1828. name: "Bruhathkayosaurus",
  1829. parents: ["sauropod"]
  1830. },
  1831. "sauropod": {
  1832. name: "Sauropod",
  1833. parents: ["dinosaur"]
  1834. },
  1835. "black-sable-antelope": {
  1836. name: "Black Sable Antelope",
  1837. parents: ["antelope"]
  1838. },
  1839. "slime": {
  1840. name: "Slime",
  1841. parents: ["goo"]
  1842. },
  1843. "utahraptor": {
  1844. name: "Utahraptor",
  1845. parents: ["raptor"]
  1846. },
  1847. "indian-giant-squirrel": {
  1848. name: "Indian Giant Squirrel",
  1849. parents: ["squirrel"]
  1850. },
  1851. "golden-retriever": {
  1852. name: "Golden Retriever",
  1853. parents: ["dog"]
  1854. },
  1855. "triceratops": {
  1856. name: "Triceratops",
  1857. parents: ["dinosaur"]
  1858. },
  1859. "drake": {
  1860. name: "Drake",
  1861. parents: ["dragon"]
  1862. },
  1863. "okapi": {
  1864. name: "Okapi",
  1865. parents: ["giraffe"]
  1866. },
  1867. "arctic-hare": {
  1868. name: "Arctic Hare",
  1869. parents: ["hare"]
  1870. },
  1871. "hare": {
  1872. name: "Hare",
  1873. parents: ["leporidae"]
  1874. },
  1875. "leporidae": {
  1876. name: "Leporidae",
  1877. parents: ["mammal"]
  1878. },
  1879. "leopard-gecko": {
  1880. name: "Leopard Gecko",
  1881. parents: ["gecko"]
  1882. },
  1883. "dreamspawn": {
  1884. name: "Dreamspawn",
  1885. parents: ["illusion"]
  1886. },
  1887. "illusion": {
  1888. name: "Illusion",
  1889. parents: []
  1890. },
  1891. "purrloin": {
  1892. name: "Purrloin",
  1893. parents: ["cat", "pokemon"]
  1894. },
  1895. "noivern": {
  1896. name: "Noivern",
  1897. parents: ["bat", "dragon", "pokemon"]
  1898. },
  1899. "hedgehog": {
  1900. name: "Hedgehog",
  1901. parents: ["mammal"]
  1902. },
  1903. "liger": {
  1904. name: "Liger",
  1905. parents: ["lion", "tiger", "hybrid"]
  1906. },
  1907. "hybrid": {
  1908. name: "Hybrid",
  1909. parents: []
  1910. },
  1911. "drider": {
  1912. name: "Drider",
  1913. parents: ["spider"]
  1914. },
  1915. "sabresune": {
  1916. name: "Sabresune",
  1917. parents: ["kitsune", "sabertooth-tiger"]
  1918. },
  1919. "ditto": {
  1920. name: "Ditto",
  1921. parents: ["pokemon", "goo"]
  1922. },
  1923. "amogus": {
  1924. name: "Amogus",
  1925. parents: ["deity"]
  1926. },
  1927. "ferret": {
  1928. name: "Ferret",
  1929. parents: ["mustelid"]
  1930. },
  1931. "guinea-pig": {
  1932. name: "Guinea Pig",
  1933. parents: ["rodent"]
  1934. },
  1935. "viper": {
  1936. name: "Viper",
  1937. parents: ["snake"]
  1938. },
  1939. "cinderace": {
  1940. name: "Cinderace",
  1941. parents: ["pokemon", "rabbit"]
  1942. },
  1943. "caudin": {
  1944. name: "Caudin",
  1945. parents: ["dragon"]
  1946. },
  1947. "red-winged-blackbird": {
  1948. name: "Red-Winged Blackbird",
  1949. parents: ["avian"]
  1950. },
  1951. "hooded-wheater": {
  1952. name: "Hooded Wheater",
  1953. parents: ["passerine"]
  1954. },
  1955. "passerine": {
  1956. name: "Passerine",
  1957. parents: ["avian"]
  1958. },
  1959. "gieeg": {
  1960. name: "Gieeg",
  1961. parents: ["alien"]
  1962. },
  1963. "ringtail": {
  1964. name: "Ringtail",
  1965. parents: ["raccoon"]
  1966. },
  1967. "hisuian-zoroark": {
  1968. name: "Hisuian Zoroark",
  1969. parents: ["zoroark", "hisuian"]
  1970. },
  1971. "hisuian": {
  1972. name: "Hisuian",
  1973. parents: ["regional-pokemon"]
  1974. },
  1975. "regional-pokemon": {
  1976. name: "Regional Pokemon",
  1977. parents: ["pokemon"]
  1978. },
  1979. "cybeast": {
  1980. name: "Cybeast",
  1981. parents: ["computer-virus"]
  1982. },
  1983. "javira-dragon": {
  1984. name: "Javira Dragon",
  1985. parents: ["dragon"]
  1986. },
  1987. "koopew": {
  1988. name: "Koopew",
  1989. parents: ["dragon", "alien"]
  1990. },
  1991. "nevrean": {
  1992. name: "Nevrean",
  1993. parents: ["avian", "vilous"]
  1994. },
  1995. "vilous": {
  1996. name: "Vilous Species",
  1997. parents: []
  1998. },
  1999. "titanoboa": {
  2000. name: "Titanoboa",
  2001. parents: ["snake"]
  2002. },
  2003. "raichu": {
  2004. name: "Raichu",
  2005. parents: ["pikachu"]
  2006. },
  2007. "taur": {
  2008. name: "Taur",
  2009. parents: []
  2010. },
  2011. "continental-giant-rabbit": {
  2012. name: "Continental Giant Rabbit",
  2013. parents: ["rabbit"]
  2014. },
  2015. "demigryph": {
  2016. name: "Demigryph",
  2017. parents: ["lion", "eagle"]
  2018. },
  2019. "bald-eagle": {
  2020. name: "Bald Eagle",
  2021. parents: ["eagle"]
  2022. },
  2023. "kestrel": {
  2024. name: "Kestrel",
  2025. parents: ["falcon"]
  2026. },
  2027. "mockingbird": {
  2028. name: "Mockingbird",
  2029. parents: ["songbird"]
  2030. },
  2031. "songbird": {
  2032. name: "Songbird",
  2033. parents: ["avian"]
  2034. },
  2035. "bird-of-prey": {
  2036. name: "Bird of Prey",
  2037. parents: ["avian"]
  2038. },
  2039. "marowak": {
  2040. name: "Marowak",
  2041. parents: ["pokemon", "reptile"]
  2042. },
  2043. "joltik": {
  2044. name: "Joltik",
  2045. parents: ["pokemon", "insect"]
  2046. },
  2047. "mink": {
  2048. name: "Mink",
  2049. parents: ["mustelid"]
  2050. },
  2051. "sandcat": {
  2052. name: "Sandcat",
  2053. parents: ["cat"]
  2054. },
  2055. "hrothgar": {
  2056. name: "Hrothgar",
  2057. parents: ["cat"]
  2058. },
  2059. "garchomp": {
  2060. name: "Garchomp",
  2061. parents: ["dragon", "pokemon"]
  2062. },
  2063. "nargacuga": {
  2064. name: "Nargacuga",
  2065. parents: ["monster-hunter"]
  2066. },
  2067. "sable": {
  2068. name: "Sable",
  2069. parents: ["marten"]
  2070. },
  2071. "deino": {
  2072. name: "Deino",
  2073. parents: ["pokemon", "dinosaur"]
  2074. },
  2075. "housecat": {
  2076. name: "Housecat",
  2077. parents: ["cat"]
  2078. },
  2079. "bombay-cat": {
  2080. name: "Bombay Cat",
  2081. parents: ["housecat"]
  2082. },
  2083. "maine-coon": {
  2084. name: "Maine Coon",
  2085. parents: ["housecat"]
  2086. },
  2087. "coelacanth": {
  2088. name: "Coelacanth",
  2089. parents: ["fish"]
  2090. },
  2091. "silvally": {
  2092. name: "Silvally",
  2093. parents: ["legendary-pokemon"]
  2094. },
  2095. "legendary-pokemon": {
  2096. name: "Legendary Pokemon",
  2097. parents: ["pokemon"]
  2098. },
  2099. "great-maccao": {
  2100. name: "Great Maccao",
  2101. parents: ["monster-hunter", "raptor"]
  2102. },
  2103. "shapeshifter": {
  2104. name: "shapeshifter",
  2105. parents: []
  2106. },
  2107. "obstagoon": {
  2108. name: "Obstagoon",
  2109. parents: ["zigzagoon"]
  2110. },
  2111. "thomsons-gazelle": {
  2112. name: "Thomsons Gazelle",
  2113. parents: ["gazelle"]
  2114. },
  2115. "gazelle": {
  2116. name: "Gazelle",
  2117. parents: ["antelope"]
  2118. },
  2119. "monkey": {
  2120. name: "Monkey",
  2121. parents: ["mammal"]
  2122. },
  2123. "serval": {
  2124. name: "Serval",
  2125. parents: ["cat"]
  2126. },
  2127. "swampert": {
  2128. name: "Swampert",
  2129. parents: ["pokemon"]
  2130. },
  2131. "red-fox": {
  2132. name: "Red Fox",
  2133. parents: ["fox"]
  2134. },
  2135. }
  2136. //species
  2137. function getSpeciesInfo(speciesList) {
  2138. let result = new Set();
  2139. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2140. result.add(entry)
  2141. });
  2142. return Array.from(result);
  2143. };
  2144. function getSpeciesInfoHelper(species) {
  2145. if (!speciesData[species]) {
  2146. console.warn(species + " doesn't exist");
  2147. return [];
  2148. }
  2149. if (speciesData[species].parents) {
  2150. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2151. } else {
  2152. return [species];
  2153. }
  2154. }
  2155. characterMakers.push(() => makeCharacter(
  2156. {
  2157. name: "Fen",
  2158. species: ["crux"],
  2159. description: {
  2160. title: "Bio",
  2161. text: "Very furry. Sheds on everything."
  2162. },
  2163. tags: [
  2164. "anthro",
  2165. "goo"
  2166. ]
  2167. },
  2168. {
  2169. front: {
  2170. height: math.unit(12, "feet"),
  2171. weight: math.unit(2400, "lb"),
  2172. preyCapacity: math.unit(1, "people"),
  2173. name: "Front",
  2174. image: {
  2175. source: "./media/characters/fen/front.svg",
  2176. extra: 1804/1562,
  2177. bottom: 205/2009
  2178. },
  2179. extraAttributes: {
  2180. pawSize: {
  2181. name: "Paw Size",
  2182. power: 2,
  2183. type: "area",
  2184. base: math.unit(0.35, "m^2")
  2185. }
  2186. }
  2187. },
  2188. diving: {
  2189. height: math.unit(4.9, "meters"),
  2190. weight: math.unit(2400, "lb"),
  2191. name: "Diving",
  2192. image: {
  2193. source: "./media/characters/fen/diving.svg"
  2194. }
  2195. },
  2196. sleeby: {
  2197. height: math.unit(3.45, "meters"),
  2198. weight: math.unit(2400, "lb"),
  2199. name: "Sleeby",
  2200. image: {
  2201. source: "./media/characters/fen/sleeby.svg"
  2202. }
  2203. },
  2204. goo: {
  2205. height: math.unit(12, "feet"),
  2206. weight: math.unit(3600, "lb"),
  2207. volume: math.unit(1000, "liters"),
  2208. preyCapacity: math.unit(6, "people"),
  2209. name: "Goo",
  2210. image: {
  2211. source: "./media/characters/fen/goo.svg",
  2212. extra: 1307/1071,
  2213. bottom: 134/1441
  2214. }
  2215. },
  2216. gooNsfw: {
  2217. height: math.unit(12, "feet"),
  2218. weight: math.unit(3750, "lb"),
  2219. volume: math.unit(1000, "liters"),
  2220. preyCapacity: math.unit(6, "people"),
  2221. name: "Goo (NSFW)",
  2222. image: {
  2223. source: "./media/characters/fen/goo-nsfw.svg",
  2224. extra: 1875/1734,
  2225. bottom: 122/1997
  2226. }
  2227. },
  2228. maw: {
  2229. height: math.unit(5.03, "feet"),
  2230. name: "Maw",
  2231. image: {
  2232. source: "./media/characters/fen/maw.svg"
  2233. }
  2234. },
  2235. gooCeiling: {
  2236. height: math.unit(6.6, "feet"),
  2237. weight: math.unit(3000, "lb"),
  2238. volume: math.unit(1000, "liters"),
  2239. preyCapacity: math.unit(6, "people"),
  2240. name: "Goo (Ceiling)",
  2241. image: {
  2242. source: "./media/characters/fen/goo-ceiling.svg"
  2243. }
  2244. },
  2245. paw: {
  2246. height: math.unit(3.77, "feet"),
  2247. name: "Paw",
  2248. image: {
  2249. source: "./media/characters/fen/paw.svg"
  2250. },
  2251. extraAttributes: {
  2252. "toeSize": {
  2253. name: "Toe Size",
  2254. power: 2,
  2255. type: "area",
  2256. base: math.unit(0.02875, "m^2")
  2257. },
  2258. "pawSize": {
  2259. name: "Paw Size",
  2260. power: 2,
  2261. type: "area",
  2262. base: math.unit(0.378, "m^2")
  2263. },
  2264. }
  2265. },
  2266. tail: {
  2267. height: math.unit(12.1, "feet"),
  2268. name: "Tail",
  2269. image: {
  2270. source: "./media/characters/fen/tail.svg"
  2271. }
  2272. },
  2273. tailFull: {
  2274. height: math.unit(12.1, "feet"),
  2275. name: "Full Tail",
  2276. image: {
  2277. source: "./media/characters/fen/tail-full.svg"
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(12, "feet"),
  2282. weight: math.unit(2400, "lb"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/fen/back.svg",
  2286. },
  2287. info: {
  2288. description: {
  2289. mode: "append",
  2290. text: "\n\nHe is not currently looking at you."
  2291. }
  2292. }
  2293. },
  2294. full: {
  2295. height: math.unit(1.85, "meter"),
  2296. weight: math.unit(3200, "lb"),
  2297. name: "Full",
  2298. image: {
  2299. source: "./media/characters/fen/full.svg",
  2300. extra: 1133/859,
  2301. bottom: 145/1278
  2302. },
  2303. info: {
  2304. description: {
  2305. mode: "append",
  2306. text: "\n\nMunch."
  2307. }
  2308. }
  2309. },
  2310. gooLounging: {
  2311. height: math.unit(4.53, "feet"),
  2312. weight: math.unit(3000, "lb"),
  2313. preyCapacity: math.unit(6, "people"),
  2314. name: "Goo (Lounging)",
  2315. image: {
  2316. source: "./media/characters/fen/goo-lounging.svg",
  2317. bottom: 116 / 613
  2318. }
  2319. },
  2320. lounging: {
  2321. height: math.unit(10.52, "feet"),
  2322. weight: math.unit(2400, "lb"),
  2323. name: "Lounging",
  2324. image: {
  2325. source: "./media/characters/fen/lounging.svg"
  2326. }
  2327. },
  2328. },
  2329. [
  2330. {
  2331. name: "Small",
  2332. height: math.unit(2.2428, "meter")
  2333. },
  2334. {
  2335. name: "Normal",
  2336. height: math.unit(12, "feet"),
  2337. default: true,
  2338. },
  2339. {
  2340. name: "Big",
  2341. height: math.unit(20, "feet")
  2342. },
  2343. {
  2344. name: "Minimacro",
  2345. height: math.unit(40, "feet"),
  2346. info: {
  2347. description: {
  2348. mode: "append",
  2349. text: "\n\nTOO DAMN BIG"
  2350. }
  2351. }
  2352. },
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(100, "feet"),
  2356. info: {
  2357. description: {
  2358. mode: "append",
  2359. text: "\n\nTOO DAMN BIG"
  2360. }
  2361. }
  2362. },
  2363. {
  2364. name: "Megamacro",
  2365. height: math.unit(2, "miles")
  2366. },
  2367. {
  2368. name: "Gigamacro",
  2369. height: math.unit(10, "earths")
  2370. },
  2371. ]
  2372. ))
  2373. characterMakers.push(() => makeCharacter(
  2374. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2375. {
  2376. front: {
  2377. height: math.unit(183, "cm"),
  2378. weight: math.unit(80, "kg"),
  2379. name: "Front",
  2380. image: {
  2381. source: "./media/characters/sofia-fluttertail/front.svg",
  2382. bottom: 0.01,
  2383. extra: 2154 / 2081
  2384. }
  2385. },
  2386. frontAlt: {
  2387. height: math.unit(183, "cm"),
  2388. weight: math.unit(80, "kg"),
  2389. name: "Front (alt)",
  2390. image: {
  2391. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(183, "cm"),
  2396. weight: math.unit(80, "kg"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/sofia-fluttertail/back.svg"
  2400. }
  2401. },
  2402. kneeling: {
  2403. height: math.unit(125, "cm"),
  2404. weight: math.unit(80, "kg"),
  2405. name: "Kneeling",
  2406. image: {
  2407. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2408. extra: 1033 / 977,
  2409. bottom: 23.7 / 1057
  2410. }
  2411. },
  2412. maw: {
  2413. height: math.unit(183 / 5, "cm"),
  2414. name: "Maw",
  2415. image: {
  2416. source: "./media/characters/sofia-fluttertail/maw.svg"
  2417. }
  2418. },
  2419. mawcloseup: {
  2420. height: math.unit(183 / 5 * 0.41, "cm"),
  2421. name: "Maw (Closeup)",
  2422. image: {
  2423. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2424. }
  2425. },
  2426. paws: {
  2427. height: math.unit(1.17, "feet"),
  2428. name: "Paws",
  2429. image: {
  2430. source: "./media/characters/sofia-fluttertail/paws.svg",
  2431. extra: 851 / 851,
  2432. bottom: 17 / 868
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(1.83, "meter")
  2440. },
  2441. {
  2442. name: "Size Thief",
  2443. height: math.unit(18, "feet")
  2444. },
  2445. {
  2446. name: "50 Foot Collie",
  2447. height: math.unit(50, "feet")
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(96, "feet"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Megamerger",
  2456. height: math.unit(650, "feet")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(7, "feet"),
  2465. weight: math.unit(100, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/march/front.svg",
  2469. extra: 1992/1851,
  2470. bottom: 39/2031
  2471. }
  2472. },
  2473. foot: {
  2474. height: math.unit(0.9, "feet"),
  2475. name: "Foot",
  2476. image: {
  2477. source: "./media/characters/march/foot.svg"
  2478. }
  2479. },
  2480. },
  2481. [
  2482. {
  2483. name: "Normal",
  2484. height: math.unit(7.9, "feet")
  2485. },
  2486. {
  2487. name: "Macro",
  2488. height: math.unit(220, "meters")
  2489. },
  2490. {
  2491. name: "Megamacro",
  2492. height: math.unit(2.98, "km"),
  2493. default: true
  2494. },
  2495. {
  2496. name: "Gigamacro",
  2497. height: math.unit(15963, "km")
  2498. },
  2499. {
  2500. name: "Teramacro",
  2501. height: math.unit(2980000000, "km")
  2502. },
  2503. {
  2504. name: "Examacro",
  2505. height: math.unit(250, "parsecs")
  2506. },
  2507. ]
  2508. ))
  2509. characterMakers.push(() => makeCharacter(
  2510. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2511. {
  2512. front: {
  2513. height: math.unit(6, "feet"),
  2514. weight: math.unit(60, "kg"),
  2515. name: "Front",
  2516. image: {
  2517. source: "./media/characters/noir/front.svg",
  2518. extra: 1,
  2519. bottom: 0.032
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(6.6, "feet")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(500, "feet")
  2531. },
  2532. {
  2533. name: "Megamacro",
  2534. height: math.unit(2.5, "km"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(22500, "km")
  2540. },
  2541. {
  2542. name: "Teramacro",
  2543. height: math.unit(2500000000, "km")
  2544. },
  2545. {
  2546. name: "Examacro",
  2547. height: math.unit(200, "parsecs")
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(7, "feet"),
  2556. weight: math.unit(100, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/okuri/front.svg",
  2560. extra: 739/665,
  2561. bottom: 39/778
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(7, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/okuri/back.svg",
  2570. extra: 734/653,
  2571. bottom: 13/747
  2572. }
  2573. },
  2574. sitting: {
  2575. height: math.unit(2.95, "feet"),
  2576. weight: math.unit(100, "kg"),
  2577. name: "Sitting",
  2578. image: {
  2579. source: "./media/characters/okuri/sitting.svg",
  2580. extra: 370/318,
  2581. bottom: 99/469
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Smallest",
  2588. height: math.unit(5 + 2/12, "feet")
  2589. },
  2590. {
  2591. name: "Smaller",
  2592. height: math.unit(300, "feet")
  2593. },
  2594. {
  2595. name: "Small",
  2596. height: math.unit(1000, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(1, "mile")
  2601. },
  2602. {
  2603. name: "Mega Macro (Small)",
  2604. height: math.unit(20, "km")
  2605. },
  2606. {
  2607. name: "Mega Macro (Large)",
  2608. height: math.unit(600, "km")
  2609. },
  2610. {
  2611. name: "Giga Macro",
  2612. height: math.unit(10000, "km")
  2613. },
  2614. {
  2615. name: "Normal",
  2616. height: math.unit(577560, "km"),
  2617. default: true
  2618. },
  2619. {
  2620. name: "Large",
  2621. height: math.unit(4, "galaxies")
  2622. },
  2623. {
  2624. name: "Largest",
  2625. height: math.unit(15, "multiverses")
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(7, "feet"),
  2634. weight: math.unit(100, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/manny/front.svg",
  2638. extra: 1,
  2639. bottom: 0.06
  2640. }
  2641. },
  2642. back: {
  2643. height: math.unit(7, "feet"),
  2644. weight: math.unit(100, "kg"),
  2645. name: "Back",
  2646. image: {
  2647. source: "./media/characters/manny/back.svg",
  2648. extra: 1,
  2649. bottom: 0.014
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Normal",
  2656. height: math.unit(7, "feet"),
  2657. },
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(78, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Macro+",
  2665. height: math.unit(300, "meters")
  2666. },
  2667. {
  2668. name: "Macro++",
  2669. height: math.unit(2400, "meters")
  2670. },
  2671. {
  2672. name: "Megamacro",
  2673. height: math.unit(5167, "meters")
  2674. },
  2675. {
  2676. name: "Gigamacro",
  2677. height: math.unit(41769, "miles")
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(7, "feet"),
  2686. weight: math.unit(100, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/adake/front-1.svg"
  2690. }
  2691. },
  2692. frontAlt: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Front (Alt)",
  2696. image: {
  2697. source: "./media/characters/adake/front-2.svg",
  2698. extra: 1,
  2699. bottom: 0.01
  2700. }
  2701. },
  2702. back: {
  2703. height: math.unit(7, "feet"),
  2704. weight: math.unit(100, "kg"),
  2705. name: "Back",
  2706. image: {
  2707. source: "./media/characters/adake/back.svg",
  2708. }
  2709. },
  2710. kneel: {
  2711. height: math.unit(5.385, "feet"),
  2712. weight: math.unit(100, "kg"),
  2713. name: "Kneeling",
  2714. image: {
  2715. source: "./media/characters/adake/kneel.svg",
  2716. bottom: 0.052
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Normal",
  2723. height: math.unit(7, "feet"),
  2724. },
  2725. {
  2726. name: "Macro",
  2727. height: math.unit(78, "feet"),
  2728. default: true
  2729. },
  2730. {
  2731. name: "Macro+",
  2732. height: math.unit(300, "meters")
  2733. },
  2734. {
  2735. name: "Macro++",
  2736. height: math.unit(2400, "meters")
  2737. },
  2738. {
  2739. name: "Megamacro",
  2740. height: math.unit(5167, "meters")
  2741. },
  2742. {
  2743. name: "Gigamacro",
  2744. height: math.unit(41769, "miles")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(1.65, "meters"),
  2753. weight: math.unit(50, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/elijah/front.svg",
  2757. extra: 858 / 830,
  2758. bottom: 95.5 / 953.8559
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(1.65, "meters"),
  2763. weight: math.unit(50, "kg"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/elijah/back.svg",
  2767. extra: 895 / 850,
  2768. bottom: 5.3 / 897.956
  2769. }
  2770. },
  2771. frontNsfw: {
  2772. height: math.unit(1.65, "meters"),
  2773. weight: math.unit(50, "kg"),
  2774. name: "Front (NSFW)",
  2775. image: {
  2776. source: "./media/characters/elijah/front-nsfw.svg",
  2777. extra: 858 / 830,
  2778. bottom: 95.5 / 953.8559
  2779. }
  2780. },
  2781. backNsfw: {
  2782. height: math.unit(1.65, "meters"),
  2783. weight: math.unit(50, "kg"),
  2784. name: "Back (NSFW)",
  2785. image: {
  2786. source: "./media/characters/elijah/back-nsfw.svg",
  2787. extra: 895 / 850,
  2788. bottom: 5.3 / 897.956
  2789. }
  2790. },
  2791. dick: {
  2792. height: math.unit(1, "feet"),
  2793. name: "Dick",
  2794. image: {
  2795. source: "./media/characters/elijah/dick.svg"
  2796. }
  2797. },
  2798. beakOpen: {
  2799. height: math.unit(1.25, "feet"),
  2800. name: "Beak (Open)",
  2801. image: {
  2802. source: "./media/characters/elijah/beak-open.svg"
  2803. }
  2804. },
  2805. beakShut: {
  2806. height: math.unit(1.25, "feet"),
  2807. name: "Beak (Shut)",
  2808. image: {
  2809. source: "./media/characters/elijah/beak-shut.svg"
  2810. }
  2811. },
  2812. footFlexing: {
  2813. height: math.unit(1.61, "feet"),
  2814. name: "Foot (Flexing)",
  2815. image: {
  2816. source: "./media/characters/elijah/foot-flexing.svg"
  2817. }
  2818. },
  2819. footStepping: {
  2820. height: math.unit(1.44, "feet"),
  2821. name: "Foot (Stepping)",
  2822. image: {
  2823. source: "./media/characters/elijah/foot-stepping.svg"
  2824. }
  2825. },
  2826. plantigradeLeg: {
  2827. height: math.unit(2.34, "feet"),
  2828. name: "Plantigrade Leg",
  2829. image: {
  2830. source: "./media/characters/elijah/plantigrade-leg.svg"
  2831. }
  2832. },
  2833. plantigradeFootLeft: {
  2834. height: math.unit(0.9, "feet"),
  2835. name: "Plantigrade Foot (Left)",
  2836. image: {
  2837. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2838. }
  2839. },
  2840. plantigradeFootRight: {
  2841. height: math.unit(0.9, "feet"),
  2842. name: "Plantigrade Foot (Right)",
  2843. image: {
  2844. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(1.65, "meters")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(55, "meters"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro+",
  2860. height: math.unit(105, "meters")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(7 + 2/12, "feet"),
  2869. weight: math.unit(320, "kg"),
  2870. preyCapacity: math.unit(0.276549935, "people"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/rai/front.svg",
  2874. extra: 1802/1696,
  2875. bottom: 68/1870
  2876. },
  2877. form: "anthro",
  2878. default: true
  2879. },
  2880. frontDressed: {
  2881. height: math.unit(7 + 2/12, "feet"),
  2882. weight: math.unit(320, "kg"),
  2883. preyCapacity: math.unit(0.276549935, "people"),
  2884. name: "Front (Dressed)",
  2885. image: {
  2886. source: "./media/characters/rai/front-dressed.svg",
  2887. extra: 1802/1696,
  2888. bottom: 68/1870
  2889. },
  2890. form: "anthro"
  2891. },
  2892. side: {
  2893. height: math.unit(7 + 2/12, "feet"),
  2894. weight: math.unit(320, "kg"),
  2895. preyCapacity: math.unit(0.276549935, "people"),
  2896. name: "Side",
  2897. image: {
  2898. source: "./media/characters/rai/side.svg",
  2899. extra: 1789/1710,
  2900. bottom: 115/1904
  2901. },
  2902. form: "anthro"
  2903. },
  2904. back: {
  2905. height: math.unit(7 + 2/12, "feet"),
  2906. weight: math.unit(320, "kg"),
  2907. preyCapacity: math.unit(0.276549935, "people"),
  2908. name: "Back",
  2909. image: {
  2910. source: "./media/characters/rai/back.svg",
  2911. extra: 1770/1707,
  2912. bottom: 28/1798
  2913. },
  2914. form: "anthro"
  2915. },
  2916. feral: {
  2917. height: math.unit(9.5, "feet"),
  2918. weight: math.unit(640, "kg"),
  2919. preyCapacity: math.unit(4, "people"),
  2920. name: "Feral",
  2921. image: {
  2922. source: "./media/characters/rai/feral.svg",
  2923. extra: 945/553,
  2924. bottom: 176/1121
  2925. },
  2926. form: "feral",
  2927. default: true
  2928. },
  2929. dragon: {
  2930. height: math.unit(23, "feet"),
  2931. weight: math.unit(50000, "lb"),
  2932. name: "Dragon",
  2933. image: {
  2934. source: "./media/characters/rai/dragon.svg",
  2935. extra: 2498 / 2030,
  2936. bottom: 85.2 / 2584
  2937. },
  2938. form: "dragon",
  2939. default: true
  2940. },
  2941. maw: {
  2942. height: math.unit(1.69, "feet"),
  2943. name: "Maw",
  2944. image: {
  2945. source: "./media/characters/rai/maw.svg"
  2946. },
  2947. form: "anthro"
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(7 + 2/12, "feet"),
  2954. form: "anthro"
  2955. },
  2956. {
  2957. name: "Big",
  2958. height: math.unit(11, "feet"),
  2959. form: "anthro"
  2960. },
  2961. {
  2962. name: "Minimacro",
  2963. height: math.unit(77, "feet"),
  2964. form: "anthro"
  2965. },
  2966. {
  2967. name: "Macro",
  2968. height: math.unit(302, "feet"),
  2969. default: true,
  2970. form: "anthro"
  2971. },
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(9.5, "feet"),
  2975. form: "feral",
  2976. default: true
  2977. },
  2978. {
  2979. name: "Normal",
  2980. height: math.unit(23, "feet"),
  2981. form: "dragon",
  2982. default: true
  2983. }
  2984. ],
  2985. {
  2986. "anthro": {
  2987. name: "Anthro",
  2988. default: true
  2989. },
  2990. "feral": {
  2991. name: "Feral",
  2992. },
  2993. "dragon": {
  2994. name: "Dragon",
  2995. },
  2996. }
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3000. {
  3001. frontDressed: {
  3002. height: math.unit(216, "feet"),
  3003. weight: math.unit(7000000, "lb"),
  3004. preyCapacity: math.unit(1321, "people"),
  3005. name: "Front (Dressed)",
  3006. image: {
  3007. source: "./media/characters/jazzy/front-dressed.svg",
  3008. extra: 2738 / 2651,
  3009. bottom: 41.8 / 2786
  3010. }
  3011. },
  3012. backDressed: {
  3013. height: math.unit(216, "feet"),
  3014. weight: math.unit(7000000, "lb"),
  3015. preyCapacity: math.unit(1321, "people"),
  3016. name: "Back (Dressed)",
  3017. image: {
  3018. source: "./media/characters/jazzy/back-dressed.svg",
  3019. extra: 2775 / 2673,
  3020. bottom: 36.8 / 2817
  3021. }
  3022. },
  3023. front: {
  3024. height: math.unit(216, "feet"),
  3025. weight: math.unit(7000000, "lb"),
  3026. preyCapacity: math.unit(1321, "people"),
  3027. name: "Front",
  3028. image: {
  3029. source: "./media/characters/jazzy/front.svg",
  3030. extra: 2738 / 2651,
  3031. bottom: 41.8 / 2786
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(216, "feet"),
  3036. weight: math.unit(7000000, "lb"),
  3037. preyCapacity: math.unit(1321, "people"),
  3038. name: "Back",
  3039. image: {
  3040. source: "./media/characters/jazzy/back.svg",
  3041. extra: 2775 / 2673,
  3042. bottom: 36.8 / 2817
  3043. }
  3044. },
  3045. maw: {
  3046. height: math.unit(20, "feet"),
  3047. name: "Maw",
  3048. image: {
  3049. source: "./media/characters/jazzy/maw.svg"
  3050. }
  3051. },
  3052. paws: {
  3053. height: math.unit(27.5, "feet"),
  3054. name: "Paws",
  3055. image: {
  3056. source: "./media/characters/jazzy/paws.svg"
  3057. }
  3058. },
  3059. eye: {
  3060. height: math.unit(4.4, "feet"),
  3061. name: "Eye",
  3062. image: {
  3063. source: "./media/characters/jazzy/eye.svg"
  3064. }
  3065. },
  3066. droneOffense: {
  3067. height: math.unit(9.5, "inches"),
  3068. name: "Drone (Offense)",
  3069. image: {
  3070. source: "./media/characters/jazzy/drone-offense.svg"
  3071. }
  3072. },
  3073. droneRecon: {
  3074. height: math.unit(9.5, "inches"),
  3075. name: "Drone (Recon)",
  3076. image: {
  3077. source: "./media/characters/jazzy/drone-recon.svg"
  3078. }
  3079. },
  3080. droneDefense: {
  3081. height: math.unit(9.5, "inches"),
  3082. name: "Drone (Defense)",
  3083. image: {
  3084. source: "./media/characters/jazzy/drone-defense.svg"
  3085. }
  3086. },
  3087. },
  3088. [
  3089. {
  3090. name: "Macro",
  3091. height: math.unit(216, "feet"),
  3092. default: true
  3093. },
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3098. {
  3099. front: {
  3100. height: math.unit(9 + 6/12, "feet"),
  3101. weight: math.unit(700, "lb"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/flamm/front.svg",
  3105. extra: 1751/1632,
  3106. bottom: 46/1797
  3107. }
  3108. },
  3109. buff: {
  3110. height: math.unit(9 + 6/12, "feet"),
  3111. weight: math.unit(950, "lb"),
  3112. name: "Buff",
  3113. image: {
  3114. source: "./media/characters/flamm/buff.svg",
  3115. extra: 3018/2874,
  3116. bottom: 221/3239
  3117. }
  3118. },
  3119. },
  3120. [
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(9.5, "feet")
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(200, "feet"),
  3128. default: true
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3134. {
  3135. front: {
  3136. height: math.unit(5 + 3/12, "feet"),
  3137. weight: math.unit(60, "kg"),
  3138. name: "Front",
  3139. image: {
  3140. source: "./media/characters/zephiro/front.svg",
  3141. extra: 1873/1761,
  3142. bottom: 147/2020
  3143. }
  3144. },
  3145. side: {
  3146. height: math.unit(5 + 3/12, "feet"),
  3147. weight: math.unit(60, "kg"),
  3148. name: "Side",
  3149. image: {
  3150. source: "./media/characters/zephiro/side.svg",
  3151. extra: 1929/1827,
  3152. bottom: 65/1994
  3153. }
  3154. },
  3155. back: {
  3156. height: math.unit(5 + 3/12, "feet"),
  3157. weight: math.unit(60, "kg"),
  3158. name: "Back",
  3159. image: {
  3160. source: "./media/characters/zephiro/back.svg",
  3161. extra: 1926/1816,
  3162. bottom: 41/1967
  3163. }
  3164. },
  3165. hand: {
  3166. height: math.unit(0.68, "feet"),
  3167. name: "Hand",
  3168. image: {
  3169. source: "./media/characters/zephiro/hand.svg"
  3170. }
  3171. },
  3172. paw: {
  3173. height: math.unit(1, "feet"),
  3174. name: "Paw",
  3175. image: {
  3176. source: "./media/characters/zephiro/paw.svg"
  3177. }
  3178. },
  3179. beans: {
  3180. height: math.unit(0.93, "feet"),
  3181. name: "Beans",
  3182. image: {
  3183. source: "./media/characters/zephiro/beans.svg"
  3184. }
  3185. },
  3186. },
  3187. [
  3188. {
  3189. name: "Micro",
  3190. height: math.unit(3, "inches")
  3191. },
  3192. {
  3193. name: "Normal",
  3194. height: math.unit(5 + 3 / 12, "feet"),
  3195. default: true
  3196. },
  3197. {
  3198. name: "Macro",
  3199. height: math.unit(118, "feet")
  3200. },
  3201. ]
  3202. ))
  3203. characterMakers.push(() => makeCharacter(
  3204. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3205. {
  3206. front: {
  3207. height: math.unit(5, "feet"),
  3208. weight: math.unit(90, "kg"),
  3209. preyCapacity: math.unit(14, "people"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/fory/front.svg",
  3213. extra: 2862 / 2674,
  3214. bottom: 180 / 3043.8
  3215. },
  3216. form: "weaselbun",
  3217. default: true,
  3218. extraAttributes: {
  3219. "pawSize": {
  3220. name: "Paw Size",
  3221. power: 2,
  3222. type: "area",
  3223. base: math.unit(0.1596, "m^2")
  3224. },
  3225. "pawLength": {
  3226. name: "Paw Length",
  3227. power: 1,
  3228. type: "length",
  3229. base: math.unit(0.7, "m")
  3230. }
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(5, "feet"),
  3235. weight: math.unit(90, "kg"),
  3236. preyCapacity: math.unit(14, "people"),
  3237. name: "Back",
  3238. image: {
  3239. source: "./media/characters/fory/back.svg",
  3240. extra: 1790/1672,
  3241. bottom: 84/1874
  3242. },
  3243. form: "weaselbun",
  3244. extraAttributes: {
  3245. "pawSize": {
  3246. name: "Paw Size",
  3247. power: 2,
  3248. type: "area",
  3249. base: math.unit(0.1596, "m^2")
  3250. },
  3251. "pawLength": {
  3252. name: "Paw Length",
  3253. power: 1,
  3254. type: "length",
  3255. base: math.unit(0.7, "m")
  3256. }
  3257. }
  3258. },
  3259. paw: {
  3260. height: math.unit(2.14, "feet"),
  3261. name: "Paw",
  3262. image: {
  3263. source: "./media/characters/fory/paw.svg"
  3264. },
  3265. form: "weaselbun",
  3266. extraAttributes: {
  3267. "pawSize": {
  3268. name: "Paw Size",
  3269. power: 2,
  3270. type: "area",
  3271. base: math.unit(0.1596, "m^2")
  3272. },
  3273. "pawLength": {
  3274. name: "Paw Length",
  3275. power: 1,
  3276. type: "length",
  3277. base: math.unit(0.48, "m")
  3278. }
  3279. }
  3280. },
  3281. bunBack: {
  3282. height: math.unit(3, "feet"),
  3283. weight: math.unit(20, "kg"),
  3284. preyCapacity: math.unit(3, "people"),
  3285. name: "Back",
  3286. image: {
  3287. source: "./media/characters/fory/bun-back.svg",
  3288. extra: 1749/1564,
  3289. bottom: 246/1995
  3290. },
  3291. form: "bun",
  3292. default: true,
  3293. extraAttributes: {
  3294. "pawSize": {
  3295. name: "Paw Size",
  3296. power: 2,
  3297. type: "area",
  3298. base: math.unit(0.072, "m^2")
  3299. },
  3300. "pawLength": {
  3301. name: "Paw Length",
  3302. power: 1,
  3303. type: "length",
  3304. base: math.unit(0.45, "m")
  3305. }
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(5, "feet"),
  3313. form: "weaselbun"
  3314. },
  3315. {
  3316. name: "Macro",
  3317. height: math.unit(50, "feet"),
  3318. default: true,
  3319. form: "weaselbun"
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(10, "miles"),
  3324. form: "weaselbun"
  3325. },
  3326. {
  3327. name: "Gigamacro",
  3328. height: math.unit(5, "earths"),
  3329. form: "weaselbun"
  3330. },
  3331. {
  3332. name: "Normal",
  3333. height: math.unit(3, "feet"),
  3334. default: true,
  3335. form: "bun"
  3336. },
  3337. {
  3338. name: "Fun-Size",
  3339. height: math.unit(12, "feet"),
  3340. form: "bun"
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(100, "feet"),
  3345. form: "bun"
  3346. },
  3347. {
  3348. name: "Planetary",
  3349. height: math.unit(3, "earths"),
  3350. form: "bun"
  3351. },
  3352. ],
  3353. {
  3354. "weaselbun": {
  3355. name: "Weaselbun",
  3356. default: true
  3357. },
  3358. "bun": {
  3359. name: "Bun",
  3360. },
  3361. }
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(7, "feet"),
  3368. weight: math.unit(90, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/kurrikage/front.svg",
  3372. extra: 1845/1733,
  3373. bottom: 119/1964
  3374. }
  3375. },
  3376. back: {
  3377. height: math.unit(7, "feet"),
  3378. weight: math.unit(90, "kg"),
  3379. name: "Back",
  3380. image: {
  3381. source: "./media/characters/kurrikage/back.svg",
  3382. extra: 1790/1677,
  3383. bottom: 61/1851
  3384. }
  3385. },
  3386. dressed: {
  3387. height: math.unit(7, "feet"),
  3388. weight: math.unit(90, "kg"),
  3389. name: "Dressed",
  3390. image: {
  3391. source: "./media/characters/kurrikage/dressed.svg",
  3392. extra: 1845/1733,
  3393. bottom: 119/1964
  3394. }
  3395. },
  3396. foot: {
  3397. height: math.unit(1.5, "feet"),
  3398. name: "Foot",
  3399. image: {
  3400. source: "./media/characters/kurrikage/foot.svg"
  3401. }
  3402. },
  3403. staff: {
  3404. height: math.unit(6.7, "feet"),
  3405. name: "Staff",
  3406. image: {
  3407. source: "./media/characters/kurrikage/staff.svg"
  3408. }
  3409. },
  3410. peek: {
  3411. height: math.unit(1.05, "feet"),
  3412. name: "Peeking",
  3413. image: {
  3414. source: "./media/characters/kurrikage/peek.svg",
  3415. bottom: 0.08
  3416. }
  3417. },
  3418. },
  3419. [
  3420. {
  3421. name: "Normal",
  3422. height: math.unit(12, "feet"),
  3423. default: true
  3424. },
  3425. {
  3426. name: "Big",
  3427. height: math.unit(20, "feet")
  3428. },
  3429. {
  3430. name: "Macro",
  3431. height: math.unit(500, "feet")
  3432. },
  3433. {
  3434. name: "Megamacro",
  3435. height: math.unit(20, "miles")
  3436. },
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(75, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/shingo/front.svg",
  3448. extra: 1900/1825,
  3449. bottom: 82/1982
  3450. }
  3451. },
  3452. side: {
  3453. height: math.unit(6, "feet"),
  3454. weight: math.unit(75, "kg"),
  3455. name: "Side",
  3456. image: {
  3457. source: "./media/characters/shingo/side.svg",
  3458. extra: 1930/1865,
  3459. bottom: 16/1946
  3460. }
  3461. },
  3462. back: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Back",
  3466. image: {
  3467. source: "./media/characters/shingo/back.svg",
  3468. extra: 1922/1852,
  3469. bottom: 16/1938
  3470. }
  3471. },
  3472. frontDressed: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(150, "lb"),
  3475. name: "Front-dressed",
  3476. image: {
  3477. source: "./media/characters/shingo/front-dressed.svg",
  3478. extra: 1900/1825,
  3479. bottom: 82/1982
  3480. }
  3481. },
  3482. paw: {
  3483. height: math.unit(1.29, "feet"),
  3484. name: "Paw",
  3485. image: {
  3486. source: "./media/characters/shingo/paw.svg"
  3487. }
  3488. },
  3489. hand: {
  3490. height: math.unit(1.07, "feet"),
  3491. name: "Hand",
  3492. image: {
  3493. source: "./media/characters/shingo/hand.svg"
  3494. }
  3495. },
  3496. frontAlt: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(75, "kg"),
  3499. name: "Front (Alt)",
  3500. image: {
  3501. source: "./media/characters/shingo/front-alt.svg",
  3502. extra: 3511 / 3338,
  3503. bottom: 0.005
  3504. }
  3505. },
  3506. frontAlt2: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(75, "kg"),
  3509. name: "Front (Alt 2)",
  3510. image: {
  3511. source: "./media/characters/shingo/front-alt-2.svg",
  3512. extra: 706/681,
  3513. bottom: 11/717
  3514. }
  3515. },
  3516. pawAlt: {
  3517. height: math.unit(1, "feet"),
  3518. name: "Paw (Alt)",
  3519. image: {
  3520. source: "./media/characters/shingo/paw-alt.svg"
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Micro",
  3527. height: math.unit(4, "inches")
  3528. },
  3529. {
  3530. name: "Normal",
  3531. height: math.unit(6, "feet"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(108, "feet")
  3537. },
  3538. {
  3539. name: "Macro+",
  3540. height: math.unit(1500, "feet")
  3541. },
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3546. {
  3547. side: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(75, "kg"),
  3550. name: "Side",
  3551. image: {
  3552. source: "./media/characters/aigey/side.svg"
  3553. }
  3554. },
  3555. },
  3556. [
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(200, "feet"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(100, "miles")
  3565. },
  3566. ]
  3567. )
  3568. )
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(5 + 5 / 12, "feet"),
  3574. weight: math.unit(75, "kg"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/natasha/front.svg",
  3578. extra: 859 / 824,
  3579. bottom: 23 / 879.6
  3580. }
  3581. },
  3582. frontNsfw: {
  3583. height: math.unit(5 + 5 / 12, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Front (NSFW)",
  3586. image: {
  3587. source: "./media/characters/natasha/front-nsfw.svg",
  3588. extra: 859 / 824,
  3589. bottom: 23 / 879.6
  3590. }
  3591. },
  3592. frontErect: {
  3593. height: math.unit(5 + 5 / 12, "feet"),
  3594. weight: math.unit(75, "kg"),
  3595. name: "Front (Erect)",
  3596. image: {
  3597. source: "./media/characters/natasha/front-erect.svg",
  3598. extra: 859 / 824,
  3599. bottom: 23 / 879.6
  3600. }
  3601. },
  3602. back: {
  3603. height: math.unit(5 + 5 / 12, "feet"),
  3604. weight: math.unit(75, "kg"),
  3605. name: "Back",
  3606. image: {
  3607. source: "./media/characters/natasha/back.svg",
  3608. extra: 887.9 / 852.6,
  3609. bottom: 9.7 / 896.4
  3610. }
  3611. },
  3612. backAlt: {
  3613. height: math.unit(5 + 5 / 12, "feet"),
  3614. weight: math.unit(75, "kg"),
  3615. name: "Back (Alt)",
  3616. image: {
  3617. source: "./media/characters/natasha/back-alt.svg",
  3618. extra: 1236.7 / 1192,
  3619. bottom: 22.3 / 1258.2
  3620. }
  3621. },
  3622. dick: {
  3623. height: math.unit(1.772, "feet"),
  3624. name: "Dick",
  3625. image: {
  3626. source: "./media/characters/natasha/dick.svg"
  3627. }
  3628. },
  3629. paw: {
  3630. height: math.unit(0.250, "meters"),
  3631. name: "Paw",
  3632. image: {
  3633. source: "./media/characters/natasha/paw.svg"
  3634. },
  3635. extraAttributes: {
  3636. "toeSize": {
  3637. name: "Toe Size",
  3638. power: 2,
  3639. type: "area",
  3640. base: math.unit(0.0024, "m^2")
  3641. },
  3642. "padSize": {
  3643. name: "Pad Size",
  3644. power: 2,
  3645. type: "area",
  3646. base: math.unit(0.00889, "m^2")
  3647. },
  3648. "pawSize": {
  3649. name: "Paw Size",
  3650. power: 2,
  3651. type: "area",
  3652. base: math.unit(0.023667, "m^2")
  3653. },
  3654. }
  3655. },
  3656. },
  3657. [
  3658. {
  3659. name: "Shortstack",
  3660. height: math.unit(3, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(5 + 5 / 12, "feet")
  3666. },
  3667. {
  3668. name: "Large",
  3669. height: math.unit(12, "feet")
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(100, "feet")
  3674. },
  3675. {
  3676. name: "Macro+",
  3677. height: math.unit(260, "feet")
  3678. },
  3679. {
  3680. name: "Macro++",
  3681. height: math.unit(1, "mile")
  3682. },
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3687. {
  3688. front: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(75, "kg"),
  3691. name: "Front",
  3692. image: {
  3693. source: "./media/characters/malik/front.svg",
  3694. extra: 1750/1561,
  3695. bottom: 80/1830
  3696. },
  3697. extraAttributes: {
  3698. "toeSize": {
  3699. name: "Toe Size",
  3700. power: 2,
  3701. type: "area",
  3702. base: math.unit(0.0159, "m^2")
  3703. },
  3704. "pawSize": {
  3705. name: "Paw Size",
  3706. power: 2,
  3707. type: "area",
  3708. base: math.unit(0.09834, "m^2")
  3709. },
  3710. }
  3711. },
  3712. side: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(75, "kg"),
  3715. name: "Side",
  3716. image: {
  3717. source: "./media/characters/malik/side.svg",
  3718. extra: 1802/1685,
  3719. bottom: 42/1844
  3720. },
  3721. extraAttributes: {
  3722. "toeSize": {
  3723. name: "Toe Size",
  3724. power: 2,
  3725. type: "area",
  3726. base: math.unit(0.0159, "m^2")
  3727. },
  3728. "pawSize": {
  3729. name: "Paw Size",
  3730. power: 2,
  3731. type: "area",
  3732. base: math.unit(0.09834, "m^2")
  3733. },
  3734. }
  3735. },
  3736. back: {
  3737. height: math.unit(6, "feet"),
  3738. weight: math.unit(75, "kg"),
  3739. name: "Back",
  3740. image: {
  3741. source: "./media/characters/malik/back.svg",
  3742. extra: 1803/1607,
  3743. bottom: 33/1836
  3744. },
  3745. extraAttributes: {
  3746. "toeSize": {
  3747. name: "Toe Size",
  3748. power: 2,
  3749. type: "area",
  3750. base: math.unit(0.0159, "m^2")
  3751. },
  3752. "pawSize": {
  3753. name: "Paw Size",
  3754. power: 2,
  3755. type: "area",
  3756. base: math.unit(0.09834, "m^2")
  3757. },
  3758. }
  3759. },
  3760. },
  3761. [
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(156, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro+",
  3769. height: math.unit(1188, "feet")
  3770. },
  3771. ]
  3772. ))
  3773. characterMakers.push(() => makeCharacter(
  3774. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3775. {
  3776. front: {
  3777. height: math.unit(6, "feet"),
  3778. weight: math.unit(75, "kg"),
  3779. name: "Front",
  3780. image: {
  3781. source: "./media/characters/sefer/front.svg",
  3782. extra: 848 / 659,
  3783. bottom: 28.3 / 876.442
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/sefer/back.svg",
  3792. extra: 864 / 695,
  3793. bottom: 10 / 871
  3794. }
  3795. },
  3796. frontDressed: {
  3797. height: math.unit(6, "feet"),
  3798. weight: math.unit(75, "kg"),
  3799. name: "Dressed",
  3800. image: {
  3801. source: "./media/characters/sefer/dressed.svg",
  3802. extra: 839 / 653,
  3803. bottom: 37.6 / 878
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Normal",
  3810. height: math.unit(6, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Big",
  3815. height: math.unit(8, "meters")
  3816. },
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3821. {
  3822. body: {
  3823. height: math.unit(2.2428, "meter"),
  3824. weight: math.unit(124.738, "kg"),
  3825. name: "Body",
  3826. image: {
  3827. extra: 1225 / 1050,
  3828. source: "./media/characters/north/front.svg"
  3829. }
  3830. }
  3831. },
  3832. [
  3833. {
  3834. name: "Micro",
  3835. height: math.unit(4, "inches")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(63, "meters")
  3840. },
  3841. {
  3842. name: "Megamacro",
  3843. height: math.unit(101, "miles"),
  3844. default: true
  3845. }
  3846. ]
  3847. ))
  3848. characterMakers.push(() => makeCharacter(
  3849. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3850. {
  3851. angled: {
  3852. height: math.unit(4, "meter"),
  3853. weight: math.unit(150, "kg"),
  3854. name: "Angled",
  3855. image: {
  3856. source: "./media/characters/talan/angled-sfw.svg",
  3857. bottom: 29 / 3734
  3858. }
  3859. },
  3860. angledNsfw: {
  3861. height: math.unit(4, "meter"),
  3862. weight: math.unit(150, "kg"),
  3863. name: "Angled (NSFW)",
  3864. image: {
  3865. source: "./media/characters/talan/angled-nsfw.svg",
  3866. bottom: 29 / 3734
  3867. }
  3868. },
  3869. frontNsfw: {
  3870. height: math.unit(4, "meter"),
  3871. weight: math.unit(150, "kg"),
  3872. name: "Front (NSFW)",
  3873. image: {
  3874. source: "./media/characters/talan/front-nsfw.svg",
  3875. bottom: 29 / 3734
  3876. }
  3877. },
  3878. sideNsfw: {
  3879. height: math.unit(4, "meter"),
  3880. weight: math.unit(150, "kg"),
  3881. name: "Side (NSFW)",
  3882. image: {
  3883. source: "./media/characters/talan/side-nsfw.svg",
  3884. bottom: 29 / 3734
  3885. }
  3886. },
  3887. back: {
  3888. height: math.unit(4, "meter"),
  3889. weight: math.unit(150, "kg"),
  3890. name: "Back",
  3891. image: {
  3892. source: "./media/characters/talan/back.svg"
  3893. }
  3894. },
  3895. dickBottom: {
  3896. height: math.unit(0.621, "meter"),
  3897. name: "Dick (Bottom)",
  3898. image: {
  3899. source: "./media/characters/talan/dick-bottom.svg"
  3900. }
  3901. },
  3902. dickTop: {
  3903. height: math.unit(0.621, "meter"),
  3904. name: "Dick (Top)",
  3905. image: {
  3906. source: "./media/characters/talan/dick-top.svg"
  3907. }
  3908. },
  3909. dickSide: {
  3910. height: math.unit(0.305, "meter"),
  3911. name: "Dick (Side)",
  3912. image: {
  3913. source: "./media/characters/talan/dick-side.svg"
  3914. }
  3915. },
  3916. dickFront: {
  3917. height: math.unit(0.305, "meter"),
  3918. name: "Dick (Front)",
  3919. image: {
  3920. source: "./media/characters/talan/dick-front.svg"
  3921. }
  3922. },
  3923. },
  3924. [
  3925. {
  3926. name: "Normal",
  3927. height: math.unit(4, "meters")
  3928. },
  3929. {
  3930. name: "Macro",
  3931. height: math.unit(100, "meters")
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(2, "miles"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Gigamacro",
  3940. height: math.unit(5000, "miles")
  3941. },
  3942. {
  3943. name: "Teramacro",
  3944. height: math.unit(100, "parsecs")
  3945. }
  3946. ]
  3947. ))
  3948. characterMakers.push(() => makeCharacter(
  3949. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3950. {
  3951. front: {
  3952. height: math.unit(2, "meter"),
  3953. weight: math.unit(90, "kg"),
  3954. name: "Front",
  3955. image: {
  3956. source: "./media/characters/gael'rathus/front.svg"
  3957. }
  3958. },
  3959. frontAlt: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(90, "kg"),
  3962. name: "Front (alt)",
  3963. image: {
  3964. source: "./media/characters/gael'rathus/front-alt.svg"
  3965. }
  3966. },
  3967. frontAlt2: {
  3968. height: math.unit(2, "meter"),
  3969. weight: math.unit(90, "kg"),
  3970. name: "Front (alt 2)",
  3971. image: {
  3972. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3973. }
  3974. }
  3975. },
  3976. [
  3977. {
  3978. name: "Normal",
  3979. height: math.unit(9, "feet"),
  3980. default: true
  3981. },
  3982. {
  3983. name: "Large",
  3984. height: math.unit(25, "feet")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(0.25, "miles")
  3989. },
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(10, "miles")
  3993. }
  3994. ]
  3995. ))
  3996. characterMakers.push(() => makeCharacter(
  3997. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3998. {
  3999. side: {
  4000. height: math.unit(2, "meter"),
  4001. weight: math.unit(140, "kg"),
  4002. name: "Side",
  4003. image: {
  4004. source: "./media/characters/sosha/side.svg",
  4005. extra: 1170/1006,
  4006. bottom: 94/1264
  4007. }
  4008. },
  4009. maw: {
  4010. height: math.unit(2.87, "feet"),
  4011. name: "Maw",
  4012. image: {
  4013. source: "./media/characters/sosha/maw.svg",
  4014. extra: 966/865,
  4015. bottom: 0/966
  4016. }
  4017. },
  4018. cooch: {
  4019. height: math.unit(5.6, "feet"),
  4020. name: "Cooch",
  4021. image: {
  4022. source: "./media/characters/sosha/cooch.svg"
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(12, "feet"),
  4030. default: true
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4036. {
  4037. side: {
  4038. height: math.unit(5 + 5 / 12, "feet"),
  4039. weight: math.unit(170, "kg"),
  4040. name: "Side",
  4041. image: {
  4042. source: "./media/characters/runnola/side.svg",
  4043. extra: 741 / 448,
  4044. bottom: 0.05
  4045. }
  4046. },
  4047. },
  4048. [
  4049. {
  4050. name: "Small",
  4051. height: math.unit(3, "feet")
  4052. },
  4053. {
  4054. name: "Normal",
  4055. height: math.unit(5 + 5 / 12, "feet"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Big",
  4060. height: math.unit(10, "feet")
  4061. },
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4066. {
  4067. front: {
  4068. height: math.unit(2, "meter"),
  4069. weight: math.unit(50, "kg"),
  4070. name: "Front",
  4071. image: {
  4072. source: "./media/characters/kurribird/front.svg",
  4073. bottom: 0.015
  4074. }
  4075. },
  4076. frontAlt: {
  4077. height: math.unit(1.5, "meter"),
  4078. weight: math.unit(50, "kg"),
  4079. name: "Front (Alt)",
  4080. image: {
  4081. source: "./media/characters/kurribird/front-alt.svg",
  4082. extra: 1.45
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Normal",
  4089. height: math.unit(7, "feet")
  4090. },
  4091. {
  4092. name: "Big",
  4093. height: math.unit(12, "feet"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(1500, "feet")
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(2, "miles")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(80, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/elbial/front.svg",
  4115. extra: 1643 / 1556,
  4116. bottom: 60.2 / 1696
  4117. }
  4118. },
  4119. side: {
  4120. height: math.unit(2, "meter"),
  4121. weight: math.unit(80, "kg"),
  4122. name: "Side",
  4123. image: {
  4124. source: "./media/characters/elbial/side.svg",
  4125. extra: 1601/1528,
  4126. bottom: 97/1698
  4127. }
  4128. },
  4129. back: {
  4130. height: math.unit(2, "meter"),
  4131. weight: math.unit(80, "kg"),
  4132. name: "Back",
  4133. image: {
  4134. source: "./media/characters/elbial/back.svg",
  4135. extra: 1653/1569,
  4136. bottom: 20/1673
  4137. }
  4138. },
  4139. frontDressed: {
  4140. height: math.unit(2, "meter"),
  4141. weight: math.unit(80, "kg"),
  4142. name: "Front (Dressed)",
  4143. image: {
  4144. source: "./media/characters/elbial/front-dressed.svg",
  4145. extra: 1638/1569,
  4146. bottom: 70/1708
  4147. }
  4148. },
  4149. genitals: {
  4150. height: math.unit(2 / 3.367, "meter"),
  4151. name: "Genitals",
  4152. image: {
  4153. source: "./media/characters/elbial/genitals.svg"
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Large",
  4160. height: math.unit(100, "feet")
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(500, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Megamacro",
  4169. height: math.unit(10, "miles")
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(25000, "miles")
  4174. },
  4175. {
  4176. name: "Full-Size",
  4177. height: math.unit(8000000, "gigaparsecs")
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(60, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/noah/front.svg"
  4190. }
  4191. },
  4192. talons: {
  4193. height: math.unit(0.315, "meter"),
  4194. name: "Talons",
  4195. image: {
  4196. source: "./media/characters/noah/talons.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Large",
  4203. height: math.unit(50, "feet")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(750, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Megamacro",
  4212. height: math.unit(50, "miles")
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(100000, "miles")
  4217. },
  4218. {
  4219. name: "Full-Size",
  4220. height: math.unit(3000000000, "miles")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(2, "meter"),
  4229. weight: math.unit(80, "kg"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/natalya/front.svg"
  4233. }
  4234. },
  4235. back: {
  4236. height: math.unit(2, "meter"),
  4237. weight: math.unit(80, "kg"),
  4238. name: "Back",
  4239. image: {
  4240. source: "./media/characters/natalya/back.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(150, "feet"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(5, "miles")
  4253. },
  4254. {
  4255. name: "Full-Size",
  4256. height: math.unit(600, "kiloparsecs")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(2, "meter"),
  4265. weight: math.unit(50, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/erestrebah/front.svg",
  4269. extra: 1262/1162,
  4270. bottom: 96/1358
  4271. }
  4272. },
  4273. back: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(50, "kg"),
  4276. name: "Back",
  4277. image: {
  4278. source: "./media/characters/erestrebah/back.svg",
  4279. extra: 1257/1139,
  4280. bottom: 13/1270
  4281. }
  4282. },
  4283. wing: {
  4284. height: math.unit(2, "meter"),
  4285. weight: math.unit(50, "kg"),
  4286. name: "Wing",
  4287. image: {
  4288. source: "./media/characters/erestrebah/wing.svg",
  4289. extra: 1262/1162,
  4290. bottom: 96/1358
  4291. }
  4292. },
  4293. mouth: {
  4294. height: math.unit(0.39, "feet"),
  4295. name: "Mouth",
  4296. image: {
  4297. source: "./media/characters/erestrebah/mouth.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(10, "feet")
  4305. },
  4306. {
  4307. name: "Large",
  4308. height: math.unit(50, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(300, "feet")
  4314. },
  4315. {
  4316. name: "Macro+",
  4317. height: math.unit(750, "feet")
  4318. },
  4319. {
  4320. name: "Megamacro",
  4321. height: math.unit(3, "miles")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(80, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/jennifer/front.svg",
  4334. bottom: 0.11,
  4335. extra: 1.16
  4336. }
  4337. },
  4338. frontAlt: {
  4339. height: math.unit(2, "meter"),
  4340. weight: math.unit(80, "kg"),
  4341. name: "Front (Alt)",
  4342. image: {
  4343. source: "./media/characters/jennifer/front-alt.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Canon Height",
  4350. height: math.unit(120, "feet"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro+",
  4355. height: math.unit(300, "feet")
  4356. },
  4357. {
  4358. name: "Megamacro",
  4359. height: math.unit(20000, "feet")
  4360. }
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4365. {
  4366. front: {
  4367. height: math.unit(2, "meter"),
  4368. weight: math.unit(50, "kg"),
  4369. name: "Front",
  4370. image: {
  4371. source: "./media/characters/kalista/front.svg",
  4372. extra: 1314/1145,
  4373. bottom: 101/1415
  4374. }
  4375. },
  4376. back: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(50, "kg"),
  4379. name: "Back",
  4380. image: {
  4381. source: "./media/characters/kalista/back.svg",
  4382. extra: 1366 / 1156,
  4383. bottom: 33.9 / 1362.78
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Uncomfortably Small",
  4390. height: math.unit(10, "feet")
  4391. },
  4392. {
  4393. name: "Small",
  4394. height: math.unit(30, "feet")
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(100, "feet"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(2000, "feet")
  4404. },
  4405. {
  4406. name: "True Form",
  4407. height: math.unit(8924, "miles")
  4408. }
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(2, "meter"),
  4416. weight: math.unit(120, "kg"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/ggv/front.svg"
  4420. }
  4421. },
  4422. side: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(120, "kg"),
  4425. name: "Side",
  4426. image: {
  4427. source: "./media/characters/ggv/side.svg"
  4428. }
  4429. }
  4430. },
  4431. [
  4432. {
  4433. name: "Extremely Puny",
  4434. height: math.unit(9 + 5 / 12, "feet")
  4435. },
  4436. {
  4437. name: "Horribly Small",
  4438. height: math.unit(47.7, "miles"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Reasonably Sized",
  4443. height: math.unit(25000, "parsecs")
  4444. },
  4445. {
  4446. name: "Slightly Uncompressed",
  4447. height: math.unit(7.77e31, "parsecs")
  4448. },
  4449. {
  4450. name: "Omniversal",
  4451. height: math.unit(1e300, "meters")
  4452. },
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(2, "meter"),
  4460. weight: math.unit(75, "lb"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/napalm/front.svg"
  4464. }
  4465. },
  4466. back: {
  4467. height: math.unit(2, "meter"),
  4468. weight: math.unit(75, "lb"),
  4469. name: "Back",
  4470. image: {
  4471. source: "./media/characters/napalm/back.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Standard",
  4478. height: math.unit(55, "feet"),
  4479. default: true
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(7 + 5 / 6, "feet"),
  4488. weight: math.unit(325, "lb"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/asana/front.svg",
  4492. extra: 1133 / 1060,
  4493. bottom: 15.2 / 1148.6
  4494. }
  4495. },
  4496. back: {
  4497. height: math.unit(7 + 5 / 6, "feet"),
  4498. weight: math.unit(325, "lb"),
  4499. name: "Back",
  4500. image: {
  4501. source: "./media/characters/asana/back.svg",
  4502. extra: 1114 / 1043,
  4503. bottom: 5 / 1120
  4504. }
  4505. },
  4506. dressedDark: {
  4507. height: math.unit(7 + 5 / 6, "feet"),
  4508. weight: math.unit(325, "lb"),
  4509. name: "Dressed (Dark)",
  4510. image: {
  4511. source: "./media/characters/asana/dressed-dark.svg",
  4512. extra: 1133 / 1060,
  4513. bottom: 15.2 / 1148.6
  4514. }
  4515. },
  4516. dressedLight: {
  4517. height: math.unit(7 + 5 / 6, "feet"),
  4518. weight: math.unit(325, "lb"),
  4519. name: "Dressed (Light)",
  4520. image: {
  4521. source: "./media/characters/asana/dressed-light.svg",
  4522. extra: 1133 / 1060,
  4523. bottom: 15.2 / 1148.6
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Standard",
  4530. height: math.unit(7 + 5 / 6, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Large",
  4535. height: math.unit(10, "meters")
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(2500, "meters")
  4540. },
  4541. {
  4542. name: "Megamacro",
  4543. height: math.unit(5e6, "meters")
  4544. },
  4545. {
  4546. name: "Examacro",
  4547. height: math.unit(5e12, "lightyears")
  4548. },
  4549. {
  4550. name: "Max Size",
  4551. height: math.unit(1e31, "lightyears")
  4552. }
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4557. {
  4558. front: {
  4559. height: math.unit(2, "meter"),
  4560. weight: math.unit(60, "kg"),
  4561. name: "Front",
  4562. image: {
  4563. source: "./media/characters/ebony/front.svg",
  4564. bottom: 0.03,
  4565. extra: 1045 / 810 + 0.03
  4566. }
  4567. },
  4568. side: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(60, "kg"),
  4571. name: "Side",
  4572. image: {
  4573. source: "./media/characters/ebony/side.svg",
  4574. bottom: 0.03,
  4575. extra: 1045 / 810 + 0.03
  4576. }
  4577. },
  4578. back: {
  4579. height: math.unit(2, "meter"),
  4580. weight: math.unit(60, "kg"),
  4581. name: "Back",
  4582. image: {
  4583. source: "./media/characters/ebony/back.svg",
  4584. bottom: 0.01,
  4585. extra: 1045 / 810 + 0.01
  4586. }
  4587. },
  4588. },
  4589. [
  4590. // TODO check why I did this lol
  4591. {
  4592. name: "Standard",
  4593. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4594. default: true
  4595. },
  4596. {
  4597. name: "Macro",
  4598. height: math.unit(200, "feet")
  4599. },
  4600. {
  4601. name: "Gigamacro",
  4602. height: math.unit(13000, "km")
  4603. }
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4608. {
  4609. front: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(175, "lb"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/mountain/front.svg",
  4615. extra: 972 / 955,
  4616. bottom: 64 / 1036.6
  4617. }
  4618. },
  4619. back: {
  4620. height: math.unit(6, "feet"),
  4621. weight: math.unit(175, "lb"),
  4622. name: "Back",
  4623. image: {
  4624. source: "./media/characters/mountain/back.svg",
  4625. extra: 970 / 950,
  4626. bottom: 28.25 / 999
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Large",
  4633. height: math.unit(20, "meters")
  4634. },
  4635. {
  4636. name: "Macro",
  4637. height: math.unit(300, "meters")
  4638. },
  4639. {
  4640. name: "Gigamacro",
  4641. height: math.unit(10000, "km"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Examacro",
  4646. height: math.unit(10e9, "lightyears")
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(8, "feet"),
  4655. weight: math.unit(500, "lb"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/rick/front.svg"
  4659. }
  4660. }
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(8, "feet"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(5, "km")
  4671. }
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4676. {
  4677. front: {
  4678. height: math.unit(8, "feet"),
  4679. weight: math.unit(120, "lb"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/ona/front.svg"
  4683. }
  4684. },
  4685. frontAlt: {
  4686. height: math.unit(8, "feet"),
  4687. weight: math.unit(120, "lb"),
  4688. name: "Front (Alt)",
  4689. image: {
  4690. source: "./media/characters/ona/front-alt.svg"
  4691. }
  4692. },
  4693. back: {
  4694. height: math.unit(8, "feet"),
  4695. weight: math.unit(120, "lb"),
  4696. name: "Back",
  4697. image: {
  4698. source: "./media/characters/ona/back.svg"
  4699. }
  4700. },
  4701. foot: {
  4702. height: math.unit(1.1, "feet"),
  4703. name: "Foot",
  4704. image: {
  4705. source: "./media/characters/ona/foot.svg"
  4706. }
  4707. }
  4708. },
  4709. [
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(70, "km"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Gigamacro",
  4717. height: math.unit(681818, "miles")
  4718. },
  4719. {
  4720. name: "Examacro",
  4721. height: math.unit(3800000, "lightyears")
  4722. },
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(12, "feet"),
  4730. weight: math.unit(3000, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/mech/front.svg",
  4734. extra: 2900 / 2770,
  4735. bottom: 110 / 3010
  4736. }
  4737. },
  4738. back: {
  4739. height: math.unit(12, "feet"),
  4740. weight: math.unit(3000, "lb"),
  4741. name: "Back",
  4742. image: {
  4743. source: "./media/characters/mech/back.svg",
  4744. extra: 3011 / 2890,
  4745. bottom: 94 / 3105
  4746. }
  4747. },
  4748. maw: {
  4749. height: math.unit(3.07, "feet"),
  4750. name: "Maw",
  4751. image: {
  4752. source: "./media/characters/mech/maw.svg"
  4753. }
  4754. },
  4755. head: {
  4756. height: math.unit(3.07, "feet"),
  4757. name: "Head",
  4758. image: {
  4759. source: "./media/characters/mech/head.svg"
  4760. }
  4761. },
  4762. dick: {
  4763. height: math.unit(1.43, "feet"),
  4764. name: "Dick",
  4765. image: {
  4766. source: "./media/characters/mech/dick.svg"
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(12, "feet")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(300, "feet"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Macro+",
  4782. height: math.unit(1500, "feet")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4788. {
  4789. front: {
  4790. height: math.unit(1.3, "meter"),
  4791. weight: math.unit(30, "kg"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/gregory/front.svg",
  4795. }
  4796. }
  4797. },
  4798. [
  4799. {
  4800. name: "Normal",
  4801. height: math.unit(1.3, "meter"),
  4802. default: true
  4803. },
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(20, "meter")
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4812. {
  4813. front: {
  4814. height: math.unit(2.8, "meter"),
  4815. weight: math.unit(200, "kg"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/elory/front.svg",
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(2.8, "meter"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(38, "meter")
  4831. }
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4836. {
  4837. front: {
  4838. height: math.unit(470, "feet"),
  4839. weight: math.unit(924, "tons"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/angelpatamon/front.svg",
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(470, "feet"),
  4850. default: true
  4851. },
  4852. {
  4853. name: "Deity Size I",
  4854. height: math.unit(28651.2, "km")
  4855. },
  4856. {
  4857. name: "Deity Size II",
  4858. height: math.unit(171907.2, "km")
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4864. {
  4865. side: {
  4866. height: math.unit(7.2, "meter"),
  4867. weight: math.unit(8.2, "tons"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/cryae/side.svg",
  4871. extra: 3500 / 1500
  4872. }
  4873. }
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(7.2, "meter"),
  4879. default: true
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(175, "lb"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/xera/front.svg",
  4892. extra: 2377 / 1972,
  4893. bottom: 75.5 / 2452
  4894. }
  4895. },
  4896. side: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(175, "lb"),
  4899. name: "Side",
  4900. image: {
  4901. source: "./media/characters/xera/side.svg",
  4902. extra: 2345 / 2019,
  4903. bottom: 39.7 / 2384
  4904. }
  4905. },
  4906. back: {
  4907. height: math.unit(6, "feet"),
  4908. weight: math.unit(175, "lb"),
  4909. name: "Back",
  4910. image: {
  4911. source: "./media/characters/xera/back.svg",
  4912. extra: 2095 / 1984,
  4913. bottom: 67 / 2166
  4914. }
  4915. },
  4916. },
  4917. [
  4918. {
  4919. name: "Small",
  4920. height: math.unit(10, "feet")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(500, "meters"),
  4925. default: true
  4926. },
  4927. {
  4928. name: "Macro+",
  4929. height: math.unit(10, "km")
  4930. },
  4931. {
  4932. name: "Gigamacro",
  4933. height: math.unit(25000, "km")
  4934. },
  4935. {
  4936. name: "Teramacro",
  4937. height: math.unit(3e6, "km")
  4938. }
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4943. {
  4944. front: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(175, "lb"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/nebula/front.svg",
  4950. extra: 2566 / 2362,
  4951. bottom: 81 / 2644
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Small",
  4958. height: math.unit(4.5, "meters")
  4959. },
  4960. {
  4961. name: "Macro",
  4962. height: math.unit(1500, "meters"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Megamacro",
  4967. height: math.unit(150, "km")
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(27000, "km")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(225, "lb"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/abysgar/front.svg",
  4984. extra: 1739/1614,
  4985. bottom: 71/1810
  4986. }
  4987. },
  4988. frontNsfw: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(225, "lb"),
  4991. name: "Front (NSFW)",
  4992. image: {
  4993. source: "./media/characters/abysgar/front-nsfw.svg",
  4994. extra: 1739/1614,
  4995. bottom: 71/1810
  4996. }
  4997. },
  4998. back: {
  4999. height: math.unit(4.6, "feet"),
  5000. weight: math.unit(225, "lb"),
  5001. name: "Back",
  5002. image: {
  5003. source: "./media/characters/abysgar/back.svg",
  5004. extra: 1384/1327,
  5005. bottom: 0/1384
  5006. }
  5007. },
  5008. head: {
  5009. height: math.unit(1.25, "feet"),
  5010. name: "Head",
  5011. image: {
  5012. source: "./media/characters/abysgar/head.svg",
  5013. extra: 669/569,
  5014. bottom: 0/669
  5015. }
  5016. },
  5017. },
  5018. [
  5019. {
  5020. name: "Small",
  5021. height: math.unit(4.5, "meters")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(1250, "meters"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Megamacro",
  5030. height: math.unit(125, "km")
  5031. },
  5032. {
  5033. name: "Gigamacro",
  5034. height: math.unit(26000, "km")
  5035. }
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(180, "lb"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/yakuz/front.svg"
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Small",
  5053. height: math.unit(5, "meters")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(1500, "meters"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Megamacro",
  5062. height: math.unit(200, "km")
  5063. },
  5064. {
  5065. name: "Gigamacro",
  5066. height: math.unit(100000, "km")
  5067. }
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(175, "lb"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/mirova/front.svg",
  5079. extra: 3334 / 3071,
  5080. bottom: 42 / 3375.6
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Small",
  5087. height: math.unit(5, "meters")
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(900, "meters"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Megamacro",
  5096. height: math.unit(135, "km")
  5097. },
  5098. {
  5099. name: "Gigamacro",
  5100. height: math.unit(20000, "km")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5106. {
  5107. side: {
  5108. height: math.unit(28.35, "feet"),
  5109. weight: math.unit(99.75, "tons"),
  5110. name: "Side",
  5111. image: {
  5112. source: "./media/characters/asana-mech/side.svg",
  5113. extra: 923 / 699,
  5114. bottom: 50 / 975
  5115. }
  5116. },
  5117. chaingun: {
  5118. height: math.unit(7, "feet"),
  5119. weight: math.unit(2400, "lb"),
  5120. name: "Chaingun",
  5121. image: {
  5122. source: "./media/characters/asana-mech/chaingun.svg"
  5123. }
  5124. },
  5125. laser: {
  5126. height: math.unit(7.12, "feet"),
  5127. weight: math.unit(2000, "lb"),
  5128. name: "Laser",
  5129. image: {
  5130. source: "./media/characters/asana-mech/laser.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(28.35, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(2500, "feet")
  5143. },
  5144. {
  5145. name: "Megamacro",
  5146. height: math.unit(25, "miles")
  5147. },
  5148. {
  5149. name: "Examacro",
  5150. height: math.unit(6e8, "lightyears")
  5151. },
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(5, "meters"),
  5159. weight: math.unit(1000, "kg"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/asche/front.svg",
  5163. extra: 1258 / 1190,
  5164. bottom: 47 / 1305
  5165. }
  5166. },
  5167. frontUnderwear: {
  5168. height: math.unit(5, "meters"),
  5169. weight: math.unit(1000, "kg"),
  5170. name: "Front (Underwear)",
  5171. image: {
  5172. source: "./media/characters/asche/front-underwear.svg",
  5173. extra: 1258 / 1190,
  5174. bottom: 47 / 1305
  5175. }
  5176. },
  5177. frontDressed: {
  5178. height: math.unit(5, "meters"),
  5179. weight: math.unit(1000, "kg"),
  5180. name: "Front (Dressed)",
  5181. image: {
  5182. source: "./media/characters/asche/front-dressed.svg",
  5183. extra: 1258 / 1190,
  5184. bottom: 47 / 1305
  5185. }
  5186. },
  5187. frontArmor: {
  5188. height: math.unit(5, "meters"),
  5189. weight: math.unit(1000, "kg"),
  5190. name: "Front (Armored)",
  5191. image: {
  5192. source: "./media/characters/asche/front-armored.svg",
  5193. extra: 1374 / 1308,
  5194. bottom: 23 / 1397
  5195. }
  5196. },
  5197. mp724: {
  5198. height: math.unit(0.96, "meters"),
  5199. weight: math.unit(38, "kg"),
  5200. name: "H&K MP724",
  5201. image: {
  5202. source: "./media/characters/asche/h&k-mp724.svg"
  5203. }
  5204. },
  5205. side: {
  5206. height: math.unit(5, "meters"),
  5207. weight: math.unit(1000, "kg"),
  5208. name: "Side",
  5209. image: {
  5210. source: "./media/characters/asche/side.svg",
  5211. extra: 1717 / 1609,
  5212. bottom: 0.005
  5213. }
  5214. },
  5215. back: {
  5216. height: math.unit(5, "meters"),
  5217. weight: math.unit(1000, "kg"),
  5218. name: "Back",
  5219. image: {
  5220. source: "./media/characters/asche/back.svg",
  5221. extra: 1570 / 1501
  5222. }
  5223. },
  5224. },
  5225. [
  5226. {
  5227. name: "DEFCON 5",
  5228. height: math.unit(5, "meters")
  5229. },
  5230. {
  5231. name: "DEFCON 4",
  5232. height: math.unit(500, "meters"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "DEFCON 3",
  5237. height: math.unit(5, "km")
  5238. },
  5239. {
  5240. name: "DEFCON 2",
  5241. height: math.unit(500, "km")
  5242. },
  5243. {
  5244. name: "DEFCON 1",
  5245. height: math.unit(500000, "km")
  5246. },
  5247. {
  5248. name: "DEFCON 0",
  5249. height: math.unit(3, "gigaparsecs")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(2, "meters"),
  5258. weight: math.unit(76, "kg"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/gale/front.svg"
  5262. }
  5263. },
  5264. frontAlt1: {
  5265. height: math.unit(2, "meters"),
  5266. weight: math.unit(76, "kg"),
  5267. name: "Front (Alt 1)",
  5268. image: {
  5269. source: "./media/characters/gale/front-alt-1.svg"
  5270. }
  5271. },
  5272. frontAlt2: {
  5273. height: math.unit(2, "meters"),
  5274. weight: math.unit(76, "kg"),
  5275. name: "Front (Alt 2)",
  5276. image: {
  5277. source: "./media/characters/gale/front-alt-2.svg"
  5278. }
  5279. },
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(7, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(150, "feet"),
  5289. default: true
  5290. },
  5291. {
  5292. name: "Macro+",
  5293. height: math.unit(300, "feet")
  5294. },
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5299. {
  5300. front: {
  5301. height: math.unit(5 + 10/12, "feet"),
  5302. weight: math.unit(67, "kg"),
  5303. name: "Front",
  5304. image: {
  5305. source: "./media/characters/draylen/front.svg",
  5306. extra: 832/777,
  5307. bottom: 85/917
  5308. }
  5309. }
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(5 + 10/12, "feet")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(150, "feet"),
  5319. default: true
  5320. }
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(7 + 9 / 12, "feet"),
  5328. weight: math.unit(379, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/chez/front.svg"
  5332. }
  5333. },
  5334. side: {
  5335. height: math.unit(7 + 9 / 12, "feet"),
  5336. weight: math.unit(379, "lbs"),
  5337. name: "Side",
  5338. image: {
  5339. source: "./media/characters/chez/side.svg"
  5340. }
  5341. }
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(7 + 9 / 12, "feet"),
  5347. default: true
  5348. },
  5349. {
  5350. name: "God King",
  5351. height: math.unit(9750000, "meters")
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5357. {
  5358. front: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(275, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/kaylum/front.svg",
  5364. bottom: 0.01,
  5365. extra: 1166 / 1031
  5366. }
  5367. },
  5368. frontWingless: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(275, "lbs"),
  5371. name: "Front (Wingless)",
  5372. image: {
  5373. source: "./media/characters/kaylum/front-wingless.svg",
  5374. bottom: 0.01,
  5375. extra: 1117 / 1031
  5376. }
  5377. }
  5378. },
  5379. [
  5380. {
  5381. name: "Normal",
  5382. height: math.unit(3.05, "meters")
  5383. },
  5384. {
  5385. name: "Master",
  5386. height: math.unit(5.5, "meters")
  5387. },
  5388. {
  5389. name: "Rampage",
  5390. height: math.unit(19, "meters")
  5391. },
  5392. {
  5393. name: "Macro Lite",
  5394. height: math.unit(37, "meters")
  5395. },
  5396. {
  5397. name: "Hyper Predator",
  5398. height: math.unit(61, "meters")
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(138, "meters"),
  5403. default: true
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(5 + 5 / 12, "feet"),
  5412. weight: math.unit(120, "lbs"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/geta/front.svg",
  5416. extra: 1003/933,
  5417. bottom: 21/1024
  5418. }
  5419. },
  5420. paw: {
  5421. height: math.unit(0.35, "feet"),
  5422. name: "Paw",
  5423. image: {
  5424. source: "./media/characters/geta/paw.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Micro",
  5431. height: math.unit(3, "inches"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Normal",
  5436. height: math.unit(5 + 5 / 12, "feet")
  5437. }
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(300, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/tyrnn/front.svg"
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Main Height",
  5455. height: math.unit(355, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Fave. Height",
  5460. height: math.unit(2400, "feet")
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5466. {
  5467. front: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(300, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/appledectomy/front.svg"
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(2500, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(50, "miles"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "Gigamacro",
  5488. height: math.unit(5000, "miles")
  5489. },
  5490. {
  5491. name: "Teramacro",
  5492. height: math.unit(250000, "miles")
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5498. {
  5499. front: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(200, "lbs"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/vulpes/front.svg",
  5505. extra: 573 / 543,
  5506. bottom: 0.033
  5507. }
  5508. },
  5509. side: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(200, "lbs"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/vulpes/side.svg",
  5515. extra: 577 / 549,
  5516. bottom: 11 / 588
  5517. }
  5518. },
  5519. back: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(200, "lbs"),
  5522. name: "Back",
  5523. image: {
  5524. source: "./media/characters/vulpes/back.svg",
  5525. extra: 573 / 549,
  5526. bottom: 20 / 593
  5527. }
  5528. },
  5529. feet: {
  5530. height: math.unit(1.276, "feet"),
  5531. name: "Feet",
  5532. image: {
  5533. source: "./media/characters/vulpes/feet.svg"
  5534. }
  5535. },
  5536. maw: {
  5537. height: math.unit(1.18, "feet"),
  5538. name: "Maw",
  5539. image: {
  5540. source: "./media/characters/vulpes/maw.svg"
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Micro",
  5547. height: math.unit(2, "inches")
  5548. },
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(6.3, "feet")
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(850, "feet")
  5556. },
  5557. {
  5558. name: "Megamacro",
  5559. height: math.unit(7500, "feet"),
  5560. default: true
  5561. },
  5562. {
  5563. name: "Gigamacro",
  5564. height: math.unit(570000, "miles")
  5565. }
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5570. {
  5571. front: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(210, "lbs"),
  5574. name: "Front",
  5575. image: {
  5576. source: "./media/characters/rain-fallen/front.svg"
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(210, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/rain-fallen/side.svg"
  5585. }
  5586. },
  5587. back: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(210, "lbs"),
  5590. name: "Back",
  5591. image: {
  5592. source: "./media/characters/rain-fallen/back.svg"
  5593. }
  5594. },
  5595. feral: {
  5596. height: math.unit(9, "feet"),
  5597. weight: math.unit(700, "lbs"),
  5598. name: "Feral",
  5599. image: {
  5600. source: "./media/characters/rain-fallen/feral.svg"
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Meddling with Mortals",
  5607. height: math.unit(8 + 8/12, "feet")
  5608. },
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(5, "meter")
  5612. },
  5613. {
  5614. name: "Macro",
  5615. height: math.unit(150, "meter"),
  5616. default: true
  5617. },
  5618. {
  5619. name: "Megamacro",
  5620. height: math.unit(278e6, "meter")
  5621. },
  5622. {
  5623. name: "Gigamacro",
  5624. height: math.unit(2e9, "meter")
  5625. },
  5626. {
  5627. name: "Teramacro",
  5628. height: math.unit(8e12, "meter")
  5629. },
  5630. {
  5631. name: "Devourer",
  5632. height: math.unit(14, "zettameters")
  5633. },
  5634. {
  5635. name: "Scarlet King",
  5636. height: math.unit(18, "yottameters")
  5637. },
  5638. {
  5639. name: "Void",
  5640. height: math.unit(1e88, "yottameters")
  5641. }
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5646. {
  5647. standing: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(180, "lbs"),
  5650. name: "Standing",
  5651. image: {
  5652. source: "./media/characters/zaakira/standing.svg",
  5653. extra: 1599/1504,
  5654. bottom: 39/1638
  5655. }
  5656. },
  5657. laying: {
  5658. height: math.unit(3.3, "feet"),
  5659. weight: math.unit(180, "lbs"),
  5660. name: "Laying",
  5661. image: {
  5662. source: "./media/characters/zaakira/laying.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(12, "feet")
  5670. },
  5671. {
  5672. name: "Macro",
  5673. height: math.unit(279, "feet"),
  5674. default: true
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5680. {
  5681. femSfw: {
  5682. height: math.unit(8, "feet"),
  5683. weight: math.unit(350, "lb"),
  5684. name: "Fem",
  5685. image: {
  5686. source: "./media/characters/sigvald/fem-sfw.svg",
  5687. extra: 182 / 164,
  5688. bottom: 8.7 / 190.5
  5689. }
  5690. },
  5691. femNsfw: {
  5692. height: math.unit(8, "feet"),
  5693. weight: math.unit(350, "lb"),
  5694. name: "Fem (NSFW)",
  5695. image: {
  5696. source: "./media/characters/sigvald/fem-nsfw.svg",
  5697. extra: 182 / 164,
  5698. bottom: 8.7 / 190.5
  5699. }
  5700. },
  5701. maleNsfw: {
  5702. height: math.unit(8, "feet"),
  5703. weight: math.unit(350, "lb"),
  5704. name: "Male (NSFW)",
  5705. image: {
  5706. source: "./media/characters/sigvald/male-nsfw.svg",
  5707. extra: 182 / 164,
  5708. bottom: 8.7 / 190.5
  5709. }
  5710. },
  5711. hermNsfw: {
  5712. height: math.unit(8, "feet"),
  5713. weight: math.unit(350, "lb"),
  5714. name: "Herm (NSFW)",
  5715. image: {
  5716. source: "./media/characters/sigvald/herm-nsfw.svg",
  5717. extra: 182 / 164,
  5718. bottom: 8.7 / 190.5
  5719. }
  5720. },
  5721. dick: {
  5722. height: math.unit(2.36, "feet"),
  5723. name: "Dick",
  5724. image: {
  5725. source: "./media/characters/sigvald/dick.svg"
  5726. }
  5727. },
  5728. eye: {
  5729. height: math.unit(0.31, "feet"),
  5730. name: "Eye",
  5731. image: {
  5732. source: "./media/characters/sigvald/eye.svg"
  5733. }
  5734. },
  5735. mouth: {
  5736. height: math.unit(0.92, "feet"),
  5737. name: "Mouth",
  5738. image: {
  5739. source: "./media/characters/sigvald/mouth.svg"
  5740. }
  5741. },
  5742. paws: {
  5743. height: math.unit(2.2, "feet"),
  5744. name: "Paws",
  5745. image: {
  5746. source: "./media/characters/sigvald/paws.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(8, "feet")
  5754. },
  5755. {
  5756. name: "Large",
  5757. height: math.unit(12, "feet")
  5758. },
  5759. {
  5760. name: "Larger",
  5761. height: math.unit(20, "feet")
  5762. },
  5763. {
  5764. name: "Macro",
  5765. height: math.unit(150, "feet")
  5766. },
  5767. {
  5768. name: "Macro+",
  5769. height: math.unit(200, "feet"),
  5770. default: true
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5776. {
  5777. side: {
  5778. height: math.unit(12, "feet"),
  5779. weight: math.unit(2000, "kg"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/scott/side.svg",
  5783. extra: 754 / 724,
  5784. bottom: 0.069
  5785. }
  5786. },
  5787. upright: {
  5788. height: math.unit(12, "feet"),
  5789. weight: math.unit(2000, "kg"),
  5790. name: "Upright",
  5791. image: {
  5792. source: "./media/characters/scott/upright.svg",
  5793. extra: 3881 / 3722,
  5794. bottom: 0.05
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Normal",
  5801. height: math.unit(12, "feet"),
  5802. default: true
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5808. {
  5809. side: {
  5810. height: math.unit(8, "meters"),
  5811. weight: math.unit(84755, "lbs"),
  5812. name: "Side",
  5813. image: {
  5814. source: "./media/characters/tobias/side.svg",
  5815. extra: 1474 / 1096,
  5816. bottom: 38.9 / 1513.1235
  5817. }
  5818. },
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(8, "meters"),
  5824. default: true
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5830. {
  5831. front: {
  5832. height: math.unit(5.5, "feet"),
  5833. weight: math.unit(400, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/kieran/front.svg",
  5837. extra: 2694 / 2364,
  5838. bottom: 217 / 2908
  5839. }
  5840. },
  5841. side: {
  5842. height: math.unit(5.5, "feet"),
  5843. weight: math.unit(400, "lbs"),
  5844. name: "Side",
  5845. image: {
  5846. source: "./media/characters/kieran/side.svg",
  5847. extra: 875 / 777,
  5848. bottom: 84.6 / 959
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(5.5, "feet"),
  5856. default: true
  5857. },
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5862. {
  5863. side: {
  5864. height: math.unit(2, "meters"),
  5865. weight: math.unit(70, "kg"),
  5866. name: "Side",
  5867. image: {
  5868. source: "./media/characters/sanya/side.svg",
  5869. bottom: 0.02,
  5870. extra: 1.02
  5871. }
  5872. },
  5873. },
  5874. [
  5875. {
  5876. name: "Small",
  5877. height: math.unit(2, "meters")
  5878. },
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(3, "meters")
  5882. },
  5883. {
  5884. name: "Macro",
  5885. height: math.unit(16, "meters"),
  5886. default: true
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5892. {
  5893. front: {
  5894. height: math.unit(2, "meters"),
  5895. weight: math.unit(120, "kg"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/miranda/front.svg",
  5899. extra: 195 / 185,
  5900. bottom: 10.9 / 206.5
  5901. }
  5902. },
  5903. back: {
  5904. height: math.unit(2, "meters"),
  5905. weight: math.unit(120, "kg"),
  5906. name: "Back",
  5907. image: {
  5908. source: "./media/characters/miranda/back.svg",
  5909. extra: 201 / 193,
  5910. bottom: 2.3 / 203.7
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(10, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "James", species: ["deer"], tags: ["anthro"] },
  5924. {
  5925. side: {
  5926. height: math.unit(2, "meters"),
  5927. weight: math.unit(100, "kg"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/james/front.svg",
  5931. extra: 10 / 8.5
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(8.5, "feet"),
  5939. default: true
  5940. }
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5945. {
  5946. side: {
  5947. height: math.unit(9.5, "feet"),
  5948. weight: math.unit(2500, "lbs"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/heather/side.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(9.5, "feet"),
  5959. default: true
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5965. {
  5966. side: {
  5967. height: math.unit(6.5, "feet"),
  5968. weight: math.unit(400, "lbs"),
  5969. name: "Side",
  5970. image: {
  5971. source: "./media/characters/lukas/side.svg",
  5972. extra: 7.25 / 6.5
  5973. }
  5974. },
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(6.5, "feet"),
  5980. default: true
  5981. }
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5986. {
  5987. side: {
  5988. height: math.unit(5, "feet"),
  5989. weight: math.unit(3000, "lbs"),
  5990. name: "Side",
  5991. image: {
  5992. source: "./media/characters/louise/side.svg"
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(5, "feet"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6006. {
  6007. side: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(150, "lbs"),
  6010. name: "Side",
  6011. image: {
  6012. source: "./media/characters/ramona/side.svg",
  6013. extra: 871/854,
  6014. bottom: 41/912
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(6 + 4/12, "feet")
  6022. },
  6023. {
  6024. name: "Minimacro",
  6025. height: math.unit(5.3, "meters"),
  6026. default: true
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(20, "stories")
  6031. },
  6032. {
  6033. name: "Macro+",
  6034. height: math.unit(50, "stories")
  6035. },
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6040. {
  6041. standing: {
  6042. height: math.unit(5.75, "feet"),
  6043. weight: math.unit(160, "lbs"),
  6044. name: "Standing",
  6045. image: {
  6046. source: "./media/characters/deerpuff/standing.svg",
  6047. extra: 682 / 624
  6048. }
  6049. },
  6050. sitting: {
  6051. height: math.unit(5.75 / 1.79, "feet"),
  6052. weight: math.unit(160, "lbs"),
  6053. name: "Sitting",
  6054. image: {
  6055. source: "./media/characters/deerpuff/sitting.svg",
  6056. bottom: 44 / 400,
  6057. extra: 1
  6058. }
  6059. },
  6060. taurLaying: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(400, "lbs"),
  6063. name: "Taur (Laying)",
  6064. image: {
  6065. source: "./media/characters/deerpuff/taur-laying.svg"
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Puffball",
  6072. height: math.unit(6, "inches")
  6073. },
  6074. {
  6075. name: "Normalpuff",
  6076. height: math.unit(5.75, "feet")
  6077. },
  6078. {
  6079. name: "Macropuff",
  6080. height: math.unit(1500, "feet"),
  6081. default: true
  6082. },
  6083. {
  6084. name: "Megapuff",
  6085. height: math.unit(500, "miles")
  6086. },
  6087. {
  6088. name: "Gigapuff",
  6089. height: math.unit(250000, "miles")
  6090. },
  6091. {
  6092. name: "Omegapuff",
  6093. height: math.unit(1000, "lightyears")
  6094. },
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6099. {
  6100. stomping: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(170, "lbs"),
  6103. name: "Stomping",
  6104. image: {
  6105. source: "./media/characters/vivian/stomping.svg"
  6106. }
  6107. },
  6108. sitting: {
  6109. height: math.unit(6 / 1.75, "feet"),
  6110. weight: math.unit(170, "lbs"),
  6111. name: "Sitting",
  6112. image: {
  6113. source: "./media/characters/vivian/sitting.svg",
  6114. bottom: 1 / 6.4,
  6115. extra: 1,
  6116. }
  6117. },
  6118. },
  6119. [
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(7, "feet"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(10, "stories")
  6128. },
  6129. {
  6130. name: "Macro+",
  6131. height: math.unit(30, "stories")
  6132. },
  6133. {
  6134. name: "Megamacro",
  6135. height: math.unit(10, "miles")
  6136. },
  6137. {
  6138. name: "Megamacro+",
  6139. height: math.unit(2750000, "meters")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(160, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/prince/front.svg",
  6152. extra: 1938/1682,
  6153. bottom: 45/1983
  6154. }
  6155. },
  6156. back: {
  6157. height: math.unit(6, "feet"),
  6158. weight: math.unit(160, "lbs"),
  6159. name: "Back",
  6160. image: {
  6161. source: "./media/characters/prince/back.svg",
  6162. extra: 1955/1726,
  6163. bottom: 6/1961
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(7.75, "feet"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Not cute",
  6175. height: math.unit(17, "feet")
  6176. },
  6177. {
  6178. name: "I said NOT",
  6179. height: math.unit(91, "feet")
  6180. },
  6181. {
  6182. name: "Please stop",
  6183. height: math.unit(560, "feet")
  6184. },
  6185. {
  6186. name: "What have you done",
  6187. height: math.unit(2200, "feet")
  6188. },
  6189. {
  6190. name: "Deer God",
  6191. height: math.unit(3.6, "miles")
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6197. {
  6198. standing: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(300, "lbs"),
  6201. name: "Standing",
  6202. image: {
  6203. source: "./media/characters/psymon/standing.svg",
  6204. extra: 1888 / 1810,
  6205. bottom: 0.05
  6206. }
  6207. },
  6208. slithering: {
  6209. height: math.unit(6, "feet"),
  6210. weight: math.unit(300, "lbs"),
  6211. name: "Slithering",
  6212. image: {
  6213. source: "./media/characters/psymon/slithering.svg",
  6214. extra: 1330 / 1224
  6215. }
  6216. },
  6217. slitheringAlt: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(300, "lbs"),
  6220. name: "Slithering (Alt)",
  6221. image: {
  6222. source: "./media/characters/psymon/slithering-alt.svg",
  6223. extra: 1330 / 1224
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(11.25, "feet"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Large",
  6235. height: math.unit(27, "feet")
  6236. },
  6237. {
  6238. name: "Giant",
  6239. height: math.unit(87, "feet")
  6240. },
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(365, "feet")
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(3, "miles")
  6248. },
  6249. {
  6250. name: "World Serpent",
  6251. height: math.unit(8000, "miles")
  6252. },
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6257. {
  6258. front: {
  6259. height: math.unit(6, "feet"),
  6260. weight: math.unit(180, "lbs"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/daimos/front.svg",
  6264. extra: 4160 / 3897,
  6265. bottom: 0.021
  6266. }
  6267. }
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(8, "feet"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Big Dog",
  6277. height: math.unit(22, "feet")
  6278. },
  6279. {
  6280. name: "Macro",
  6281. height: math.unit(127, "feet")
  6282. },
  6283. {
  6284. name: "Megamacro",
  6285. height: math.unit(3600, "feet")
  6286. },
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6291. {
  6292. side: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(180, "lbs"),
  6295. name: "Side",
  6296. image: {
  6297. source: "./media/characters/blake/side.svg",
  6298. extra: 1212 / 1120,
  6299. bottom: 0.05
  6300. }
  6301. },
  6302. crouched: {
  6303. height: math.unit(6 * 0.57, "feet"),
  6304. weight: math.unit(180, "lbs"),
  6305. name: "Crouched",
  6306. image: {
  6307. source: "./media/characters/blake/crouched.svg",
  6308. extra: 840 / 587,
  6309. bottom: 0.04
  6310. }
  6311. },
  6312. bent: {
  6313. height: math.unit(6 * 0.75, "feet"),
  6314. weight: math.unit(180, "lbs"),
  6315. name: "Bent",
  6316. image: {
  6317. source: "./media/characters/blake/bent.svg",
  6318. extra: 592 / 544,
  6319. bottom: 0.035
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(8 + 1 / 6, "feet"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Big Backside",
  6331. height: math.unit(37, "feet")
  6332. },
  6333. {
  6334. name: "Subway Shredder",
  6335. height: math.unit(72, "feet")
  6336. },
  6337. {
  6338. name: "City Carver",
  6339. height: math.unit(1675, "feet")
  6340. },
  6341. {
  6342. name: "Tectonic Tweaker",
  6343. height: math.unit(2300, "miles")
  6344. },
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6349. {
  6350. front: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(180, "lbs"),
  6353. name: "Front",
  6354. image: {
  6355. source: "./media/characters/guisetto/front.svg",
  6356. extra: 856 / 817,
  6357. bottom: 0.06
  6358. }
  6359. },
  6360. airborne: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Airborne",
  6364. image: {
  6365. source: "./media/characters/guisetto/airborne.svg",
  6366. extra: 584 / 525
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(10 + 11 / 12, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Large",
  6378. height: math.unit(35, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(475, "feet")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(180, "lbs"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/luxor/front.svg",
  6395. extra: 2940 / 2152
  6396. }
  6397. },
  6398. back: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(180, "lbs"),
  6401. name: "Back",
  6402. image: {
  6403. source: "./media/characters/luxor/back.svg",
  6404. extra: 1083 / 960
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(5 + 5 / 6, "feet"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Lamp",
  6416. height: math.unit(50, "feet")
  6417. },
  6418. {
  6419. name: "Lämp",
  6420. height: math.unit(300, "feet")
  6421. },
  6422. {
  6423. name: "The sun is a lamp",
  6424. height: math.unit(250000, "miles")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(50, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/huoyan/front.svg"
  6437. }
  6438. },
  6439. side: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(180, "lbs"),
  6442. name: "Side",
  6443. image: {
  6444. source: "./media/characters/huoyan/side.svg"
  6445. }
  6446. },
  6447. },
  6448. [
  6449. {
  6450. name: "Chef",
  6451. height: math.unit(9, "feet")
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(65, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(780, "feet")
  6461. },
  6462. {
  6463. name: "Flaming Mountain",
  6464. height: math.unit(4.8, "miles")
  6465. },
  6466. {
  6467. name: "Celestial",
  6468. height: math.unit(765000, "miles")
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6474. {
  6475. front: {
  6476. height: math.unit(5 + 3 / 4, "feet"),
  6477. weight: math.unit(120, "lbs"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/tails/front.svg"
  6481. }
  6482. }
  6483. },
  6484. [
  6485. {
  6486. name: "Normal",
  6487. height: math.unit(5 + 3 / 4, "feet"),
  6488. default: true
  6489. }
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6494. {
  6495. front: {
  6496. height: math.unit(4, "feet"),
  6497. weight: math.unit(50, "lbs"),
  6498. name: "Front",
  6499. image: {
  6500. source: "./media/characters/rainy/front.svg"
  6501. }
  6502. }
  6503. },
  6504. [
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(800, "feet"),
  6508. default: true
  6509. }
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(150, "lbs"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/rainier/front.svg"
  6521. }
  6522. }
  6523. },
  6524. [
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(2, "mm"),
  6528. default: true
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(8 + 4/12, "feet"),
  6537. weight: math.unit(450, "kilograms"),
  6538. volume: math.unit(5, "cups"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/andy-renard/front.svg",
  6542. extra: 1839/1726,
  6543. bottom: 134/1973
  6544. }
  6545. },
  6546. back: {
  6547. height: math.unit(8 + 4/12, "feet"),
  6548. weight: math.unit(450, "kilograms"),
  6549. volume: math.unit(5, "cups"),
  6550. name: "Back",
  6551. image: {
  6552. source: "./media/characters/andy-renard/back.svg",
  6553. extra: 1838/1710,
  6554. bottom: 105/1943
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Tall",
  6561. height: math.unit(8 + 4/12, "feet")
  6562. },
  6563. {
  6564. name: "Mini Macro",
  6565. height: math.unit(15, "feet"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(100, "feet")
  6571. },
  6572. {
  6573. name: "Mega Macro",
  6574. height: math.unit(1000, "feet")
  6575. },
  6576. {
  6577. name: "Giga Macro",
  6578. height: math.unit(10, "miles")
  6579. },
  6580. {
  6581. name: "God Macro",
  6582. height: math.unit(1, "multiverse")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(210, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/cimmaron/front-sfw.svg",
  6595. extra: 701 / 676,
  6596. bottom: 0.046
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(210, "lbs"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/cimmaron/back-sfw.svg",
  6605. extra: 701 / 676,
  6606. bottom: 0.046
  6607. }
  6608. },
  6609. frontNsfw: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(210, "lbs"),
  6612. name: "Front (NSFW)",
  6613. image: {
  6614. source: "./media/characters/cimmaron/front-nsfw.svg",
  6615. extra: 701 / 676,
  6616. bottom: 0.046
  6617. }
  6618. },
  6619. backNsfw: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(210, "lbs"),
  6622. name: "Back (NSFW)",
  6623. image: {
  6624. source: "./media/characters/cimmaron/back-nsfw.svg",
  6625. extra: 701 / 676,
  6626. bottom: 0.046
  6627. }
  6628. },
  6629. dick: {
  6630. height: math.unit(1.714, "feet"),
  6631. name: "Dick",
  6632. image: {
  6633. source: "./media/characters/cimmaron/dick.svg"
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(6, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Macro Mayor",
  6645. height: math.unit(350, "meters")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(200, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/akari/front.svg",
  6658. extra: 962 / 901,
  6659. bottom: 0.04
  6660. }
  6661. }
  6662. },
  6663. [
  6664. {
  6665. name: "Micro",
  6666. height: math.unit(5, "inches"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(7, "feet")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(140, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/cynosura/front.svg",
  6684. extra: 437/410,
  6685. bottom: 9/446
  6686. }
  6687. },
  6688. back: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(140, "lbs"),
  6691. name: "Back",
  6692. image: {
  6693. source: "./media/characters/cynosura/back.svg",
  6694. extra: 1304/1160,
  6695. bottom: 71/1375
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(4, "inches")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(5.75, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Tall",
  6711. height: math.unit(10, "feet")
  6712. },
  6713. {
  6714. name: "Big",
  6715. height: math.unit(20, "feet")
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(50, "feet")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(13 + 2/12, "feet"),
  6728. weight: math.unit(800, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/gin/front.svg",
  6732. extra: 1312/1191,
  6733. bottom: 45/1357
  6734. }
  6735. },
  6736. mouth: {
  6737. height: math.unit(2.39 * 1.8, "feet"),
  6738. name: "Mouth",
  6739. image: {
  6740. source: "./media/characters/gin/mouth.svg"
  6741. }
  6742. },
  6743. hand: {
  6744. height: math.unit(1.57 * 2.19, "feet"),
  6745. name: "Hand",
  6746. image: {
  6747. source: "./media/characters/gin/hand.svg"
  6748. }
  6749. },
  6750. foot: {
  6751. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6752. name: "Foot",
  6753. image: {
  6754. source: "./media/characters/gin/foot.svg"
  6755. }
  6756. },
  6757. sole: {
  6758. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6759. name: "Sole",
  6760. image: {
  6761. source: "./media/characters/gin/sole.svg"
  6762. }
  6763. },
  6764. },
  6765. [
  6766. {
  6767. name: "Very Small",
  6768. height: math.unit(13 + 2 / 12, "feet")
  6769. },
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(600, "miles")
  6773. },
  6774. {
  6775. name: "Regular",
  6776. height: math.unit(20, "earths"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(2.2, "solarradii")
  6782. },
  6783. {
  6784. name: "Teramacro",
  6785. height: math.unit(1.2, "galaxies")
  6786. },
  6787. {
  6788. name: "Omegamacro",
  6789. height: math.unit(200, "universes")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6 + 1 / 6, "feet"),
  6798. weight: math.unit(178, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/guy/front.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(6 + 1 / 6, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Large",
  6813. height: math.unit(25 + 7 / 12, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(60 + 9 / 12, "feet")
  6818. },
  6819. {
  6820. name: "Macro+",
  6821. height: math.unit(246, "feet")
  6822. },
  6823. {
  6824. name: "Macro++",
  6825. height: math.unit(878, "feet")
  6826. }
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(9, "feet"),
  6834. weight: math.unit(800, "lbs"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/tiberius/front.svg",
  6838. extra: 2295 / 2071
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(9, "feet"),
  6843. weight: math.unit(800, "lbs"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/tiberius/back.svg",
  6847. extra: 2373 / 2160
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(9, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(600, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/surgo/front.svg",
  6868. extra: 3591 / 2227
  6869. }
  6870. },
  6871. back: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(600, "lbs"),
  6874. name: "Back",
  6875. image: {
  6876. source: "./media/characters/surgo/back.svg",
  6877. extra: 3557 / 2228
  6878. }
  6879. },
  6880. laying: {
  6881. height: math.unit(6 * 0.85, "feet"),
  6882. weight: math.unit(600, "lbs"),
  6883. name: "Laying",
  6884. image: {
  6885. source: "./media/characters/surgo/laying.svg"
  6886. }
  6887. },
  6888. },
  6889. [
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(6, "feet"),
  6893. default: true
  6894. }
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6899. {
  6900. side: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(150, "lbs"),
  6903. name: "Side",
  6904. image: {
  6905. source: "./media/characters/cibus/side.svg",
  6906. extra: 800 / 400
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(6, "feet"),
  6914. default: true
  6915. }
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(6, "feet"),
  6923. weight: math.unit(240, "lbs"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/nibbles/front.svg"
  6927. }
  6928. },
  6929. side: {
  6930. height: math.unit(6, "feet"),
  6931. weight: math.unit(240, "lbs"),
  6932. name: "Side",
  6933. image: {
  6934. source: "./media/characters/nibbles/side.svg"
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(9, "feet"),
  6942. default: true
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6948. {
  6949. side: {
  6950. height: math.unit(5 + 1 / 6, "feet"),
  6951. weight: math.unit(130, "lbs"),
  6952. name: "Side",
  6953. image: {
  6954. source: "./media/characters/rikky/side.svg",
  6955. extra: 851 / 801
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(5 + 1 / 6, "feet")
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(152, "feet"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Megamacro",
  6971. height: math.unit(7, "miles")
  6972. }
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6977. {
  6978. side: {
  6979. height: math.unit(370, "cm"),
  6980. weight: math.unit(350, "lbs"),
  6981. name: "Side",
  6982. image: {
  6983. source: "./media/characters/malfressa/side.svg"
  6984. }
  6985. },
  6986. walking: {
  6987. height: math.unit(370, "cm"),
  6988. weight: math.unit(350, "lbs"),
  6989. name: "Walking",
  6990. image: {
  6991. source: "./media/characters/malfressa/walking.svg"
  6992. }
  6993. },
  6994. feral: {
  6995. height: math.unit(2500, "cm"),
  6996. weight: math.unit(100000, "lbs"),
  6997. name: "Feral",
  6998. image: {
  6999. source: "./media/characters/malfressa/feral.svg",
  7000. extra: 2108 / 837,
  7001. bottom: 0.02
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Normal",
  7008. height: math.unit(370, "cm")
  7009. },
  7010. {
  7011. name: "Macro",
  7012. height: math.unit(300, "meters"),
  7013. default: true
  7014. }
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(60, "kg"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/jaro/front.svg",
  7026. extra: 845/817,
  7027. bottom: 45/890
  7028. }
  7029. },
  7030. back: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(60, "kg"),
  7033. name: "Back",
  7034. image: {
  7035. source: "./media/characters/jaro/back.svg",
  7036. extra: 847/817,
  7037. bottom: 34/881
  7038. }
  7039. },
  7040. },
  7041. [
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(7, "inches")
  7045. },
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(5.5, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Minimacro",
  7053. height: math.unit(20, "feet")
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(200, "meters")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(195, "lb"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/rogue/front.svg"
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(90, "feet"),
  7077. default: true
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7083. {
  7084. standing: {
  7085. height: math.unit(5 + 8 / 12, "feet"),
  7086. weight: math.unit(140, "lb"),
  7087. name: "Standing",
  7088. image: {
  7089. source: "./media/characters/piper/standing.svg",
  7090. extra: 1440/1284,
  7091. bottom: 66/1506
  7092. }
  7093. },
  7094. running: {
  7095. height: math.unit(5 + 8 / 12, "feet"),
  7096. weight: math.unit(140, "lb"),
  7097. name: "Running",
  7098. image: {
  7099. source: "./media/characters/piper/running.svg",
  7100. extra: 3948/3655,
  7101. bottom: 0/3948
  7102. }
  7103. },
  7104. sole: {
  7105. height: math.unit(0.81, "feet"),
  7106. weight: math.unit(2, "kg"),
  7107. name: "Sole",
  7108. image: {
  7109. source: "./media/characters/piper/sole.svg"
  7110. }
  7111. },
  7112. nipple: {
  7113. height: math.unit(0.25, "feet"),
  7114. weight: math.unit(1.5, "lb"),
  7115. name: "Nipple",
  7116. image: {
  7117. source: "./media/characters/piper/nipple.svg"
  7118. }
  7119. },
  7120. head: {
  7121. height: math.unit(1.1, "feet"),
  7122. name: "Head",
  7123. image: {
  7124. source: "./media/characters/piper/head.svg"
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Micro",
  7131. height: math.unit(2, "inches")
  7132. },
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(5 + 8 / 12, "feet")
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(250, "feet"),
  7140. default: true
  7141. },
  7142. {
  7143. name: "Megamacro",
  7144. height: math.unit(7, "miles")
  7145. },
  7146. ]
  7147. ))
  7148. characterMakers.push(() => makeCharacter(
  7149. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7150. {
  7151. front: {
  7152. height: math.unit(6, "feet"),
  7153. weight: math.unit(220, "lb"),
  7154. name: "Front",
  7155. image: {
  7156. source: "./media/characters/gemini/front.svg"
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(220, "lb"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/gemini/back.svg"
  7165. }
  7166. },
  7167. kneeling: {
  7168. height: math.unit(6 / 1.5, "feet"),
  7169. weight: math.unit(220, "lb"),
  7170. name: "Kneeling",
  7171. image: {
  7172. source: "./media/characters/gemini/kneeling.svg",
  7173. bottom: 0.02
  7174. }
  7175. },
  7176. },
  7177. [
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(300, "meters"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Megamacro",
  7185. height: math.unit(6900, "meters")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7191. {
  7192. anthro: {
  7193. height: math.unit(2.35, "meters"),
  7194. weight: math.unit(73, "kg"),
  7195. name: "Anthro",
  7196. image: {
  7197. source: "./media/characters/alicia/anthro.svg",
  7198. extra: 2571 / 2385,
  7199. bottom: 75 / 2648
  7200. }
  7201. },
  7202. paw: {
  7203. height: math.unit(1.32, "feet"),
  7204. name: "Paw",
  7205. image: {
  7206. source: "./media/characters/alicia/paw.svg"
  7207. }
  7208. },
  7209. feral: {
  7210. height: math.unit(1.69, "meters"),
  7211. weight: math.unit(73, "kg"),
  7212. name: "Feral",
  7213. image: {
  7214. source: "./media/characters/alicia/feral.svg",
  7215. extra: 2123 / 1715,
  7216. bottom: 222 / 2349
  7217. }
  7218. },
  7219. },
  7220. [
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(2.35, "meters")
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(60, "meters"),
  7228. default: true
  7229. },
  7230. {
  7231. name: "Megamacro",
  7232. height: math.unit(10000, "kilometers")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(7, "feet"),
  7241. weight: math.unit(250, "lbs"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/archy/front.svg"
  7245. }
  7246. }
  7247. },
  7248. [
  7249. {
  7250. name: "Micro",
  7251. height: math.unit(1, "inch")
  7252. },
  7253. {
  7254. name: "Shorty",
  7255. height: math.unit(5, "feet")
  7256. },
  7257. {
  7258. name: "Normal",
  7259. height: math.unit(7, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(600, "meters"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Megamacro",
  7268. height: math.unit(1, "mile")
  7269. },
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(1.65, "meters"),
  7277. weight: math.unit(74, "kg"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/berri/front.svg",
  7281. extra: 857 / 837,
  7282. bottom: 18 / 877
  7283. }
  7284. },
  7285. bum: {
  7286. height: math.unit(1.46, "feet"),
  7287. name: "Bum",
  7288. image: {
  7289. source: "./media/characters/berri/bum.svg"
  7290. }
  7291. },
  7292. mouth: {
  7293. height: math.unit(0.44, "feet"),
  7294. name: "Mouth",
  7295. image: {
  7296. source: "./media/characters/berri/mouth.svg"
  7297. }
  7298. },
  7299. paw: {
  7300. height: math.unit(0.826, "feet"),
  7301. name: "Paw",
  7302. image: {
  7303. source: "./media/characters/berri/paw.svg"
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(1.65, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(60, "m"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Megamacro",
  7319. height: math.unit(9.213, "km")
  7320. },
  7321. {
  7322. name: "Planet Eater",
  7323. height: math.unit(489, "megameters")
  7324. },
  7325. {
  7326. name: "Teramacro",
  7327. height: math.unit(2471635000000, "meters")
  7328. },
  7329. {
  7330. name: "Examacro",
  7331. height: math.unit(8.0624e+26, "meters")
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(1.72, "meters"),
  7340. weight: math.unit(68, "kg"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/lexi/front.svg"
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Very Smol",
  7350. height: math.unit(10, "mm")
  7351. },
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(6.8, "cm"),
  7355. default: true
  7356. },
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(1.72, "m")
  7360. }
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(1.69, "meters"),
  7368. weight: math.unit(68, "kg"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/martin/front.svg",
  7372. extra: 596 / 581
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Micro",
  7379. height: math.unit(6.85, "cm"),
  7380. default: true
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(1.69, "m")
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(1.69, "meters"),
  7393. weight: math.unit(68, "kg"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/juno/front.svg"
  7397. }
  7398. }
  7399. },
  7400. [
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(7, "cm")
  7404. },
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(1.89, "m")
  7408. },
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(353, "meters"),
  7412. default: true
  7413. }
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7418. {
  7419. front: {
  7420. height: math.unit(1.93, "meters"),
  7421. weight: math.unit(83, "kg"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/samantha/front.svg"
  7425. }
  7426. },
  7427. frontClothed: {
  7428. height: math.unit(1.93, "meters"),
  7429. weight: math.unit(83, "kg"),
  7430. name: "Front (Clothed)",
  7431. image: {
  7432. source: "./media/characters/samantha/front-clothed.svg"
  7433. }
  7434. },
  7435. back: {
  7436. height: math.unit(1.93, "meters"),
  7437. weight: math.unit(83, "kg"),
  7438. name: "Back",
  7439. image: {
  7440. source: "./media/characters/samantha/back.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(1.93, "m")
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(74, "meters"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro+",
  7456. height: math.unit(223, "meters"),
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(8381, "meters"),
  7461. },
  7462. {
  7463. name: "Megamacro+",
  7464. height: math.unit(12000, "kilometers")
  7465. },
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(1.92, "meters"),
  7473. weight: math.unit(80, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/dr-clay/front.svg"
  7477. }
  7478. },
  7479. frontClothed: {
  7480. height: math.unit(1.92, "meters"),
  7481. weight: math.unit(80, "kg"),
  7482. name: "Front (Clothed)",
  7483. image: {
  7484. source: "./media/characters/dr-clay/front-clothed.svg"
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(1.92, "m")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(214, "meters"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Macro+",
  7500. height: math.unit(12.237, "meters"),
  7501. },
  7502. {
  7503. name: "Megamacro",
  7504. height: math.unit(557, "megameters"),
  7505. },
  7506. {
  7507. name: "Unimaginable",
  7508. height: math.unit(120e9, "lightyears")
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(2, "meters"),
  7517. weight: math.unit(80, "kg"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7521. }
  7522. }
  7523. },
  7524. [
  7525. {
  7526. name: "Teramacro",
  7527. height: math.unit(500000, "lightyears"),
  7528. default: true
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7534. {
  7535. crux: {
  7536. height: math.unit(2, "meters"),
  7537. weight: math.unit(150, "kg"),
  7538. name: "Crux",
  7539. image: {
  7540. source: "./media/characters/vemus/crux.svg",
  7541. extra: 1074/936,
  7542. bottom: 23/1097
  7543. }
  7544. },
  7545. skunkTanuki: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(150, "kg"),
  7548. name: "Skunk-Tanuki",
  7549. image: {
  7550. source: "./media/characters/vemus/skunk-tanuki.svg",
  7551. extra: 926/893,
  7552. bottom: 20/946
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(4, "meters"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Big",
  7564. height: math.unit(8, "meters")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(100, "meters")
  7569. },
  7570. {
  7571. name: "Macro+",
  7572. height: math.unit(1500, "meters")
  7573. },
  7574. {
  7575. name: "Stellar",
  7576. height: math.unit(14e8, "meters")
  7577. },
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(2, "meters"),
  7585. weight: math.unit(70, "kg"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/beherit/front.svg",
  7589. extra: 1234/1109,
  7590. bottom: 55/1289
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(6, "feet")
  7598. },
  7599. {
  7600. name: "Lorg",
  7601. height: math.unit(25, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Lorger",
  7606. height: math.unit(75, "feet")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(200, "meters")
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(2, "meters"),
  7619. weight: math.unit(150, "kg"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/everett/front.svg",
  7623. extra: 1017/866,
  7624. bottom: 86/1103
  7625. }
  7626. },
  7627. paw: {
  7628. height: math.unit(2 / 3.6, "meters"),
  7629. name: "Paw",
  7630. image: {
  7631. source: "./media/characters/everett/paw.svg"
  7632. }
  7633. },
  7634. },
  7635. [
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(15, "feet"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Lorg",
  7643. height: math.unit(70, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Lorger",
  7648. height: math.unit(250, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(500, "meters")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(2, "meters"),
  7661. weight: math.unit(86, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/rose/front.svg",
  7665. extra: 1785/1636,
  7666. bottom: 30/1815
  7667. },
  7668. form: "liom",
  7669. default: true
  7670. },
  7671. frontSporty: {
  7672. height: math.unit(2, "meters"),
  7673. weight: math.unit(86, "kg"),
  7674. name: "Front (Sporty)",
  7675. image: {
  7676. source: "./media/characters/rose/front-sporty.svg",
  7677. extra: 350/335,
  7678. bottom: 10/360
  7679. },
  7680. form: "liom"
  7681. },
  7682. frontAlt: {
  7683. height: math.unit(1.6, "meters"),
  7684. weight: math.unit(86, "kg"),
  7685. name: "Front (Alt)",
  7686. image: {
  7687. source: "./media/characters/rose/front-alt.svg",
  7688. extra: 299/283,
  7689. bottom: 3/302
  7690. },
  7691. form: "liom"
  7692. },
  7693. plush: {
  7694. height: math.unit(2, "meters"),
  7695. weight: math.unit(86/3, "kg"),
  7696. name: "Plush",
  7697. image: {
  7698. source: "./media/characters/rose/plush.svg",
  7699. extra: 361/337,
  7700. bottom: 11/372
  7701. },
  7702. form: "plush",
  7703. default: true
  7704. },
  7705. faeStanding: {
  7706. height: math.unit(10, "cm"),
  7707. weight: math.unit(10, "grams"),
  7708. name: "Standing",
  7709. image: {
  7710. source: "./media/characters/rose/fae-standing.svg",
  7711. extra: 1189/1060,
  7712. bottom: 27/1216
  7713. },
  7714. form: "fae",
  7715. default: true
  7716. },
  7717. faeSitting: {
  7718. height: math.unit(5, "cm"),
  7719. weight: math.unit(10, "grams"),
  7720. name: "Sitting",
  7721. image: {
  7722. source: "./media/characters/rose/fae-sitting.svg",
  7723. extra: 737/577,
  7724. bottom: 356/1093
  7725. },
  7726. form: "fae"
  7727. },
  7728. faePaw: {
  7729. height: math.unit(1.35, "cm"),
  7730. name: "Paw",
  7731. image: {
  7732. source: "./media/characters/rose/fae-paw.svg"
  7733. },
  7734. form: "fae"
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "True Micro",
  7740. height: math.unit(9, "cm"),
  7741. form: "liom"
  7742. },
  7743. {
  7744. name: "Micro",
  7745. height: math.unit(16, "cm"),
  7746. form: "liom"
  7747. },
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(1.85, "meters"),
  7751. default: true,
  7752. form: "liom"
  7753. },
  7754. {
  7755. name: "Mini-Macro",
  7756. height: math.unit(5, "meters"),
  7757. form: "liom"
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(15, "meters"),
  7762. form: "liom"
  7763. },
  7764. {
  7765. name: "True Macro",
  7766. height: math.unit(40, "meters"),
  7767. form: "liom"
  7768. },
  7769. {
  7770. name: "City Scale",
  7771. height: math.unit(1, "km"),
  7772. form: "liom"
  7773. },
  7774. {
  7775. name: "Plushie",
  7776. height: math.unit(9, "cm"),
  7777. form: "plush",
  7778. default: true
  7779. },
  7780. {
  7781. name: "Fae",
  7782. height: math.unit(10, "cm"),
  7783. form: "fae",
  7784. default: true
  7785. },
  7786. ],
  7787. {
  7788. "liom": {
  7789. name: "Liom"
  7790. },
  7791. "plush": {
  7792. name: "Plush"
  7793. },
  7794. "fae": {
  7795. name: "Fae Fox",
  7796. default: true
  7797. }
  7798. }
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(2, "meters"),
  7805. weight: math.unit(350, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/regal/front.svg"
  7809. }
  7810. },
  7811. back: {
  7812. height: math.unit(2, "meters"),
  7813. weight: math.unit(350, "lbs"),
  7814. name: "Back",
  7815. image: {
  7816. source: "./media/characters/regal/back.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(350, "feet"),
  7824. default: true
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(4 + 11 / 12, "feet"),
  7833. weight: math.unit(100, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/opal/front.svg"
  7837. }
  7838. },
  7839. frontAlt: {
  7840. height: math.unit(4 + 11 / 12, "feet"),
  7841. weight: math.unit(100, "lbs"),
  7842. name: "Front (Alt)",
  7843. image: {
  7844. source: "./media/characters/opal/front-alt.svg"
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Small",
  7851. height: math.unit(4 + 11 / 12, "feet")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(20, "feet"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(120, "feet")
  7861. },
  7862. {
  7863. name: "Megamacro",
  7864. height: math.unit(80, "miles")
  7865. },
  7866. {
  7867. name: "True Size",
  7868. height: math.unit(100000, "lightyears")
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(6, "feet"),
  7877. weight: math.unit(200, "lbs"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/vector-wuff/front.svg"
  7881. }
  7882. }
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(2.8, "meters")
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(450, "meters"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(15, "kilometers")
  7897. }
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(256, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/dannik/front.svg"
  7909. }
  7910. }
  7911. },
  7912. [
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(69.57, "meters"),
  7916. default: true
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(120, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/azura-saharah/front.svg"
  7929. }
  7930. },
  7931. back: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(120, "lbs"),
  7934. name: "Back",
  7935. image: {
  7936. source: "./media/characters/azura-saharah/back.svg"
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(100, "feet"),
  7944. default: true
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7950. {
  7951. side: {
  7952. height: math.unit(5 + 4 / 12, "feet"),
  7953. weight: math.unit(163, "lbs"),
  7954. name: "Side",
  7955. image: {
  7956. source: "./media/characters/kennedy/side.svg"
  7957. }
  7958. }
  7959. },
  7960. [
  7961. {
  7962. name: "Standard Doggo",
  7963. height: math.unit(5 + 4 / 12, "feet")
  7964. },
  7965. {
  7966. name: "Big Doggo",
  7967. height: math.unit(25 + 3 / 12, "feet"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(5 + 5/12, "feet"),
  7977. weight: math.unit(100, "lbs"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/odios-de-lunar/front.svg",
  7981. extra: 1468/1323,
  7982. bottom: 22/1490
  7983. }
  7984. }
  7985. },
  7986. [
  7987. {
  7988. name: "Micro",
  7989. height: math.unit(3, "inches")
  7990. },
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(5.5, "feet"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(100, "feet")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8004. {
  8005. back: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(220, "lbs"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/mandake/back.svg"
  8011. }
  8012. }
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(7, "feet"),
  8018. default: true
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(78, "feet")
  8023. },
  8024. {
  8025. name: "Macro+",
  8026. height: math.unit(300, "meters")
  8027. },
  8028. {
  8029. name: "Macro++",
  8030. height: math.unit(2400, "feet")
  8031. },
  8032. {
  8033. name: "Megamacro",
  8034. height: math.unit(5167, "meters")
  8035. },
  8036. {
  8037. name: "Gigamacro",
  8038. height: math.unit(41769, "miles")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(120, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/yozey/front.svg"
  8051. }
  8052. },
  8053. frontAlt: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(120, "lbs"),
  8056. name: "Front (Alt)",
  8057. image: {
  8058. source: "./media/characters/yozey/front-alt.svg"
  8059. }
  8060. },
  8061. side: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(120, "lbs"),
  8064. name: "Side",
  8065. image: {
  8066. source: "./media/characters/yozey/side.svg"
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(3, "inches"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(6, "feet")
  8079. }
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(103, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/valeska-voss/front.svg"
  8091. }
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Mini-Sized Sub",
  8097. height: math.unit(3.1, "inches")
  8098. },
  8099. {
  8100. name: "Mid-Sized Sub",
  8101. height: math.unit(6.2, "inches")
  8102. },
  8103. {
  8104. name: "Full-Sized Sub",
  8105. height: math.unit(9.3, "inches")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(5 + 2 / 12, "foot"),
  8110. default: true
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(6, "feet"),
  8119. weight: math.unit(160, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/gene-zeta/front.svg",
  8123. extra: 3006 / 2826,
  8124. bottom: 182 / 3188
  8125. }
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(6, "inches")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(5 + 11 / 12, "foot"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(140, "feet")
  8141. },
  8142. {
  8143. name: "Supercharged",
  8144. height: math.unit(2500, "feet")
  8145. },
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(6, "feet"),
  8153. weight: math.unit(350, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/razinox/front.svg",
  8157. extra: 1686 / 1548,
  8158. bottom: 28.2 / 1868
  8159. }
  8160. },
  8161. back: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(350, "lbs"),
  8164. name: "Back",
  8165. image: {
  8166. source: "./media/characters/razinox/back.svg",
  8167. extra: 1660 / 1590,
  8168. bottom: 15 / 1665
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(10 + 8 / 12, "foot")
  8176. },
  8177. {
  8178. name: "Minimacro",
  8179. height: math.unit(15, "foot")
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(60, "foot"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Megamacro",
  8188. height: math.unit(5, "miles")
  8189. },
  8190. {
  8191. name: "Gigamacro",
  8192. height: math.unit(6000, "miles")
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(6, "feet"),
  8201. weight: math.unit(150, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/cobalt/front.svg"
  8205. }
  8206. }
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(8 + 1 / 12, "foot")
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(111, "foot"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Supracosmic",
  8220. height: math.unit(1e42, "feet")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(5, "inches"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/amanda/front.svg",
  8232. extra: 926/791,
  8233. bottom: 38/964
  8234. }
  8235. },
  8236. back: {
  8237. height: math.unit(5, "inches"),
  8238. name: "Back",
  8239. image: {
  8240. source: "./media/characters/amanda/back.svg",
  8241. extra: 909/805,
  8242. bottom: 43/952
  8243. }
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "Micro",
  8249. height: math.unit(5, "inches"),
  8250. default: true
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(2.75, "meters"),
  8259. weight: math.unit(1200, "lb"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/teal/front.svg",
  8263. extra: 2463 / 2320,
  8264. bottom: 166 / 2629
  8265. }
  8266. },
  8267. back: {
  8268. height: math.unit(2.75, "meters"),
  8269. weight: math.unit(1200, "lb"),
  8270. name: "Back",
  8271. image: {
  8272. source: "./media/characters/teal/back.svg",
  8273. extra: 2580 / 2489,
  8274. bottom: 151 / 2731
  8275. }
  8276. },
  8277. sitting: {
  8278. height: math.unit(1.9, "meters"),
  8279. weight: math.unit(1200, "lb"),
  8280. name: "Sitting",
  8281. image: {
  8282. source: "./media/characters/teal/sitting.svg",
  8283. extra: 623 / 590,
  8284. bottom: 121 / 744
  8285. }
  8286. },
  8287. standing: {
  8288. height: math.unit(2.75, "meters"),
  8289. weight: math.unit(1200, "lb"),
  8290. name: "Standing",
  8291. image: {
  8292. source: "./media/characters/teal/standing.svg",
  8293. extra: 923 / 893,
  8294. bottom: 60 / 983
  8295. }
  8296. },
  8297. stretching: {
  8298. height: math.unit(3.65, "meters"),
  8299. weight: math.unit(1200, "lb"),
  8300. name: "Stretching",
  8301. image: {
  8302. source: "./media/characters/teal/stretching.svg",
  8303. extra: 1276 / 1244,
  8304. bottom: 0 / 1276
  8305. }
  8306. },
  8307. legged: {
  8308. height: math.unit(1.3, "meters"),
  8309. weight: math.unit(100, "lb"),
  8310. name: "Legged",
  8311. image: {
  8312. source: "./media/characters/teal/legged.svg",
  8313. extra: 462 / 437,
  8314. bottom: 24 / 486
  8315. }
  8316. },
  8317. naga: {
  8318. height: math.unit(5.4, "meters"),
  8319. weight: math.unit(4000, "lb"),
  8320. name: "Naga",
  8321. image: {
  8322. source: "./media/characters/teal/naga.svg",
  8323. extra: 1902 / 1858,
  8324. bottom: 0 / 1902
  8325. }
  8326. },
  8327. hand: {
  8328. height: math.unit(0.52, "meters"),
  8329. name: "Hand",
  8330. image: {
  8331. source: "./media/characters/teal/hand.svg"
  8332. }
  8333. },
  8334. maw: {
  8335. height: math.unit(0.43, "meters"),
  8336. name: "Maw",
  8337. image: {
  8338. source: "./media/characters/teal/maw.svg"
  8339. }
  8340. },
  8341. slit: {
  8342. height: math.unit(0.25, "meters"),
  8343. name: "Slit",
  8344. image: {
  8345. source: "./media/characters/teal/slit.svg"
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Normal",
  8352. height: math.unit(2.75, "meters"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(300, "feet")
  8358. },
  8359. {
  8360. name: "Macro+",
  8361. height: math.unit(2000, "feet")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8367. {
  8368. frontCat: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(180, "lbs"),
  8371. name: "Front (Cat)",
  8372. image: {
  8373. source: "./media/characters/ravin-amulet/front-cat.svg"
  8374. }
  8375. },
  8376. frontCatAlt: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(180, "lbs"),
  8379. name: "Front (Alt, Cat)",
  8380. image: {
  8381. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8382. }
  8383. },
  8384. frontWerewolf: {
  8385. height: math.unit(6 * 1.2, "feet"),
  8386. weight: math.unit(225, "lbs"),
  8387. name: "Front (Werewolf)",
  8388. image: {
  8389. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8390. }
  8391. },
  8392. backWerewolf: {
  8393. height: math.unit(6 * 1.2, "feet"),
  8394. weight: math.unit(225, "lbs"),
  8395. name: "Back (Werewolf)",
  8396. image: {
  8397. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Nano",
  8404. height: math.unit(1, "micrometer")
  8405. },
  8406. {
  8407. name: "Micro",
  8408. height: math.unit(1, "inch")
  8409. },
  8410. {
  8411. name: "Normal",
  8412. height: math.unit(6, "feet"),
  8413. default: true
  8414. },
  8415. {
  8416. name: "Macro",
  8417. height: math.unit(60, "feet")
  8418. }
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8423. {
  8424. front: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(165, "lbs"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/fluoresce/front.svg"
  8430. }
  8431. }
  8432. },
  8433. [
  8434. {
  8435. name: "Micro",
  8436. height: math.unit(6, "cm")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(5 + 7 / 12, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(56, "feet")
  8446. },
  8447. {
  8448. name: "Megamacro",
  8449. height: math.unit(1.9, "miles")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(9 + 6 / 12, "feet"),
  8458. weight: math.unit(523, "lbs"),
  8459. name: "Side",
  8460. image: {
  8461. source: "./media/characters/aurora/side.svg",
  8462. extra: 474/393,
  8463. bottom: 5/479
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(9 + 6 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(96, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro+",
  8479. height: math.unit(243, "feet")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(194, "cm"),
  8488. weight: math.unit(90, "kg"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/ranek/front.svg",
  8492. extra: 1862/1791,
  8493. bottom: 80/1942
  8494. }
  8495. },
  8496. back: {
  8497. height: math.unit(194, "cm"),
  8498. weight: math.unit(90, "kg"),
  8499. name: "Back",
  8500. image: {
  8501. source: "./media/characters/ranek/back.svg",
  8502. extra: 1853/1787,
  8503. bottom: 74/1927
  8504. }
  8505. },
  8506. feral: {
  8507. height: math.unit(30, "cm"),
  8508. weight: math.unit(1.6, "lbs"),
  8509. name: "Feral",
  8510. image: {
  8511. source: "./media/characters/ranek/feral.svg",
  8512. extra: 990/631,
  8513. bottom: 29/1019
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(194, "cm"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(100, "meters")
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(5 + 6 / 12, "feet"),
  8534. weight: math.unit(153, "lbs"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/andrew-cooper/front.svg"
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Nano",
  8544. height: math.unit(1, "mm")
  8545. },
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(2, "inches")
  8549. },
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(5 + 6 / 12, "feet"),
  8553. default: true
  8554. }
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(180, "lbs"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/akane-sato/front.svg",
  8566. extra: 1219 / 1140
  8567. }
  8568. },
  8569. back: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(180, "lbs"),
  8572. name: "Back",
  8573. image: {
  8574. source: "./media/characters/akane-sato/back.svg",
  8575. extra: 1219 / 1170
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(2.5, "meters")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(250, "meters"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(25, "km")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(6, "feet"),
  8600. weight: math.unit(65, "kg"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/rook/front.svg",
  8604. extra: 960 / 950
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(8.8, "feet")
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(88, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Megamacro",
  8620. height: math.unit(8, "miles")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(12 + 2 / 12, "feet"),
  8629. weight: math.unit(808, "lbs"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/prodigy/front.svg"
  8633. }
  8634. }
  8635. },
  8636. [
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(12 + 2 / 12, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(143, "feet")
  8645. },
  8646. {
  8647. name: "Macro+",
  8648. height: math.unit(400, "feet")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(6, "feet"),
  8657. weight: math.unit(225, "lbs"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/daniel/front.svg"
  8661. }
  8662. },
  8663. leaning: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(225, "lbs"),
  8666. name: "Leaning",
  8667. image: {
  8668. source: "./media/characters/daniel/leaning.svg"
  8669. }
  8670. },
  8671. },
  8672. [
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(1000, "feet"),
  8676. default: true
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(88, "lbs"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/chiros/front.svg",
  8689. extra: 306 / 226
  8690. }
  8691. },
  8692. side: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(88, "lbs"),
  8695. name: "Side",
  8696. image: {
  8697. source: "./media/characters/chiros/side.svg",
  8698. extra: 306 / 226
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(6, "cm"),
  8706. default: true
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(100, "lbs"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/selka/front.svg",
  8719. extra: 947 / 887
  8720. }
  8721. }
  8722. },
  8723. [
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(5, "cm"),
  8727. default: true
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(8 + 3 / 12, "feet"),
  8736. weight: math.unit(424, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/verin/front.svg",
  8740. extra: 1845 / 1550
  8741. }
  8742. },
  8743. frontArmored: {
  8744. height: math.unit(8 + 3 / 12, "feet"),
  8745. weight: math.unit(424, "lbs"),
  8746. name: "Front (Armored)",
  8747. image: {
  8748. source: "./media/characters/verin/front-armor.svg",
  8749. extra: 1845 / 1550,
  8750. bottom: 0.01
  8751. }
  8752. },
  8753. back: {
  8754. height: math.unit(8 + 3 / 12, "feet"),
  8755. weight: math.unit(424, "lbs"),
  8756. name: "Back",
  8757. image: {
  8758. source: "./media/characters/verin/back.svg",
  8759. bottom: 0.1,
  8760. extra: 1
  8761. }
  8762. },
  8763. foot: {
  8764. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8765. name: "Foot",
  8766. image: {
  8767. source: "./media/characters/verin/foot.svg"
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(8 + 3 / 12, "feet")
  8775. },
  8776. {
  8777. name: "Minimacro",
  8778. height: math.unit(21, "feet"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(626, "feet")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(2.718, "meters"),
  8792. weight: math.unit(150, "lbs"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/sovrim-terraquian/front.svg",
  8796. extra: 1752/1689,
  8797. bottom: 36/1788
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(2.718, "meters"),
  8802. weight: math.unit(150, "lbs"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/sovrim-terraquian/back.svg",
  8806. extra: 1698/1657,
  8807. bottom: 58/1756
  8808. }
  8809. },
  8810. tongue: {
  8811. height: math.unit(2.865, "feet"),
  8812. name: "Tongue",
  8813. image: {
  8814. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8815. }
  8816. },
  8817. hand: {
  8818. height: math.unit(1.61, "feet"),
  8819. name: "Hand",
  8820. image: {
  8821. source: "./media/characters/sovrim-terraquian/hand.svg"
  8822. }
  8823. },
  8824. foot: {
  8825. height: math.unit(1.05, "feet"),
  8826. name: "Foot",
  8827. image: {
  8828. source: "./media/characters/sovrim-terraquian/foot.svg"
  8829. }
  8830. },
  8831. footAlt: {
  8832. height: math.unit(0.88, "feet"),
  8833. name: "Foot (Alt)",
  8834. image: {
  8835. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(2, "inches")
  8843. },
  8844. {
  8845. name: "Small",
  8846. height: math.unit(1, "meter")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(Math.E, "meters"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(20, "meters")
  8856. },
  8857. {
  8858. name: "Macro+",
  8859. height: math.unit(400, "meters")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(7, "feet"),
  8868. weight: math.unit(489, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/reece-silvermane/front.svg",
  8872. bottom: 0.02,
  8873. extra: 1
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(1.5, "miles"),
  8881. default: true
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(78, "kg"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/kane/front.svg",
  8894. extra: 978 / 899
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(2.1, "m"),
  8902. },
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(1, "km"),
  8906. default: true
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(6, "feet"),
  8915. weight: math.unit(200, "kg"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/tegon/front.svg",
  8919. bottom: 0.01,
  8920. extra: 1
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Micro",
  8927. height: math.unit(1, "inch")
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(6 + 3 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(300, "feet")
  8937. },
  8938. {
  8939. name: "Megamacro",
  8940. height: math.unit(69, "miles")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8946. {
  8947. side: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(2304, "lbs"),
  8950. name: "Side",
  8951. image: {
  8952. source: "./media/characters/arcturax/side.svg",
  8953. extra: 790 / 376,
  8954. bottom: 0.01
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Micro",
  8961. height: math.unit(2, "inch")
  8962. },
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(6, "feet")
  8966. },
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(39, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Megamacro",
  8974. height: math.unit(7, "miles")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(6, "feet"),
  8983. weight: math.unit(50, "lbs"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/sentri/front.svg",
  8987. extra: 1750 / 1570,
  8988. bottom: 0.025
  8989. }
  8990. },
  8991. frontAlt: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(50, "lbs"),
  8994. name: "Front (Alt)",
  8995. image: {
  8996. source: "./media/characters/sentri/front-alt.svg",
  8997. extra: 1750 / 1570,
  8998. bottom: 0.025
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(15, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Macro",
  9010. height: math.unit(2500, "feet")
  9011. }
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 8 / 12, "feet"),
  9019. weight: math.unit(130, "lbs"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/corvin/front.svg",
  9023. extra: 1803 / 1629
  9024. }
  9025. },
  9026. frontShirt: {
  9027. height: math.unit(5 + 8 / 12, "feet"),
  9028. weight: math.unit(130, "lbs"),
  9029. name: "Front (Shirt)",
  9030. image: {
  9031. source: "./media/characters/corvin/front-shirt.svg",
  9032. extra: 1803 / 1629
  9033. }
  9034. },
  9035. frontPoncho: {
  9036. height: math.unit(5 + 8 / 12, "feet"),
  9037. weight: math.unit(130, "lbs"),
  9038. name: "Front (Poncho)",
  9039. image: {
  9040. source: "./media/characters/corvin/front-poncho.svg",
  9041. extra: 1803 / 1629
  9042. }
  9043. },
  9044. side: {
  9045. height: math.unit(5 + 8 / 12, "feet"),
  9046. weight: math.unit(130, "lbs"),
  9047. name: "Side",
  9048. image: {
  9049. source: "./media/characters/corvin/side.svg",
  9050. extra: 1012 / 945
  9051. }
  9052. },
  9053. back: {
  9054. height: math.unit(5 + 8 / 12, "feet"),
  9055. weight: math.unit(130, "lbs"),
  9056. name: "Back",
  9057. image: {
  9058. source: "./media/characters/corvin/back.svg",
  9059. extra: 1803 / 1629
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Micro",
  9066. height: math.unit(3, "inches")
  9067. },
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(5 + 8 / 12, "feet")
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(300, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(500, "miles")
  9080. }
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(135, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/q/front.svg",
  9092. extra: 854 / 752,
  9093. bottom: 0.005
  9094. }
  9095. },
  9096. back: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(130, "lbs"),
  9099. name: "Back",
  9100. image: {
  9101. source: "./media/characters/q/back.svg",
  9102. extra: 854 / 752
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(90, "feet"),
  9110. default: true
  9111. },
  9112. {
  9113. name: "Extra Macro",
  9114. height: math.unit(300, "feet"),
  9115. },
  9116. {
  9117. name: "BIG WALF",
  9118. height: math.unit(750, "feet"),
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(3, "feet"),
  9127. weight: math.unit(28, "lbs"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/citrine/front.svg"
  9131. }
  9132. }
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(3, "feet"),
  9138. default: true
  9139. }
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9144. {
  9145. front: {
  9146. height: math.unit(14, "feet"),
  9147. weight: math.unit(1450, "kg"),
  9148. preyCapacity: math.unit(15, "people"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/aura-starwind/front.svg",
  9152. extra: 1440/1327,
  9153. bottom: 11/1451
  9154. }
  9155. },
  9156. side: {
  9157. height: math.unit(14, "feet"),
  9158. weight: math.unit(1450, "kg"),
  9159. preyCapacity: math.unit(15, "people"),
  9160. name: "Side",
  9161. image: {
  9162. source: "./media/characters/aura-starwind/side.svg",
  9163. extra: 1654 / 1497
  9164. }
  9165. },
  9166. taur: {
  9167. height: math.unit(18, "feet"),
  9168. weight: math.unit(5500, "kg"),
  9169. preyCapacity: math.unit(50, "people"),
  9170. name: "Taur",
  9171. image: {
  9172. source: "./media/characters/aura-starwind/taur.svg",
  9173. extra: 1760 / 1650
  9174. }
  9175. },
  9176. feral: {
  9177. height: math.unit(46, "feet"),
  9178. weight: math.unit(25000, "kg"),
  9179. preyCapacity: math.unit(120, "people"),
  9180. name: "Feral",
  9181. image: {
  9182. source: "./media/characters/aura-starwind/feral.svg"
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(14, "feet"),
  9190. default: true
  9191. },
  9192. {
  9193. name: "Macro",
  9194. height: math.unit(50, "meters")
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(5000, "meters")
  9199. },
  9200. {
  9201. name: "Gigamacro",
  9202. height: math.unit(100000, "kilometers")
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9208. {
  9209. front: {
  9210. height: math.unit(2 + 7 / 12, "feet"),
  9211. weight: math.unit(32, "lbs"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/rivet/front.svg",
  9215. extra: 1716 / 1658,
  9216. bottom: 0.03
  9217. }
  9218. },
  9219. foot: {
  9220. height: math.unit(0.551, "feet"),
  9221. name: "Rivet's Foot",
  9222. image: {
  9223. source: "./media/characters/rivet/foot.svg"
  9224. },
  9225. rename: true
  9226. }
  9227. },
  9228. [
  9229. {
  9230. name: "Micro",
  9231. height: math.unit(1.5, "inches"),
  9232. },
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(2 + 7 / 12, "feet"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(85, "feet")
  9241. },
  9242. {
  9243. name: "Megamacro",
  9244. height: math.unit(2.2, "km")
  9245. }
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(5 + 9 / 12, "feet"),
  9253. weight: math.unit(150, "lbs"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/coffee/front.svg",
  9257. extra: 946/880,
  9258. bottom: 66/1012
  9259. }
  9260. },
  9261. foot: {
  9262. height: math.unit(1.29, "feet"),
  9263. name: "Foot",
  9264. image: {
  9265. source: "./media/characters/coffee/foot.svg"
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Micro",
  9272. height: math.unit(2, "inches"),
  9273. },
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(5 + 9 / 12, "feet"),
  9277. default: true
  9278. },
  9279. {
  9280. name: "Macro",
  9281. height: math.unit(800, "feet")
  9282. },
  9283. {
  9284. name: "Megamacro",
  9285. height: math.unit(25, "miles")
  9286. }
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(200, "lbs"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/chari-gal/front.svg",
  9298. extra: 1568 / 1385,
  9299. bottom: 0.047
  9300. }
  9301. },
  9302. gigantamax: {
  9303. height: math.unit(6 * 16, "feet"),
  9304. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9305. name: "Gigantamax",
  9306. image: {
  9307. source: "./media/characters/chari-gal/gigantamax.svg",
  9308. extra: 1124 / 888,
  9309. bottom: 0.03
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(5 + 7 / 12, "feet")
  9317. },
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(200, "feet"),
  9321. default: true
  9322. }
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(150, "lbs"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/nova/front.svg",
  9334. extra: 5000 / 4722,
  9335. bottom: 0.02
  9336. }
  9337. }
  9338. },
  9339. [
  9340. {
  9341. name: "Micro-",
  9342. height: math.unit(0.8, "inches")
  9343. },
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(2, "inches"),
  9347. default: true
  9348. },
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9353. {
  9354. koboldFront: {
  9355. height: math.unit(3 + 1 / 12, "feet"),
  9356. weight: math.unit(21.7, "lbs"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/argent/kobold-front.svg",
  9360. extra: 1471 / 1331,
  9361. bottom: 100.8 / 1575.5
  9362. },
  9363. form: "kobold",
  9364. default: true
  9365. },
  9366. dragonFront: {
  9367. height: math.unit(75, "inches"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/argent/dragon-front.svg",
  9371. extra: 1389/1248,
  9372. bottom: 54/1443
  9373. },
  9374. form: "dragon",
  9375. },
  9376. dragonBack: {
  9377. height: math.unit(75, "inches"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/argent/dragon-back.svg",
  9381. extra: 1399/1271,
  9382. bottom: 23/1422
  9383. },
  9384. form: "dragon",
  9385. },
  9386. dragonDressed: {
  9387. height: math.unit(75, "inches"),
  9388. name: "Dressed",
  9389. image: {
  9390. source: "./media/characters/argent/dragon-dressed.svg",
  9391. extra: 1350/1215,
  9392. bottom: 26/1376
  9393. },
  9394. form: "dragon"
  9395. },
  9396. dragonHead: {
  9397. height: math.unit(23.5, "inches"),
  9398. name: "Head",
  9399. image: {
  9400. source: "./media/characters/argent/dragon-head.svg"
  9401. },
  9402. form: "dragon",
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(2, "inches"),
  9409. form: "kobold",
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(3 + 1 / 12, "feet"),
  9414. form: "kobold",
  9415. default: true
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(120, "feet"),
  9420. form: "kobold",
  9421. },
  9422. {
  9423. name: "Speck",
  9424. height: math.unit(1, "mm"),
  9425. form: "dragon",
  9426. },
  9427. {
  9428. name: "Tiny",
  9429. height: math.unit(1, "cm"),
  9430. form: "dragon",
  9431. },
  9432. {
  9433. name: "Micro",
  9434. height: math.unit(5, "cm"),
  9435. form: "dragon",
  9436. },
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(75, "inches"),
  9440. form: "dragon",
  9441. default: true
  9442. },
  9443. {
  9444. name: "Extra Tall",
  9445. height: math.unit(9, "feet"),
  9446. form: "dragon",
  9447. },
  9448. {
  9449. name: "Inconvenient",
  9450. height: math.unit(5, "meters"),
  9451. form: "dragon",
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(70, "meters"),
  9456. form: "dragon",
  9457. },
  9458. {
  9459. name: "Macro+",
  9460. height: math.unit(250, "meters"),
  9461. form: "dragon",
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(20, "km"),
  9466. form: "dragon",
  9467. },
  9468. {
  9469. name: "Mountainous",
  9470. height: math.unit(100, "km"),
  9471. form: "dragon",
  9472. },
  9473. {
  9474. name: "Continental",
  9475. height: math.unit(2, "megameters"),
  9476. form: "dragon",
  9477. },
  9478. {
  9479. name: "Too Big",
  9480. height: math.unit(900, "megameters"),
  9481. form: "dragon",
  9482. },
  9483. ],
  9484. {
  9485. "kobold": {
  9486. name: "Kobold",
  9487. default: true
  9488. },
  9489. "dragon": {
  9490. name: "Dragon",
  9491. },
  9492. }
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9496. {
  9497. lamp: {
  9498. height: math.unit(7 * 1559 / 989, "feet"),
  9499. name: "Magic Lamp",
  9500. image: {
  9501. source: "./media/characters/mira-al-cul/lamp.svg",
  9502. extra: 1617 / 1559
  9503. }
  9504. },
  9505. front: {
  9506. height: math.unit(7, "feet"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/mira-al-cul/front.svg",
  9510. extra: 1044 / 990
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Heavily Restricted",
  9517. height: math.unit(7 * 1559 / 989, "feet")
  9518. },
  9519. {
  9520. name: "Freshly Freed",
  9521. height: math.unit(50 * 1559 / 989, "feet")
  9522. },
  9523. {
  9524. name: "World Encompassing",
  9525. height: math.unit(10000 * 1559 / 989, "miles")
  9526. },
  9527. {
  9528. name: "Galactic",
  9529. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9530. },
  9531. {
  9532. name: "Palmed Universe",
  9533. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Multiversal Matriarch",
  9538. height: math.unit(8.87e10, "yottameters")
  9539. },
  9540. {
  9541. name: "Void Mother",
  9542. height: math.unit(3.14e110, "yottaparsecs")
  9543. },
  9544. {
  9545. name: "Toying with Transcendence",
  9546. height: math.unit(1e307, "meters")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9552. {
  9553. front: {
  9554. height: math.unit(17 + 1 / 12, "feet"),
  9555. weight: math.unit(476.2 * 5, "lbs"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/kuro-shi-uchū/front.svg",
  9559. extra: 2329 / 1835,
  9560. bottom: 0.02
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(2, "inches")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(12, "meters")
  9572. },
  9573. {
  9574. name: "Planetary",
  9575. height: math.unit(0.00929, "AU"),
  9576. default: true
  9577. },
  9578. {
  9579. name: "Universal",
  9580. height: math.unit(20, "gigaparsecs")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(5 + 2 / 12, "feet"),
  9589. weight: math.unit(120, "lbs"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/katherine/front.svg",
  9593. extra: 2075 / 1969
  9594. }
  9595. },
  9596. dress: {
  9597. height: math.unit(5 + 2 / 12, "feet"),
  9598. weight: math.unit(120, "lbs"),
  9599. name: "Dress",
  9600. image: {
  9601. source: "./media/characters/katherine/dress.svg",
  9602. extra: 2258 / 2064
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Micro",
  9609. height: math.unit(1, "inches"),
  9610. default: true
  9611. },
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(5 + 2 / 12, "feet")
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(100, "meters")
  9619. },
  9620. {
  9621. name: "Megamacro",
  9622. height: math.unit(80, "miles")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(7 + 8 / 12, "feet"),
  9631. weight: math.unit(250, "lbs"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/yevis/front.svg",
  9635. extra: 1938 / 1755
  9636. }
  9637. }
  9638. },
  9639. [
  9640. {
  9641. name: "Mortal",
  9642. height: math.unit(7 + 8 / 12, "feet")
  9643. },
  9644. {
  9645. name: "Battle",
  9646. height: math.unit(25 + 11 / 12, "feet")
  9647. },
  9648. {
  9649. name: "Wrath",
  9650. height: math.unit(1654 + 11 / 12, "feet")
  9651. },
  9652. {
  9653. name: "Planet Destroyer",
  9654. height: math.unit(12000, "miles")
  9655. },
  9656. {
  9657. name: "Galaxy Conqueror",
  9658. height: math.unit(1.45, "zettameters"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Universal War",
  9663. height: math.unit(184, "gigaparsecs")
  9664. },
  9665. {
  9666. name: "Eternity War",
  9667. height: math.unit(1.98e55, "yottaparsecs")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(5 + 8 / 12, "feet"),
  9676. weight: math.unit(63, "kg"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/xavier/front.svg",
  9680. extra: 944 / 883
  9681. }
  9682. },
  9683. frontStretch: {
  9684. height: math.unit(5 + 8 / 12, "feet"),
  9685. weight: math.unit(63, "kg"),
  9686. name: "Stretching",
  9687. image: {
  9688. source: "./media/characters/xavier/front-stretch.svg",
  9689. extra: 962 / 820
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Normal",
  9696. height: math.unit(5 + 8 / 12, "feet")
  9697. },
  9698. {
  9699. name: "Macro",
  9700. height: math.unit(100, "meters"),
  9701. default: true
  9702. },
  9703. {
  9704. name: "McLargeHuge",
  9705. height: math.unit(10, "miles")
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(5 + 5 / 12, "feet"),
  9714. weight: math.unit(150, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/joshii/front.svg",
  9718. extra: 765 / 653,
  9719. bottom: 51 / 816
  9720. }
  9721. },
  9722. foot: {
  9723. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9724. name: "Foot",
  9725. image: {
  9726. source: "./media/characters/joshii/foot.svg"
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Micro",
  9733. height: math.unit(2, "inches")
  9734. },
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5 + 5 / 12, "feet")
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(785, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(24.5, "miles")
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(150, "lb"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/goddess-elizabeth/front.svg",
  9759. extra: 1800 / 1525,
  9760. bottom: 0.005
  9761. }
  9762. },
  9763. foot: {
  9764. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9765. name: "Foot",
  9766. image: {
  9767. source: "./media/characters/goddess-elizabeth/foot.svg"
  9768. }
  9769. },
  9770. mouth: {
  9771. height: math.unit(6, "feet"),
  9772. name: "Mouth",
  9773. image: {
  9774. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Micro",
  9781. height: math.unit(12, "feet")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(80, "miles"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Macro",
  9790. height: math.unit(15000, "parsecs")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5 + 9 / 12, "feet"),
  9799. weight: math.unit(144, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/kara/front.svg"
  9803. }
  9804. },
  9805. feet: {
  9806. height: math.unit(6 / 6.765, "feet"),
  9807. name: "Kara's Feet",
  9808. rename: true,
  9809. image: {
  9810. source: "./media/characters/kara/feet.svg"
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(5 + 9 / 12, "feet")
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(174, "feet"),
  9822. default: true
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(18, "feet"),
  9831. weight: math.unit(4050, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/tyrone/front.svg",
  9835. extra: 2405 / 2270,
  9836. bottom: 182 / 2587
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(18, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Macro",
  9848. height: math.unit(300, "feet")
  9849. },
  9850. {
  9851. name: "Megamacro",
  9852. height: math.unit(15, "km")
  9853. },
  9854. {
  9855. name: "Gigamacro",
  9856. height: math.unit(500, "km")
  9857. },
  9858. {
  9859. name: "Teramacro",
  9860. height: math.unit(0.5, "gigameters")
  9861. },
  9862. {
  9863. name: "Omnimacro",
  9864. height: math.unit(1e252, "yottauniverse")
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(7 + 8 / 12, "feet"),
  9873. weight: math.unit(120, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/danny/front.svg",
  9877. extra: 1490 / 1350
  9878. }
  9879. },
  9880. back: {
  9881. height: math.unit(7 + 8 / 12, "feet"),
  9882. weight: math.unit(120, "lb"),
  9883. name: "Back",
  9884. image: {
  9885. source: "./media/characters/danny/back.svg",
  9886. extra: 1490 / 1350
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Normal",
  9893. height: math.unit(7 + 8 / 12, "feet"),
  9894. default: true
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(3.5, "inches"),
  9903. weight: math.unit(19, "grams"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/mallow/front.svg",
  9907. extra: 471 / 431
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(3.5, "inches"),
  9912. weight: math.unit(19, "grams"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/mallow/back.svg",
  9916. extra: 471 / 431
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(3.5, "inches"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(9, "feet"),
  9933. weight: math.unit(230, "kg"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/starry-aqua/front.svg"
  9937. }
  9938. },
  9939. back: {
  9940. height: math.unit(9, "feet"),
  9941. weight: math.unit(230, "kg"),
  9942. name: "Back",
  9943. image: {
  9944. source: "./media/characters/starry-aqua/back.svg"
  9945. }
  9946. },
  9947. hand: {
  9948. height: math.unit(9 * 0.1168, "feet"),
  9949. name: "Hand",
  9950. image: {
  9951. source: "./media/characters/starry-aqua/hand.svg"
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(9 * 0.18, "feet"),
  9956. name: "Foot",
  9957. image: {
  9958. source: "./media/characters/starry-aqua/foot.svg"
  9959. }
  9960. }
  9961. },
  9962. [
  9963. {
  9964. name: "Micro",
  9965. height: math.unit(3, "inches")
  9966. },
  9967. {
  9968. name: "Normal",
  9969. height: math.unit(9, "feet")
  9970. },
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(300, "feet"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(3200, "feet")
  9979. }
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(15, "feet"),
  9987. weight: math.unit(5026, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/luka-towers/front.svg",
  9991. extra: 1269/1133,
  9992. bottom: 51/1320
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(15, "feet"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Minimacro",
  10004. height: math.unit(25, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(320, "feet")
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(35000, "feet")
  10013. },
  10014. {
  10015. name: "Gigamacro",
  10016. height: math.unit(4000, "miles")
  10017. },
  10018. {
  10019. name: "Teramacro",
  10020. height: math.unit(15000, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(150, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/natalie-nightring/front.svg",
  10033. extra: 1,
  10034. bottom: 0.06
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Uh Oh",
  10041. height: math.unit(0.1, "mm")
  10042. },
  10043. {
  10044. name: "Small",
  10045. height: math.unit(3, "inches")
  10046. },
  10047. {
  10048. name: "Human Scale",
  10049. height: math.unit(6, "feet")
  10050. },
  10051. {
  10052. name: "Librarian",
  10053. height: math.unit(50, "feet"),
  10054. default: true
  10055. },
  10056. {
  10057. name: "Immense",
  10058. height: math.unit(200, "miles")
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10064. {
  10065. front: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(180, "lbs"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/danni-rosie/front.svg",
  10071. extra: 1260 / 1128,
  10072. bottom: 0.022
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Micro",
  10079. height: math.unit(2, "inches"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(5 + 9 / 12, "feet"),
  10089. weight: math.unit(220, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/samantha-kruse/front.svg",
  10093. extra: (985 / 935),
  10094. bottom: 0.03
  10095. }
  10096. },
  10097. frontUndressed: {
  10098. height: math.unit(5 + 9 / 12, "feet"),
  10099. weight: math.unit(220, "lb"),
  10100. name: "Front (Undressed)",
  10101. image: {
  10102. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10103. extra: (973 / 923),
  10104. bottom: 0.025
  10105. }
  10106. },
  10107. fat: {
  10108. height: math.unit(5 + 9 / 12, "feet"),
  10109. weight: math.unit(900, "lb"),
  10110. name: "Front (Fat)",
  10111. image: {
  10112. source: "./media/characters/samantha-kruse/fat.svg",
  10113. extra: 2688 / 2561
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(5 + 9 / 12, "feet"),
  10121. default: true
  10122. }
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10127. {
  10128. back: {
  10129. height: math.unit(5 + 4 / 12, "feet"),
  10130. weight: math.unit(4963, "lb"),
  10131. name: "Back",
  10132. image: {
  10133. source: "./media/characters/amelia-rosie/back.svg",
  10134. extra: 1113 / 963,
  10135. bottom: 0.01
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Level 0",
  10142. height: math.unit(5 + 4 / 12, "feet")
  10143. },
  10144. {
  10145. name: "Level 1",
  10146. height: math.unit(164597, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Level 2",
  10151. height: math.unit(956243, "miles")
  10152. },
  10153. {
  10154. name: "Level 3",
  10155. height: math.unit(29421709423, "miles")
  10156. },
  10157. {
  10158. name: "Level 4",
  10159. height: math.unit(154, "lightyears")
  10160. },
  10161. {
  10162. name: "Level 5",
  10163. height: math.unit(4738272, "lightyears")
  10164. },
  10165. {
  10166. name: "Level 6",
  10167. height: math.unit(145787152896, "lightyears")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(5 + 11 / 12, "feet"),
  10176. weight: math.unit(65, "kg"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/rook-kitara/front.svg",
  10180. extra: 1347 / 1274,
  10181. bottom: 0.005
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Totally Unfair",
  10188. height: math.unit(1.8, "mm")
  10189. },
  10190. {
  10191. name: "Lap Rookie",
  10192. height: math.unit(1.4, "feet")
  10193. },
  10194. {
  10195. name: "Normal",
  10196. height: math.unit(5 + 11 / 12, "feet"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "How Did This Happen",
  10201. height: math.unit(80, "miles")
  10202. }
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(7, "feet"),
  10210. weight: math.unit(300, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/pisces/front.svg",
  10214. extra: 2255 / 2115,
  10215. bottom: 0.03
  10216. }
  10217. },
  10218. back: {
  10219. height: math.unit(7, "feet"),
  10220. weight: math.unit(300, "lb"),
  10221. name: "Back",
  10222. image: {
  10223. source: "./media/characters/pisces/back.svg",
  10224. extra: 2146 / 2055,
  10225. bottom: 0.04
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(7, "feet"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Swimming Pool",
  10237. height: math.unit(12.2, "meters")
  10238. },
  10239. {
  10240. name: "Olympic Swimming Pool",
  10241. height: math.unit(56.3, "meters")
  10242. },
  10243. {
  10244. name: "Lake Superior",
  10245. height: math.unit(93900, "meters")
  10246. },
  10247. {
  10248. name: "Mediterranean Sea",
  10249. height: math.unit(644457, "meters")
  10250. },
  10251. {
  10252. name: "World's Oceans",
  10253. height: math.unit(4567491, "meters")
  10254. },
  10255. ]
  10256. ))
  10257. characterMakers.push(() => makeCharacter(
  10258. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10259. {
  10260. front: {
  10261. height: math.unit(2.3, "meters"),
  10262. weight: math.unit(120, "kg"),
  10263. name: "Front",
  10264. image: {
  10265. source: "./media/characters/zelas/front.svg"
  10266. }
  10267. },
  10268. side: {
  10269. height: math.unit(2.3, "meters"),
  10270. weight: math.unit(120, "kg"),
  10271. name: "Side",
  10272. image: {
  10273. source: "./media/characters/zelas/side.svg"
  10274. }
  10275. },
  10276. back: {
  10277. height: math.unit(2.3, "meters"),
  10278. weight: math.unit(120, "kg"),
  10279. name: "Back",
  10280. image: {
  10281. source: "./media/characters/zelas/back.svg"
  10282. }
  10283. },
  10284. foot: {
  10285. height: math.unit(1.116, "feet"),
  10286. name: "Foot",
  10287. image: {
  10288. source: "./media/characters/zelas/foot.svg"
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(2.3, "meters")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(30, "meters"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(1, "inch"),
  10309. weight: math.unit(0.21, "grams"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/talbot/front.svg",
  10313. extra: 594 / 544
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Micro",
  10320. height: math.unit(1, "inch"),
  10321. default: true
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10327. {
  10328. front: {
  10329. height: math.unit(3 + 3 / 12, "feet"),
  10330. weight: math.unit(51.8, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/fliss/front.svg",
  10334. extra: 840 / 640
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Teeny Tiny",
  10341. height: math.unit(1, "mm")
  10342. },
  10343. {
  10344. name: "Small",
  10345. height: math.unit(1, "inch"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Standard Sylveon",
  10350. height: math.unit(3 + 3 / 12, "feet")
  10351. },
  10352. {
  10353. name: "Large Nuisance",
  10354. height: math.unit(33, "feet")
  10355. },
  10356. {
  10357. name: "City Filler",
  10358. height: math.unit(3000, "feet")
  10359. },
  10360. {
  10361. name: "New Horizon",
  10362. height: math.unit(6000, "miles")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(5, "cm"),
  10371. weight: math.unit(1.94, "g"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/fleta/front.svg",
  10375. extra: 835 / 803
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(5, "cm"),
  10380. weight: math.unit(1.94, "g"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/fleta/back.svg",
  10384. extra: 835 / 803
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Micro",
  10391. height: math.unit(5, "cm"),
  10392. default: true
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(6, "feet"),
  10401. weight: math.unit(225, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/dominic/front.svg",
  10405. extra: 1770 / 1620,
  10406. bottom: 0.025
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(225, "lb"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/dominic/back.svg",
  10415. extra: 1745 / 1620,
  10416. bottom: 0.065
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Nano",
  10423. height: math.unit(0.1, "mm")
  10424. },
  10425. {
  10426. name: "Micro-",
  10427. height: math.unit(1, "mm")
  10428. },
  10429. {
  10430. name: "Micro",
  10431. height: math.unit(4, "inches")
  10432. },
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(6 + 4 / 12, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(115, "feet")
  10441. },
  10442. {
  10443. name: "Macro+",
  10444. height: math.unit(955, "feet")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(8990, "feet")
  10449. },
  10450. {
  10451. name: "Gigmacro",
  10452. height: math.unit(9310, "miles")
  10453. },
  10454. {
  10455. name: "Teramacro",
  10456. height: math.unit(1567005010, "miles")
  10457. },
  10458. {
  10459. name: "Examacro",
  10460. height: math.unit(1425, "parsecs")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(400, "feet"),
  10469. weight: math.unit(44444444, "lb"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/major-colonel/front.svg"
  10473. }
  10474. },
  10475. back: {
  10476. height: math.unit(400, "feet"),
  10477. weight: math.unit(44444444, "lb"),
  10478. name: "Back",
  10479. image: {
  10480. source: "./media/characters/major-colonel/back.svg"
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Macro",
  10487. height: math.unit(400, "feet"),
  10488. default: true
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10494. {
  10495. catFront: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(120, "lb"),
  10498. name: "Front (Cat Side)",
  10499. image: {
  10500. source: "./media/characters/axel-lycan/cat-front.svg",
  10501. extra: 430 / 402,
  10502. bottom: 43 / 472.35
  10503. }
  10504. },
  10505. catBack: {
  10506. height: math.unit(6, "feet"),
  10507. weight: math.unit(120, "lb"),
  10508. name: "Back (Cat Side)",
  10509. image: {
  10510. source: "./media/characters/axel-lycan/cat-back.svg",
  10511. extra: 447 / 419,
  10512. bottom: 23.3 / 469
  10513. }
  10514. },
  10515. wolfFront: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(120, "lb"),
  10518. name: "Front (Wolf Side)",
  10519. image: {
  10520. source: "./media/characters/axel-lycan/wolf-front.svg",
  10521. extra: 485 / 456,
  10522. bottom: 19 / 504
  10523. }
  10524. },
  10525. wolfBack: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(120, "lb"),
  10528. name: "Back (Wolf Side)",
  10529. image: {
  10530. source: "./media/characters/axel-lycan/wolf-back.svg",
  10531. extra: 475 / 438,
  10532. bottom: 39.2 / 514
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Macro",
  10539. height: math.unit(1, "km"),
  10540. default: true
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(5 + 9 / 12, "feet"),
  10549. weight: math.unit(175, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/vanrel-hyena/front.svg",
  10553. extra: 1086 / 1010,
  10554. bottom: 0.04
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(5 + 9 / 12, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(103, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/abbott-absol/front.svg",
  10575. extra: 2010 / 1842
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Megamicro",
  10582. height: math.unit(0.1, "mm")
  10583. },
  10584. {
  10585. name: "Micro",
  10586. height: math.unit(1, "inch")
  10587. },
  10588. {
  10589. name: "Normal",
  10590. height: math.unit(6, "feet"),
  10591. default: true
  10592. },
  10593. ]
  10594. ))
  10595. characterMakers.push(() => makeCharacter(
  10596. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(264, "lb"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/hector/front.svg",
  10604. extra: 2280 / 2130,
  10605. bottom: 0.07
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(12.25, "foot"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(160, "feet")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/sal/front.svg",
  10630. extra: 1846 / 1699,
  10631. bottom: 0.04
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Megamacro",
  10638. height: math.unit(10, "miles"),
  10639. default: true
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10645. {
  10646. front: {
  10647. height: math.unit(3, "meters"),
  10648. weight: math.unit(450, "kg"),
  10649. name: "front",
  10650. image: {
  10651. source: "./media/characters/ranger/front.svg",
  10652. extra: 2401 / 2243,
  10653. bottom: 0.05
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(3, "meters"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(14, "feet"),
  10670. weight: math.unit(800, "kg"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/theresa/front.svg",
  10674. extra: 3575 / 3346,
  10675. bottom: 0.03
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(14, "feet"),
  10683. default: true
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10689. {
  10690. front: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(3, "kg"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/ine/front.svg",
  10696. extra: 678 / 539,
  10697. bottom: 0.023
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Normal",
  10704. height: math.unit(2.265, "feet"),
  10705. default: true
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10711. {
  10712. front: {
  10713. height: math.unit(5, "feet"),
  10714. weight: math.unit(30, "kg"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/vial/front.svg",
  10718. extra: 1365 / 1277,
  10719. bottom: 0.04
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(5, "feet"),
  10727. default: true
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10733. {
  10734. side: {
  10735. height: math.unit(3.4, "meters"),
  10736. weight: math.unit(1000, "lb"),
  10737. name: "Side",
  10738. image: {
  10739. source: "./media/characters/rovoska/side.svg",
  10740. extra: 4403 / 1515
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(3.4, "meters"),
  10748. default: true
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(8, "feet"),
  10757. weight: math.unit(315, "lb"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/gunner-rotthbauer/front.svg"
  10761. }
  10762. },
  10763. back: {
  10764. height: math.unit(8, "feet"),
  10765. weight: math.unit(315, "lb"),
  10766. name: "Back",
  10767. image: {
  10768. source: "./media/characters/gunner-rotthbauer/back.svg"
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Micro",
  10775. height: math.unit(3.5, "inches")
  10776. },
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(8, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(250, "feet")
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(1, "AU")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(5 + 5 / 12, "feet"),
  10797. weight: math.unit(140, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/allatia/front.svg",
  10801. extra: 1227 / 1180,
  10802. bottom: 0.027
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(5 + 5 / 12, "feet")
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(250, "feet"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(8, "miles")
  10819. }
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/tene/front.svg",
  10831. extra: 814/750,
  10832. bottom: 36/850
  10833. }
  10834. },
  10835. stomping: {
  10836. height: math.unit(2.025, "meters"),
  10837. weight: math.unit(120, "lb"),
  10838. name: "Stomping",
  10839. image: {
  10840. source: "./media/characters/tene/stomping.svg",
  10841. extra: 885/821,
  10842. bottom: 15/900
  10843. }
  10844. },
  10845. sitting: {
  10846. height: math.unit(1, "meter"),
  10847. weight: math.unit(120, "lb"),
  10848. name: "Sitting",
  10849. image: {
  10850. source: "./media/characters/tene/sitting.svg",
  10851. extra: 396/366,
  10852. bottom: 79/475
  10853. }
  10854. },
  10855. smiling: {
  10856. height: math.unit(1.2, "feet"),
  10857. name: "Smiling",
  10858. image: {
  10859. source: "./media/characters/tene/smiling.svg",
  10860. extra: 1364/1071,
  10861. bottom: 0/1364
  10862. }
  10863. },
  10864. smug: {
  10865. height: math.unit(1.3, "feet"),
  10866. name: "Smug",
  10867. image: {
  10868. source: "./media/characters/tene/smug.svg",
  10869. extra: 1323/1082,
  10870. bottom: 0/1323
  10871. }
  10872. },
  10873. feral: {
  10874. height: math.unit(3.9, "feet"),
  10875. weight: math.unit(250, "lb"),
  10876. name: "Feral",
  10877. image: {
  10878. source: "./media/characters/tene/feral.svg",
  10879. extra: 717 / 458,
  10880. bottom: 0.179
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(6, "feet")
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(300, "feet"),
  10892. default: true
  10893. },
  10894. {
  10895. name: "Megamacro",
  10896. height: math.unit(5, "miles")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10902. {
  10903. side: {
  10904. height: math.unit(6, "feet"),
  10905. name: "Side",
  10906. image: {
  10907. source: "./media/characters/evander/side.svg",
  10908. extra: 877 / 477
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(0.83, "meters"),
  10916. default: true
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(12, "feet"),
  10925. weight: math.unit(1000, "lb"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10929. extra: 1762 / 1611
  10930. }
  10931. },
  10932. back: {
  10933. height: math.unit(12, "feet"),
  10934. weight: math.unit(1000, "lb"),
  10935. name: "Back",
  10936. image: {
  10937. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10938. extra: 1762 / 1611
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Kaiju",
  10950. height: math.unit(150, "feet")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(150, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/zero-alurus/front.svg"
  10963. }
  10964. },
  10965. back: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(150, "lb"),
  10968. name: "Back",
  10969. image: {
  10970. source: "./media/characters/zero-alurus/back.svg"
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(5 + 10 / 12, "feet")
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(60, "feet"),
  10982. default: true
  10983. },
  10984. {
  10985. name: "Macro+",
  10986. height: math.unit(450, "feet")
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(200, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/mega-shi/front.svg",
  10999. extra: 1279 / 1250,
  11000. bottom: 0.02
  11001. }
  11002. },
  11003. back: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(200, "lb"),
  11006. name: "Back",
  11007. image: {
  11008. source: "./media/characters/mega-shi/back.svg",
  11009. extra: 1279 / 1250,
  11010. bottom: 0.02
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Micro",
  11017. height: math.unit(16 + 6 / 12, "feet")
  11018. },
  11019. {
  11020. name: "Third Dimension",
  11021. height: math.unit(40, "meters")
  11022. },
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(660, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Megamacro",
  11030. height: math.unit(10, "miles")
  11031. },
  11032. {
  11033. name: "Planetary Launch",
  11034. height: math.unit(500, "miles")
  11035. },
  11036. {
  11037. name: "Interstellar",
  11038. height: math.unit(1e9, "miles")
  11039. },
  11040. {
  11041. name: "Leaving the Universe",
  11042. height: math.unit(1, "gigaparsec")
  11043. },
  11044. {
  11045. name: "Travelling Universes",
  11046. height: math.unit(30e15, "parsecs")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(5 + 4/12, "feet"),
  11055. weight: math.unit(120, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/odyssey/front.svg",
  11059. extra: 1747/1571,
  11060. bottom: 47/1794
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(5.1, "feet"),
  11065. weight: math.unit(120, "lb"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/odyssey/side.svg",
  11069. extra: 1847/1619,
  11070. bottom: 47/1894
  11071. }
  11072. },
  11073. lounging: {
  11074. height: math.unit(1.464, "feet"),
  11075. weight: math.unit(120, "lb"),
  11076. name: "Lounging",
  11077. image: {
  11078. source: "./media/characters/odyssey/lounging.svg",
  11079. extra: 1235/837,
  11080. bottom: 551/1786
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(5 + 4 / 12, "feet")
  11088. },
  11089. {
  11090. name: "Macro",
  11091. height: math.unit(1, "km")
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(3000, "km")
  11096. },
  11097. {
  11098. name: "Gigamacro",
  11099. height: math.unit(1, "AU"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Omniversal",
  11104. height: math.unit(100e14, "lightyears")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(300, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/mekuto/front.svg",
  11117. extra: 921 / 832,
  11118. bottom: 0.03
  11119. }
  11120. },
  11121. hand: {
  11122. height: math.unit(6 / 10.24, "feet"),
  11123. name: "Hand",
  11124. image: {
  11125. source: "./media/characters/mekuto/hand.svg"
  11126. }
  11127. },
  11128. foot: {
  11129. height: math.unit(6 / 5.05, "feet"),
  11130. name: "Foot",
  11131. image: {
  11132. source: "./media/characters/mekuto/foot.svg"
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Minimicro",
  11139. height: math.unit(0.2, "inches")
  11140. },
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(1.5, "inches")
  11144. },
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(5 + 11 / 12, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Minimacro",
  11152. height: math.unit(17 + 9 / 12, "feet")
  11153. },
  11154. {
  11155. name: "Macro",
  11156. height: math.unit(177.5, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(152, "miles")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(6.5, "inches"),
  11169. weight: math.unit(13, "oz"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/dafydd-tomos/front.svg",
  11173. extra: 2990 / 2603,
  11174. bottom: 0.03
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Micro",
  11181. height: math.unit(6.5, "inches"),
  11182. default: true
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/splinter/front.svg",
  11195. extra: 2990 / 2882,
  11196. bottom: 0.04
  11197. }
  11198. },
  11199. back: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(150, "lb"),
  11202. name: "Back",
  11203. image: {
  11204. source: "./media/characters/splinter/back.svg",
  11205. extra: 2990 / 2882,
  11206. bottom: 0.04
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(6, "feet")
  11214. },
  11215. {
  11216. name: "Macro",
  11217. height: math.unit(230, "meters"),
  11218. default: true
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11224. {
  11225. front: {
  11226. height: math.unit(4 + 10 / 12, "feet"),
  11227. weight: math.unit(480, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/snow-gabumon/front.svg",
  11231. extra: 1140 / 963,
  11232. bottom: 0.058
  11233. }
  11234. },
  11235. back: {
  11236. height: math.unit(4 + 10 / 12, "feet"),
  11237. weight: math.unit(480, "lb"),
  11238. name: "Back",
  11239. image: {
  11240. source: "./media/characters/snow-gabumon/back.svg",
  11241. extra: 1115 / 962,
  11242. bottom: 0.041
  11243. }
  11244. },
  11245. frontUndresed: {
  11246. height: math.unit(4 + 10 / 12, "feet"),
  11247. weight: math.unit(480, "lb"),
  11248. name: "Front (Undressed)",
  11249. image: {
  11250. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11251. extra: 1061 / 960,
  11252. bottom: 0.045
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Micro",
  11259. height: math.unit(1, "inch")
  11260. },
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(4 + 10 / 12, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Macro",
  11268. height: math.unit(200, "feet")
  11269. },
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(120, "miles")
  11273. },
  11274. {
  11275. name: "Gigamacro",
  11276. height: math.unit(9800, "miles")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(1.7, "meters"),
  11285. weight: math.unit(140, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/moody/front.svg",
  11289. extra: 3226 / 3007,
  11290. bottom: 0.087
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(1, "mm")
  11298. },
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(1.7, "meters"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(80, "meters")
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(500, "meters")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(150, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/zyas/front.svg",
  11323. extra: 1180 / 1120,
  11324. bottom: 0.045
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(10, "feet"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(500, "feet")
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(5, "miles")
  11341. },
  11342. {
  11343. name: "Teramacro",
  11344. height: math.unit(150000, "miles")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/cuon/front.svg",
  11357. extra: 1390 / 1320,
  11358. bottom: 0.008
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(3, "inches")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(18 + 9 / 12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(360, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(360, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(2.4, "meters"),
  11387. weight: math.unit(70, "kg"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/nyanuxk/front.svg",
  11391. extra: 1172 / 1084,
  11392. bottom: 0.065
  11393. }
  11394. },
  11395. side: {
  11396. height: math.unit(2.4, "meters"),
  11397. weight: math.unit(70, "kg"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/nyanuxk/side.svg",
  11401. extra: 1190 / 1132,
  11402. bottom: 0.007
  11403. }
  11404. },
  11405. back: {
  11406. height: math.unit(2.4, "meters"),
  11407. weight: math.unit(70, "kg"),
  11408. name: "Back",
  11409. image: {
  11410. source: "./media/characters/nyanuxk/back.svg",
  11411. extra: 1200 / 1141,
  11412. bottom: 0.015
  11413. }
  11414. },
  11415. foot: {
  11416. height: math.unit(0.52, "meters"),
  11417. name: "Foot",
  11418. image: {
  11419. source: "./media/characters/nyanuxk/foot.svg"
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(2, "cm")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(2.4, "meters"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Smaller Macro",
  11435. height: math.unit(120, "meters")
  11436. },
  11437. {
  11438. name: "Bigger Macro",
  11439. height: math.unit(1.2, "km")
  11440. },
  11441. {
  11442. name: "Megamacro",
  11443. height: math.unit(15, "kilometers")
  11444. },
  11445. {
  11446. name: "Gigamacro",
  11447. height: math.unit(2000, "km")
  11448. },
  11449. {
  11450. name: "Teramacro",
  11451. height: math.unit(500000, "km")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11457. {
  11458. side: {
  11459. height: math.unit(6, "feet"),
  11460. name: "Side",
  11461. image: {
  11462. source: "./media/characters/ailbhe/side.svg",
  11463. extra: 757 / 464,
  11464. bottom: 0.041
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(1.07, "meters"),
  11472. default: true
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(120, "kg"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/zevulfius/front.svg",
  11485. extra: 965 / 903
  11486. }
  11487. },
  11488. side: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(120, "kg"),
  11491. name: "Side",
  11492. image: {
  11493. source: "./media/characters/zevulfius/side.svg",
  11494. extra: 939 / 900
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(120, "kg"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/zevulfius/back.svg",
  11503. extra: 918 / 854,
  11504. bottom: 0.005
  11505. }
  11506. },
  11507. foot: {
  11508. height: math.unit(6 / 3.72, "feet"),
  11509. name: "Foot",
  11510. image: {
  11511. source: "./media/characters/zevulfius/foot.svg"
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(750, "meters")
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(20, "km"),
  11523. default: true
  11524. },
  11525. {
  11526. name: "Gigamacro",
  11527. height: math.unit(2000, "km")
  11528. },
  11529. {
  11530. name: "Teramacro",
  11531. height: math.unit(250000, "km")
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(100, "feet"),
  11540. weight: math.unit(350, "kg"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/rikes/front.svg",
  11544. extra: 1565 / 1483,
  11545. bottom: 0.017
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(100, "feet"),
  11553. default: true
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11559. {
  11560. front: {
  11561. height: math.unit(8, "feet"),
  11562. weight: math.unit(356, "lb"),
  11563. name: "Front",
  11564. image: {
  11565. source: "./media/characters/adam-silver-mane/front.svg",
  11566. extra: 1036/937,
  11567. bottom: 63/1099
  11568. }
  11569. },
  11570. side: {
  11571. height: math.unit(8, "feet"),
  11572. weight: math.unit(356, "lb"),
  11573. name: "Side",
  11574. image: {
  11575. source: "./media/characters/adam-silver-mane/side.svg",
  11576. extra: 997/901,
  11577. bottom: 59/1056
  11578. }
  11579. },
  11580. frontNsfw: {
  11581. height: math.unit(8, "feet"),
  11582. weight: math.unit(356, "lb"),
  11583. name: "Front (NSFW)",
  11584. image: {
  11585. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11586. extra: 1036/937,
  11587. bottom: 63/1099
  11588. }
  11589. },
  11590. sideNsfw: {
  11591. height: math.unit(8, "feet"),
  11592. weight: math.unit(356, "lb"),
  11593. name: "Side (NSFW)",
  11594. image: {
  11595. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11596. extra: 997/901,
  11597. bottom: 59/1056
  11598. }
  11599. },
  11600. dick: {
  11601. height: math.unit(2.1, "feet"),
  11602. name: "Dick",
  11603. image: {
  11604. source: "./media/characters/adam-silver-mane/dick.svg"
  11605. }
  11606. },
  11607. taur: {
  11608. height: math.unit(16, "feet"),
  11609. weight: math.unit(1500, "kg"),
  11610. name: "Taur",
  11611. image: {
  11612. source: "./media/characters/adam-silver-mane/taur.svg",
  11613. extra: 1713 / 1571,
  11614. bottom: 0.01
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(8, "feet")
  11622. },
  11623. {
  11624. name: "Minimacro",
  11625. height: math.unit(80, "feet")
  11626. },
  11627. {
  11628. name: "MDA",
  11629. height: math.unit(80, "meters")
  11630. },
  11631. {
  11632. name: "Macro",
  11633. height: math.unit(800, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(8000, "feet")
  11639. },
  11640. {
  11641. name: "Gigamacro",
  11642. height: math.unit(800, "miles")
  11643. },
  11644. {
  11645. name: "Teramacro",
  11646. height: math.unit(80000, "miles")
  11647. },
  11648. {
  11649. name: "Celestial",
  11650. height: math.unit(8e6, "miles")
  11651. },
  11652. {
  11653. name: "Star Dragon",
  11654. height: math.unit(800000, "parsecs")
  11655. },
  11656. {
  11657. name: "Godly",
  11658. height: math.unit(800, "teraparsecs")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/ky'owin/front.svg",
  11671. extra: 3862/3053,
  11672. bottom: 74/3936
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(6 + 8 / 12, "feet")
  11680. },
  11681. {
  11682. name: "Large",
  11683. height: math.unit(68, "feet")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(132, "feet")
  11688. },
  11689. {
  11690. name: "Macro+",
  11691. height: math.unit(340, "feet")
  11692. },
  11693. {
  11694. name: "Macro++",
  11695. height: math.unit(680, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(1, "mile")
  11701. },
  11702. {
  11703. name: "Megamacro+",
  11704. height: math.unit(10, "miles")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(4, "feet"),
  11713. weight: math.unit(50, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/mal/front.svg",
  11717. extra: 785 / 724,
  11718. bottom: 0.07
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Micro",
  11725. height: math.unit(4, "inches")
  11726. },
  11727. {
  11728. name: "Normal",
  11729. height: math.unit(4, "feet"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(200, "feet")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/jordan-deware/front.svg",
  11747. extra: 1191 / 1012
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Nano",
  11754. height: math.unit(0.01, "mm")
  11755. },
  11756. {
  11757. name: "Minimicro",
  11758. height: math.unit(1, "mm")
  11759. },
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(0.5, "inches")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(4, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Minimacro",
  11771. height: math.unit(40, "meters")
  11772. },
  11773. {
  11774. name: "Small Macro",
  11775. height: math.unit(400, "meters")
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(4, "miles")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(40, "miles")
  11784. },
  11785. {
  11786. name: "Megamacro+",
  11787. height: math.unit(400, "miles")
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(400000, "miles")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11797. {
  11798. side: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Side",
  11802. image: {
  11803. source: "./media/characters/kimiko/side.svg",
  11804. extra: 600 / 358
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(15, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Macro",
  11816. height: math.unit(220, "feet")
  11817. },
  11818. {
  11819. name: "Macro+",
  11820. height: math.unit(1450, "feet")
  11821. },
  11822. {
  11823. name: "Megamacro",
  11824. height: math.unit(11500, "feet")
  11825. },
  11826. {
  11827. name: "Gigamacro",
  11828. height: math.unit(9500, "miles")
  11829. },
  11830. {
  11831. name: "Teramacro",
  11832. height: math.unit(2208005005, "miles")
  11833. },
  11834. {
  11835. name: "Examacro",
  11836. height: math.unit(2750, "parsecs")
  11837. },
  11838. {
  11839. name: "Zettamacro",
  11840. height: math.unit(101500, "parsecs")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(70, "kg"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/andrew-sleepy/front.svg"
  11853. }
  11854. },
  11855. side: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(70, "kg"),
  11858. name: "Side",
  11859. image: {
  11860. source: "./media/characters/andrew-sleepy/side.svg"
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(1, "mm"),
  11868. default: true
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(150, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/judio/front.svg",
  11881. extra: 1258 / 1110
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(5 + 6 / 12, "feet")
  11889. },
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(1000, "feet"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(10, "miles")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11903. {
  11904. frontDressed: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(68, "kg"),
  11907. name: "Front (Dressed)",
  11908. image: {
  11909. source: "./media/characters/nomaxice/front-dressed.svg",
  11910. extra: 1137/824,
  11911. bottom: 74/1211
  11912. }
  11913. },
  11914. frontShorts: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(68, "kg"),
  11917. name: "Front (Shorts)",
  11918. image: {
  11919. source: "./media/characters/nomaxice/front-shorts.svg",
  11920. extra: 1137/824,
  11921. bottom: 74/1211
  11922. }
  11923. },
  11924. back: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(68, "kg"),
  11927. name: "Back",
  11928. image: {
  11929. source: "./media/characters/nomaxice/back.svg",
  11930. extra: 822/786,
  11931. bottom: 39/861
  11932. }
  11933. },
  11934. hand: {
  11935. height: math.unit(0.565, "feet"),
  11936. name: "Hand",
  11937. image: {
  11938. source: "./media/characters/nomaxice/hand.svg"
  11939. }
  11940. },
  11941. foot: {
  11942. height: math.unit(1, "feet"),
  11943. name: "Foot",
  11944. image: {
  11945. source: "./media/characters/nomaxice/foot.svg"
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Micro",
  11952. height: math.unit(8, "cm")
  11953. },
  11954. {
  11955. name: "Norm",
  11956. height: math.unit(1.82, "m")
  11957. },
  11958. {
  11959. name: "Norm+",
  11960. height: math.unit(8.8, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Big",
  11965. height: math.unit(8, "meters")
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(18, "meters")
  11970. },
  11971. {
  11972. name: "Macro+",
  11973. height: math.unit(88, "meters")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(12, "feet"),
  11982. weight: math.unit(1.5, "tons"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/dydros/front.svg",
  11986. extra: 863 / 800,
  11987. bottom: 0.015
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(12, "feet"),
  11992. weight: math.unit(1.5, "tons"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/dydros/back.svg",
  11996. extra: 900 / 843,
  11997. bottom: 0.005
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(12, "feet"),
  12005. default: true
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(100, "kg"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/riggi/front.svg",
  12018. extra: 5787 / 5303
  12019. }
  12020. },
  12021. hyper: {
  12022. height: math.unit(6 * 5 / 3, "feet"),
  12023. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12024. name: "Hyper",
  12025. image: {
  12026. source: "./media/characters/riggi/hyper.svg",
  12027. extra: 3595 / 3485
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Small Macro",
  12034. height: math.unit(50, "feet")
  12035. },
  12036. {
  12037. name: "Default",
  12038. height: math.unit(200, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Loom",
  12043. height: math.unit(10000, "feet")
  12044. },
  12045. {
  12046. name: "Cruising Altitude",
  12047. height: math.unit(30000, "feet")
  12048. },
  12049. {
  12050. name: "Megamacro",
  12051. height: math.unit(100, "miles")
  12052. },
  12053. {
  12054. name: "Continent Sized",
  12055. height: math.unit(2800, "miles")
  12056. },
  12057. {
  12058. name: "Earth Sized",
  12059. height: math.unit(8000, "miles")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(250, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/alexi/front.svg",
  12072. extra: 3483 / 3291,
  12073. bottom: 0.04
  12074. }
  12075. },
  12076. back: {
  12077. height: math.unit(6, "feet"),
  12078. weight: math.unit(250, "lb"),
  12079. name: "Back",
  12080. image: {
  12081. source: "./media/characters/alexi/back.svg",
  12082. extra: 3533 / 3356,
  12083. bottom: 0.021
  12084. }
  12085. },
  12086. frontTransforming: {
  12087. height: math.unit(8.58, "feet"),
  12088. weight: math.unit(1300, "lb"),
  12089. name: "Transforming",
  12090. image: {
  12091. source: "./media/characters/alexi/front-transforming.svg",
  12092. extra: 437 / 409,
  12093. bottom: 19 / 458.66
  12094. }
  12095. },
  12096. frontTransformed: {
  12097. height: math.unit(12.5, "feet"),
  12098. weight: math.unit(4000, "lb"),
  12099. name: "Transformed",
  12100. image: {
  12101. source: "./media/characters/alexi/front-transformed.svg",
  12102. extra: 639 / 614,
  12103. bottom: 30.55 / 671
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(14, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Minimacro",
  12115. height: math.unit(30, "meters")
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(500, "meters")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(9000, "km")
  12124. },
  12125. {
  12126. name: "Teramacro",
  12127. height: math.unit(384000, "km")
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/kayroo/front.svg",
  12140. extra: 1153 / 1038,
  12141. bottom: 0.06
  12142. }
  12143. },
  12144. foot: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Foot",
  12148. image: {
  12149. source: "./media/characters/kayroo/foot.svg"
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(8, "feet"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Minimacro",
  12161. height: math.unit(250, "feet")
  12162. },
  12163. {
  12164. name: "Macro",
  12165. height: math.unit(2800, "feet")
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(5200, "feet")
  12170. },
  12171. {
  12172. name: "Gigamacro",
  12173. height: math.unit(27000, "feet")
  12174. },
  12175. {
  12176. name: "Omega",
  12177. height: math.unit(45000, "feet")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(18, "feet"),
  12186. weight: math.unit(5800, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/rhys/front.svg",
  12190. extra: 3386 / 3090,
  12191. bottom: 0.07
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(18, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Working Size",
  12203. height: math.unit(200, "feet")
  12204. },
  12205. {
  12206. name: "Demolition Size",
  12207. height: math.unit(2000, "feet")
  12208. },
  12209. {
  12210. name: "Maximum Licensed Size",
  12211. height: math.unit(5, "miles")
  12212. },
  12213. {
  12214. name: "Maximum Observed Size",
  12215. height: math.unit(10, "yottameters")
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(250, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/toto/front.svg",
  12228. extra: 527 / 479,
  12229. bottom: 0.05
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Micro",
  12236. height: math.unit(3, "feet")
  12237. },
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(10, "feet")
  12241. },
  12242. {
  12243. name: "Macro",
  12244. height: math.unit(150, "feet"),
  12245. default: true
  12246. },
  12247. {
  12248. name: "Megamacro",
  12249. height: math.unit(1200, "feet")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "King", species: ["lion"], tags: ["anthro"] },
  12255. {
  12256. back: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/king/back.svg"
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(2, "inches")
  12269. },
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(8, "feet")
  12273. },
  12274. {
  12275. name: "Macro",
  12276. height: math.unit(200, "feet"),
  12277. default: true
  12278. },
  12279. {
  12280. name: "Megamacro",
  12281. height: math.unit(50, "miles")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(11, "feet"),
  12290. weight: math.unit(1400, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/cordite/front.svg",
  12294. extra: 1919/1827,
  12295. bottom: 40/1959
  12296. }
  12297. },
  12298. side: {
  12299. height: math.unit(11, "feet"),
  12300. weight: math.unit(1400, "lb"),
  12301. name: "Side",
  12302. image: {
  12303. source: "./media/characters/cordite/side.svg",
  12304. extra: 1908/1793,
  12305. bottom: 38/1946
  12306. }
  12307. },
  12308. back: {
  12309. height: math.unit(11, "feet"),
  12310. weight: math.unit(1400, "lb"),
  12311. name: "Back",
  12312. image: {
  12313. source: "./media/characters/cordite/back.svg",
  12314. extra: 1938/1837,
  12315. bottom: 10/1948
  12316. }
  12317. },
  12318. feral: {
  12319. height: math.unit(2, "feet"),
  12320. weight: math.unit(90, "lb"),
  12321. name: "Feral",
  12322. image: {
  12323. source: "./media/characters/cordite/feral.svg",
  12324. extra: 1260 / 755,
  12325. bottom: 0.05
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(11, "feet"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(150, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/pianostrong/front.svg",
  12346. extra: 6577 / 6254,
  12347. bottom: 0.02
  12348. }
  12349. },
  12350. side: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Side",
  12354. image: {
  12355. source: "./media/characters/pianostrong/side.svg",
  12356. extra: 6106 / 5730
  12357. }
  12358. },
  12359. back: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(150, "lb"),
  12362. name: "Back",
  12363. image: {
  12364. source: "./media/characters/pianostrong/back.svg",
  12365. extra: 6085 / 5733,
  12366. bottom: 0.01
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Macro",
  12373. height: math.unit(100, "feet")
  12374. },
  12375. {
  12376. name: "Macro+",
  12377. height: math.unit(300, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Macro++",
  12382. height: math.unit(1000, "feet")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/kona/front.svg",
  12395. extra: 2960 / 2629,
  12396. bottom: 0.005
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(11 + 8 / 12, "feet")
  12404. },
  12405. {
  12406. name: "Macro",
  12407. height: math.unit(850, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Macro+",
  12412. height: math.unit(1.5, "km"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(80, "miles")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(3500, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12427. {
  12428. side: {
  12429. height: math.unit(1.9, "meters"),
  12430. weight: math.unit(326, "kg"),
  12431. name: "Side",
  12432. image: {
  12433. source: "./media/characters/levi/side.svg",
  12434. extra: 1704 / 1334,
  12435. bottom: 0.02
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(1.9, "meters"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(20, "meters")
  12448. },
  12449. {
  12450. name: "Macro+",
  12451. height: math.unit(200, "meters")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(2, "km")
  12456. },
  12457. {
  12458. name: "Megamacro+",
  12459. height: math.unit(20, "km")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(2500, "km")
  12464. },
  12465. {
  12466. name: "Gigamacro+",
  12467. height: math.unit(120000, "km")
  12468. },
  12469. {
  12470. name: "Teramacro",
  12471. height: math.unit(7.77e6, "km")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6 + 4/12, "feet"),
  12480. weight: math.unit(190, "lb"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/bmc/front.svg",
  12484. extra: 1626/1472,
  12485. bottom: 79/1705
  12486. }
  12487. },
  12488. back: {
  12489. height: math.unit(6 + 4/12, "feet"),
  12490. weight: math.unit(190, "lb"),
  12491. name: "Back",
  12492. image: {
  12493. source: "./media/characters/bmc/back.svg",
  12494. extra: 1640/1479,
  12495. bottom: 45/1685
  12496. }
  12497. },
  12498. frontArmor: {
  12499. height: math.unit(6 + 4/12, "feet"),
  12500. weight: math.unit(190, "lb"),
  12501. name: "Front-armor",
  12502. image: {
  12503. source: "./media/characters/bmc/front-armor.svg",
  12504. extra: 1538/1468,
  12505. bottom: 79/1617
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Human-sized",
  12512. height: math.unit(6 + 4 / 12, "feet")
  12513. },
  12514. {
  12515. name: "Interactive Size",
  12516. height: math.unit(25, "feet")
  12517. },
  12518. {
  12519. name: "Small",
  12520. height: math.unit(250, "feet")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(1250, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Good Day",
  12529. height: math.unit(88, "miles")
  12530. },
  12531. {
  12532. name: "Largest Measured Size",
  12533. height: math.unit(105.960, "galaxies")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(20, "feet"),
  12542. weight: math.unit(2016, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/sven-the-kaiju/front.svg",
  12546. extra: 1277/1250,
  12547. bottom: 35/1312
  12548. }
  12549. },
  12550. mouth: {
  12551. height: math.unit(1.85, "feet"),
  12552. name: "Mouth",
  12553. image: {
  12554. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Fairy",
  12561. height: math.unit(6, "inches")
  12562. },
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(20, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Rampage",
  12570. height: math.unit(200, "feet")
  12571. },
  12572. {
  12573. name: "Archfey Forest Guardian",
  12574. height: math.unit(1, "mile")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(4, "meters"),
  12583. weight: math.unit(2, "tons"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/marik/front.svg",
  12587. extra: 1057 / 1003,
  12588. bottom: 0.08
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(4, "meters"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(20, "meters")
  12601. },
  12602. {
  12603. name: "Megamacro",
  12604. height: math.unit(50, "km")
  12605. },
  12606. {
  12607. name: "Gigamacro",
  12608. height: math.unit(100, "km")
  12609. },
  12610. {
  12611. name: "Alpha Macro",
  12612. height: math.unit(7.88e7, "yottameters")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(110, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/mel/front.svg",
  12625. extra: 736 / 617,
  12626. bottom: 0.017
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Pico",
  12633. height: math.unit(3, "pm")
  12634. },
  12635. {
  12636. name: "Nano",
  12637. height: math.unit(3, "nm")
  12638. },
  12639. {
  12640. name: "Micro",
  12641. height: math.unit(0.3, "mm"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Micro+",
  12646. height: math.unit(3, "mm")
  12647. },
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(5 + 10.5 / 12, "feet")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12656. {
  12657. kaiju: {
  12658. height: math.unit(1.75, "meters"),
  12659. weight: math.unit(55, "kg"),
  12660. name: "Kaiju",
  12661. image: {
  12662. source: "./media/characters/lykonous/kaiju.svg",
  12663. extra: 1055 / 946,
  12664. bottom: 0.135
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(2.5, "meters"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Kaiju Dragon",
  12676. height: math.unit(60, "meters")
  12677. },
  12678. {
  12679. name: "Mega Kaiju",
  12680. height: math.unit(120, "km")
  12681. },
  12682. {
  12683. name: "Giga Kaiju",
  12684. height: math.unit(200, "megameters")
  12685. },
  12686. {
  12687. name: "Terra Kaiju",
  12688. height: math.unit(400, "gigameters")
  12689. },
  12690. {
  12691. name: "Kaiju Dragon God",
  12692. height: math.unit(13000, "exaparsecs")
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12698. {
  12699. front: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Front",
  12703. image: {
  12704. source: "./media/characters/blü/front.svg",
  12705. extra: 1883 / 1564,
  12706. bottom: 0.031
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(13, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Big Boi",
  12718. height: math.unit(150, "meters")
  12719. },
  12720. {
  12721. name: "Mini Stomper",
  12722. height: math.unit(300, "meters")
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(1000, "meters")
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(11000, "meters")
  12731. },
  12732. {
  12733. name: "Gigamacro",
  12734. height: math.unit(11000, "km")
  12735. },
  12736. {
  12737. name: "Teramacro",
  12738. height: math.unit(420000, "km")
  12739. },
  12740. {
  12741. name: "Examacro",
  12742. height: math.unit(120, "parsecs")
  12743. },
  12744. {
  12745. name: "God Tho",
  12746. height: math.unit(98000000000, "parsecs")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12752. {
  12753. taurFront: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(200, "lb"),
  12756. name: "Taur (Front)",
  12757. image: {
  12758. source: "./media/characters/scales/taur-front.svg",
  12759. extra: 1,
  12760. bottom: 0.05
  12761. }
  12762. },
  12763. taurBack: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(200, "lb"),
  12766. name: "Taur (Back)",
  12767. image: {
  12768. source: "./media/characters/scales/taur-back.svg",
  12769. extra: 1,
  12770. bottom: 0.08
  12771. }
  12772. },
  12773. anthro: {
  12774. height: math.unit(6 * 7 / 12, "feet"),
  12775. weight: math.unit(100, "lb"),
  12776. name: "Anthro",
  12777. image: {
  12778. source: "./media/characters/scales/anthro.svg",
  12779. extra: 1,
  12780. bottom: 0.06
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(12, "feet"),
  12788. default: true
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(150, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/koragos/front.svg",
  12801. extra: 841 / 794,
  12802. bottom: 0.035
  12803. }
  12804. },
  12805. back: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Back",
  12809. image: {
  12810. source: "./media/characters/koragos/back.svg",
  12811. extra: 841 / 810,
  12812. bottom: 0.022
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(6 + 11 / 12, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(490, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(10, "miles")
  12829. },
  12830. {
  12831. name: "Gigamacro",
  12832. height: math.unit(50, "miles")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(250, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/xylrem/front.svg",
  12845. extra: 3323 / 3050,
  12846. bottom: 0.065
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Micro",
  12853. height: math.unit(4, "feet")
  12854. },
  12855. {
  12856. name: "Normal",
  12857. height: math.unit(16, "feet"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Macro",
  12862. height: math.unit(2720, "feet")
  12863. },
  12864. {
  12865. name: "Megamacro",
  12866. height: math.unit(25000, "miles")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(8, "feet"),
  12875. weight: math.unit(250, "kg"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/ikideru/front.svg",
  12879. extra: 930 / 870,
  12880. bottom: 0.087
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(8, "feet"),
  12885. weight: math.unit(250, "kg"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/ikideru/back.svg",
  12889. extra: 919 / 852,
  12890. bottom: 0.055
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Rare",
  12897. height: math.unit(8, "feet"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Playful Loom",
  12902. height: math.unit(80, "feet")
  12903. },
  12904. {
  12905. name: "City Leaner",
  12906. height: math.unit(230, "feet")
  12907. },
  12908. {
  12909. name: "Megamacro",
  12910. height: math.unit(2500, "feet")
  12911. },
  12912. {
  12913. name: "Gigamacro",
  12914. height: math.unit(26400, "feet")
  12915. },
  12916. {
  12917. name: "Tectonic Shifter",
  12918. height: math.unit(1.7, "megameters")
  12919. },
  12920. {
  12921. name: "Planet Carer",
  12922. height: math.unit(21, "megameters")
  12923. },
  12924. {
  12925. name: "God",
  12926. height: math.unit(11157.22, "parsecs")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(120, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/neo/front.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(2, "inches"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Human Size",
  12950. height: math.unit(5 + 8 / 12, "feet")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(13 + 10 / 12, "feet"),
  12959. weight: math.unit(5320, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/chauncey-chantz/front.svg",
  12963. extra: 1587 / 1435,
  12964. bottom: 0.02
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(13 + 10 / 12, "feet"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(45, "feet")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(250, "miles")
  12981. },
  12982. {
  12983. name: "Planetary",
  12984. height: math.unit(10000, "miles")
  12985. },
  12986. {
  12987. name: "Galactic",
  12988. height: math.unit(40000, "parsecs")
  12989. },
  12990. {
  12991. name: "Universal",
  12992. height: math.unit(1, "yottameter")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12998. {
  12999. front: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(150, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/epifox/front.svg",
  13005. extra: 1,
  13006. bottom: 0.075
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(6, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(3810, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(500, "miles")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(1.8796, "m"),
  13035. weight: math.unit(230, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/colin-t/front.svg",
  13039. extra: 1272 / 1193,
  13040. bottom: 0.07
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Micro",
  13047. height: math.unit(0.571, "meters")
  13048. },
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(1.8796, "meters"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Tall",
  13056. height: math.unit(4, "meters")
  13057. },
  13058. {
  13059. name: "Macro",
  13060. height: math.unit(67.241, "meters")
  13061. },
  13062. {
  13063. name: "Megamacro",
  13064. height: math.unit(371.856, "meters")
  13065. },
  13066. {
  13067. name: "Planetary",
  13068. height: math.unit(12631.5689, "km")
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(1.85, "meters"),
  13077. weight: math.unit(80, "kg"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/matvei/front.svg",
  13081. extra: 456/447,
  13082. bottom: 8/464
  13083. }
  13084. },
  13085. back: {
  13086. height: math.unit(1.85, "meters"),
  13087. weight: math.unit(80, "kg"),
  13088. name: "Back",
  13089. image: {
  13090. source: "./media/characters/matvei/back.svg",
  13091. extra: 434/427,
  13092. bottom: 11/445
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(1.85, "meters"),
  13100. default: true
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(5 + 9 / 12, "feet"),
  13109. weight: math.unit(70, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/quincy/front.svg",
  13113. extra: 3041 / 2751
  13114. }
  13115. },
  13116. back: {
  13117. height: math.unit(5 + 9 / 12, "feet"),
  13118. weight: math.unit(70, "lb"),
  13119. name: "Back",
  13120. image: {
  13121. source: "./media/characters/quincy/back.svg",
  13122. extra: 3041 / 2751
  13123. }
  13124. },
  13125. flying: {
  13126. height: math.unit(5 + 4 / 12, "feet"),
  13127. weight: math.unit(70, "lb"),
  13128. name: "Flying",
  13129. image: {
  13130. source: "./media/characters/quincy/flying.svg",
  13131. extra: 1044 / 930
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(3, "cm")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(5 + 9 / 12, "feet")
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(200, "meters"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(1000, "meters")
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(3 + 11/12, "feet"),
  13160. weight: math.unit(50, "lb"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/vanrel/front.svg",
  13164. extra: 1104/949,
  13165. bottom: 52/1156
  13166. }
  13167. },
  13168. back: {
  13169. height: math.unit(3 + 11/12, "feet"),
  13170. weight: math.unit(50, "lb"),
  13171. name: "Back",
  13172. image: {
  13173. source: "./media/characters/vanrel/back.svg",
  13174. extra: 1119/976,
  13175. bottom: 37/1156
  13176. }
  13177. },
  13178. tome: {
  13179. height: math.unit(1.35, "feet"),
  13180. weight: math.unit(10, "lb"),
  13181. name: "Vanrel's Tome",
  13182. rename: true,
  13183. image: {
  13184. source: "./media/characters/vanrel/tome.svg"
  13185. }
  13186. },
  13187. beans: {
  13188. height: math.unit(0.89, "feet"),
  13189. name: "Beans",
  13190. image: {
  13191. source: "./media/characters/vanrel/beans.svg"
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(3 + 11/12, "feet"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(7 + 5 / 12, "feet"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/kuiper-vanrel/front.svg",
  13211. extra: 1219/1169,
  13212. bottom: 69/1288
  13213. }
  13214. },
  13215. back: {
  13216. height: math.unit(7 + 5 / 12, "feet"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/kuiper-vanrel/back.svg",
  13220. extra: 1236/1193,
  13221. bottom: 27/1263
  13222. }
  13223. },
  13224. foot: {
  13225. height: math.unit(0.55, "meters"),
  13226. name: "Foot",
  13227. image: {
  13228. source: "./media/characters/kuiper-vanrel/foot.svg",
  13229. }
  13230. },
  13231. battle: {
  13232. height: math.unit(6.824, "feet"),
  13233. name: "Battle",
  13234. image: {
  13235. source: "./media/characters/kuiper-vanrel/battle.svg",
  13236. extra: 1466 / 1327,
  13237. bottom: 29 / 1492.5
  13238. }
  13239. },
  13240. meerkui: {
  13241. height: math.unit(18, "inches"),
  13242. name: "Meerkui",
  13243. image: {
  13244. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13245. extra: 1354/1289,
  13246. bottom: 69/1423
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(7 + 5 / 12, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(8 + 5 / 12, "feet"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/keset-vanrel/front.svg",
  13266. extra: 1231/1148,
  13267. bottom: 82/1313
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(8 + 5 / 12, "feet"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/keset-vanrel/back.svg",
  13275. extra: 1240/1174,
  13276. bottom: 33/1273
  13277. }
  13278. },
  13279. hand: {
  13280. height: math.unit(0.6, "meters"),
  13281. name: "Hand",
  13282. image: {
  13283. source: "./media/characters/keset-vanrel/hand.svg"
  13284. }
  13285. },
  13286. foot: {
  13287. height: math.unit(0.94978, "meters"),
  13288. name: "Foot",
  13289. image: {
  13290. source: "./media/characters/keset-vanrel/foot.svg"
  13291. }
  13292. },
  13293. battle: {
  13294. height: math.unit(7.408, "feet"),
  13295. name: "Battle",
  13296. image: {
  13297. source: "./media/characters/keset-vanrel/battle.svg",
  13298. extra: 1890 / 1386,
  13299. bottom: 73.28 / 1970
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(8 + 5 / 12, "feet"),
  13307. default: true
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/neos/front.svg",
  13320. extra: 1696 / 992,
  13321. bottom: 0.14
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Normal",
  13328. height: math.unit(54, "cm"),
  13329. default: true
  13330. },
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(100, "m")
  13334. },
  13335. {
  13336. name: "Megamacro",
  13337. height: math.unit(10, "km")
  13338. },
  13339. {
  13340. name: "Megamacro+",
  13341. height: math.unit(100, "km")
  13342. },
  13343. {
  13344. name: "Gigamacro",
  13345. height: math.unit(100, "Mm")
  13346. },
  13347. {
  13348. name: "Teramacro",
  13349. height: math.unit(100, "Gm")
  13350. },
  13351. {
  13352. name: "Examacro",
  13353. height: math.unit(100, "Em")
  13354. },
  13355. {
  13356. name: "Godly",
  13357. height: math.unit(10000, "Ym")
  13358. },
  13359. {
  13360. name: "Beyond Godly",
  13361. height: math.unit(25, "multiverses")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13367. {
  13368. feminine: {
  13369. height: math.unit(5, "feet"),
  13370. weight: math.unit(100, "lb"),
  13371. name: "Feminine",
  13372. image: {
  13373. source: "./media/characters/sammy-mouse/feminine.svg",
  13374. extra: 2526 / 2425,
  13375. bottom: 0.123
  13376. }
  13377. },
  13378. masculine: {
  13379. height: math.unit(5, "feet"),
  13380. weight: math.unit(100, "lb"),
  13381. name: "Masculine",
  13382. image: {
  13383. source: "./media/characters/sammy-mouse/masculine.svg",
  13384. extra: 2526 / 2425,
  13385. bottom: 0.123
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Micro",
  13392. height: math.unit(5, "inches")
  13393. },
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(5, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Macro",
  13401. height: math.unit(60, "feet")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(4, "feet"),
  13410. weight: math.unit(50, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/kole/front.svg",
  13414. extra: 1423 / 1303,
  13415. bottom: 0.025
  13416. }
  13417. },
  13418. back: {
  13419. height: math.unit(4, "feet"),
  13420. weight: math.unit(50, "lb"),
  13421. name: "Back",
  13422. image: {
  13423. source: "./media/characters/kole/back.svg",
  13424. extra: 1426 / 1280,
  13425. bottom: 0.02
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(4, "feet"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(2.5, "feet"),
  13442. weight: math.unit(32, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/rufran/front.svg",
  13446. extra: 1313/885,
  13447. bottom: 94/1407
  13448. }
  13449. },
  13450. side: {
  13451. height: math.unit(2.5, "feet"),
  13452. weight: math.unit(32, "lb"),
  13453. name: "Side",
  13454. image: {
  13455. source: "./media/characters/rufran/side.svg",
  13456. extra: 1109/852,
  13457. bottom: 118/1227
  13458. }
  13459. },
  13460. back: {
  13461. height: math.unit(2.5, "feet"),
  13462. weight: math.unit(32, "lb"),
  13463. name: "Back",
  13464. image: {
  13465. source: "./media/characters/rufran/back.svg",
  13466. extra: 1280/878,
  13467. bottom: 131/1411
  13468. }
  13469. },
  13470. mouth: {
  13471. height: math.unit(1.13, "feet"),
  13472. name: "Mouth",
  13473. image: {
  13474. source: "./media/characters/rufran/mouth.svg"
  13475. }
  13476. },
  13477. foot: {
  13478. height: math.unit(1.33, "feet"),
  13479. name: "Foot",
  13480. image: {
  13481. source: "./media/characters/rufran/foot.svg"
  13482. }
  13483. },
  13484. koboldFront: {
  13485. height: math.unit(2 + 6 / 12, "feet"),
  13486. weight: math.unit(20, "lb"),
  13487. name: "Front (Kobold)",
  13488. image: {
  13489. source: "./media/characters/rufran/kobold-front.svg",
  13490. extra: 2041 / 1839,
  13491. bottom: 0.055
  13492. }
  13493. },
  13494. koboldBack: {
  13495. height: math.unit(2 + 6 / 12, "feet"),
  13496. weight: math.unit(20, "lb"),
  13497. name: "Back (Kobold)",
  13498. image: {
  13499. source: "./media/characters/rufran/kobold-back.svg",
  13500. extra: 2054 / 1839,
  13501. bottom: 0.01
  13502. }
  13503. },
  13504. koboldHand: {
  13505. height: math.unit(0.2166, "meters"),
  13506. name: "Hand (Kobold)",
  13507. image: {
  13508. source: "./media/characters/rufran/kobold-hand.svg"
  13509. }
  13510. },
  13511. koboldFoot: {
  13512. height: math.unit(0.185, "meters"),
  13513. name: "Foot (Kobold)",
  13514. image: {
  13515. source: "./media/characters/rufran/kobold-foot.svg"
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Micro",
  13522. height: math.unit(1, "inch")
  13523. },
  13524. {
  13525. name: "Normal",
  13526. height: math.unit(2 + 6 / 12, "feet"),
  13527. default: true
  13528. },
  13529. {
  13530. name: "Big",
  13531. height: math.unit(60, "feet")
  13532. },
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(325, "feet")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(0.3, "meters"),
  13544. weight: math.unit(3.5, "kg"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/chip/front.svg",
  13548. extra: 748 / 674
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(1, "inch"),
  13556. default: true
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13562. {
  13563. side: {
  13564. height: math.unit(2.3, "meters"),
  13565. weight: math.unit(3500, "lb"),
  13566. name: "Side",
  13567. image: {
  13568. source: "./media/characters/torvid/side.svg",
  13569. extra: 1972 / 722,
  13570. bottom: 0.035
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Normal",
  13577. height: math.unit(2.3, "meters"),
  13578. default: true
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(2, "meters"),
  13587. weight: math.unit(150.5, "kg"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/susan/front.svg",
  13591. extra: 693 / 635,
  13592. bottom: 0.05
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(505, "miles"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(150, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/raindrops/front.svg",
  13613. extra: 2655 / 2461,
  13614. bottom: 49 / 2705
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/raindrops/back.svg",
  13623. extra: 2574 / 2400,
  13624. bottom: 65 / 2634
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Micro",
  13631. height: math.unit(6, "inches")
  13632. },
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(6 + 2 / 12, "feet")
  13636. },
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(131, "feet"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(15, "miles")
  13645. },
  13646. {
  13647. name: "Gigamacro",
  13648. height: math.unit(4000, "miles")
  13649. },
  13650. {
  13651. name: "Teramacro",
  13652. height: math.unit(315000, "miles")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(2.794, "meters"),
  13661. weight: math.unit(325, "kg"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/tezwa/front.svg",
  13665. extra: 2083 / 1906,
  13666. bottom: 0.031
  13667. }
  13668. },
  13669. foot: {
  13670. height: math.unit(0.687, "meters"),
  13671. name: "Foot",
  13672. image: {
  13673. source: "./media/characters/tezwa/foot.svg"
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(9 + 2 / 12, "feet"),
  13681. default: true
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(58, "feet"),
  13690. weight: math.unit(89000, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/typhus/front.svg",
  13694. extra: 816 / 800,
  13695. bottom: 0.065
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(58, "feet"),
  13703. default: true
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(12, "feet"),
  13712. weight: math.unit(6, "tonnes"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/lyra-von-wulf/front.svg",
  13716. extra: 1,
  13717. bottom: 0.10
  13718. }
  13719. },
  13720. frontMecha: {
  13721. height: math.unit(12, "feet"),
  13722. weight: math.unit(12, "tonnes"),
  13723. name: "Front (Mecha)",
  13724. image: {
  13725. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13726. extra: 1,
  13727. bottom: 0.042
  13728. }
  13729. },
  13730. maw: {
  13731. height: math.unit(2.2, "feet"),
  13732. name: "Maw",
  13733. image: {
  13734. source: "./media/characters/lyra-von-wulf/maw.svg"
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(12, "feet"),
  13742. default: true
  13743. },
  13744. {
  13745. name: "Classic",
  13746. height: math.unit(50, "feet")
  13747. },
  13748. {
  13749. name: "Macro",
  13750. height: math.unit(500, "feet")
  13751. },
  13752. {
  13753. name: "Megamacro",
  13754. height: math.unit(1, "mile")
  13755. },
  13756. {
  13757. name: "Gigamacro",
  13758. height: math.unit(400, "miles")
  13759. },
  13760. {
  13761. name: "Teramacro",
  13762. height: math.unit(22000, "miles")
  13763. },
  13764. {
  13765. name: "Solarmacro",
  13766. height: math.unit(8600000, "miles")
  13767. },
  13768. {
  13769. name: "Galactic",
  13770. height: math.unit(1057000, "lightyears")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(6 + 10 / 12, "feet"),
  13779. weight: math.unit(150, "lb"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/dixon/front.svg",
  13783. extra: 3361 / 3209,
  13784. bottom: 0.01
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Normal",
  13791. height: math.unit(6 + 10 / 12, "feet"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Big",
  13796. height: math.unit(12, "meters")
  13797. },
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(500, "meters")
  13801. },
  13802. {
  13803. name: "Megamacro",
  13804. height: math.unit(2, "km")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(185, "cm"),
  13813. weight: math.unit(68, "kg"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/kauko/front.svg",
  13817. extra: 1455 / 1421,
  13818. bottom: 0.03
  13819. }
  13820. },
  13821. back: {
  13822. height: math.unit(185, "cm"),
  13823. weight: math.unit(68, "kg"),
  13824. name: "Back",
  13825. image: {
  13826. source: "./media/characters/kauko/back.svg",
  13827. extra: 1455 / 1421,
  13828. bottom: 0.004
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(185, "cm"),
  13836. default: true
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13842. {
  13843. frontSfw: {
  13844. height: math.unit(5, "meters"),
  13845. weight: math.unit(4250, "lb"),
  13846. name: "Front",
  13847. image: {
  13848. source: "./media/characters/varg/front-sfw.svg",
  13849. extra: 1103/1010,
  13850. bottom: 50/1153
  13851. },
  13852. form: "anthro",
  13853. default: true
  13854. },
  13855. backSfw: {
  13856. height: math.unit(5, "meters"),
  13857. weight: math.unit(4250, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/varg/back-sfw.svg",
  13861. extra: 1038/1022,
  13862. bottom: 36/1074
  13863. },
  13864. form: "anthro"
  13865. },
  13866. frontNsfw: {
  13867. height: math.unit(5, "meters"),
  13868. weight: math.unit(4250, "lb"),
  13869. name: "Front (NSFW)",
  13870. image: {
  13871. source: "./media/characters/varg/front-nsfw.svg",
  13872. extra: 1103/1010,
  13873. bottom: 50/1153
  13874. },
  13875. form: "anthro"
  13876. },
  13877. sheath: {
  13878. height: math.unit(3.8, "feet"),
  13879. weight: math.unit(90, "kilograms"),
  13880. name: "Sheath",
  13881. image: {
  13882. source: "./media/characters/varg/sheath.svg"
  13883. },
  13884. form: "anthro"
  13885. },
  13886. dick: {
  13887. height: math.unit(4.6, "feet"),
  13888. weight: math.unit(451, "kilograms"),
  13889. name: "Dick",
  13890. image: {
  13891. source: "./media/characters/varg/dick.svg"
  13892. },
  13893. form: "anthro"
  13894. },
  13895. feralSfw: {
  13896. height: math.unit(5, "meters"),
  13897. weight: math.unit(100000, "lb"),
  13898. name: "Side",
  13899. image: {
  13900. source: "./media/characters/varg/feral-sfw.svg",
  13901. extra: 1065/511,
  13902. bottom: 211/1276
  13903. },
  13904. form: "feral",
  13905. default: true
  13906. },
  13907. feralNsfw: {
  13908. height: math.unit(5, "meters"),
  13909. weight: math.unit(100000, "lb"),
  13910. name: "Side (NSFW)",
  13911. image: {
  13912. source: "./media/characters/varg/feral-nsfw.svg",
  13913. extra: 1065/511,
  13914. bottom: 211/1276
  13915. },
  13916. form: "feral",
  13917. },
  13918. feralSheath: {
  13919. height: math.unit(9.8, "feet"),
  13920. weight: math.unit(2000, "kilograms"),
  13921. name: "Sheath",
  13922. image: {
  13923. source: "./media/characters/varg/sheath.svg"
  13924. },
  13925. form: "feral"
  13926. },
  13927. feralDick: {
  13928. height: math.unit(13.11, "feet"),
  13929. weight: math.unit(10440, "kilograms"),
  13930. name: "Dick",
  13931. image: {
  13932. source: "./media/characters/varg/dick.svg"
  13933. },
  13934. form: "feral"
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(5, "meters"),
  13941. form: "anthro"
  13942. },
  13943. {
  13944. name: "Macro",
  13945. height: math.unit(200, "meters"),
  13946. form: "anthro"
  13947. },
  13948. {
  13949. name: "Megamacro",
  13950. height: math.unit(20, "kilometers"),
  13951. form: "anthro"
  13952. },
  13953. {
  13954. name: "True Size",
  13955. height: math.unit(211, "km"),
  13956. form: "anthro",
  13957. default: true
  13958. },
  13959. {
  13960. name: "Gigamacro",
  13961. height: math.unit(1000, "km"),
  13962. form: "anthro"
  13963. },
  13964. {
  13965. name: "Gigamacro+",
  13966. height: math.unit(8000, "km"),
  13967. form: "anthro"
  13968. },
  13969. {
  13970. name: "Teramacro",
  13971. height: math.unit(1000000, "km"),
  13972. form: "anthro"
  13973. },
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(5, "meters"),
  13977. form: "feral"
  13978. },
  13979. {
  13980. name: "Macro",
  13981. height: math.unit(200, "meters"),
  13982. form: "feral"
  13983. },
  13984. {
  13985. name: "Megamacro",
  13986. height: math.unit(20, "kilometers"),
  13987. form: "feral"
  13988. },
  13989. {
  13990. name: "True Size",
  13991. height: math.unit(211, "km"),
  13992. form: "feral",
  13993. default: true
  13994. },
  13995. {
  13996. name: "Gigamacro",
  13997. height: math.unit(1000, "km"),
  13998. form: "feral"
  13999. },
  14000. {
  14001. name: "Gigamacro+",
  14002. height: math.unit(8000, "km"),
  14003. form: "feral"
  14004. },
  14005. {
  14006. name: "Teramacro",
  14007. height: math.unit(1000000, "km"),
  14008. form: "feral"
  14009. },
  14010. ],
  14011. {
  14012. "anthro": {
  14013. name: "Anthro",
  14014. default: true
  14015. },
  14016. "feral": {
  14017. name: "Feral",
  14018. },
  14019. }
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(7 + 7 / 12, "feet"),
  14026. weight: math.unit(267, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/dayza/front.svg",
  14030. extra: 1262 / 1200,
  14031. bottom: 0.035
  14032. }
  14033. },
  14034. side: {
  14035. height: math.unit(7 + 7 / 12, "feet"),
  14036. weight: math.unit(267, "lb"),
  14037. name: "Side",
  14038. image: {
  14039. source: "./media/characters/dayza/side.svg",
  14040. extra: 1295 / 1245,
  14041. bottom: 0.05
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(7 + 7 / 12, "feet"),
  14046. weight: math.unit(267, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/dayza/back.svg",
  14050. extra: 1241 / 1170
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Normal",
  14057. height: math.unit(7 + 7 / 12, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Macro",
  14062. height: math.unit(155, "feet")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6 + 5 / 12, "feet"),
  14071. weight: math.unit(160, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/xanthos/front.svg",
  14075. extra: 1,
  14076. bottom: 0.04
  14077. }
  14078. },
  14079. back: {
  14080. height: math.unit(6 + 5 / 12, "feet"),
  14081. weight: math.unit(160, "lb"),
  14082. name: "Back",
  14083. image: {
  14084. source: "./media/characters/xanthos/back.svg",
  14085. extra: 1,
  14086. bottom: 0.03
  14087. }
  14088. },
  14089. hand: {
  14090. height: math.unit(0.928, "feet"),
  14091. name: "Hand",
  14092. image: {
  14093. source: "./media/characters/xanthos/hand.svg"
  14094. }
  14095. },
  14096. foot: {
  14097. height: math.unit(1.286, "feet"),
  14098. name: "Foot",
  14099. image: {
  14100. source: "./media/characters/xanthos/foot.svg"
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(6 + 5 / 12, "feet"),
  14108. default: true
  14109. },
  14110. {
  14111. name: "Normal+",
  14112. height: math.unit(6, "meters")
  14113. },
  14114. {
  14115. name: "Macro",
  14116. height: math.unit(40, "feet")
  14117. },
  14118. {
  14119. name: "Macro+",
  14120. height: math.unit(200, "meters")
  14121. },
  14122. {
  14123. name: "Megamacro",
  14124. height: math.unit(20, "km")
  14125. },
  14126. {
  14127. name: "Megamacro+",
  14128. height: math.unit(100, "km")
  14129. },
  14130. {
  14131. name: "Gigamacro",
  14132. height: math.unit(200, "megameters")
  14133. },
  14134. {
  14135. name: "Gigamacro+",
  14136. height: math.unit(1.5, "gigameters")
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(6 + 3 / 12, "feet"),
  14145. weight: math.unit(215, "lb"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/grynn/front.svg",
  14149. extra: 4627 / 4209,
  14150. bottom: 0.047
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Micro",
  14157. height: math.unit(6, "inches")
  14158. },
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(6 + 3 / 12, "feet"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Big",
  14166. height: math.unit(104, "feet")
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(944, "feet")
  14171. },
  14172. {
  14173. name: "Macro+",
  14174. height: math.unit(9480, "feet")
  14175. },
  14176. {
  14177. name: "Megamacro",
  14178. height: math.unit(78752, "feet")
  14179. },
  14180. {
  14181. name: "Megamacro+",
  14182. height: math.unit(630128, "feet")
  14183. },
  14184. {
  14185. name: "Megamacro++",
  14186. height: math.unit(3150695, "feet")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(7 + 5 / 12, "feet"),
  14195. weight: math.unit(450, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/mocha-aura/front.svg",
  14199. extra: 1907 / 1817,
  14200. bottom: 0.04
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(7 + 5 / 12, "feet"),
  14205. weight: math.unit(450, "lb"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/mocha-aura/back.svg",
  14209. extra: 1900 / 1825,
  14210. bottom: 0.045
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Nano",
  14217. height: math.unit(1, "nm")
  14218. },
  14219. {
  14220. name: "Megamicro",
  14221. height: math.unit(1, "mm")
  14222. },
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(3, "inches")
  14226. },
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(7 + 5 / 12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(30, "feet")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(3500, "feet")
  14239. },
  14240. {
  14241. name: "Teramacro",
  14242. height: math.unit(500000, "miles")
  14243. },
  14244. {
  14245. name: "Petamacro",
  14246. height: math.unit(50000000000000000, "parsecs")
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14252. {
  14253. front: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(150, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/ilisha-devya/front.svg",
  14259. extra: 1053/1049,
  14260. bottom: 270/1323
  14261. }
  14262. },
  14263. back: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(150, "lb"),
  14266. name: "Back",
  14267. image: {
  14268. source: "./media/characters/ilisha-devya/back.svg",
  14269. extra: 1131/1128,
  14270. bottom: 39/1170
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(500, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(10, "miles")
  14283. },
  14284. {
  14285. name: "Gigamacro",
  14286. height: math.unit(100000, "miles")
  14287. },
  14288. {
  14289. name: "Examacro",
  14290. height: math.unit(1e9, "lightyears")
  14291. },
  14292. {
  14293. name: "Omniversal",
  14294. height: math.unit(1e33, "lightyears")
  14295. },
  14296. {
  14297. name: "Beyond Infinite",
  14298. height: math.unit(1e100, "lightyears")
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14304. {
  14305. Side: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Side",
  14309. image: {
  14310. source: "./media/characters/mira/side.svg",
  14311. extra: 900 / 799,
  14312. bottom: 0.02
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Human Size",
  14319. height: math.unit(6, "feet")
  14320. },
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(100, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(10, "miles")
  14329. },
  14330. {
  14331. name: "Gigamacro",
  14332. height: math.unit(25000, "miles")
  14333. },
  14334. {
  14335. name: "Teramacro",
  14336. height: math.unit(300, "AU")
  14337. },
  14338. {
  14339. name: "Full Size",
  14340. height: math.unit(4.5e10, "lightyears")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/holly/front.svg",
  14353. extra: 639 / 606
  14354. }
  14355. },
  14356. back: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Back",
  14360. image: {
  14361. source: "./media/characters/holly/back.svg",
  14362. extra: 623 / 598
  14363. }
  14364. },
  14365. frontWorking: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(150, "lb"),
  14368. name: "Front (Working)",
  14369. image: {
  14370. source: "./media/characters/holly/front-working.svg",
  14371. extra: 607 / 577,
  14372. bottom: 0.048
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(12 + 3 / 12, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(6, "feet"),
  14389. weight: math.unit(150, "lb"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/porter/front.svg",
  14393. extra: 1,
  14394. bottom: 0.01
  14395. }
  14396. },
  14397. frontRobes: {
  14398. height: math.unit(6, "feet"),
  14399. weight: math.unit(150, "lb"),
  14400. name: "Front (Robes)",
  14401. image: {
  14402. source: "./media/characters/porter/front-robes.svg",
  14403. extra: 1.01,
  14404. bottom: 0.01
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(11 + 9 / 12, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14418. {
  14419. legendary: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Legendary",
  14423. image: {
  14424. source: "./media/characters/lucy/legendary.svg",
  14425. extra: 1355 / 1100,
  14426. bottom: 0.045
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Legendary",
  14433. height: math.unit(86882 * 2, "miles"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(6, "feet"),
  14443. weight: math.unit(150, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/drusilla/front.svg",
  14447. extra: 678 / 635,
  14448. bottom: 0.03
  14449. }
  14450. },
  14451. back: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(150, "lb"),
  14454. name: "Back",
  14455. image: {
  14456. source: "./media/characters/drusilla/back.svg",
  14457. extra: 678 / 635,
  14458. bottom: 0.005
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Macro",
  14465. height: math.unit(100, "feet")
  14466. },
  14467. {
  14468. name: "Canon Height",
  14469. height: math.unit(2000, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(180, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/renard-thatch/front.svg",
  14483. extra: 2411 / 2275,
  14484. bottom: 0.01
  14485. }
  14486. },
  14487. frontPosing: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(180, "lb"),
  14490. name: "Front (Posing)",
  14491. image: {
  14492. source: "./media/characters/renard-thatch/front-posing.svg",
  14493. extra: 2381 / 2261,
  14494. bottom: 0.01
  14495. }
  14496. },
  14497. back: {
  14498. height: math.unit(6, "feet"),
  14499. weight: math.unit(180, "lb"),
  14500. name: "Back",
  14501. image: {
  14502. source: "./media/characters/renard-thatch/back.svg",
  14503. extra: 2428 / 2288
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(3, "inches")
  14511. },
  14512. {
  14513. name: "Default",
  14514. height: math.unit(6, "feet"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Macro",
  14519. height: math.unit(75, "feet")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(1450, "feet"),
  14528. weight: math.unit(1.21e6, "tons"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/sekvra/front.svg",
  14532. extra: 1193/1190,
  14533. bottom: 78/1271
  14534. }
  14535. },
  14536. side: {
  14537. height: math.unit(1450, "feet"),
  14538. weight: math.unit(1.21e6, "tons"),
  14539. name: "Side",
  14540. image: {
  14541. source: "./media/characters/sekvra/side.svg",
  14542. extra: 1193/1190,
  14543. bottom: 52/1245
  14544. }
  14545. },
  14546. back: {
  14547. height: math.unit(1450, "feet"),
  14548. weight: math.unit(1.21e6, "tons"),
  14549. name: "Back",
  14550. image: {
  14551. source: "./media/characters/sekvra/back.svg",
  14552. extra: 1219/1216,
  14553. bottom: 21/1240
  14554. }
  14555. },
  14556. frontClothed: {
  14557. height: math.unit(1450, "feet"),
  14558. weight: math.unit(1.21e6, "tons"),
  14559. name: "Front (Clothed)",
  14560. image: {
  14561. source: "./media/characters/sekvra/front-clothed.svg",
  14562. extra: 1192/1189,
  14563. bottom: 79/1271
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(1450, "feet"),
  14571. default: true
  14572. },
  14573. {
  14574. name: "Megamacro",
  14575. height: math.unit(15000, "feet")
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/carmine/front.svg",
  14588. extra: 1,
  14589. bottom: 0.035
  14590. }
  14591. },
  14592. frontArmor: {
  14593. height: math.unit(6, "feet"),
  14594. weight: math.unit(150, "lb"),
  14595. name: "Front (Armor)",
  14596. image: {
  14597. source: "./media/characters/carmine/front-armor.svg",
  14598. extra: 1,
  14599. bottom: 0.035
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Large",
  14606. height: math.unit(1, "mile")
  14607. },
  14608. {
  14609. name: "Huge",
  14610. height: math.unit(40, "miles"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Colossal",
  14615. height: math.unit(2500, "miles")
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/elyssia/front.svg",
  14628. extra: 2201 / 2035,
  14629. bottom: 0.05
  14630. }
  14631. },
  14632. frontClothed: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front (Clothed)",
  14636. image: {
  14637. source: "./media/characters/elyssia/front-clothed.svg",
  14638. extra: 2201 / 2035,
  14639. bottom: 0.05
  14640. }
  14641. },
  14642. back: {
  14643. height: math.unit(6, "feet"),
  14644. weight: math.unit(150, "lb"),
  14645. name: "Back",
  14646. image: {
  14647. source: "./media/characters/elyssia/back.svg",
  14648. extra: 2201 / 2035,
  14649. bottom: 0.013
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Smaller",
  14656. height: math.unit(150, "feet")
  14657. },
  14658. {
  14659. name: "Standard",
  14660. height: math.unit(1400, "feet"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Distracted",
  14665. height: math.unit(15000, "feet")
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(7 + 4/12, "feet"),
  14674. weight: math.unit(690, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/geno-maxwell/front.svg",
  14678. extra: 984/856,
  14679. bottom: 87/1071
  14680. }
  14681. },
  14682. back: {
  14683. height: math.unit(7 + 4/12, "feet"),
  14684. weight: math.unit(690, "lb"),
  14685. name: "Back",
  14686. image: {
  14687. source: "./media/characters/geno-maxwell/back.svg",
  14688. extra: 981/854,
  14689. bottom: 57/1038
  14690. }
  14691. },
  14692. frontCostume: {
  14693. height: math.unit(7 + 4/12, "feet"),
  14694. weight: math.unit(690, "lb"),
  14695. name: "Front (Costume)",
  14696. image: {
  14697. source: "./media/characters/geno-maxwell/front-costume.svg",
  14698. extra: 984/856,
  14699. bottom: 87/1071
  14700. }
  14701. },
  14702. backcostume: {
  14703. height: math.unit(7 + 4/12, "feet"),
  14704. weight: math.unit(690, "lb"),
  14705. name: "Back (Costume)",
  14706. image: {
  14707. source: "./media/characters/geno-maxwell/back-costume.svg",
  14708. extra: 981/854,
  14709. bottom: 57/1038
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(3, "inches")
  14717. },
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(7 + 4 / 12, "feet"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(220, "feet")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(11, "miles")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(7 + 4/12, "feet"),
  14738. weight: math.unit(750, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/regena-maxwell/front.svg",
  14742. extra: 984/856,
  14743. bottom: 87/1071
  14744. }
  14745. },
  14746. back: {
  14747. height: math.unit(7 + 4/12, "feet"),
  14748. weight: math.unit(750, "lb"),
  14749. name: "Back",
  14750. image: {
  14751. source: "./media/characters/regena-maxwell/back.svg",
  14752. extra: 981/854,
  14753. bottom: 57/1038
  14754. }
  14755. },
  14756. frontCostume: {
  14757. height: math.unit(7 + 4/12, "feet"),
  14758. weight: math.unit(750, "lb"),
  14759. name: "Front (Costume)",
  14760. image: {
  14761. source: "./media/characters/regena-maxwell/front-costume.svg",
  14762. extra: 984/856,
  14763. bottom: 87/1071
  14764. }
  14765. },
  14766. backcostume: {
  14767. height: math.unit(7 + 4/12, "feet"),
  14768. weight: math.unit(750, "lb"),
  14769. name: "Back (Costume)",
  14770. image: {
  14771. source: "./media/characters/regena-maxwell/back-costume.svg",
  14772. extra: 981/854,
  14773. bottom: 57/1038
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(7 + 4 / 12, "feet"),
  14781. default: true
  14782. },
  14783. {
  14784. name: "Macro",
  14785. height: math.unit(220, "feet")
  14786. },
  14787. {
  14788. name: "Megamacro",
  14789. height: math.unit(11, "miles")
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(150, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14802. extra: 860 / 690,
  14803. bottom: 0.03
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(1.7, "meters"),
  14811. default: true
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/quilly/front.svg",
  14824. extra: 890 / 776
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Gigamacro",
  14831. height: math.unit(404090, "miles"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(7 + 8 / 12, "feet"),
  14841. weight: math.unit(350, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/tempest/front.svg",
  14845. extra: 1175 / 1086,
  14846. bottom: 0.02
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(7 + 8 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14860. {
  14861. side: {
  14862. height: math.unit(4 + 5 / 12, "feet"),
  14863. weight: math.unit(80, "lb"),
  14864. name: "Side",
  14865. image: {
  14866. source: "./media/characters/rodger/side.svg",
  14867. extra: 1235 / 1118
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Micro",
  14874. height: math.unit(1, "inch")
  14875. },
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(4 + 5 / 12, "feet"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Macro",
  14883. height: math.unit(120, "feet")
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(150, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/danyel/front.svg",
  14896. extra: 1185 / 1123,
  14897. bottom: 0.05
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Shrunken",
  14904. height: math.unit(0.5, "mm")
  14905. },
  14906. {
  14907. name: "Micro",
  14908. height: math.unit(1, "mm"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Upsized",
  14913. height: math.unit(5 + 5 / 12, "feet")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(5 + 6 / 12, "feet"),
  14922. weight: math.unit(200, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/vivian-bijoux/front.svg",
  14926. extra: 1217/1209,
  14927. bottom: 76/1293
  14928. }
  14929. },
  14930. back: {
  14931. height: math.unit(5 + 6 / 12, "feet"),
  14932. weight: math.unit(200, "lb"),
  14933. name: "Back",
  14934. image: {
  14935. source: "./media/characters/vivian-bijoux/back.svg",
  14936. extra: 1214/1208,
  14937. bottom: 51/1265
  14938. }
  14939. },
  14940. dressed: {
  14941. height: math.unit(5 + 6 / 12, "feet"),
  14942. weight: math.unit(200, "lb"),
  14943. name: "Dressed",
  14944. image: {
  14945. source: "./media/characters/vivian-bijoux/dressed.svg",
  14946. extra: 1217/1209,
  14947. bottom: 76/1293
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(5 + 6 / 12, "feet"),
  14955. default: true
  14956. },
  14957. {
  14958. name: "Bad Dream",
  14959. height: math.unit(500, "feet")
  14960. },
  14961. {
  14962. name: "Nightmare",
  14963. height: math.unit(500, "miles")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(6 + 1 / 12, "feet"),
  14972. weight: math.unit(260, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/zeta/front.svg",
  14976. extra: 1968 / 1889,
  14977. bottom: 0.06
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(6 + 1 / 12, "feet"),
  14982. weight: math.unit(260, "lb"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/zeta/back.svg",
  14986. extra: 1944 / 1858,
  14987. bottom: 0.03
  14988. }
  14989. },
  14990. hand: {
  14991. height: math.unit(1.112, "feet"),
  14992. name: "Hand",
  14993. image: {
  14994. source: "./media/characters/zeta/hand.svg"
  14995. }
  14996. },
  14997. foot: {
  14998. height: math.unit(1.48, "feet"),
  14999. name: "Foot",
  15000. image: {
  15001. source: "./media/characters/zeta/foot.svg"
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Micro",
  15008. height: math.unit(6, "inches")
  15009. },
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(6 + 1 / 12, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Macro",
  15017. height: math.unit(20, "feet")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(6, "feet"),
  15026. weight: math.unit(150, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/jamie-larsen/front.svg",
  15030. extra: 962 / 933,
  15031. bottom: 0.02
  15032. }
  15033. },
  15034. back: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Back",
  15038. image: {
  15039. source: "./media/characters/jamie-larsen/back.svg",
  15040. extra: 997 / 946
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(28 + 7 / 12, "feet"),
  15048. default: true
  15049. },
  15050. {
  15051. name: "Macro+",
  15052. height: math.unit(180, "feet")
  15053. },
  15054. {
  15055. name: "Megamacro",
  15056. height: math.unit(10, "miles")
  15057. },
  15058. {
  15059. name: "Gigamacro",
  15060. height: math.unit(200000, "miles")
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(6, "feet"),
  15069. weight: math.unit(120, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/vance/front.svg",
  15073. extra: 1980 / 1890,
  15074. bottom: 0.09
  15075. }
  15076. },
  15077. back: {
  15078. height: math.unit(6, "feet"),
  15079. weight: math.unit(120, "lb"),
  15080. name: "Back",
  15081. image: {
  15082. source: "./media/characters/vance/back.svg",
  15083. extra: 2081 / 1994,
  15084. bottom: 0.014
  15085. }
  15086. },
  15087. hand: {
  15088. height: math.unit(0.88, "feet"),
  15089. name: "Hand",
  15090. image: {
  15091. source: "./media/characters/vance/hand.svg"
  15092. }
  15093. },
  15094. foot: {
  15095. height: math.unit(0.64, "feet"),
  15096. name: "Foot",
  15097. image: {
  15098. source: "./media/characters/vance/foot.svg"
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Small",
  15105. height: math.unit(90, "feet"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Macro",
  15110. height: math.unit(100, "meters")
  15111. },
  15112. {
  15113. name: "Megamacro",
  15114. height: math.unit(15, "miles")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(180, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/xochitl/front.svg",
  15127. extra: 2297 / 2261,
  15128. bottom: 0.065
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(180, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/xochitl/back.svg",
  15137. extra: 2386 / 2354,
  15138. bottom: 0.01
  15139. }
  15140. },
  15141. foot: {
  15142. height: math.unit(6 / 5 * 1.15, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Foot",
  15145. image: {
  15146. source: "./media/characters/xochitl/foot.svg"
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(80, "feet")
  15154. },
  15155. {
  15156. name: "Macro+",
  15157. height: math.unit(400, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Gigamacro",
  15162. height: math.unit(80000, "miles")
  15163. },
  15164. {
  15165. name: "Gigamacro+",
  15166. height: math.unit(400000, "miles")
  15167. },
  15168. {
  15169. name: "Teramacro",
  15170. height: math.unit(300, "AU")
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15176. {
  15177. front: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/vincent/front.svg",
  15183. extra: 1130 / 1080,
  15184. bottom: 0.055
  15185. }
  15186. },
  15187. beak: {
  15188. height: math.unit(6 * 0.1, "feet"),
  15189. name: "Beak",
  15190. image: {
  15191. source: "./media/characters/vincent/beak.svg"
  15192. }
  15193. },
  15194. hand: {
  15195. height: math.unit(6 * 0.85, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Hand",
  15198. image: {
  15199. source: "./media/characters/vincent/hand.svg"
  15200. }
  15201. },
  15202. foot: {
  15203. height: math.unit(6 * 0.19, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Foot",
  15206. image: {
  15207. source: "./media/characters/vincent/foot.svg"
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Base",
  15214. height: math.unit(6 + 5 / 12, "feet"),
  15215. default: true
  15216. },
  15217. {
  15218. name: "Macro",
  15219. height: math.unit(300, "feet")
  15220. },
  15221. {
  15222. name: "Megamacro",
  15223. height: math.unit(2, "miles")
  15224. },
  15225. {
  15226. name: "Gigamacro",
  15227. height: math.unit(1000, "miles")
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(2, "meters"),
  15236. weight: math.unit(500, "kg"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/coatl/front.svg",
  15240. extra: 3948 / 3500,
  15241. bottom: 0.082
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(4, "meters")
  15249. },
  15250. {
  15251. name: "Macro",
  15252. height: math.unit(100, "meters"),
  15253. default: true
  15254. },
  15255. {
  15256. name: "Macro+",
  15257. height: math.unit(300, "meters")
  15258. },
  15259. {
  15260. name: "Megamacro",
  15261. height: math.unit(3, "gigameters")
  15262. },
  15263. {
  15264. name: "Megamacro+",
  15265. height: math.unit(300, "terameters")
  15266. },
  15267. {
  15268. name: "Megamacro++",
  15269. height: math.unit(3, "lightyears")
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(50, "kg"),
  15279. name: "front",
  15280. image: {
  15281. source: "./media/characters/shiroryu/front.svg",
  15282. extra: 1990 / 1935
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Mortal Mingling",
  15289. height: math.unit(3, "meters")
  15290. },
  15291. {
  15292. name: "Kaiju-ish",
  15293. height: math.unit(250, "meters")
  15294. },
  15295. {
  15296. name: "Somewhat Godly",
  15297. height: math.unit(400, "km"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Planetary",
  15302. height: math.unit(300, "megameters")
  15303. },
  15304. {
  15305. name: "Galaxy-dwarfing",
  15306. height: math.unit(450, "kiloparsecs")
  15307. },
  15308. {
  15309. name: "Universe Eater",
  15310. height: math.unit(150, "gigaparsecs")
  15311. },
  15312. {
  15313. name: "Almost Immeasurable",
  15314. height: math.unit(1.3e266, "yottaparsecs")
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(150, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/umeko/front.svg",
  15327. extra: 1,
  15328. bottom: 0.019
  15329. }
  15330. },
  15331. frontArmored: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Front (Armored)",
  15335. image: {
  15336. source: "./media/characters/umeko/front-armored.svg",
  15337. extra: 1,
  15338. bottom: 0.021
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(220, "feet"),
  15346. default: true
  15347. },
  15348. {
  15349. name: "Guardian Dragon",
  15350. height: math.unit(50, "miles")
  15351. },
  15352. {
  15353. name: "Cosmic",
  15354. height: math.unit(800000, "miles")
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/cassidy/front.svg",
  15367. extra: 810/808,
  15368. bottom: 41/851
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Canon Height",
  15375. height: math.unit(120, "feet"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Macro+",
  15380. height: math.unit(400, "feet")
  15381. },
  15382. {
  15383. name: "Macro++",
  15384. height: math.unit(4000, "feet")
  15385. },
  15386. {
  15387. name: "Megamacro",
  15388. height: math.unit(3, "miles")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/isaac/front.svg",
  15401. extra: 896 / 815,
  15402. bottom: 0.11
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Human Size",
  15409. height: math.unit(8, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Macro",
  15414. height: math.unit(400, "feet")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(50, "miles")
  15419. },
  15420. {
  15421. name: "Canon Height",
  15422. height: math.unit(200, "AU")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(72, "kg"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/sleekit/front.svg",
  15435. extra: 4693 / 4487,
  15436. bottom: 0.012
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Minimum Height",
  15443. height: math.unit(10, "meters")
  15444. },
  15445. {
  15446. name: "Smaller",
  15447. height: math.unit(25, "meters")
  15448. },
  15449. {
  15450. name: "Larger",
  15451. height: math.unit(38, "meters"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Maximum height",
  15456. height: math.unit(100, "meters")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6, "feet"),
  15465. weight: math.unit(150, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/nillia/front.svg",
  15469. extra: 2195 / 2037,
  15470. bottom: 0.005
  15471. }
  15472. },
  15473. back: {
  15474. height: math.unit(6, "feet"),
  15475. weight: math.unit(150, "lb"),
  15476. name: "Back",
  15477. image: {
  15478. source: "./media/characters/nillia/back.svg",
  15479. extra: 2195 / 2037,
  15480. bottom: 0.005
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Canon Height",
  15487. height: math.unit(489, "feet"),
  15488. default: true
  15489. }
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/mesmyriza/front.svg",
  15501. extra: 2067 / 1784,
  15502. bottom: 0.035
  15503. }
  15504. },
  15505. foot: {
  15506. height: math.unit(6 / (250 / 35), "feet"),
  15507. name: "Foot",
  15508. image: {
  15509. source: "./media/characters/mesmyriza/foot.svg"
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(457, "meters"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Megamacro",
  15521. height: math.unit(8, "megameters")
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(250, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/saudade/front.svg",
  15534. extra: 1172 / 1139,
  15535. bottom: 0.035
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Micro",
  15542. height: math.unit(3, "inches")
  15543. },
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(6, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Macro",
  15551. height: math.unit(50, "feet")
  15552. },
  15553. {
  15554. name: "Megamacro",
  15555. height: math.unit(2800, "feet")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(5 + 4 / 12, "feet"),
  15564. weight: math.unit(100, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/keireer/front.svg",
  15568. extra: 716 / 666,
  15569. bottom: 0.05
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(5 + 4 / 12, "feet"),
  15577. default: true
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(5.5, "feet"),
  15586. weight: math.unit(90, "kg"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/mirja/front.svg",
  15590. extra: 1452/1262,
  15591. bottom: 67/1519
  15592. }
  15593. },
  15594. frontDressed: {
  15595. height: math.unit(5.5, "feet"),
  15596. weight: math.unit(90, "lb"),
  15597. name: "Front (Dressed)",
  15598. image: {
  15599. source: "./media/characters/mirja/dressed.svg",
  15600. extra: 1452/1262,
  15601. bottom: 67/1519
  15602. }
  15603. },
  15604. back: {
  15605. height: math.unit(6, "feet"),
  15606. weight: math.unit(90, "lb"),
  15607. name: "Back",
  15608. image: {
  15609. source: "./media/characters/mirja/back.svg",
  15610. extra: 1892/1795,
  15611. bottom: 48/1940
  15612. }
  15613. },
  15614. maw: {
  15615. height: math.unit(1.312, "feet"),
  15616. name: "Maw",
  15617. image: {
  15618. source: "./media/characters/mirja/maw.svg"
  15619. }
  15620. },
  15621. paw: {
  15622. height: math.unit(1.15, "feet"),
  15623. name: "Paw",
  15624. image: {
  15625. source: "./media/characters/mirja/paw.svg"
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "\"Incognito\"",
  15632. height: math.unit(3, "meters")
  15633. },
  15634. {
  15635. name: "Strolling Size",
  15636. height: math.unit(15, "km")
  15637. },
  15638. {
  15639. name: "Larger Strolling Size",
  15640. height: math.unit(400, "km")
  15641. },
  15642. {
  15643. name: "Preferred Size",
  15644. height: math.unit(5000, "km"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "True Size",
  15649. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(15, "feet"),
  15658. weight: math.unit(880, "kg"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/nightraver/front.svg",
  15662. extra: 2444 / 2160,
  15663. bottom: 0.027
  15664. }
  15665. },
  15666. back: {
  15667. height: math.unit(15, "feet"),
  15668. weight: math.unit(880, "kg"),
  15669. name: "Back",
  15670. image: {
  15671. source: "./media/characters/nightraver/back.svg",
  15672. extra: 2309 / 2180,
  15673. bottom: 0.005
  15674. }
  15675. },
  15676. sole: {
  15677. height: math.unit(2.878, "feet"),
  15678. name: "Sole",
  15679. image: {
  15680. source: "./media/characters/nightraver/sole.svg"
  15681. }
  15682. },
  15683. foot: {
  15684. height: math.unit(2.285, "feet"),
  15685. name: "Foot",
  15686. image: {
  15687. source: "./media/characters/nightraver/foot.svg"
  15688. }
  15689. },
  15690. maw: {
  15691. height: math.unit(2.67, "feet"),
  15692. name: "Maw",
  15693. image: {
  15694. source: "./media/characters/nightraver/maw.svg"
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Micro",
  15701. height: math.unit(1, "cm")
  15702. },
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(15, "feet"),
  15706. default: true
  15707. },
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(300, "feet")
  15711. },
  15712. {
  15713. name: "Megamacro",
  15714. height: math.unit(300, "miles")
  15715. },
  15716. {
  15717. name: "Gigamacro",
  15718. height: math.unit(10000, "miles")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15724. {
  15725. side: {
  15726. height: math.unit(2, "inches"),
  15727. weight: math.unit(5, "grams"),
  15728. name: "Side",
  15729. image: {
  15730. source: "./media/characters/arc/side.svg"
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Micro",
  15737. height: math.unit(2, "inches"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(1.1938, "meters"),
  15747. weight: math.unit(54, "kg"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/nebula-shahar/front.svg",
  15751. extra: 1642 / 1436,
  15752. bottom: 0.06
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Megamicro",
  15759. height: math.unit(0.3, "mm")
  15760. },
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(3, "cm")
  15764. },
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(138, "cm"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Macro",
  15772. height: math.unit(30, "m")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5.24, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/shayla/front.svg",
  15785. extra: 1512 / 1414,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. back: {
  15790. height: math.unit(5.24, "feet"),
  15791. weight: math.unit(150, "lb"),
  15792. name: "Back",
  15793. image: {
  15794. source: "./media/characters/shayla/back.svg",
  15795. extra: 1512 / 1414
  15796. }
  15797. },
  15798. hand: {
  15799. height: math.unit(0.7781496062992126, "feet"),
  15800. name: "Hand",
  15801. image: {
  15802. source: "./media/characters/shayla/hand.svg"
  15803. }
  15804. },
  15805. foot: {
  15806. height: math.unit(1.4206036745406823, "feet"),
  15807. name: "Foot",
  15808. image: {
  15809. source: "./media/characters/shayla/foot.svg"
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Micro",
  15816. height: math.unit(0.32, "feet")
  15817. },
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(5.24, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(492.12, "feet")
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(186.41, "miles")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(2.2, "m"),
  15838. weight: math.unit(120, "kg"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/pia-jr/front.svg",
  15842. extra: 1000 / 970,
  15843. bottom: 0.035
  15844. }
  15845. },
  15846. hand: {
  15847. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15848. name: "Hand",
  15849. image: {
  15850. source: "./media/characters/pia-jr/hand.svg"
  15851. }
  15852. },
  15853. paw: {
  15854. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15855. name: "Paw",
  15856. image: {
  15857. source: "./media/characters/pia-jr/paw.svg"
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Micro",
  15864. height: math.unit(1.2, "cm")
  15865. },
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(2.2, "m"),
  15869. default: true
  15870. },
  15871. {
  15872. name: "Macro",
  15873. height: math.unit(180, "m")
  15874. },
  15875. {
  15876. name: "Megamacro",
  15877. height: math.unit(420, "km")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(2, "m"),
  15886. weight: math.unit(115, "kg"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/pia-sr/front.svg",
  15890. extra: 760 / 730,
  15891. bottom: 0.015
  15892. }
  15893. },
  15894. back: {
  15895. height: math.unit(2, "m"),
  15896. weight: math.unit(115, "kg"),
  15897. name: "Back",
  15898. image: {
  15899. source: "./media/characters/pia-sr/back.svg",
  15900. extra: 760 / 730,
  15901. bottom: 0.01
  15902. }
  15903. },
  15904. hand: {
  15905. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15906. name: "Hand",
  15907. image: {
  15908. source: "./media/characters/pia-sr/hand.svg"
  15909. }
  15910. },
  15911. foot: {
  15912. height: math.unit(1.83, "feet"),
  15913. name: "Foot",
  15914. image: {
  15915. source: "./media/characters/pia-sr/foot.svg"
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Micro",
  15922. height: math.unit(88, "mm")
  15923. },
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(2, "m"),
  15927. default: true
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(200, "m")
  15932. },
  15933. {
  15934. name: "Megamacro",
  15935. height: math.unit(420, "km")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(8 + 2 / 12, "feet"),
  15944. weight: math.unit(300, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/kibibyte/front.svg",
  15948. extra: 2221 / 2098,
  15949. bottom: 0.04
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(8 + 2 / 12, "feet"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Socialable Macro",
  15961. height: math.unit(50, "feet")
  15962. },
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(300, "feet")
  15966. },
  15967. {
  15968. name: "Megamacro",
  15969. height: math.unit(500, "miles")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/felix/front.svg",
  15982. extra: 762 / 722,
  15983. bottom: 0.02
  15984. }
  15985. },
  15986. frontClothed: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Front (Clothed)",
  15990. image: {
  15991. source: "./media/characters/felix/front-clothed.svg",
  15992. extra: 762 / 722,
  15993. bottom: 0.02
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(6 + 8 / 12, "feet"),
  16001. default: true
  16002. },
  16003. {
  16004. name: "Macro",
  16005. height: math.unit(2600, "feet")
  16006. },
  16007. {
  16008. name: "Megamacro",
  16009. height: math.unit(450, "miles")
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16015. {
  16016. front: {
  16017. height: math.unit(6 + 1 / 12, "feet"),
  16018. weight: math.unit(250, "lb"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/tobo/front.svg",
  16022. extra: 608 / 586,
  16023. bottom: 0.023
  16024. }
  16025. },
  16026. back: {
  16027. height: math.unit(6 + 1 / 12, "feet"),
  16028. weight: math.unit(250, "lb"),
  16029. name: "Back",
  16030. image: {
  16031. source: "./media/characters/tobo/back.svg",
  16032. extra: 608 / 586
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Nano",
  16039. height: math.unit(2, "nm")
  16040. },
  16041. {
  16042. name: "Megamicro",
  16043. height: math.unit(0.1, "mm")
  16044. },
  16045. {
  16046. name: "Micro",
  16047. height: math.unit(1, "inch"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Human-sized",
  16052. height: math.unit(6 + 1 / 12, "feet")
  16053. },
  16054. {
  16055. name: "Macro",
  16056. height: math.unit(250, "feet")
  16057. },
  16058. {
  16059. name: "Megamacro",
  16060. height: math.unit(75, "miles")
  16061. },
  16062. {
  16063. name: "Texas-sized",
  16064. height: math.unit(750, "miles")
  16065. },
  16066. {
  16067. name: "Teramacro",
  16068. height: math.unit(50000, "miles")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(269, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/danny-kapowsky/front.svg",
  16081. extra: 766 / 736,
  16082. bottom: 0.044
  16083. }
  16084. },
  16085. back: {
  16086. height: math.unit(6, "feet"),
  16087. weight: math.unit(269, "lb"),
  16088. name: "Back",
  16089. image: {
  16090. source: "./media/characters/danny-kapowsky/back.svg",
  16091. extra: 797 / 760,
  16092. bottom: 0.025
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Macro",
  16099. height: math.unit(150, "feet"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Macro+",
  16104. height: math.unit(200, "feet")
  16105. },
  16106. {
  16107. name: "Macro++",
  16108. height: math.unit(300, "feet")
  16109. },
  16110. {
  16111. name: "Macro+++",
  16112. height: math.unit(400, "feet")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16118. {
  16119. side: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(170, "lb"),
  16122. name: "Side",
  16123. image: {
  16124. source: "./media/characters/finn/side.svg",
  16125. extra: 1953 / 1807,
  16126. bottom: 0.057
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Megamacro",
  16133. height: math.unit(14445, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(5 + 6 / 12, "feet"),
  16143. weight: math.unit(125, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/roy/front.svg",
  16147. extra: 1,
  16148. bottom: 0.11
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Micro",
  16155. height: math.unit(3, "inches"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 6 / 12, "feet")
  16161. },
  16162. {
  16163. name: "Lesser Macro",
  16164. height: math.unit(60, "feet")
  16165. },
  16166. {
  16167. name: "Greater Macro",
  16168. height: math.unit(120, "feet")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(100, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/aevsivs/front.svg",
  16181. extra: 1,
  16182. bottom: 0.03
  16183. }
  16184. },
  16185. back: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(100, "lb"),
  16188. name: "Back",
  16189. image: {
  16190. source: "./media/characters/aevsivs/back.svg"
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(2, "inches"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(5, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 7 / 12, "feet"),
  16211. weight: math.unit(159, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/hildegard/front.svg",
  16215. extra: 289 / 269,
  16216. bottom: 7.63 / 297.8
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(5 + 7 / 12, "feet"),
  16221. weight: math.unit(159, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/hildegard/back.svg",
  16225. extra: 280 / 260,
  16226. bottom: 2.3 / 282
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 7 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16240. {
  16241. bernard: {
  16242. height: math.unit(2 + 7 / 12, "feet"),
  16243. weight: math.unit(66, "lb"),
  16244. name: "Bernard",
  16245. rename: true,
  16246. image: {
  16247. source: "./media/characters/bernard-wilder/bernard.svg",
  16248. extra: 192 / 128,
  16249. bottom: 0.05
  16250. }
  16251. },
  16252. wilder: {
  16253. height: math.unit(5 + 8 / 12, "feet"),
  16254. weight: math.unit(143, "lb"),
  16255. name: "Wilder",
  16256. rename: true,
  16257. image: {
  16258. source: "./media/characters/bernard-wilder/wilder.svg",
  16259. extra: 361 / 312,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(2 + 7 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16274. {
  16275. anthro: {
  16276. height: math.unit(6 + 1 / 12, "feet"),
  16277. weight: math.unit(155, "lb"),
  16278. name: "Anthro",
  16279. image: {
  16280. source: "./media/characters/hearth/anthro.svg",
  16281. extra: 1178/1136,
  16282. bottom: 28/1206
  16283. }
  16284. },
  16285. feral: {
  16286. height: math.unit(3.78, "feet"),
  16287. weight: math.unit(35, "kg"),
  16288. name: "Feral",
  16289. image: {
  16290. source: "./media/characters/hearth/feral.svg",
  16291. extra: 153 / 135,
  16292. bottom: 0.03
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(6 + 1 / 12, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(182, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/ingrid/front.svg",
  16313. extra: 294 / 268,
  16314. bottom: 0.027
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(6, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16328. {
  16329. eevee: {
  16330. height: math.unit(2 + 10 / 12, "feet"),
  16331. weight: math.unit(86, "lb"),
  16332. name: "Malgam",
  16333. image: {
  16334. source: "./media/characters/malgam/eevee.svg",
  16335. extra: 952/784,
  16336. bottom: 38/990
  16337. }
  16338. },
  16339. sylveon: {
  16340. height: math.unit(4, "feet"),
  16341. weight: math.unit(101, "lb"),
  16342. name: "Future Malgam",
  16343. rename: true,
  16344. image: {
  16345. source: "./media/characters/malgam/sylveon.svg",
  16346. extra: 371 / 325,
  16347. bottom: 0.015
  16348. }
  16349. },
  16350. gigantamax: {
  16351. height: math.unit(50, "feet"),
  16352. name: "Gigantamax Malgam",
  16353. rename: true,
  16354. image: {
  16355. source: "./media/characters/malgam/gigantamax.svg"
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(2 + 10 / 12, "feet"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(5 + 11 / 12, "feet"),
  16372. weight: math.unit(188, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/fleur/front.svg",
  16376. extra: 309 / 283,
  16377. bottom: 0.007
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(5 + 11 / 12, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(5 + 4 / 12, "feet"),
  16394. weight: math.unit(122, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/jude/front.svg",
  16398. extra: 288 / 273,
  16399. bottom: 0.03
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(5 + 4 / 12, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(5 + 11 / 12, "feet"),
  16416. weight: math.unit(190, "lb"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/seara/front.svg",
  16420. extra: 1,
  16421. bottom: 0.05
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(5 + 11 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(16 + 5 / 12, "feet"),
  16438. weight: math.unit(524, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/caspian-lugia/front.svg",
  16442. extra: 1,
  16443. bottom: 0.04
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(16 + 5 / 12, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(5 + 7 / 12, "feet"),
  16460. weight: math.unit(170, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/mika/front.svg",
  16464. extra: 1,
  16465. bottom: 0.016
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(5 + 7 / 12, "feet"),
  16473. default: true
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16479. {
  16480. front: {
  16481. height: math.unit(6 + 2 / 12, "feet"),
  16482. weight: math.unit(268, "lb"),
  16483. name: "Front",
  16484. image: {
  16485. source: "./media/characters/sol/front.svg",
  16486. extra: 247 / 231,
  16487. bottom: 0.05
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(6 + 2 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16501. {
  16502. buizel: {
  16503. height: math.unit(2 + 5 / 12, "feet"),
  16504. weight: math.unit(87, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/umiko/buizel.svg",
  16508. extra: 172 / 157,
  16509. bottom: 0.01
  16510. },
  16511. form: "buizel",
  16512. default: true
  16513. },
  16514. floatzel: {
  16515. height: math.unit(5 + 9 / 12, "feet"),
  16516. weight: math.unit(250, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/umiko/floatzel.svg",
  16520. extra: 1076/1006,
  16521. bottom: 15/1091
  16522. },
  16523. form: "floatzel",
  16524. default: true
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(2 + 5 / 12, "feet"),
  16531. form: "buizel",
  16532. default: true
  16533. },
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(5 + 9 / 12, "feet"),
  16537. form: "floatzel",
  16538. default: true
  16539. },
  16540. ],
  16541. {
  16542. "buizel": {
  16543. name: "Buizel"
  16544. },
  16545. "floatzel": {
  16546. name: "Floatzel",
  16547. default: true
  16548. }
  16549. }
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6 + 2 / 12, "feet"),
  16556. weight: math.unit(146, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/iliac/front.svg",
  16560. extra: 389 / 365,
  16561. bottom: 0.035
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(6 + 2 / 12, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(170, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/topaz/front.svg",
  16582. extra: 317 / 303,
  16583. bottom: 0.055
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(6, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(5 + 11 / 12, "feet"),
  16600. weight: math.unit(144, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/gabriel/front.svg",
  16604. extra: 285 / 262,
  16605. bottom: 0.004
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(5 + 11 / 12, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16619. {
  16620. side: {
  16621. height: math.unit(6 + 5 / 12, "feet"),
  16622. weight: math.unit(300, "lb"),
  16623. name: "Side",
  16624. image: {
  16625. source: "./media/characters/tempest-suicune/side.svg",
  16626. extra: 195 / 154,
  16627. bottom: 0.04
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(6 + 5 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(7 + 2 / 12, "feet"),
  16644. weight: math.unit(322, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/vulcan/front.svg",
  16648. extra: 154 / 147,
  16649. bottom: 0.04
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(7 + 2 / 12, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(5 + 10 / 12, "feet"),
  16666. weight: math.unit(264, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/gault/front.svg",
  16670. extra: 161 / 140,
  16671. bottom: 0.028
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(5 + 10 / 12, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/shard/front.svg",
  16692. extra: 273 / 238,
  16693. bottom: 0.02
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(3 + 6 / 12, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(5 + 11 / 12, "feet"),
  16710. weight: math.unit(146, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/ashe/front.svg",
  16714. extra: 400 / 373,
  16715. bottom: 0.01
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(5 + 11 / 12, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(5 + 5 / 12, "feet"),
  16732. weight: math.unit(135, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/beatrix/front.svg",
  16736. extra: 392 / 379,
  16737. bottom: 0.01
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(6, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(6 + 2/12, "feet"),
  16754. weight: math.unit(135, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/ignatius/front.svg",
  16758. extra: 1380/1259,
  16759. bottom: 27/1407
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(6 + 2/12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6 + 2 / 12, "feet"),
  16776. weight: math.unit(138, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/mei-li/front.svg",
  16780. extra: 237 / 229,
  16781. bottom: 0.03
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(6 + 2 / 12, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(2 + 4 / 12, "feet"),
  16798. weight: math.unit(62, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/puru/front.svg",
  16802. extra: 206 / 149,
  16803. bottom: 0.06
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(2 + 4 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16817. {
  16818. anthro: {
  16819. height: math.unit(5 + 8/12, "feet"),
  16820. weight: math.unit(200, "lb"),
  16821. energyNeed: math.unit(2000, "kcal"),
  16822. name: "Anthro",
  16823. image: {
  16824. source: "./media/characters/kee/anthro.svg",
  16825. extra: 3251/3184,
  16826. bottom: 250/3501
  16827. }
  16828. },
  16829. taur: {
  16830. height: math.unit(11, "feet"),
  16831. weight: math.unit(500, "lb"),
  16832. energyNeed: math.unit(5000, "kcal"),
  16833. name: "Taur",
  16834. image: {
  16835. source: "./media/characters/kee/taur.svg",
  16836. extra: 1362/1320,
  16837. bottom: 83/1445
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(5 + 8/12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(35, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16855. {
  16856. anthro: {
  16857. height: math.unit(7, "feet"),
  16858. weight: math.unit(190, "lb"),
  16859. name: "Anthro",
  16860. image: {
  16861. source: "./media/characters/cobalt-dracha/anthro.svg",
  16862. extra: 231 / 225,
  16863. bottom: 0.04
  16864. }
  16865. },
  16866. feral: {
  16867. height: math.unit(9 + 7 / 12, "feet"),
  16868. weight: math.unit(294, "lb"),
  16869. name: "Feral",
  16870. image: {
  16871. source: "./media/characters/cobalt-dracha/feral.svg",
  16872. extra: 692 / 633,
  16873. bottom: 0.05
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(7, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16887. {
  16888. fallen: {
  16889. height: math.unit(11 + 8 / 12, "feet"),
  16890. weight: math.unit(485, "lb"),
  16891. name: "Java (Fallen)",
  16892. rename: true,
  16893. image: {
  16894. source: "./media/characters/java/fallen.svg",
  16895. extra: 226 / 208,
  16896. bottom: 0.005
  16897. }
  16898. },
  16899. godkin: {
  16900. height: math.unit(10 + 6 / 12, "feet"),
  16901. weight: math.unit(328, "lb"),
  16902. name: "Java (Godkin)",
  16903. rename: true,
  16904. image: {
  16905. source: "./media/characters/java/godkin.svg",
  16906. extra: 1104/1068,
  16907. bottom: 36/1140
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(11 + 8 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(5 + 9 / 12, "feet"),
  16924. weight: math.unit(170, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/purna/front.svg",
  16928. extra: 239 / 229,
  16929. bottom: 0.01
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(5 + 9 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(5 + 9 / 12, "feet"),
  16946. weight: math.unit(142, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/kuva/front.svg",
  16950. extra: 281 / 271,
  16951. bottom: 0.006
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(5 + 9 / 12, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16965. {
  16966. anthro: {
  16967. height: math.unit(9 + 2 / 12, "feet"),
  16968. weight: math.unit(270, "lb"),
  16969. name: "Anthro",
  16970. image: {
  16971. source: "./media/characters/embra/anthro.svg",
  16972. extra: 200 / 187,
  16973. bottom: 0.02
  16974. }
  16975. },
  16976. feral: {
  16977. height: math.unit(18 + 8 / 12, "feet"),
  16978. weight: math.unit(576, "lb"),
  16979. name: "Feral",
  16980. image: {
  16981. source: "./media/characters/embra/feral.svg",
  16982. extra: 152 / 137,
  16983. bottom: 0.037
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(9 + 2 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16997. {
  16998. anthro: {
  16999. height: math.unit(10 + 9 / 12, "feet"),
  17000. weight: math.unit(224, "lb"),
  17001. name: "Anthro",
  17002. image: {
  17003. source: "./media/characters/grottos/anthro.svg",
  17004. extra: 350 / 332,
  17005. bottom: 0.045
  17006. }
  17007. },
  17008. feral: {
  17009. height: math.unit(20 + 7 / 12, "feet"),
  17010. weight: math.unit(629, "lb"),
  17011. name: "Feral",
  17012. image: {
  17013. source: "./media/characters/grottos/feral.svg",
  17014. extra: 207 / 190,
  17015. bottom: 0.05
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(10 + 9 / 12, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17029. {
  17030. anthro: {
  17031. height: math.unit(9 + 6 / 12, "feet"),
  17032. weight: math.unit(298, "lb"),
  17033. name: "Anthro",
  17034. image: {
  17035. source: "./media/characters/frifna/anthro.svg",
  17036. extra: 282 / 269,
  17037. bottom: 0.015
  17038. }
  17039. },
  17040. feral: {
  17041. height: math.unit(16 + 2 / 12, "feet"),
  17042. weight: math.unit(624, "lb"),
  17043. name: "Feral",
  17044. image: {
  17045. source: "./media/characters/frifna/feral.svg"
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(9 + 6 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(6 + 2 / 12, "feet"),
  17062. weight: math.unit(168, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/elise/front.svg",
  17066. extra: 276 / 271
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(6 + 2 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(5 + 10 / 12, "feet"),
  17083. weight: math.unit(210, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/glade/front.svg",
  17087. extra: 258 / 247,
  17088. bottom: 0.008
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(5 + 10 / 12, "feet"),
  17096. default: true
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17102. {
  17103. front: {
  17104. height: math.unit(5 + 10 / 12, "feet"),
  17105. weight: math.unit(129, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/rina/front.svg",
  17109. extra: 266 / 255,
  17110. bottom: 0.005
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(5 + 10 / 12, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(6 + 1 / 12, "feet"),
  17127. weight: math.unit(192, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/veronica/front.svg",
  17131. extra: 319 / 309,
  17132. bottom: 0.005
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(6 + 1 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(9 + 3 / 12, "feet"),
  17149. weight: math.unit(1100, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/braxton/front.svg",
  17153. extra: 1057 / 984,
  17154. bottom: 0.05
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(9 + 3 / 12, "feet")
  17162. },
  17163. {
  17164. name: "Giant",
  17165. height: math.unit(300, "feet"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(700, "feet")
  17171. },
  17172. {
  17173. name: "Megamacro",
  17174. height: math.unit(6000, "feet")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(6 + 7 / 12, "feet"),
  17183. weight: math.unit(150, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/blue-feyonics/front.svg",
  17187. extra: 1403 / 1306,
  17188. bottom: 0.047
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(6 + 7 / 12, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(1.8, "meters"),
  17205. weight: math.unit(60, "kg"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/maxwell/front.svg",
  17209. extra: 2060 / 1873
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Micro",
  17216. height: math.unit(1, "mm")
  17217. },
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(1.8, "meter"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(30, "meters")
  17226. },
  17227. {
  17228. name: "Megamacro",
  17229. height: math.unit(10, "km")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6, "feet"),
  17238. weight: math.unit(150, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/jack/front.svg",
  17242. extra: 1754 / 1640,
  17243. bottom: 0.01
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(80000, "feet"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Max size",
  17255. height: math.unit(10, "lightyears")
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17261. {
  17262. urban: {
  17263. height: math.unit(5, "feet"),
  17264. weight: math.unit(240, "lb"),
  17265. name: "Urban",
  17266. image: {
  17267. source: "./media/characters/cafat/urban.svg",
  17268. extra: 1223/1126,
  17269. bottom: 205/1428
  17270. }
  17271. },
  17272. summer: {
  17273. height: math.unit(5, "feet"),
  17274. weight: math.unit(240, "lb"),
  17275. name: "Summer",
  17276. image: {
  17277. source: "./media/characters/cafat/summer.svg",
  17278. extra: 1223/1126,
  17279. bottom: 205/1428
  17280. }
  17281. },
  17282. winter: {
  17283. height: math.unit(5, "feet"),
  17284. weight: math.unit(240, "lb"),
  17285. name: "Winter",
  17286. image: {
  17287. source: "./media/characters/cafat/winter.svg",
  17288. extra: 1223/1126,
  17289. bottom: 205/1428
  17290. }
  17291. },
  17292. lingerie: {
  17293. height: math.unit(5, "feet"),
  17294. weight: math.unit(240, "lb"),
  17295. name: "Lingerie",
  17296. image: {
  17297. source: "./media/characters/cafat/lingerie.svg",
  17298. extra: 1223/1126,
  17299. bottom: 205/1428
  17300. }
  17301. },
  17302. upright: {
  17303. height: math.unit(6.3, "feet"),
  17304. weight: math.unit(240, "lb"),
  17305. name: "Upright",
  17306. image: {
  17307. source: "./media/characters/cafat/upright.svg",
  17308. bottom: 0.01
  17309. }
  17310. },
  17311. uprightFull: {
  17312. height: math.unit(6.3, "feet"),
  17313. weight: math.unit(240, "lb"),
  17314. name: "Upright (Full)",
  17315. image: {
  17316. source: "./media/characters/cafat/upright-full.svg",
  17317. bottom: 0.01
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Small",
  17324. height: math.unit(5, "feet"),
  17325. default: true
  17326. },
  17327. {
  17328. name: "Large",
  17329. height: math.unit(13, "feet")
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(6, "feet"),
  17338. weight: math.unit(150, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/verin-raharra/front.svg",
  17342. extra: 5019 / 4835,
  17343. bottom: 0.023
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(7 + 5 / 12, "feet"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Upsized",
  17355. height: math.unit(20, "feet")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(7, "feet"),
  17364. weight: math.unit(230, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/nakata/front.svg",
  17368. extra: 1.005,
  17369. bottom: 0.01
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(7, "feet"),
  17377. default: true
  17378. },
  17379. {
  17380. name: "Big",
  17381. height: math.unit(14, "feet")
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(400, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(4.91, "feet"),
  17394. weight: math.unit(100, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/lily/front.svg",
  17398. extra: 1585 / 1415,
  17399. bottom: 0.02
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(4.91, "feet"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17413. {
  17414. laying: {
  17415. height: math.unit(4 + 4 / 12, "feet"),
  17416. weight: math.unit(600, "lb"),
  17417. name: "Laying",
  17418. image: {
  17419. source: "./media/characters/sheila/laying.svg",
  17420. extra: 1333 / 1265,
  17421. bottom: 0.16
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(4 + 4 / 12, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6, "feet"),
  17438. weight: math.unit(190, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/sax/front.svg",
  17442. extra: 1187 / 973,
  17443. bottom: 0.042
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Micro",
  17450. height: math.unit(4, "inches"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(6, "feet"),
  17460. weight: math.unit(150, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/pandora/front.svg",
  17464. extra: 2720 / 2556,
  17465. bottom: 0.015
  17466. }
  17467. },
  17468. back: {
  17469. height: math.unit(6, "feet"),
  17470. weight: math.unit(150, "lb"),
  17471. name: "Back",
  17472. image: {
  17473. source: "./media/characters/pandora/back.svg",
  17474. extra: 2720 / 2556,
  17475. bottom: 0.01
  17476. }
  17477. },
  17478. beans: {
  17479. height: math.unit(6 / 8, "feet"),
  17480. name: "Beans",
  17481. image: {
  17482. source: "./media/characters/pandora/beans.svg"
  17483. }
  17484. },
  17485. collar: {
  17486. height: math.unit(0.31, "feet"),
  17487. name: "Collar",
  17488. image: {
  17489. source: "./media/characters/pandora/collar.svg"
  17490. }
  17491. },
  17492. skirt: {
  17493. height: math.unit(6, "feet"),
  17494. weight: math.unit(150, "lb"),
  17495. name: "Skirt",
  17496. image: {
  17497. source: "./media/characters/pandora/skirt.svg",
  17498. extra: 1622 / 1525,
  17499. bottom: 0.015
  17500. }
  17501. },
  17502. hoodie: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(150, "lb"),
  17505. name: "Hoodie",
  17506. image: {
  17507. source: "./media/characters/pandora/hoodie.svg",
  17508. extra: 1622 / 1525,
  17509. bottom: 0.015
  17510. }
  17511. },
  17512. casual: {
  17513. height: math.unit(6, "feet"),
  17514. weight: math.unit(150, "lb"),
  17515. name: "Casual",
  17516. image: {
  17517. source: "./media/characters/pandora/casual.svg",
  17518. extra: 1622 / 1525,
  17519. bottom: 0.015
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(6, "feet")
  17527. },
  17528. {
  17529. name: "Big Steppy",
  17530. height: math.unit(1, "km"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Galactic Steppy",
  17535. height: math.unit(2, "gigameters")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17541. {
  17542. side: {
  17543. height: math.unit(10, "feet"),
  17544. weight: math.unit(800, "kg"),
  17545. name: "Side",
  17546. image: {
  17547. source: "./media/characters/venio-darcony/side.svg",
  17548. extra: 1373 / 1003,
  17549. bottom: 0.037
  17550. }
  17551. },
  17552. front: {
  17553. height: math.unit(19, "feet"),
  17554. weight: math.unit(800, "kg"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/venio-darcony/front.svg"
  17558. }
  17559. },
  17560. back: {
  17561. height: math.unit(19, "feet"),
  17562. weight: math.unit(800, "kg"),
  17563. name: "Back",
  17564. image: {
  17565. source: "./media/characters/venio-darcony/back.svg"
  17566. }
  17567. },
  17568. sideNsfw: {
  17569. height: math.unit(10, "feet"),
  17570. weight: math.unit(800, "kg"),
  17571. name: "Side (NSFW)",
  17572. image: {
  17573. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17574. extra: 1373 / 1003,
  17575. bottom: 0.037
  17576. }
  17577. },
  17578. frontNsfw: {
  17579. height: math.unit(19, "feet"),
  17580. weight: math.unit(800, "kg"),
  17581. name: "Front (NSFW)",
  17582. image: {
  17583. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17584. }
  17585. },
  17586. backNsfw: {
  17587. height: math.unit(19, "feet"),
  17588. weight: math.unit(800, "kg"),
  17589. name: "Back (NSFW)",
  17590. image: {
  17591. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17592. }
  17593. },
  17594. sideArmored: {
  17595. height: math.unit(10, "feet"),
  17596. weight: math.unit(800, "kg"),
  17597. name: "Side (Armored)",
  17598. image: {
  17599. source: "./media/characters/venio-darcony/side-armored.svg",
  17600. extra: 1373 / 1003,
  17601. bottom: 0.037
  17602. }
  17603. },
  17604. frontArmored: {
  17605. height: math.unit(19, "feet"),
  17606. weight: math.unit(900, "kg"),
  17607. name: "Front (Armored)",
  17608. image: {
  17609. source: "./media/characters/venio-darcony/front-armored.svg"
  17610. }
  17611. },
  17612. backArmored: {
  17613. height: math.unit(19, "feet"),
  17614. weight: math.unit(900, "kg"),
  17615. name: "Back (Armored)",
  17616. image: {
  17617. source: "./media/characters/venio-darcony/back-armored.svg"
  17618. }
  17619. },
  17620. sword: {
  17621. height: math.unit(10, "feet"),
  17622. weight: math.unit(50, "lb"),
  17623. name: "Sword",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/sword.svg"
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(10, "feet")
  17633. },
  17634. {
  17635. name: "Macro",
  17636. height: math.unit(130, "feet"),
  17637. default: true
  17638. },
  17639. {
  17640. name: "Macro+",
  17641. height: math.unit(240, "feet")
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(6, "feet"),
  17650. weight: math.unit(150, "lb"),
  17651. name: "Front",
  17652. image: {
  17653. source: "./media/characters/veski/front.svg",
  17654. extra: 1299 / 1225,
  17655. bottom: 0.04
  17656. }
  17657. },
  17658. back: {
  17659. height: math.unit(6, "feet"),
  17660. weight: math.unit(150, "lb"),
  17661. name: "Back",
  17662. image: {
  17663. source: "./media/characters/veski/back.svg",
  17664. extra: 1299 / 1225,
  17665. bottom: 0.008
  17666. }
  17667. },
  17668. maw: {
  17669. height: math.unit(1.5 * 1.21, "feet"),
  17670. name: "Maw",
  17671. image: {
  17672. source: "./media/characters/veski/maw.svg"
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Macro",
  17679. height: math.unit(2, "km"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(5 + 7 / 12, "feet"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/isabelle/front.svg",
  17692. extra: 2130 / 1976,
  17693. bottom: 0.05
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Supermicro",
  17700. height: math.unit(10, "micrometers")
  17701. },
  17702. {
  17703. name: "Micro",
  17704. height: math.unit(1, "inch")
  17705. },
  17706. {
  17707. name: "Tiny",
  17708. height: math.unit(5, "inches")
  17709. },
  17710. {
  17711. name: "Standard",
  17712. height: math.unit(5 + 7 / 12, "inches")
  17713. },
  17714. {
  17715. name: "Macro",
  17716. height: math.unit(80, "meters"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Megamacro",
  17721. height: math.unit(250, "meters")
  17722. },
  17723. {
  17724. name: "Gigamacro",
  17725. height: math.unit(5, "km")
  17726. },
  17727. {
  17728. name: "Cosmic",
  17729. height: math.unit(2.5e6, "miles")
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17735. {
  17736. front: {
  17737. height: math.unit(6, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Front",
  17740. image: {
  17741. source: "./media/characters/hanzo/front.svg",
  17742. extra: 374 / 344,
  17743. bottom: 0.02
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(8, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(7, "feet"),
  17760. weight: math.unit(130, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/anna/front.svg",
  17764. extra: 169 / 145,
  17765. bottom: 0.06
  17766. }
  17767. },
  17768. full: {
  17769. height: math.unit(4.96, "feet"),
  17770. weight: math.unit(220, "lb"),
  17771. name: "Full",
  17772. image: {
  17773. source: "./media/characters/anna/full.svg",
  17774. extra: 138 / 114,
  17775. bottom: 0.15
  17776. }
  17777. },
  17778. tongue: {
  17779. height: math.unit(2.53, "feet"),
  17780. name: "Tongue",
  17781. image: {
  17782. source: "./media/characters/anna/tongue.svg"
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(7, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(7, "feet"),
  17799. weight: math.unit(150, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/ian-corvid/front.svg",
  17803. extra: 150 / 142,
  17804. bottom: 0.02
  17805. }
  17806. },
  17807. back: {
  17808. height: math.unit(7, "feet"),
  17809. weight: math.unit(150, "lb"),
  17810. name: "Back",
  17811. image: {
  17812. source: "./media/characters/ian-corvid/back.svg",
  17813. extra: 150 / 143,
  17814. bottom: 0.01
  17815. }
  17816. },
  17817. stomping: {
  17818. height: math.unit(7, "feet"),
  17819. weight: math.unit(150, "lb"),
  17820. name: "Stomping",
  17821. image: {
  17822. source: "./media/characters/ian-corvid/stomping.svg",
  17823. extra: 76 / 72
  17824. }
  17825. },
  17826. sitting: {
  17827. height: math.unit(7 / 1.8, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Sitting",
  17830. image: {
  17831. source: "./media/characters/ian-corvid/sitting.svg",
  17832. extra: 1400 / 1269,
  17833. bottom: 0.15
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Tiny Microw",
  17840. height: math.unit(1, "inch")
  17841. },
  17842. {
  17843. name: "Microw",
  17844. height: math.unit(6, "inches")
  17845. },
  17846. {
  17847. name: "Crow",
  17848. height: math.unit(7 + 1 / 12, "feet"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Macrow",
  17853. height: math.unit(176, "feet")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(5 + 7 / 12, "feet"),
  17862. weight: math.unit(147, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/natalie-kellon/front.svg",
  17866. extra: 1214 / 1141,
  17867. bottom: 0.02
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Micro",
  17874. height: math.unit(1 / 16, "inch")
  17875. },
  17876. {
  17877. name: "Tiny",
  17878. height: math.unit(4, "inches")
  17879. },
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(5 + 7 / 12, "feet"),
  17883. default: true
  17884. },
  17885. {
  17886. name: "Amazon",
  17887. height: math.unit(12, "feet")
  17888. },
  17889. {
  17890. name: "Giantess",
  17891. height: math.unit(160, "meters")
  17892. },
  17893. {
  17894. name: "Titaness",
  17895. height: math.unit(800, "meters")
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17901. {
  17902. front: {
  17903. height: math.unit(6, "feet"),
  17904. weight: math.unit(150, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/alluria/front.svg",
  17908. extra: 806 / 738,
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. side: {
  17913. height: math.unit(6, "feet"),
  17914. weight: math.unit(150, "lb"),
  17915. name: "Side",
  17916. image: {
  17917. source: "./media/characters/alluria/side.svg",
  17918. extra: 800 / 750,
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(6, "feet"),
  17923. weight: math.unit(150, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/alluria/back.svg",
  17927. extra: 806 / 738,
  17928. }
  17929. },
  17930. frontMaid: {
  17931. height: math.unit(6, "feet"),
  17932. weight: math.unit(150, "lb"),
  17933. name: "Front (Maid)",
  17934. image: {
  17935. source: "./media/characters/alluria/front-maid.svg",
  17936. extra: 806 / 738,
  17937. bottom: 0.01
  17938. }
  17939. },
  17940. sideMaid: {
  17941. height: math.unit(6, "feet"),
  17942. weight: math.unit(150, "lb"),
  17943. name: "Side (Maid)",
  17944. image: {
  17945. source: "./media/characters/alluria/side-maid.svg",
  17946. extra: 800 / 750,
  17947. bottom: 0.005
  17948. }
  17949. },
  17950. backMaid: {
  17951. height: math.unit(6, "feet"),
  17952. weight: math.unit(150, "lb"),
  17953. name: "Back (Maid)",
  17954. image: {
  17955. source: "./media/characters/alluria/back-maid.svg",
  17956. extra: 806 / 738,
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Micro",
  17963. height: math.unit(6, "inches"),
  17964. default: true
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(6, "feet"),
  17973. weight: math.unit(150, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/kyle/front.svg",
  17977. extra: 1069 / 962,
  17978. bottom: 77.228 / 1727.45
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Macro",
  17985. height: math.unit(150, "feet"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(6, "feet"),
  17995. weight: math.unit(300, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/duncan/front.svg",
  17999. extra: 1650 / 1482,
  18000. bottom: 0.05
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(100, "feet"),
  18008. default: true
  18009. },
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18014. {
  18015. front: {
  18016. height: math.unit(5 + 4 / 12, "feet"),
  18017. weight: math.unit(220, "lb"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/memory/front.svg",
  18021. extra: 3641 / 3545,
  18022. bottom: 0.03
  18023. }
  18024. },
  18025. back: {
  18026. height: math.unit(5 + 4 / 12, "feet"),
  18027. weight: math.unit(220, "lb"),
  18028. name: "Back",
  18029. image: {
  18030. source: "./media/characters/memory/back.svg",
  18031. extra: 3641 / 3545,
  18032. bottom: 0.025
  18033. }
  18034. },
  18035. frontSkirt: {
  18036. height: math.unit(5 + 4 / 12, "feet"),
  18037. weight: math.unit(220, "lb"),
  18038. name: "Front (Skirt)",
  18039. image: {
  18040. source: "./media/characters/memory/front-skirt.svg",
  18041. extra: 3641 / 3545,
  18042. bottom: 0.03
  18043. }
  18044. },
  18045. frontDress: {
  18046. height: math.unit(5 + 4 / 12, "feet"),
  18047. weight: math.unit(220, "lb"),
  18048. name: "Front (Dress)",
  18049. image: {
  18050. source: "./media/characters/memory/front-dress.svg",
  18051. extra: 3641 / 3545,
  18052. bottom: 0.03
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Micro",
  18059. height: math.unit(6, "inches"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(5 + 4 / 12, "feet")
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(4 + 11 / 12, "feet"),
  18073. weight: math.unit(100, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/luno/front.svg",
  18077. extra: 1535 / 1487,
  18078. bottom: 0.03
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Micro",
  18085. height: math.unit(3, "inches")
  18086. },
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(4 + 11 / 12, "feet"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(300, "feet")
  18095. },
  18096. {
  18097. name: "Megamacro",
  18098. height: math.unit(700, "miles")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6 + 2 / 12, "feet"),
  18107. weight: math.unit(170, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/jamesy/front.svg",
  18111. extra: 440 / 382,
  18112. bottom: 0.005
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(3, "inches")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6 + 2 / 12, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(300, "feet")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(700, "miles")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(160, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/mark/front.svg",
  18145. extra: 3300 / 3100,
  18146. bottom: 136.42 / 3440.47
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(120, "meters")
  18154. },
  18155. {
  18156. name: "Bigger Macro",
  18157. height: math.unit(350, "meters")
  18158. },
  18159. {
  18160. name: "Megamacro",
  18161. height: math.unit(8, "km"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Continental",
  18166. height: math.unit(4550, "km")
  18167. },
  18168. {
  18169. name: "Planetary",
  18170. height: math.unit(65000, "km")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(6, "feet"),
  18179. weight: math.unit(400, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/mac/front.svg",
  18183. extra: 1048 / 987.7,
  18184. bottom: 60 / 1107.6,
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(500, "feet"),
  18192. default: true
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(5 + 2 / 12, "feet"),
  18201. weight: math.unit(190, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/bari/front.svg",
  18205. extra: 3156 / 2880,
  18206. bottom: 0.03
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(5 + 2 / 12, "feet"),
  18211. weight: math.unit(190, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/bari/back.svg",
  18215. extra: 3260 / 2834,
  18216. bottom: 0.025
  18217. }
  18218. },
  18219. frontPlush: {
  18220. height: math.unit(5 + 2 / 12, "feet"),
  18221. weight: math.unit(190, "lb"),
  18222. name: "Front (Plush)",
  18223. image: {
  18224. source: "./media/characters/bari/front-plush.svg",
  18225. extra: 1112 / 1061,
  18226. bottom: 0.002
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Micro",
  18233. height: math.unit(3, "inches")
  18234. },
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(5 + 2 / 12, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(20, "feet")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(6 + 1 / 12, "feet"),
  18251. weight: math.unit(275, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/hunter-misha-raven/front.svg"
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Mortal",
  18261. height: math.unit(6 + 1 / 12, "feet")
  18262. },
  18263. {
  18264. name: "Divine",
  18265. height: math.unit(1.12134e34, "parsecs"),
  18266. default: true
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(6 + 3 / 12, "feet"),
  18275. weight: math.unit(220, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/max-calore/front.svg",
  18279. extra: 1700 / 1648,
  18280. bottom: 0.01
  18281. }
  18282. },
  18283. back: {
  18284. height: math.unit(6 + 3 / 12, "feet"),
  18285. weight: math.unit(220, "lb"),
  18286. name: "Back",
  18287. image: {
  18288. source: "./media/characters/max-calore/back.svg",
  18289. extra: 1700 / 1648,
  18290. bottom: 0.01
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(6 + 3 / 12, "feet"),
  18298. default: true
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18304. {
  18305. side: {
  18306. height: math.unit(2 + 8 / 12, "feet"),
  18307. weight: math.unit(99, "lb"),
  18308. name: "Side",
  18309. image: {
  18310. source: "./media/characters/aspen/side.svg",
  18311. extra: 152 / 138,
  18312. bottom: 0.032
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(2 + 8 / 12, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18326. {
  18327. side: {
  18328. height: math.unit(3 + 2 / 12, "feet"),
  18329. weight: math.unit(224, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/sheila-feral-wolf/side.svg",
  18333. extra: 179 / 166,
  18334. bottom: 0.03
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(3 + 2 / 12, "feet"),
  18342. default: true
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18348. {
  18349. side: {
  18350. height: math.unit(1 + 9 / 12, "feet"),
  18351. weight: math.unit(38, "lb"),
  18352. name: "Side",
  18353. image: {
  18354. source: "./media/characters/michelle/side.svg",
  18355. extra: 147 / 136.7,
  18356. bottom: 0.03
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(1 + 9 / 12, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(1.54, "feet"),
  18373. weight: math.unit(50, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/nino/front.svg"
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Normal",
  18383. height: math.unit(1.54, "feet"),
  18384. default: true
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18390. {
  18391. front: {
  18392. height: math.unit(1.49, "feet"),
  18393. weight: math.unit(45, "lb"),
  18394. name: "Front",
  18395. image: {
  18396. source: "./media/characters/viola/front.svg"
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(1.49, "feet"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6 + 5 / 12, "feet"),
  18413. weight: math.unit(580, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/atlas/front.svg",
  18417. extra: 298.5 / 290,
  18418. bottom: 0.015
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(6 + 5 / 12, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18432. {
  18433. side: {
  18434. height: math.unit(15.6, "inches"),
  18435. weight: math.unit(10, "lb"),
  18436. name: "Side",
  18437. image: {
  18438. source: "./media/characters/davy/side.svg",
  18439. extra: 200 / 170,
  18440. bottom: 0.01
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(15.6, "inches"),
  18448. default: true
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18454. {
  18455. side: {
  18456. height: math.unit(4 + 8 / 12, "feet"),
  18457. weight: math.unit(166, "lb"),
  18458. name: "Side",
  18459. image: {
  18460. source: "./media/characters/fiona/side.svg",
  18461. extra: 232 / 220,
  18462. bottom: 0.03
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(4 + 8 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18476. {
  18477. front: {
  18478. height: math.unit(26, "inches"),
  18479. weight: math.unit(35, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/lyla/front.svg",
  18483. bottom: 0.1
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(3, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18497. {
  18498. side: {
  18499. height: math.unit(1.8, "feet"),
  18500. weight: math.unit(44, "lb"),
  18501. name: "Side",
  18502. image: {
  18503. source: "./media/characters/perseus/side.svg",
  18504. bottom: 0.21
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(1.8, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18518. {
  18519. side: {
  18520. height: math.unit(4 + 2 / 12, "feet"),
  18521. weight: math.unit(20, "lb"),
  18522. name: "Side",
  18523. image: {
  18524. source: "./media/characters/remus/side.svg"
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(4 + 2 / 12, "feet"),
  18532. default: true
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18538. {
  18539. front: {
  18540. height: math.unit(4 + 11 / 12, "feet"),
  18541. weight: math.unit(114, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/raf/front.svg",
  18545. extra: 1504/1339,
  18546. bottom: 26/1530
  18547. }
  18548. },
  18549. side: {
  18550. height: math.unit(4 + 11 / 12, "feet"),
  18551. weight: math.unit(114, "lb"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/raf/side.svg",
  18555. extra: 1466/1316,
  18556. bottom: 29/1495
  18557. }
  18558. },
  18559. paw: {
  18560. height: math.unit(1.45, "feet"),
  18561. name: "Paw",
  18562. image: {
  18563. source: "./media/characters/raf/paw.svg"
  18564. },
  18565. extraAttributes: {
  18566. "toeSize": {
  18567. name: "Toe Size",
  18568. power: 2,
  18569. type: "area",
  18570. base: math.unit(0.004, "m^2")
  18571. },
  18572. "padSize": {
  18573. name: "Pad Size",
  18574. power: 2,
  18575. type: "area",
  18576. base: math.unit(0.04, "m^2")
  18577. },
  18578. "footSize": {
  18579. name: "Foot Size",
  18580. power: 2,
  18581. type: "area",
  18582. base: math.unit(0.08, "m^2")
  18583. },
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Micro",
  18590. height: math.unit(2, "inches")
  18591. },
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(4 + 11 / 12, "feet"),
  18595. default: true
  18596. },
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(70, "feet")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(1.5, "meters"),
  18608. weight: math.unit(68, "kg"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/liam-einarr/front.svg",
  18612. extra: 2822 / 2666
  18613. }
  18614. },
  18615. back: {
  18616. height: math.unit(1.5, "meters"),
  18617. weight: math.unit(68, "kg"),
  18618. name: "Back",
  18619. image: {
  18620. source: "./media/characters/liam-einarr/back.svg",
  18621. extra: 2822 / 2666,
  18622. bottom: 0.015
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(1.5, "meters"),
  18630. default: true
  18631. },
  18632. {
  18633. name: "Macro",
  18634. height: math.unit(150, "meters")
  18635. },
  18636. {
  18637. name: "Megamacro",
  18638. height: math.unit(35, "km")
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(6, "feet"),
  18647. weight: math.unit(75, "kg"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/linda/front.svg",
  18651. extra: 930 / 874,
  18652. bottom: 0.004
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(6, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18666. {
  18667. front: {
  18668. height: math.unit(6 + 8 / 12, "feet"),
  18669. weight: math.unit(220, "lb"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/caylex/front.svg",
  18673. extra: 821 / 772,
  18674. bottom: 0.07
  18675. }
  18676. },
  18677. back: {
  18678. height: math.unit(6 + 8 / 12, "feet"),
  18679. weight: math.unit(220, "lb"),
  18680. name: "Back",
  18681. image: {
  18682. source: "./media/characters/caylex/back.svg",
  18683. extra: 821 / 772,
  18684. bottom: 0.022
  18685. }
  18686. },
  18687. hand: {
  18688. height: math.unit(1.25, "feet"),
  18689. name: "Hand",
  18690. image: {
  18691. source: "./media/characters/caylex/hand.svg"
  18692. }
  18693. },
  18694. foot: {
  18695. height: math.unit(1.6, "feet"),
  18696. name: "Foot",
  18697. image: {
  18698. source: "./media/characters/caylex/foot.svg"
  18699. }
  18700. },
  18701. armored: {
  18702. height: math.unit(6 + 8 / 12, "feet"),
  18703. weight: math.unit(250, "lb"),
  18704. name: "Armored",
  18705. image: {
  18706. source: "./media/characters/caylex/armored.svg",
  18707. extra: 1420 / 1310,
  18708. bottom: 0.045
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(6 + 8 / 12, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Normal+",
  18720. height: math.unit(12, "feet")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(7 + 6 / 12, "feet"),
  18729. weight: math.unit(288, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/alana/front.svg",
  18733. extra: 679 / 653,
  18734. bottom: 22.5 / 701
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(7 + 6 / 12, "feet")
  18742. },
  18743. {
  18744. name: "Large",
  18745. height: math.unit(50, "feet")
  18746. },
  18747. {
  18748. name: "Macro",
  18749. height: math.unit(100, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Macro+",
  18754. height: math.unit(200, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(6 + 1 / 12, "feet"),
  18763. weight: math.unit(210, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/hasani/front.svg",
  18767. extra: 244 / 232,
  18768. bottom: 0.01
  18769. }
  18770. },
  18771. back: {
  18772. height: math.unit(6 + 1 / 12, "feet"),
  18773. weight: math.unit(210, "lb"),
  18774. name: "Back",
  18775. image: {
  18776. source: "./media/characters/hasani/back.svg",
  18777. extra: 244 / 232,
  18778. bottom: 0.01
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(6 + 1 / 12, "feet")
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(175, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18796. {
  18797. front: {
  18798. height: math.unit(1.82, "meters"),
  18799. weight: math.unit(140, "lb"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/nita/front.svg",
  18803. extra: 2473 / 2363,
  18804. bottom: 0.01
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(1.82, "m")
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(300, "m")
  18816. },
  18817. {
  18818. name: "Mistake Canon",
  18819. height: math.unit(0.5, "miles"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Big Mistake",
  18824. height: math.unit(13, "miles")
  18825. },
  18826. {
  18827. name: "Playing God",
  18828. height: math.unit(2450, "miles")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(4, "feet"),
  18837. weight: math.unit(120, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/shiriko/front.svg",
  18841. extra: 970/934,
  18842. bottom: 5/975
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(4, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6, "feet"),
  18859. name: "front",
  18860. image: {
  18861. source: "./media/characters/deja/front.svg",
  18862. extra: 926 / 840,
  18863. bottom: 0.07
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Planck Length",
  18870. height: math.unit(1.6e-35, "meters")
  18871. },
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(30.48, "meters"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Universal",
  18879. height: math.unit(8.8e26, "meters")
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18885. {
  18886. side: {
  18887. height: math.unit(8, "feet"),
  18888. weight: math.unit(6300, "lb"),
  18889. name: "Side",
  18890. image: {
  18891. source: "./media/characters/anima/side.svg",
  18892. bottom: 0.035
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(8, "feet"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18906. {
  18907. front: {
  18908. height: math.unit(8, "feet"),
  18909. weight: math.unit(350, "lb"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/bianca/front.svg",
  18913. extra: 234 / 225,
  18914. bottom: 0.03
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(8, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(11 + 5/12, "feet"),
  18931. weight: math.unit(1200, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/adinia/front.svg",
  18935. extra: 1767/1641,
  18936. bottom: 44/1811
  18937. },
  18938. extraAttributes: {
  18939. "energyIntake": {
  18940. name: "Energy Intake",
  18941. power: 3,
  18942. type: "energy",
  18943. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18944. },
  18945. }
  18946. },
  18947. back: {
  18948. height: math.unit(11 + 5/12, "feet"),
  18949. weight: math.unit(1200, "lb"),
  18950. name: "Back",
  18951. image: {
  18952. source: "./media/characters/adinia/back.svg",
  18953. extra: 1834/1684,
  18954. bottom: 14/1848
  18955. },
  18956. extraAttributes: {
  18957. "energyIntake": {
  18958. name: "Energy Intake",
  18959. power: 3,
  18960. type: "energy",
  18961. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18962. },
  18963. }
  18964. },
  18965. maw: {
  18966. height: math.unit(3.79, "feet"),
  18967. name: "Maw",
  18968. image: {
  18969. source: "./media/characters/adinia/maw.svg"
  18970. }
  18971. },
  18972. rump: {
  18973. height: math.unit(4.6, "feet"),
  18974. name: "Rump",
  18975. image: {
  18976. source: "./media/characters/adinia/rump.svg"
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(11 + 5 / 12, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(3, "meters"),
  18993. weight: math.unit(200, "kg"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/lykasa/front.svg",
  18997. extra: 1076 / 976,
  18998. bottom: 0.06
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(3, "meters")
  19006. },
  19007. {
  19008. name: "Kaiju",
  19009. height: math.unit(120, "meters"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Mega Kaiju",
  19014. height: math.unit(240, "km")
  19015. },
  19016. {
  19017. name: "Giga Kaiju",
  19018. height: math.unit(400, "megameters")
  19019. },
  19020. {
  19021. name: "Tera Kaiju",
  19022. height: math.unit(800, "gigameters")
  19023. },
  19024. {
  19025. name: "Kaiju Dragon Goddess",
  19026. height: math.unit(26, "zettaparsecs")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19032. {
  19033. side: {
  19034. height: math.unit(283 / 124 * 6, "feet"),
  19035. weight: math.unit(35000, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/malfaren/side.svg",
  19039. extra: 1310/529,
  19040. bottom: 24/1334
  19041. }
  19042. },
  19043. front: {
  19044. height: math.unit(22.36, "feet"),
  19045. weight: math.unit(35000, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/malfaren/front.svg",
  19049. extra: 1237/1115,
  19050. bottom: 32/1269
  19051. }
  19052. },
  19053. maw: {
  19054. height: math.unit(6.9, "feet"),
  19055. name: "Maw",
  19056. image: {
  19057. source: "./media/characters/malfaren/maw.svg"
  19058. }
  19059. },
  19060. dick: {
  19061. height: math.unit(6.19, "feet"),
  19062. name: "Dick",
  19063. image: {
  19064. source: "./media/characters/malfaren/dick.svg"
  19065. }
  19066. },
  19067. eye: {
  19068. height: math.unit(0.69, "feet"),
  19069. name: "Eye",
  19070. image: {
  19071. source: "./media/characters/malfaren/eye.svg"
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Big",
  19078. height: math.unit(283 / 162 * 6, "feet"),
  19079. },
  19080. {
  19081. name: "Bigger",
  19082. height: math.unit(283 / 124 * 6, "feet")
  19083. },
  19084. {
  19085. name: "Massive",
  19086. height: math.unit(283 / 92 * 6, "feet"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "👀💦",
  19091. height: math.unit(283 / 73 * 6, "feet"),
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(1.7, "m"),
  19100. weight: math.unit(70, "kg"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/kernel/front.svg",
  19104. extra: 222 / 210,
  19105. bottom: 0.007
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Nano",
  19112. height: math.unit(17, "micrometers")
  19113. },
  19114. {
  19115. name: "Micro",
  19116. height: math.unit(1.7, "mm")
  19117. },
  19118. {
  19119. name: "Small",
  19120. height: math.unit(1.7, "cm")
  19121. },
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(1.7, "m"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19131. {
  19132. front: {
  19133. height: math.unit(1.75, "meters"),
  19134. weight: math.unit(65, "kg"),
  19135. name: "Front",
  19136. image: {
  19137. source: "./media/characters/jayne-folest/front.svg",
  19138. extra: 2115 / 2007,
  19139. bottom: 0.02
  19140. }
  19141. },
  19142. back: {
  19143. height: math.unit(1.75, "meters"),
  19144. weight: math.unit(65, "kg"),
  19145. name: "Back",
  19146. image: {
  19147. source: "./media/characters/jayne-folest/back.svg",
  19148. extra: 2115 / 2007,
  19149. bottom: 0.005
  19150. }
  19151. },
  19152. frontClothed: {
  19153. height: math.unit(1.75, "meters"),
  19154. weight: math.unit(65, "kg"),
  19155. name: "Front (Clothed)",
  19156. image: {
  19157. source: "./media/characters/jayne-folest/front-clothed.svg",
  19158. extra: 2115 / 2007,
  19159. bottom: 0.035
  19160. }
  19161. },
  19162. hand: {
  19163. height: math.unit(1 / 1.260, "feet"),
  19164. name: "Hand",
  19165. image: {
  19166. source: "./media/characters/jayne-folest/hand.svg"
  19167. }
  19168. },
  19169. foot: {
  19170. height: math.unit(1 / 0.918, "feet"),
  19171. name: "Foot",
  19172. image: {
  19173. source: "./media/characters/jayne-folest/foot.svg"
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Micro",
  19180. height: math.unit(4, "cm")
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(1.75, "meters")
  19185. },
  19186. {
  19187. name: "Macro",
  19188. height: math.unit(47.5, "meters"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(180, "cm"),
  19198. weight: math.unit(70, "kg"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/algier/front.svg",
  19202. extra: 596 / 572,
  19203. bottom: 0.04
  19204. }
  19205. },
  19206. back: {
  19207. height: math.unit(180, "cm"),
  19208. weight: math.unit(70, "kg"),
  19209. name: "Back",
  19210. image: {
  19211. source: "./media/characters/algier/back.svg",
  19212. extra: 596 / 572,
  19213. bottom: 0.025
  19214. }
  19215. },
  19216. frontdressed: {
  19217. height: math.unit(180, "cm"),
  19218. weight: math.unit(150, "kg"),
  19219. name: "Front-dressed",
  19220. image: {
  19221. source: "./media/characters/algier/front-dressed.svg",
  19222. extra: 596 / 572,
  19223. bottom: 0.038
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Micro",
  19230. height: math.unit(5, "cm")
  19231. },
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(180, "cm"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Macro",
  19239. height: math.unit(64, "m")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19245. {
  19246. upright: {
  19247. height: math.unit(7, "feet"),
  19248. weight: math.unit(300, "lb"),
  19249. name: "Upright",
  19250. image: {
  19251. source: "./media/characters/pretzel/upright.svg",
  19252. extra: 534 / 522,
  19253. bottom: 0.065
  19254. }
  19255. },
  19256. sprawling: {
  19257. height: math.unit(3.75, "feet"),
  19258. weight: math.unit(300, "lb"),
  19259. name: "Sprawling",
  19260. image: {
  19261. source: "./media/characters/pretzel/sprawling.svg",
  19262. extra: 314 / 281,
  19263. bottom: 0.1
  19264. }
  19265. },
  19266. tongue: {
  19267. height: math.unit(2, "feet"),
  19268. name: "Tongue",
  19269. image: {
  19270. source: "./media/characters/pretzel/tongue.svg"
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(7, "feet"),
  19278. default: true
  19279. },
  19280. {
  19281. name: "Oversized",
  19282. height: math.unit(15, "feet")
  19283. },
  19284. {
  19285. name: "Huge",
  19286. height: math.unit(30, "feet")
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(250, "feet")
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19296. {
  19297. sideFront: {
  19298. height: math.unit(5 + 2 / 12, "feet"),
  19299. weight: math.unit(120, "lb"),
  19300. name: "Front Side",
  19301. image: {
  19302. source: "./media/characters/roxi/side-front.svg",
  19303. extra: 2924 / 2717,
  19304. bottom: 0.08
  19305. }
  19306. },
  19307. sideBack: {
  19308. height: math.unit(5 + 2 / 12, "feet"),
  19309. weight: math.unit(120, "lb"),
  19310. name: "Back Side",
  19311. image: {
  19312. source: "./media/characters/roxi/side-back.svg",
  19313. extra: 2904 / 2693,
  19314. bottom: 0.06
  19315. }
  19316. },
  19317. front: {
  19318. height: math.unit(5 + 2 / 12, "feet"),
  19319. weight: math.unit(120, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/roxi/front.svg",
  19323. extra: 2028 / 1907,
  19324. bottom: 0.01
  19325. }
  19326. },
  19327. frontAlt: {
  19328. height: math.unit(5 + 2 / 12, "feet"),
  19329. weight: math.unit(120, "lb"),
  19330. name: "Front (Alt)",
  19331. image: {
  19332. source: "./media/characters/roxi/front-alt.svg",
  19333. extra: 1828 / 1798,
  19334. bottom: 0.01
  19335. }
  19336. },
  19337. sitting: {
  19338. height: math.unit(2.8, "feet"),
  19339. weight: math.unit(120, "lb"),
  19340. name: "Sitting",
  19341. image: {
  19342. source: "./media/characters/roxi/sitting.svg",
  19343. extra: 2660 / 2462,
  19344. bottom: 0.1
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(5 + 2 / 12, "feet"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19358. {
  19359. side: {
  19360. height: math.unit(55, "feet"),
  19361. weight: math.unit(153, "tons"),
  19362. name: "Side",
  19363. image: {
  19364. source: "./media/characters/shadow/side.svg",
  19365. extra: 701 / 628,
  19366. bottom: 0.02
  19367. }
  19368. },
  19369. flying: {
  19370. height: math.unit(145, "feet"),
  19371. weight: math.unit(153, "tons"),
  19372. name: "Flying",
  19373. image: {
  19374. source: "./media/characters/shadow/flying.svg"
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(55, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6, "feet"),
  19391. weight: math.unit(200, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/marcie/front.svg",
  19395. extra: 960 / 876,
  19396. bottom: 58 / 1017.87
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Macro",
  19403. height: math.unit(1, "mile"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(7, "feet"),
  19413. weight: math.unit(200, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/kachina/front.svg",
  19417. extra: 1290.68 / 1119,
  19418. bottom: 36.5 / 1327.18
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(7, "feet"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19432. {
  19433. looking: {
  19434. height: math.unit(2, "meters"),
  19435. weight: math.unit(300, "kg"),
  19436. name: "Looking",
  19437. image: {
  19438. source: "./media/characters/kash/looking.svg",
  19439. extra: 474 / 344,
  19440. bottom: 0.03
  19441. }
  19442. },
  19443. side: {
  19444. height: math.unit(2, "meters"),
  19445. weight: math.unit(300, "kg"),
  19446. name: "Side",
  19447. image: {
  19448. source: "./media/characters/kash/side.svg",
  19449. extra: 302 / 251,
  19450. bottom: 0.03
  19451. }
  19452. },
  19453. front: {
  19454. height: math.unit(2, "meters"),
  19455. weight: math.unit(300, "kg"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/kash/front.svg",
  19459. extra: 495 / 360,
  19460. bottom: 0.015
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(2, "meters"),
  19468. default: true
  19469. },
  19470. {
  19471. name: "Big",
  19472. height: math.unit(3, "meters")
  19473. },
  19474. {
  19475. name: "Large",
  19476. height: math.unit(5, "meters")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19482. {
  19483. feeding: {
  19484. height: math.unit(6.7, "feet"),
  19485. weight: math.unit(350, "lb"),
  19486. name: "Feeding",
  19487. image: {
  19488. source: "./media/characters/lalim/feeding.svg",
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(6.7, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(9.5, "feet"),
  19505. weight: math.unit(600, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/de'vout/front.svg",
  19509. extra: 1443 / 1328,
  19510. bottom: 0.025
  19511. }
  19512. },
  19513. back: {
  19514. height: math.unit(9.5, "feet"),
  19515. weight: math.unit(600, "lb"),
  19516. name: "Back",
  19517. image: {
  19518. source: "./media/characters/de'vout/back.svg",
  19519. extra: 1443 / 1328
  19520. }
  19521. },
  19522. frontDressed: {
  19523. height: math.unit(9.5, "feet"),
  19524. weight: math.unit(600, "lb"),
  19525. name: "Front (Dressed",
  19526. image: {
  19527. source: "./media/characters/de'vout/front-dressed.svg",
  19528. extra: 1443 / 1328,
  19529. bottom: 0.025
  19530. }
  19531. },
  19532. backDressed: {
  19533. height: math.unit(9.5, "feet"),
  19534. weight: math.unit(600, "lb"),
  19535. name: "Back (Dressed",
  19536. image: {
  19537. source: "./media/characters/de'vout/back-dressed.svg",
  19538. extra: 1443 / 1328
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(9.5, "feet"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19552. {
  19553. front: {
  19554. height: math.unit(8, "feet"),
  19555. weight: math.unit(225, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/talana/front.svg",
  19559. extra: 1410 / 1300,
  19560. bottom: 0.015
  19561. }
  19562. },
  19563. frontDressed: {
  19564. height: math.unit(8, "feet"),
  19565. weight: math.unit(225, "lb"),
  19566. name: "Front (Dressed",
  19567. image: {
  19568. source: "./media/characters/talana/front-dressed.svg",
  19569. extra: 1410 / 1300,
  19570. bottom: 0.015
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(8, "feet"),
  19578. default: true
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19584. {
  19585. side: {
  19586. height: math.unit(7.2, "feet"),
  19587. weight: math.unit(150, "lb"),
  19588. name: "Side",
  19589. image: {
  19590. source: "./media/characters/xeauvok/side.svg",
  19591. extra: 1975 / 1523,
  19592. bottom: 0.07
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(7.2, "feet"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19606. {
  19607. side: {
  19608. height: math.unit(4, "meters"),
  19609. weight: math.unit(2200, "kg"),
  19610. name: "Side",
  19611. image: {
  19612. source: "./media/characters/zara/side.svg",
  19613. extra: 765/744,
  19614. bottom: 156/921
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(4, "meters"),
  19622. default: true
  19623. },
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19628. {
  19629. side: {
  19630. height: math.unit(6, "feet"),
  19631. weight: math.unit(150, "lb"),
  19632. name: "Side",
  19633. image: {
  19634. source: "./media/characters/richard-dragon/side.svg",
  19635. extra: 845 / 340,
  19636. bottom: 0.017
  19637. }
  19638. },
  19639. maw: {
  19640. height: math.unit(2.97, "feet"),
  19641. name: "Maw",
  19642. image: {
  19643. source: "./media/characters/richard-dragon/maw.svg"
  19644. }
  19645. },
  19646. },
  19647. [
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(4, "feet"),
  19655. weight: math.unit(100, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/richard-smeargle/front.svg",
  19659. extra: 2952 / 2820,
  19660. bottom: 0.028
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(4, "feet"),
  19668. default: true
  19669. },
  19670. {
  19671. name: "Dynamax",
  19672. height: math.unit(20, "meters")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(6, "feet"),
  19681. weight: math.unit(110, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/klay/front.svg",
  19685. extra: 962 / 883,
  19686. bottom: 0.04
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(6, "feet"),
  19691. weight: math.unit(110, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/klay/back.svg",
  19695. extra: 962 / 883
  19696. }
  19697. },
  19698. beans: {
  19699. height: math.unit(1.15, "feet"),
  19700. name: "Beans",
  19701. image: {
  19702. source: "./media/characters/klay/beans.svg"
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Micro",
  19709. height: math.unit(6, "inches")
  19710. },
  19711. {
  19712. name: "Mini",
  19713. height: math.unit(3, "feet")
  19714. },
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(6, "feet"),
  19718. default: true
  19719. },
  19720. {
  19721. name: "Big",
  19722. height: math.unit(25, "feet")
  19723. },
  19724. {
  19725. name: "Macro",
  19726. height: math.unit(100, "feet")
  19727. },
  19728. {
  19729. name: "Megamacro",
  19730. height: math.unit(400, "feet")
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19736. {
  19737. front: {
  19738. height: math.unit(6, "feet"),
  19739. weight: math.unit(160, "lb"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/marcus/front.svg",
  19743. extra: 734 / 676,
  19744. bottom: 0.03
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Little",
  19751. height: math.unit(6, "feet")
  19752. },
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(110, "feet"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(250, "feet")
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(1000, "feet")
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(7, "feet"),
  19773. weight: math.unit(275, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/claude-delroute/front.svg",
  19777. extra: 902/827,
  19778. bottom: 26/928
  19779. }
  19780. },
  19781. side: {
  19782. height: math.unit(7, "feet"),
  19783. weight: math.unit(275, "lb"),
  19784. name: "Side",
  19785. image: {
  19786. source: "./media/characters/claude-delroute/side.svg",
  19787. extra: 908/853,
  19788. bottom: 16/924
  19789. }
  19790. },
  19791. back: {
  19792. height: math.unit(7, "feet"),
  19793. weight: math.unit(275, "lb"),
  19794. name: "Back",
  19795. image: {
  19796. source: "./media/characters/claude-delroute/back.svg",
  19797. extra: 911/829,
  19798. bottom: 18/929
  19799. }
  19800. },
  19801. maw: {
  19802. height: math.unit(0.6407, "meters"),
  19803. name: "Maw",
  19804. image: {
  19805. source: "./media/characters/claude-delroute/maw.svg"
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(7, "feet"),
  19813. default: true
  19814. },
  19815. {
  19816. name: "Lorge",
  19817. height: math.unit(20, "feet")
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(8 + 4 / 12, "feet"),
  19826. weight: math.unit(600, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/dragonien/front.svg",
  19830. extra: 100 / 94,
  19831. bottom: 3.3 / 103.3445
  19832. }
  19833. },
  19834. back: {
  19835. height: math.unit(8 + 4 / 12, "feet"),
  19836. weight: math.unit(600, "lb"),
  19837. name: "Back",
  19838. image: {
  19839. source: "./media/characters/dragonien/back.svg",
  19840. extra: 776 / 746,
  19841. bottom: 6.4 / 782.0616
  19842. }
  19843. },
  19844. foot: {
  19845. height: math.unit(1.54, "feet"),
  19846. name: "Foot",
  19847. image: {
  19848. source: "./media/characters/dragonien/foot.svg",
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(8 + 4 / 12, "feet"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Macro",
  19860. height: math.unit(200, "feet")
  19861. },
  19862. {
  19863. name: "Megamacro",
  19864. height: math.unit(1, "mile")
  19865. },
  19866. {
  19867. name: "Gigamacro",
  19868. height: math.unit(1000, "miles")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(5 + 2 / 12, "feet"),
  19877. weight: math.unit(110, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/desta/front.svg",
  19881. extra: 767 / 726,
  19882. bottom: 11.7 / 779
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(5 + 2 / 12, "feet"),
  19887. weight: math.unit(110, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/desta/back.svg",
  19891. extra: 777 / 728,
  19892. bottom: 6 / 784
  19893. }
  19894. },
  19895. frontAlt: {
  19896. height: math.unit(5 + 2 / 12, "feet"),
  19897. weight: math.unit(110, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/desta/front-alt.svg",
  19901. extra: 1482 / 1417
  19902. }
  19903. },
  19904. side: {
  19905. height: math.unit(5 + 2 / 12, "feet"),
  19906. weight: math.unit(110, "lb"),
  19907. name: "Side",
  19908. image: {
  19909. source: "./media/characters/desta/side.svg",
  19910. extra: 2579 / 2491,
  19911. bottom: 0.053
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(6, "inches")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 2 / 12, "feet"),
  19923. default: true
  19924. },
  19925. {
  19926. name: "Macro",
  19927. height: math.unit(62, "feet")
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(1800, "feet")
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(10, "feet"),
  19940. weight: math.unit(700, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/storm-alystar/front.svg",
  19944. extra: 2112 / 1898,
  19945. bottom: 0.034
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Micro",
  19952. height: math.unit(3.5, "inches")
  19953. },
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(10, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(400, "feet")
  19962. },
  19963. {
  19964. name: "Deific",
  19965. height: math.unit(60, "miles")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(2.35, "meters"),
  19974. weight: math.unit(119, "kg"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/ilia/front.svg",
  19978. extra: 1285 / 1255,
  19979. bottom: 0.06
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(2.35, "meters")
  19987. },
  19988. {
  19989. name: "Macro",
  19990. height: math.unit(140, "meters"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Megamacro",
  19995. height: math.unit(100, "miles")
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(6 + 5 / 12, "feet"),
  20004. weight: math.unit(190, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/kingdead/front.svg",
  20008. extra: 1228 / 1177
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Micro",
  20015. height: math.unit(7, "inches")
  20016. },
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(6 + 5 / 12, "feet")
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(150, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Megamacro",
  20028. height: math.unit(200, "miles")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(8, "feet"),
  20037. weight: math.unit(600, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/kyrehx/front.svg",
  20041. extra: 1195 / 1095,
  20042. bottom: 0.034
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Micro",
  20049. height: math.unit(2, "inches")
  20050. },
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(8, "feet"),
  20054. default: true
  20055. },
  20056. {
  20057. name: "Macro",
  20058. height: math.unit(255, "feet")
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20067. weight: math.unit(184, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/xang/front.svg",
  20071. extra: 845 / 755
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(0.935 * 146, "feet")
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(0.935 * 3, "miles")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20093. {
  20094. frontDressed: {
  20095. height: math.unit(5 + 7 / 12, "feet"),
  20096. weight: math.unit(140, "lb"),
  20097. name: "Front (Dressed)",
  20098. image: {
  20099. source: "./media/characters/doc-weardno/front-dressed.svg",
  20100. extra: 263 / 234
  20101. }
  20102. },
  20103. backDressed: {
  20104. height: math.unit(5 + 7 / 12, "feet"),
  20105. weight: math.unit(140, "lb"),
  20106. name: "Back (Dressed)",
  20107. image: {
  20108. source: "./media/characters/doc-weardno/back-dressed.svg",
  20109. extra: 266 / 238
  20110. }
  20111. },
  20112. front: {
  20113. height: math.unit(5 + 7 / 12, "feet"),
  20114. weight: math.unit(140, "lb"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/doc-weardno/front.svg",
  20118. extra: 254 / 233
  20119. }
  20120. },
  20121. },
  20122. [
  20123. {
  20124. name: "Micro",
  20125. height: math.unit(3, "inches")
  20126. },
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(5 + 7 / 12, "feet"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Macro",
  20134. height: math.unit(25, "feet")
  20135. },
  20136. {
  20137. name: "Megamacro",
  20138. height: math.unit(2, "miles")
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(6 + 2 / 12, "feet"),
  20147. weight: math.unit(153, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/seth-whilst/front.svg",
  20151. bottom: 0.07
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Micro",
  20158. height: math.unit(5, "inches")
  20159. },
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(6 + 2 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(3, "inches"),
  20172. weight: math.unit(8, "grams"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/pocket-jabari/front.svg",
  20176. extra: 1024 / 974,
  20177. bottom: 0.039
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Minimicro",
  20184. height: math.unit(8, "mm")
  20185. },
  20186. {
  20187. name: "Micro",
  20188. height: math.unit(3, "inches"),
  20189. default: true
  20190. },
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(3, "feet")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20199. {
  20200. frontDressed: {
  20201. height: math.unit(15, "feet"),
  20202. weight: math.unit(3280, "lb"),
  20203. name: "Front (Dressed)",
  20204. image: {
  20205. source: "./media/characters/sapphy/front-dressed.svg",
  20206. extra: 1951/1654,
  20207. bottom: 194/2145
  20208. },
  20209. form: "anthro",
  20210. default: true
  20211. },
  20212. backDressed: {
  20213. height: math.unit(15, "feet"),
  20214. weight: math.unit(3280, "lb"),
  20215. name: "Back (Dressed)",
  20216. image: {
  20217. source: "./media/characters/sapphy/back-dressed.svg",
  20218. extra: 2058/1918,
  20219. bottom: 125/2183
  20220. },
  20221. form: "anthro"
  20222. },
  20223. frontNude: {
  20224. height: math.unit(15, "feet"),
  20225. weight: math.unit(3280, "lb"),
  20226. name: "Front (Nude)",
  20227. image: {
  20228. source: "./media/characters/sapphy/front-nude.svg",
  20229. extra: 1951/1654,
  20230. bottom: 194/2145
  20231. },
  20232. form: "anthro"
  20233. },
  20234. backNude: {
  20235. height: math.unit(15, "feet"),
  20236. weight: math.unit(3280, "lb"),
  20237. name: "Back (Nude)",
  20238. image: {
  20239. source: "./media/characters/sapphy/back-nude.svg",
  20240. extra: 2058/1918,
  20241. bottom: 125/2183
  20242. },
  20243. form: "anthro"
  20244. },
  20245. full: {
  20246. height: math.unit(15, "feet"),
  20247. weight: math.unit(3280, "lb"),
  20248. name: "Full",
  20249. image: {
  20250. source: "./media/characters/sapphy/full.svg",
  20251. extra: 1396/1317,
  20252. bottom: 44/1440
  20253. },
  20254. form: "anthro"
  20255. },
  20256. dick: {
  20257. height: math.unit(3.8, "feet"),
  20258. name: "Dick",
  20259. image: {
  20260. source: "./media/characters/sapphy/dick.svg"
  20261. },
  20262. form: "anthro"
  20263. },
  20264. feral: {
  20265. height: math.unit(35, "feet"),
  20266. weight: math.unit(160, "tons"),
  20267. name: "Feral",
  20268. image: {
  20269. source: "./media/characters/sapphy/feral.svg",
  20270. extra: 1050/573,
  20271. bottom: 60/1110
  20272. },
  20273. form: "feral",
  20274. default: true
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(15, "feet"),
  20281. form: "anthro"
  20282. },
  20283. {
  20284. name: "Casual Macro",
  20285. height: math.unit(120, "feet"),
  20286. form: "anthro"
  20287. },
  20288. {
  20289. name: "Macro",
  20290. height: math.unit(2150, "feet"),
  20291. default: true,
  20292. form: "anthro"
  20293. },
  20294. {
  20295. name: "Megamacro",
  20296. height: math.unit(8, "miles"),
  20297. form: "anthro"
  20298. },
  20299. {
  20300. name: "Galaxy Mom",
  20301. height: math.unit(6, "megalightyears"),
  20302. form: "anthro"
  20303. },
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(35, "feet"),
  20307. form: "feral",
  20308. default: true
  20309. },
  20310. {
  20311. name: "Macro",
  20312. height: math.unit(300, "feet"),
  20313. form: "feral"
  20314. },
  20315. {
  20316. name: "Galaxy Mom",
  20317. height: math.unit(10, "megalightyears"),
  20318. form: "feral"
  20319. },
  20320. ],
  20321. {
  20322. "anthro": {
  20323. name: "Anthro",
  20324. default: true
  20325. },
  20326. "feral": {
  20327. name: "Feral"
  20328. }
  20329. }
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20333. {
  20334. hyenaFront: {
  20335. height: math.unit(6, "feet"),
  20336. weight: math.unit(190, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/kiro/hyena-front.svg",
  20340. extra: 927/839,
  20341. bottom: 91/1018
  20342. },
  20343. form: "hyena",
  20344. default: true
  20345. },
  20346. front: {
  20347. height: math.unit(6, "feet"),
  20348. weight: math.unit(170, "lb"),
  20349. name: "Front",
  20350. image: {
  20351. source: "./media/characters/kiro/front.svg",
  20352. extra: 1064 / 1012,
  20353. bottom: 0.052
  20354. },
  20355. form: "folf",
  20356. default: true
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Micro",
  20362. height: math.unit(6, "inches"),
  20363. form: "folf"
  20364. },
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(6, "feet"),
  20368. form: "folf",
  20369. default: true
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(72, "feet"),
  20374. form: "folf"
  20375. },
  20376. {
  20377. name: "Micro",
  20378. height: math.unit(6, "inches"),
  20379. form: "hyena"
  20380. },
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(6, "feet"),
  20384. form: "hyena",
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(72, "feet"),
  20390. form: "hyena"
  20391. },
  20392. ],
  20393. {
  20394. "hyena": {
  20395. name: "Hyena",
  20396. default: true
  20397. },
  20398. "folf": {
  20399. name: "Folf",
  20400. },
  20401. }
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20405. {
  20406. front: {
  20407. height: math.unit(5 + 9 / 12, "feet"),
  20408. weight: math.unit(175, "lb"),
  20409. name: "Front",
  20410. image: {
  20411. source: "./media/characters/irishfox/front.svg",
  20412. extra: 1912 / 1680,
  20413. bottom: 0.02
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Nano",
  20420. height: math.unit(1, "mm")
  20421. },
  20422. {
  20423. name: "Micro",
  20424. height: math.unit(2, "inches")
  20425. },
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(5 + 9 / 12, "feet"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Macro",
  20433. height: math.unit(45, "feet")
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(6 + 1 / 12, "feet"),
  20442. weight: math.unit(75, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/aronai-sieyes/front.svg",
  20446. extra: 1532/1450,
  20447. bottom: 42/1574
  20448. }
  20449. },
  20450. side: {
  20451. height: math.unit(6 + 1 / 12, "feet"),
  20452. weight: math.unit(75, "lb"),
  20453. name: "Side",
  20454. image: {
  20455. source: "./media/characters/aronai-sieyes/side.svg",
  20456. extra: 1422/1365,
  20457. bottom: 148/1570
  20458. }
  20459. },
  20460. back: {
  20461. height: math.unit(6 + 1 / 12, "feet"),
  20462. weight: math.unit(75, "lb"),
  20463. name: "Back",
  20464. image: {
  20465. source: "./media/characters/aronai-sieyes/back.svg",
  20466. extra: 1526/1464,
  20467. bottom: 51/1577
  20468. }
  20469. },
  20470. dressed: {
  20471. height: math.unit(6 + 1 / 12, "feet"),
  20472. weight: math.unit(75, "lb"),
  20473. name: "Dressed",
  20474. image: {
  20475. source: "./media/characters/aronai-sieyes/dressed.svg",
  20476. extra: 1559/1483,
  20477. bottom: 39/1598
  20478. }
  20479. },
  20480. slit: {
  20481. height: math.unit(1.3, "feet"),
  20482. name: "Slit",
  20483. image: {
  20484. source: "./media/characters/aronai-sieyes/slit.svg"
  20485. }
  20486. },
  20487. slitSpread: {
  20488. height: math.unit(0.9, "feet"),
  20489. name: "Slit (Spread)",
  20490. image: {
  20491. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20492. }
  20493. },
  20494. rump: {
  20495. height: math.unit(1.3, "feet"),
  20496. name: "Rump",
  20497. image: {
  20498. source: "./media/characters/aronai-sieyes/rump.svg"
  20499. }
  20500. },
  20501. maw: {
  20502. height: math.unit(1.25, "feet"),
  20503. name: "Maw",
  20504. image: {
  20505. source: "./media/characters/aronai-sieyes/maw.svg"
  20506. }
  20507. },
  20508. feral: {
  20509. height: math.unit(18, "feet"),
  20510. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20511. name: "Feral",
  20512. image: {
  20513. source: "./media/characters/aronai-sieyes/feral.svg",
  20514. extra: 1530 / 1240,
  20515. bottom: 0.035
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Micro",
  20522. height: math.unit(2, "inches")
  20523. },
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(6 + 1 / 12, "feet"),
  20527. default: true
  20528. }
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(12, "feet"),
  20536. weight: math.unit(410, "kg"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/xuna/front.svg",
  20540. extra: 2184 / 1980
  20541. }
  20542. },
  20543. side: {
  20544. height: math.unit(12, "feet"),
  20545. weight: math.unit(410, "kg"),
  20546. name: "Side",
  20547. image: {
  20548. source: "./media/characters/xuna/side.svg",
  20549. extra: 2184 / 1980
  20550. }
  20551. },
  20552. back: {
  20553. height: math.unit(12, "feet"),
  20554. weight: math.unit(410, "kg"),
  20555. name: "Back",
  20556. image: {
  20557. source: "./media/characters/xuna/back.svg",
  20558. extra: 2184 / 1980
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Nano glow",
  20565. height: math.unit(10, "nm")
  20566. },
  20567. {
  20568. name: "Micro floof",
  20569. height: math.unit(0.3, "m")
  20570. },
  20571. {
  20572. name: "Huggable softy boi",
  20573. height: math.unit(3.6576, "m"),
  20574. default: true
  20575. },
  20576. {
  20577. name: "Admirable floof",
  20578. height: math.unit(80, "meters")
  20579. },
  20580. {
  20581. name: "Gentle macro",
  20582. height: math.unit(300, "meters")
  20583. },
  20584. {
  20585. name: "Very careful floof",
  20586. height: math.unit(3200, "meters")
  20587. },
  20588. {
  20589. name: "The mega floof",
  20590. height: math.unit(36000, "meters")
  20591. },
  20592. {
  20593. name: "Giga-fur-Wicker",
  20594. height: math.unit(4800000, "meters")
  20595. },
  20596. {
  20597. name: "Licky world",
  20598. height: math.unit(20000000, "meters")
  20599. },
  20600. {
  20601. name: "Floofy cyan sun",
  20602. height: math.unit(1500000000, "meters")
  20603. },
  20604. {
  20605. name: "Milky Wicker",
  20606. height: math.unit(1000000000000000000000, "meters")
  20607. },
  20608. {
  20609. name: "The observing Wicker",
  20610. height: math.unit(999999999999999999999999999, "meters")
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20616. {
  20617. front: {
  20618. height: math.unit(5 + 9 / 12, "feet"),
  20619. weight: math.unit(150, "lb"),
  20620. name: "Front",
  20621. image: {
  20622. source: "./media/characters/arokha-sieyes/front.svg",
  20623. extra: 1425 / 1284,
  20624. bottom: 0.05
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(5 + 9 / 12, "feet")
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(30, "meters"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(6, "feet"),
  20645. weight: math.unit(180, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/arokh-sieyes/front.svg",
  20649. extra: 1830 / 1769,
  20650. bottom: 0.01
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(6, "feet")
  20658. },
  20659. {
  20660. name: "Macro",
  20661. height: math.unit(30, "meters"),
  20662. default: true
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20668. {
  20669. side: {
  20670. height: math.unit(13 + 1 / 12, "feet"),
  20671. weight: math.unit(8.5, "tonnes"),
  20672. preyCapacity: math.unit(36, "people"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/goldeneye/side.svg",
  20676. extra: 1139/741,
  20677. bottom: 98/1237
  20678. }
  20679. },
  20680. front: {
  20681. height: math.unit(5.1, "feet"),
  20682. weight: math.unit(8.5, "tonnes"),
  20683. preyCapacity: math.unit(36, "people"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/goldeneye/front.svg",
  20687. extra: 635/365,
  20688. bottom: 598/1233
  20689. }
  20690. },
  20691. maw: {
  20692. height: math.unit(6.6, "feet"),
  20693. name: "Maw",
  20694. image: {
  20695. source: "./media/characters/goldeneye/maw.svg"
  20696. }
  20697. },
  20698. headFront: {
  20699. height: math.unit(8, "feet"),
  20700. name: "Head (Front)",
  20701. image: {
  20702. source: "./media/characters/goldeneye/head-front.svg"
  20703. }
  20704. },
  20705. headSide: {
  20706. height: math.unit(6, "feet"),
  20707. name: "Head (Side)",
  20708. image: {
  20709. source: "./media/characters/goldeneye/head-side.svg"
  20710. }
  20711. },
  20712. headBack: {
  20713. height: math.unit(8, "feet"),
  20714. name: "Head (Back)",
  20715. image: {
  20716. source: "./media/characters/goldeneye/head-back.svg"
  20717. }
  20718. },
  20719. paw: {
  20720. height: math.unit(3.4, "feet"),
  20721. name: "Paw",
  20722. image: {
  20723. source: "./media/characters/goldeneye/paw.svg"
  20724. }
  20725. },
  20726. toering: {
  20727. height: math.unit(0.45, "feet"),
  20728. name: "Toering",
  20729. image: {
  20730. source: "./media/characters/goldeneye/toering.svg"
  20731. }
  20732. },
  20733. eyes: {
  20734. height: math.unit(0.5, "feet"),
  20735. name: "Eyes",
  20736. image: {
  20737. source: "./media/characters/goldeneye/eyes.svg"
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(13 + 1 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20751. {
  20752. front: {
  20753. height: math.unit(6 + 1 / 12, "feet"),
  20754. weight: math.unit(210, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/leonardo-lycheborne/front.svg",
  20758. extra: 776/723,
  20759. bottom: 34/810
  20760. }
  20761. },
  20762. side: {
  20763. height: math.unit(6 + 1 / 12, "feet"),
  20764. weight: math.unit(210, "lb"),
  20765. name: "Side",
  20766. image: {
  20767. source: "./media/characters/leonardo-lycheborne/side.svg",
  20768. extra: 780/728,
  20769. bottom: 12/792
  20770. }
  20771. },
  20772. back: {
  20773. height: math.unit(6 + 1 / 12, "feet"),
  20774. weight: math.unit(210, "lb"),
  20775. name: "Back",
  20776. image: {
  20777. source: "./media/characters/leonardo-lycheborne/back.svg",
  20778. extra: 775/721,
  20779. bottom: 17/792
  20780. }
  20781. },
  20782. hand: {
  20783. height: math.unit(1.08, "feet"),
  20784. name: "Hand",
  20785. image: {
  20786. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20787. }
  20788. },
  20789. foot: {
  20790. height: math.unit(1.32, "feet"),
  20791. name: "Foot",
  20792. image: {
  20793. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20794. }
  20795. },
  20796. maw: {
  20797. height: math.unit(1, "feet"),
  20798. name: "Maw",
  20799. image: {
  20800. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20801. }
  20802. },
  20803. were: {
  20804. height: math.unit(20, "feet"),
  20805. weight: math.unit(7800, "lb"),
  20806. name: "Were",
  20807. image: {
  20808. source: "./media/characters/leonardo-lycheborne/were.svg",
  20809. extra: 1224/1165,
  20810. bottom: 72/1296
  20811. }
  20812. },
  20813. feral: {
  20814. height: math.unit(7.5, "feet"),
  20815. weight: math.unit(600, "lb"),
  20816. name: "Feral",
  20817. image: {
  20818. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20819. extra: 797/702,
  20820. bottom: 139/936
  20821. }
  20822. },
  20823. taur: {
  20824. height: math.unit(11, "feet"),
  20825. weight: math.unit(3300, "lb"),
  20826. name: "Taur",
  20827. image: {
  20828. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20829. extra: 1271/1197,
  20830. bottom: 47/1318
  20831. }
  20832. },
  20833. barghest: {
  20834. height: math.unit(11, "feet"),
  20835. weight: math.unit(1300, "lb"),
  20836. name: "Barghest",
  20837. image: {
  20838. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20839. extra: 1291/1204,
  20840. bottom: 37/1328
  20841. }
  20842. },
  20843. dick: {
  20844. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20845. name: "Dick",
  20846. image: {
  20847. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20848. }
  20849. },
  20850. dickWere: {
  20851. height: math.unit((20) / 3.8, "feet"),
  20852. name: "Dick (Were)",
  20853. image: {
  20854. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20855. }
  20856. },
  20857. },
  20858. [
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(6 + 1 / 12, "feet"),
  20862. default: true
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(10, "feet"),
  20871. weight: math.unit(350, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/jet/front.svg",
  20875. extra: 2050 / 1980,
  20876. bottom: 0.013
  20877. }
  20878. },
  20879. back: {
  20880. height: math.unit(10, "feet"),
  20881. weight: math.unit(350, "lb"),
  20882. name: "Back",
  20883. image: {
  20884. source: "./media/characters/jet/back.svg",
  20885. extra: 2050 / 1980,
  20886. bottom: 0.013
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Micro",
  20893. height: math.unit(6, "inches")
  20894. },
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(10, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(100, "feet")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(15, "feet"),
  20911. weight: math.unit(2800, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/tanarath/front.svg",
  20915. extra: 2392 / 2220,
  20916. bottom: 0.03
  20917. }
  20918. },
  20919. back: {
  20920. height: math.unit(15, "feet"),
  20921. weight: math.unit(2800, "lb"),
  20922. name: "Back",
  20923. image: {
  20924. source: "./media/characters/tanarath/back.svg",
  20925. extra: 2392 / 2220,
  20926. bottom: 0.03
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(15, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(7 + 1 / 12, "feet"),
  20943. weight: math.unit(175, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/patty-cattybatty/front.svg",
  20947. extra: 908 / 874,
  20948. bottom: 0.025
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Micro",
  20955. height: math.unit(1, "inch")
  20956. },
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(7 + 1 / 12, "feet")
  20960. },
  20961. {
  20962. name: "Mini Macro",
  20963. height: math.unit(155, "feet")
  20964. },
  20965. {
  20966. name: "Macro",
  20967. height: math.unit(1077, "feet")
  20968. },
  20969. {
  20970. name: "Mega Macro",
  20971. height: math.unit(47650, "feet"),
  20972. default: true
  20973. },
  20974. {
  20975. name: "Giga Macro",
  20976. height: math.unit(440, "miles")
  20977. },
  20978. {
  20979. name: "Tera Macro",
  20980. height: math.unit(8700, "miles")
  20981. },
  20982. {
  20983. name: "Planetary Macro",
  20984. height: math.unit(32700, "miles")
  20985. },
  20986. {
  20987. name: "Solar Macro",
  20988. height: math.unit(550000, "miles")
  20989. },
  20990. {
  20991. name: "Celestial Macro",
  20992. height: math.unit(2.5, "AU")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(4 + 5 / 12, "feet"),
  21001. weight: math.unit(90, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/cappu/front.svg",
  21005. extra: 1247 / 1152,
  21006. bottom: 0.012
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(4 + 5 / 12, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21020. {
  21021. frontDressed: {
  21022. height: math.unit(70, "cm"),
  21023. weight: math.unit(6, "kg"),
  21024. name: "Front (Dressed)",
  21025. image: {
  21026. source: "./media/characters/sebi/front-dressed.svg",
  21027. extra: 713.5 / 686.5,
  21028. bottom: 0.003
  21029. }
  21030. },
  21031. front: {
  21032. height: math.unit(70, "cm"),
  21033. weight: math.unit(5, "kg"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/sebi/front.svg",
  21037. extra: 713.5 / 686.5,
  21038. bottom: 0.003
  21039. }
  21040. }
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(70, "cm"),
  21046. default: true
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(8, "meters")
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21056. {
  21057. front: {
  21058. height: math.unit(6, "feet"),
  21059. weight: math.unit(150, "lb"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/typhek/front.svg",
  21063. extra: 1948 / 1929,
  21064. bottom: 0.025
  21065. }
  21066. },
  21067. side: {
  21068. height: math.unit(6, "feet"),
  21069. weight: math.unit(150, "lb"),
  21070. name: "Side",
  21071. image: {
  21072. source: "./media/characters/typhek/side.svg",
  21073. extra: 2034 / 2010,
  21074. bottom: 0.003
  21075. }
  21076. },
  21077. back: {
  21078. height: math.unit(6, "feet"),
  21079. weight: math.unit(150, "lb"),
  21080. name: "Back",
  21081. image: {
  21082. source: "./media/characters/typhek/back.svg",
  21083. extra: 2005 / 1978,
  21084. bottom: 0.004
  21085. }
  21086. },
  21087. palm: {
  21088. height: math.unit(1.2, "feet"),
  21089. name: "Palm",
  21090. image: {
  21091. source: "./media/characters/typhek/palm.svg"
  21092. }
  21093. },
  21094. fist: {
  21095. height: math.unit(1.1, "feet"),
  21096. name: "Fist",
  21097. image: {
  21098. source: "./media/characters/typhek/fist.svg"
  21099. }
  21100. },
  21101. foot: {
  21102. height: math.unit(1.57, "feet"),
  21103. name: "Foot",
  21104. image: {
  21105. source: "./media/characters/typhek/foot.svg"
  21106. }
  21107. },
  21108. sole: {
  21109. height: math.unit(2.05, "feet"),
  21110. name: "Sole",
  21111. image: {
  21112. source: "./media/characters/typhek/sole.svg"
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Macro",
  21119. height: math.unit(40, "stories"),
  21120. default: true
  21121. },
  21122. {
  21123. name: "Megamacro",
  21124. height: math.unit(1, "mile")
  21125. },
  21126. {
  21127. name: "Gigamacro",
  21128. height: math.unit(4000, "solarradii")
  21129. },
  21130. {
  21131. name: "Universal",
  21132. height: math.unit(1.1, "universes")
  21133. }
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21138. {
  21139. side: {
  21140. height: math.unit(5 + 7 / 12, "feet"),
  21141. weight: math.unit(150, "lb"),
  21142. name: "Side",
  21143. image: {
  21144. source: "./media/characters/kassy/side.svg",
  21145. extra: 1280 / 1225,
  21146. bottom: 0.002
  21147. }
  21148. },
  21149. front: {
  21150. height: math.unit(5 + 7 / 12, "feet"),
  21151. weight: math.unit(150, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/kassy/front.svg",
  21155. extra: 1280 / 1225,
  21156. bottom: 0.025
  21157. }
  21158. },
  21159. back: {
  21160. height: math.unit(5 + 7 / 12, "feet"),
  21161. weight: math.unit(150, "lb"),
  21162. name: "Back",
  21163. image: {
  21164. source: "./media/characters/kassy/back.svg",
  21165. extra: 1280 / 1225,
  21166. bottom: 0.002
  21167. }
  21168. },
  21169. foot: {
  21170. height: math.unit(1.266, "feet"),
  21171. name: "Foot",
  21172. image: {
  21173. source: "./media/characters/kassy/foot.svg"
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(5 + 7 / 12, "feet")
  21181. },
  21182. {
  21183. name: "Macro",
  21184. height: math.unit(137, "feet"),
  21185. default: true
  21186. },
  21187. {
  21188. name: "Megamacro",
  21189. height: math.unit(1, "mile")
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(6 + 1 / 12, "feet"),
  21198. weight: math.unit(200, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/neil/front.svg",
  21202. extra: 1326 / 1250,
  21203. bottom: 0.023
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(6 + 1 / 12, "feet"),
  21211. default: true
  21212. },
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(200, "feet")
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(5 + 9 / 12, "feet"),
  21224. weight: math.unit(190, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/atticus/front.svg",
  21228. extra: 2934 / 2785,
  21229. bottom: 0.025
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(5 + 9 / 12, "feet"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(180, "feet")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21247. {
  21248. side: {
  21249. height: math.unit(9, "feet"),
  21250. weight: math.unit(650, "lb"),
  21251. name: "Side",
  21252. image: {
  21253. source: "./media/characters/milo/side.svg",
  21254. extra: 2644 / 2310,
  21255. bottom: 0.032
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(9, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Macro",
  21267. height: math.unit(300, "feet")
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21273. {
  21274. side: {
  21275. height: math.unit(8, "meters"),
  21276. weight: math.unit(90000, "kg"),
  21277. name: "Side",
  21278. image: {
  21279. source: "./media/characters/ijzer/side.svg",
  21280. extra: 2756 / 1600,
  21281. bottom: 0.01
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Small",
  21288. height: math.unit(3, "meters")
  21289. },
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(8, "meters"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Normal+",
  21297. height: math.unit(10, "meters")
  21298. },
  21299. {
  21300. name: "Bigger",
  21301. height: math.unit(24, "meters")
  21302. },
  21303. {
  21304. name: "Huge",
  21305. height: math.unit(80, "meters")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(6 + 2 / 12, "feet"),
  21314. weight: math.unit(153, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/luca-cervicum/front.svg",
  21318. extra: 370 / 327,
  21319. bottom: 0.015
  21320. }
  21321. },
  21322. back: {
  21323. height: math.unit(6 + 2 / 12, "feet"),
  21324. weight: math.unit(153, "lb"),
  21325. name: "Back",
  21326. image: {
  21327. source: "./media/characters/luca-cervicum/back.svg",
  21328. extra: 367 / 333,
  21329. bottom: 0.005
  21330. }
  21331. },
  21332. frontGear: {
  21333. height: math.unit(6 + 2 / 12, "feet"),
  21334. weight: math.unit(173, "lb"),
  21335. name: "Front (Gear)",
  21336. image: {
  21337. source: "./media/characters/luca-cervicum/front-gear.svg",
  21338. extra: 377 / 333,
  21339. bottom: 0.006
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(6 + 2 / 12, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(6 + 1 / 12, "feet"),
  21356. weight: math.unit(304, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/oliver/front.svg",
  21360. extra: 157 / 143,
  21361. bottom: 0.08
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(6 + 1 / 12, "feet"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21375. {
  21376. front: {
  21377. height: math.unit(5 + 7 / 12, "feet"),
  21378. weight: math.unit(140, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/shane/front.svg",
  21382. extra: 304 / 289,
  21383. bottom: 0.005
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(5 + 7 / 12, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(5 + 9 / 12, "feet"),
  21400. weight: math.unit(178, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/shin/front.svg",
  21404. extra: 159 / 151,
  21405. bottom: 0.015
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(5 + 9 / 12, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(5 + 10 / 12, "feet"),
  21422. weight: math.unit(168, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/xerxes/front.svg",
  21426. extra: 282 / 260,
  21427. bottom: 0.045
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(5 + 10 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(6 + 7 / 12, "feet"),
  21444. weight: math.unit(208, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/chaska/front.svg",
  21448. extra: 332 / 319,
  21449. bottom: 0.015
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(6 + 7 / 12, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(5 + 8 / 12, "feet"),
  21466. weight: math.unit(208, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/enuk/front.svg",
  21470. extra: 437 / 406,
  21471. bottom: 0.02
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(5 + 8 / 12, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(5 + 10 / 12, "feet"),
  21488. weight: math.unit(252, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/bruun/front.svg",
  21492. extra: 197 / 187,
  21493. bottom: 0.012
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(5 + 10 / 12, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(6 + 10 / 12, "feet"),
  21510. weight: math.unit(255, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/alexeev/front.svg",
  21514. extra: 213 / 200,
  21515. bottom: 0.05
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(6 + 10 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(2 + 8 / 12, "feet"),
  21532. weight: math.unit(22, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/evelyn/front.svg",
  21536. extra: 208 / 180
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(2 + 8 / 12, "feet"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21550. {
  21551. front: {
  21552. height: math.unit(5 + 9 / 12, "feet"),
  21553. weight: math.unit(139, "lb"),
  21554. name: "Front",
  21555. image: {
  21556. source: "./media/characters/inca/front.svg",
  21557. extra: 294 / 291,
  21558. bottom: 0.03
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(5 + 9 / 12, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21572. {
  21573. front: {
  21574. height: math.unit(6 + 3 / 12, "feet"),
  21575. weight: math.unit(185, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/mera/front.svg",
  21579. extra: 291 / 277,
  21580. bottom: 0.03
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(6 + 3 / 12, "feet"),
  21588. default: true
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(6 + 7 / 12, "feet"),
  21597. weight: math.unit(160, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/ceres/front.svg",
  21601. extra: 1023 / 950,
  21602. bottom: 0.027
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(6 + 7 / 12, "feet"),
  21607. weight: math.unit(160, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/ceres/back.svg",
  21611. extra: 1023 / 950
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(6 + 7 / 12, "feet"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(5 + 10 / 12, "feet"),
  21628. weight: math.unit(150, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/kris/front.svg",
  21632. extra: 885 / 803,
  21633. bottom: 0.03
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(5 + 10 / 12, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(7, "feet"),
  21650. weight: math.unit(120, "kg"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/taluthus/front.svg",
  21654. extra: 903 / 833,
  21655. bottom: 0.015
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(7, "feet"),
  21663. default: true
  21664. },
  21665. {
  21666. name: "Macro",
  21667. height: math.unit(300, "feet")
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(5 + 9 / 12, "feet"),
  21676. weight: math.unit(145, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/dawn/front.svg",
  21680. extra: 2094 / 2016,
  21681. bottom: 0.025
  21682. }
  21683. },
  21684. back: {
  21685. height: math.unit(5 + 9 / 12, "feet"),
  21686. weight: math.unit(160, "lb"),
  21687. name: "Back",
  21688. image: {
  21689. source: "./media/characters/dawn/back.svg",
  21690. extra: 2112 / 2080,
  21691. bottom: 0.005
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(6 + 7 / 12, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21705. {
  21706. anthro: {
  21707. height: math.unit(8 + 3 / 12, "feet"),
  21708. weight: math.unit(450, "lb"),
  21709. name: "Anthro",
  21710. image: {
  21711. source: "./media/characters/arador/anthro.svg",
  21712. extra: 1835 / 1718,
  21713. bottom: 0.025
  21714. }
  21715. },
  21716. feral: {
  21717. height: math.unit(4, "feet"),
  21718. weight: math.unit(200, "lb"),
  21719. name: "Feral",
  21720. image: {
  21721. source: "./media/characters/arador/feral.svg",
  21722. extra: 1683 / 1514,
  21723. bottom: 0.07
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(8 + 3 / 12, "feet")
  21731. },
  21732. {
  21733. name: "Macro",
  21734. height: math.unit(82.5, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5 + 10 / 12, "feet"),
  21744. weight: math.unit(125, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/dharsi/front.svg",
  21748. extra: 716 / 630,
  21749. bottom: 0.035
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Nano",
  21756. height: math.unit(100, "nm")
  21757. },
  21758. {
  21759. name: "Micro",
  21760. height: math.unit(2, "inches")
  21761. },
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 10 / 12, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Macro",
  21769. height: math.unit(1000, "feet")
  21770. },
  21771. {
  21772. name: "Megamacro",
  21773. height: math.unit(10, "miles")
  21774. },
  21775. {
  21776. name: "Gigamacro",
  21777. height: math.unit(3000, "miles")
  21778. },
  21779. {
  21780. name: "Teramacro",
  21781. height: math.unit(500000, "miles")
  21782. },
  21783. {
  21784. name: "Teramacro+",
  21785. height: math.unit(30, "galaxies")
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(6, "feet"),
  21794. weight: math.unit(150, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/deathy/front.svg",
  21798. extra: 1552 / 1463,
  21799. bottom: 0.025
  21800. }
  21801. },
  21802. side: {
  21803. height: math.unit(6, "feet"),
  21804. weight: math.unit(150, "lb"),
  21805. name: "Side",
  21806. image: {
  21807. source: "./media/characters/deathy/side.svg",
  21808. extra: 1604 / 1455,
  21809. bottom: 0.025
  21810. }
  21811. },
  21812. back: {
  21813. height: math.unit(6, "feet"),
  21814. weight: math.unit(150, "lb"),
  21815. name: "Back",
  21816. image: {
  21817. source: "./media/characters/deathy/back.svg",
  21818. extra: 1580 / 1463,
  21819. bottom: 0.005
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Micro",
  21826. height: math.unit(5, "millimeters")
  21827. },
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(6 + 5 / 12, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21837. {
  21838. front: {
  21839. height: math.unit(16, "feet"),
  21840. weight: math.unit(4000, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/juniper/front.svg",
  21844. bottom: 0.04
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(16, "feet"),
  21852. default: true
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(6, "feet"),
  21861. weight: math.unit(150, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/hipster/front.svg",
  21865. extra: 1312 / 1209,
  21866. bottom: 0.025
  21867. }
  21868. },
  21869. back: {
  21870. height: math.unit(6, "feet"),
  21871. weight: math.unit(150, "lb"),
  21872. name: "Back",
  21873. image: {
  21874. source: "./media/characters/hipster/back.svg",
  21875. extra: 1281 / 1196,
  21876. bottom: 0.01
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Micro",
  21883. height: math.unit(1, "mm")
  21884. },
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(4, "inches"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Macro",
  21892. height: math.unit(500, "feet")
  21893. },
  21894. {
  21895. name: "Megamacro",
  21896. height: math.unit(1000, "miles")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(6, "feet"),
  21905. weight: math.unit(150, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/tendirmuldr/front.svg",
  21909. extra: 1878 / 1772,
  21910. bottom: 0.015
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Megamacro",
  21917. height: math.unit(1500, "miles"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21924. {
  21925. front: {
  21926. height: math.unit(14, "feet"),
  21927. weight: math.unit(12000, "lb"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/mort/front.svg",
  21931. extra: 365 / 318,
  21932. bottom: 0.01
  21933. }
  21934. },
  21935. side: {
  21936. height: math.unit(14, "feet"),
  21937. weight: math.unit(12000, "lb"),
  21938. name: "Side",
  21939. image: {
  21940. source: "./media/characters/mort/side.svg",
  21941. extra: 365 / 318,
  21942. bottom: 0.052
  21943. },
  21944. default: true
  21945. },
  21946. back: {
  21947. height: math.unit(14, "feet"),
  21948. weight: math.unit(12000, "lb"),
  21949. name: "Back",
  21950. image: {
  21951. source: "./media/characters/mort/back.svg",
  21952. extra: 371 / 332,
  21953. bottom: 0.18
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(14, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21967. {
  21968. front: {
  21969. height: math.unit(8, "feet"),
  21970. weight: math.unit(1, "ton"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/lycoa/front.svg",
  21974. extra: 1836/1728,
  21975. bottom: 81/1917
  21976. }
  21977. },
  21978. back: {
  21979. height: math.unit(8, "feet"),
  21980. weight: math.unit(1, "ton"),
  21981. name: "Back",
  21982. image: {
  21983. source: "./media/characters/lycoa/back.svg",
  21984. extra: 1785/1720,
  21985. bottom: 91/1876
  21986. }
  21987. },
  21988. head: {
  21989. height: math.unit(1.6243, "feet"),
  21990. name: "Head",
  21991. image: {
  21992. source: "./media/characters/lycoa/head.svg",
  21993. extra: 1011/782,
  21994. bottom: 0/1011
  21995. }
  21996. },
  21997. tailmaw: {
  21998. height: math.unit(1.9, "feet"),
  21999. name: "Tailmaw",
  22000. image: {
  22001. source: "./media/characters/lycoa/tailmaw.svg"
  22002. }
  22003. },
  22004. tentacles: {
  22005. height: math.unit(2.1, "feet"),
  22006. name: "Tentacles",
  22007. image: {
  22008. source: "./media/characters/lycoa/tentacles.svg"
  22009. }
  22010. },
  22011. dick: {
  22012. height: math.unit(1.73, "feet"),
  22013. name: "Dick",
  22014. image: {
  22015. source: "./media/characters/lycoa/dick.svg"
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(8, "feet"),
  22023. default: true
  22024. },
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(30, "feet")
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22033. {
  22034. front: {
  22035. height: math.unit(4 + 2 / 12, "feet"),
  22036. weight: math.unit(70, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/naldara/front.svg",
  22040. extra: 1664/1387,
  22041. bottom: 81/1745
  22042. },
  22043. form: "anthro",
  22044. default: true
  22045. },
  22046. naga: {
  22047. height: math.unit(20, "feet"),
  22048. weight: math.unit(15000, "kg"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/naldara/naga.svg",
  22052. extra: 1590/1396,
  22053. bottom: 285/1875
  22054. },
  22055. form: "naga",
  22056. default: true
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(4 + 2 / 12, "feet"),
  22063. form: "anthro",
  22064. default: true
  22065. },
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(20, "feet"),
  22069. form: "naga",
  22070. default: true
  22071. },
  22072. ],
  22073. {
  22074. "anthro": {
  22075. name: "Anthro",
  22076. default: true
  22077. },
  22078. "naga": {
  22079. name: "Naga"
  22080. }
  22081. }
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(13 + 7 / 12, "feet"),
  22088. weight: math.unit(1500, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/briar/front.svg",
  22092. extra: 1223/1157,
  22093. bottom: 123/1346
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(13 + 7 / 12, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22107. {
  22108. side: {
  22109. height: math.unit(16, "feet"),
  22110. weight: math.unit(500, "lb"),
  22111. name: "Side",
  22112. image: {
  22113. source: "./media/characters/vanguard/side.svg",
  22114. extra: 1022/914,
  22115. bottom: 30/1052
  22116. }
  22117. },
  22118. sideAlt: {
  22119. height: math.unit(10, "feet"),
  22120. weight: math.unit(500, "lb"),
  22121. name: "Side (Alt)",
  22122. image: {
  22123. source: "./media/characters/vanguard/side-alt.svg",
  22124. extra: 502 / 425,
  22125. bottom: 0.087
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(17.71, "feet"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(7.5, "feet"),
  22142. weight: math.unit(2, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/artemis/work-safe-front.svg",
  22146. extra: 1192 / 1075,
  22147. bottom: 0.07
  22148. },
  22149. form: "work-safe",
  22150. default: true
  22151. },
  22152. frontNsfw: {
  22153. height: math.unit(7.5, "feet"),
  22154. weight: math.unit(2, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/artemis/calibrating-front.svg",
  22158. extra: 1192 / 1075,
  22159. bottom: 0.07
  22160. },
  22161. form: "calibrating",
  22162. default: true
  22163. },
  22164. frontNsfwer: {
  22165. height: math.unit(7.5, "feet"),
  22166. weight: math.unit(2, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/artemis/oversize-load-front.svg",
  22170. extra: 1192 / 1075,
  22171. bottom: 0.07
  22172. },
  22173. form: "oversize-load",
  22174. default: true
  22175. },
  22176. side: {
  22177. height: math.unit(7.5, "feet"),
  22178. weight: math.unit(2, "lb"),
  22179. name: "Side",
  22180. image: {
  22181. source: "./media/characters/artemis/work-safe-side.svg",
  22182. extra: 1192 / 1075,
  22183. bottom: 0.07
  22184. },
  22185. form: "work-safe"
  22186. },
  22187. sideNsfw: {
  22188. height: math.unit(7.5, "feet"),
  22189. weight: math.unit(2, "lb"),
  22190. name: "Side",
  22191. image: {
  22192. source: "./media/characters/artemis/calibrating-side.svg",
  22193. extra: 1192 / 1075,
  22194. bottom: 0.07
  22195. },
  22196. form: "calibrating"
  22197. },
  22198. sideNsfwer: {
  22199. height: math.unit(7.5, "feet"),
  22200. weight: math.unit(2, "lb"),
  22201. name: "Side",
  22202. image: {
  22203. source: "./media/characters/artemis/oversize-load-side.svg",
  22204. extra: 1192 / 1075,
  22205. bottom: 0.07
  22206. },
  22207. form: "oversize-load"
  22208. },
  22209. maw: {
  22210. height: math.unit(1.1, "feet"),
  22211. name: "Maw",
  22212. image: {
  22213. source: "./media/characters/artemis/maw.svg"
  22214. },
  22215. form: "work-safe"
  22216. },
  22217. stomach: {
  22218. height: math.unit(0.95, "feet"),
  22219. name: "Stomach",
  22220. image: {
  22221. source: "./media/characters/artemis/stomach.svg"
  22222. },
  22223. form: "work-safe"
  22224. },
  22225. dickCanine: {
  22226. height: math.unit(1, "feet"),
  22227. name: "Dick (Canine)",
  22228. image: {
  22229. source: "./media/characters/artemis/dick-canine.svg"
  22230. },
  22231. form: "calibrating"
  22232. },
  22233. dickEquine: {
  22234. height: math.unit(0.85, "feet"),
  22235. name: "Dick (Equine)",
  22236. image: {
  22237. source: "./media/characters/artemis/dick-equine.svg"
  22238. },
  22239. form: "calibrating"
  22240. },
  22241. dickExotic: {
  22242. height: math.unit(0.85, "feet"),
  22243. name: "Dick (Exotic)",
  22244. image: {
  22245. source: "./media/characters/artemis/dick-exotic.svg"
  22246. },
  22247. form: "calibrating"
  22248. },
  22249. dickCanineBigger: {
  22250. height: math.unit(1 * 1.33, "feet"),
  22251. name: "Dick (Canine)",
  22252. image: {
  22253. source: "./media/characters/artemis/dick-canine.svg"
  22254. },
  22255. form: "oversize-load"
  22256. },
  22257. dickEquineBigger: {
  22258. height: math.unit(0.85 * 1.33, "feet"),
  22259. name: "Dick (Equine)",
  22260. image: {
  22261. source: "./media/characters/artemis/dick-equine.svg"
  22262. },
  22263. form: "oversize-load"
  22264. },
  22265. dickExoticBigger: {
  22266. height: math.unit(0.85 * 1.33, "feet"),
  22267. name: "Dick (Exotic)",
  22268. image: {
  22269. source: "./media/characters/artemis/dick-exotic.svg"
  22270. },
  22271. form: "oversize-load"
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(7.5, "feet"),
  22278. form: "work-safe",
  22279. default: true
  22280. },
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(7.5, "feet"),
  22284. form: "calibrating",
  22285. default: true
  22286. },
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(7.5, "feet"),
  22290. form: "oversize-load",
  22291. default: true
  22292. },
  22293. {
  22294. name: "Enlarged",
  22295. height: math.unit(12, "feet"),
  22296. form: "work-safe",
  22297. },
  22298. {
  22299. name: "Enlarged",
  22300. height: math.unit(12, "feet"),
  22301. form: "calibrating",
  22302. },
  22303. {
  22304. name: "Enlarged",
  22305. height: math.unit(12, "feet"),
  22306. form: "oversize-load",
  22307. },
  22308. ],
  22309. {
  22310. "work-safe": {
  22311. name: "Work-Safe",
  22312. default: true
  22313. },
  22314. "calibrating": {
  22315. name: "Calibrating"
  22316. },
  22317. "oversize-load": {
  22318. name: "Oversize Load"
  22319. }
  22320. }
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(5 + 3 / 12, "feet"),
  22327. weight: math.unit(160, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/kira/front.svg",
  22331. extra: 906 / 786,
  22332. bottom: 0.01
  22333. }
  22334. },
  22335. back: {
  22336. height: math.unit(5 + 3 / 12, "feet"),
  22337. weight: math.unit(160, "lb"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/kira/back.svg",
  22341. extra: 882 / 757,
  22342. bottom: 0.005
  22343. }
  22344. },
  22345. frontDressed: {
  22346. height: math.unit(5 + 3 / 12, "feet"),
  22347. weight: math.unit(160, "lb"),
  22348. name: "Front (Dressed)",
  22349. image: {
  22350. source: "./media/characters/kira/front-dressed.svg",
  22351. extra: 906 / 786,
  22352. bottom: 0.01
  22353. }
  22354. },
  22355. beans: {
  22356. height: math.unit(0.92, "feet"),
  22357. name: "Beans",
  22358. image: {
  22359. source: "./media/characters/kira/beans.svg"
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(5 + 3 / 12, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(5 + 4 / 12, "feet"),
  22376. weight: math.unit(145, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/scramble/front.svg",
  22380. extra: 763 / 727,
  22381. bottom: 0.05
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(5 + 4 / 12, "feet"),
  22386. weight: math.unit(145, "lb"),
  22387. name: "Back",
  22388. image: {
  22389. source: "./media/characters/scramble/back.svg",
  22390. extra: 826 / 737,
  22391. bottom: 0.002
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(5 + 4 / 12, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22405. {
  22406. side: {
  22407. height: math.unit(6 + 2 / 12, "feet"),
  22408. weight: math.unit(190, "lb"),
  22409. name: "Side",
  22410. image: {
  22411. source: "./media/characters/biscuit/side.svg",
  22412. extra: 858 / 791,
  22413. bottom: 0.044
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(6 + 2 / 12, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(5 + 2 / 12, "feet"),
  22430. weight: math.unit(120, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/poffin/front.svg",
  22434. extra: 786 / 680,
  22435. bottom: 0.005
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(5 + 2 / 12, "feet"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(6 + 3 / 12, "feet"),
  22452. weight: math.unit(519, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/dhari/front.svg",
  22456. extra: 1048 / 946,
  22457. bottom: 0.015
  22458. }
  22459. },
  22460. back: {
  22461. height: math.unit(6 + 3 / 12, "feet"),
  22462. weight: math.unit(519, "lb"),
  22463. name: "Back",
  22464. image: {
  22465. source: "./media/characters/dhari/back.svg",
  22466. extra: 1048 / 931,
  22467. bottom: 0.005
  22468. }
  22469. },
  22470. frontDressed: {
  22471. height: math.unit(6 + 3 / 12, "feet"),
  22472. weight: math.unit(519, "lb"),
  22473. name: "Front (Dressed)",
  22474. image: {
  22475. source: "./media/characters/dhari/front-dressed.svg",
  22476. extra: 1713 / 1546,
  22477. bottom: 0.02
  22478. }
  22479. },
  22480. backDressed: {
  22481. height: math.unit(6 + 3 / 12, "feet"),
  22482. weight: math.unit(519, "lb"),
  22483. name: "Back (Dressed)",
  22484. image: {
  22485. source: "./media/characters/dhari/back-dressed.svg",
  22486. extra: 1699 / 1537,
  22487. bottom: 0.01
  22488. }
  22489. },
  22490. maw: {
  22491. height: math.unit(0.95, "feet"),
  22492. name: "Maw",
  22493. image: {
  22494. source: "./media/characters/dhari/maw.svg"
  22495. }
  22496. },
  22497. wereFront: {
  22498. height: math.unit(12 + 8 / 12, "feet"),
  22499. weight: math.unit(4000, "lb"),
  22500. name: "Front (Were)",
  22501. image: {
  22502. source: "./media/characters/dhari/were-front.svg",
  22503. extra: 1065 / 969,
  22504. bottom: 0.015
  22505. }
  22506. },
  22507. wereBack: {
  22508. height: math.unit(12 + 8 / 12, "feet"),
  22509. weight: math.unit(4000, "lb"),
  22510. name: "Back (Were)",
  22511. image: {
  22512. source: "./media/characters/dhari/were-back.svg",
  22513. extra: 1065 / 969,
  22514. bottom: 0.012
  22515. }
  22516. },
  22517. wereMaw: {
  22518. height: math.unit(0.625, "meters"),
  22519. name: "Maw (Were)",
  22520. image: {
  22521. source: "./media/characters/dhari/were-maw.svg"
  22522. }
  22523. },
  22524. },
  22525. [
  22526. {
  22527. name: "Normal",
  22528. height: math.unit(6 + 3 / 12, "feet"),
  22529. default: true
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22535. {
  22536. anthro: {
  22537. height: math.unit(5 + 7 / 12, "feet"),
  22538. weight: math.unit(175, "lb"),
  22539. name: "Anthro",
  22540. image: {
  22541. source: "./media/characters/rena-dyne/anthro.svg",
  22542. extra: 1849 / 1785,
  22543. bottom: 0.005
  22544. }
  22545. },
  22546. taur: {
  22547. height: math.unit(15 + 6 / 12, "feet"),
  22548. weight: math.unit(8000, "lb"),
  22549. name: "Taur",
  22550. image: {
  22551. source: "./media/characters/rena-dyne/taur.svg",
  22552. extra: 2315 / 2234,
  22553. bottom: 0.033
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5 + 7 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(8, "feet"),
  22570. weight: math.unit(600, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/weremeep/front.svg",
  22574. extra: 970/849,
  22575. bottom: 7/977
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(8, "feet"),
  22583. default: true
  22584. },
  22585. {
  22586. name: "Lorg",
  22587. height: math.unit(12, "feet")
  22588. },
  22589. {
  22590. name: "Oh Lawd She Comin'",
  22591. height: math.unit(20, "feet")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22597. {
  22598. front: {
  22599. height: math.unit(4, "feet"),
  22600. weight: math.unit(90, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/reza/front.svg",
  22604. extra: 1183 / 1111,
  22605. bottom: 0.017
  22606. }
  22607. },
  22608. back: {
  22609. height: math.unit(4, "feet"),
  22610. weight: math.unit(90, "lb"),
  22611. name: "Back",
  22612. image: {
  22613. source: "./media/characters/reza/back.svg",
  22614. extra: 1183 / 1111,
  22615. bottom: 0.01
  22616. }
  22617. },
  22618. drake: {
  22619. height: math.unit(30, "feet"),
  22620. weight: math.unit(246960, "lb"),
  22621. name: "Drake",
  22622. image: {
  22623. source: "./media/characters/reza/drake.svg",
  22624. extra: 2350 / 2024,
  22625. bottom: 60.7 / 2403
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(4, "feet"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22639. {
  22640. side: {
  22641. height: math.unit(15, "feet"),
  22642. weight: math.unit(14, "tons"),
  22643. name: "Side",
  22644. image: {
  22645. source: "./media/characters/athea/side.svg",
  22646. extra: 960 / 540,
  22647. bottom: 0.003
  22648. }
  22649. },
  22650. sitting: {
  22651. height: math.unit(6 * 2.85, "feet"),
  22652. weight: math.unit(14, "tons"),
  22653. name: "Sitting",
  22654. image: {
  22655. source: "./media/characters/athea/sitting.svg",
  22656. extra: 621 / 581,
  22657. bottom: 0.075
  22658. }
  22659. },
  22660. maw: {
  22661. height: math.unit(7.59498031496063, "feet"),
  22662. name: "Maw",
  22663. image: {
  22664. source: "./media/characters/athea/maw.svg"
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Lap Cat",
  22671. height: math.unit(2.5, "feet")
  22672. },
  22673. {
  22674. name: "Minimacro",
  22675. height: math.unit(15, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Macro",
  22680. height: math.unit(120, "feet")
  22681. },
  22682. {
  22683. name: "Macro+",
  22684. height: math.unit(640, "feet")
  22685. },
  22686. {
  22687. name: "Colossus",
  22688. height: math.unit(2.2, "miles")
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(8 + 8 / 12, "feet"),
  22697. weight: math.unit(130, "kg"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/seroko/front.svg",
  22701. extra: 1385 / 1280,
  22702. bottom: 0.025
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(8 + 8 / 12, "feet"),
  22707. weight: math.unit(130, "kg"),
  22708. name: "Back",
  22709. image: {
  22710. source: "./media/characters/seroko/back.svg",
  22711. extra: 1369 / 1238,
  22712. bottom: 0.018
  22713. }
  22714. },
  22715. frontDressed: {
  22716. height: math.unit(8 + 8 / 12, "feet"),
  22717. weight: math.unit(130, "kg"),
  22718. name: "Front (Dressed)",
  22719. image: {
  22720. source: "./media/characters/seroko/front-dressed.svg",
  22721. extra: 1366 / 1275,
  22722. bottom: 0.03
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(8 + 8 / 12, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(5.5, "feet"),
  22739. weight: math.unit(160, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/quatzi/front.svg",
  22743. extra: 2346 / 2242,
  22744. bottom: 0.015
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(5.5, "feet"),
  22752. default: true
  22753. },
  22754. {
  22755. name: "Big",
  22756. height: math.unit(7.7, "feet")
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(5 + 11 / 12, "feet"),
  22765. weight: math.unit(180, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/sen/front.svg",
  22769. extra: 1321 / 1254,
  22770. bottom: 0.015
  22771. }
  22772. },
  22773. side: {
  22774. height: math.unit(5 + 11 / 12, "feet"),
  22775. weight: math.unit(180, "lb"),
  22776. name: "Side",
  22777. image: {
  22778. source: "./media/characters/sen/side.svg",
  22779. extra: 1321 / 1254,
  22780. bottom: 0.007
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(5 + 11 / 12, "feet"),
  22785. weight: math.unit(180, "lb"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/sen/back.svg",
  22789. extra: 1321 / 1254
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(5 + 11 / 12, "feet"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(166.6, "cm"),
  22806. weight: math.unit(66.6, "kg"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/fruity/front.svg",
  22810. extra: 1510 / 1386,
  22811. bottom: 0.04
  22812. }
  22813. },
  22814. back: {
  22815. height: math.unit(166.6, "cm"),
  22816. weight: math.unit(66.6, "lb"),
  22817. name: "Back",
  22818. image: {
  22819. source: "./media/characters/fruity/back.svg",
  22820. extra: 1563 / 1435,
  22821. bottom: 0.005
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(166.6, "cm"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Demonic",
  22833. height: math.unit(166.6, "feet")
  22834. },
  22835. ]
  22836. ))
  22837. characterMakers.push(() => makeCharacter(
  22838. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22839. {
  22840. side: {
  22841. height: math.unit(10, "feet"),
  22842. weight: math.unit(500, "lb"),
  22843. name: "Side",
  22844. image: {
  22845. source: "./media/characters/zost/side.svg",
  22846. extra: 2870/2533,
  22847. bottom: 252/3122
  22848. }
  22849. },
  22850. mawFront: {
  22851. height: math.unit(1.08, "meters"),
  22852. name: "Maw (Front)",
  22853. image: {
  22854. source: "./media/characters/zost/maw-front.svg"
  22855. }
  22856. },
  22857. mawSide: {
  22858. height: math.unit(2.66, "feet"),
  22859. name: "Maw (Side)",
  22860. image: {
  22861. source: "./media/characters/zost/maw-side.svg"
  22862. }
  22863. },
  22864. wingspan: {
  22865. height: math.unit(7.4, "feet"),
  22866. name: "Wingspan",
  22867. image: {
  22868. source: "./media/characters/zost/wingspan.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(10, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(5 + 4 / 12, "feet"),
  22885. weight: math.unit(120, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/luci/front.svg",
  22889. extra: 1985 / 1884,
  22890. bottom: 0.04
  22891. }
  22892. },
  22893. back: {
  22894. height: math.unit(5 + 4 / 12, "feet"),
  22895. weight: math.unit(120, "lb"),
  22896. name: "Back",
  22897. image: {
  22898. source: "./media/characters/luci/back.svg",
  22899. extra: 1892 / 1791,
  22900. bottom: 0.002
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(5 + 4 / 12, "feet"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(1500, "feet"),
  22917. weight: math.unit(3.8e6, "tons"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/2th/front.svg",
  22921. extra: 3489 / 3350,
  22922. bottom: 0.1
  22923. }
  22924. },
  22925. foot: {
  22926. height: math.unit(461, "feet"),
  22927. name: "Foot",
  22928. image: {
  22929. source: "./media/characters/2th/foot.svg"
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "\"Micro\"",
  22936. height: math.unit(15 + 7 / 12, "feet")
  22937. },
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(1500, "feet"),
  22941. default: true
  22942. },
  22943. {
  22944. name: "Macro",
  22945. height: math.unit(5000, "feet")
  22946. },
  22947. {
  22948. name: "Megamacro",
  22949. height: math.unit(15, "miles")
  22950. },
  22951. {
  22952. name: "Gigamacro",
  22953. height: math.unit(4000, "miles")
  22954. },
  22955. {
  22956. name: "Galactic",
  22957. height: math.unit(50, "AU")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(5 + 6 / 12, "feet"),
  22966. weight: math.unit(220, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/amethyst/front.svg",
  22970. extra: 2078 / 2040,
  22971. bottom: 0.045
  22972. }
  22973. },
  22974. back: {
  22975. height: math.unit(5 + 6 / 12, "feet"),
  22976. weight: math.unit(220, "lb"),
  22977. name: "Back",
  22978. image: {
  22979. source: "./media/characters/amethyst/back.svg",
  22980. extra: 2021 / 1989,
  22981. bottom: 0.02
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(5 + 6 / 12, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(4 + 11 / 12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/yumi-akiyama/front.svg",
  23002. extra: 1327 / 1235,
  23003. bottom: 0.02
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(4 + 11 / 12, "feet"),
  23008. weight: math.unit(120, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/yumi-akiyama/back.svg",
  23012. extra: 1287 / 1245,
  23013. bottom: 0.002
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Galactic",
  23020. height: math.unit(50, "galaxies"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Universal",
  23025. height: math.unit(100, "universes")
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(8, "feet"),
  23034. weight: math.unit(500, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/rifter-yrmori/front.svg",
  23038. extra: 1180 / 1125,
  23039. bottom: 0.02
  23040. }
  23041. },
  23042. back: {
  23043. height: math.unit(8, "feet"),
  23044. weight: math.unit(500, "lb"),
  23045. name: "Back",
  23046. image: {
  23047. source: "./media/characters/rifter-yrmori/back.svg",
  23048. extra: 1190 / 1145,
  23049. bottom: 0.001
  23050. }
  23051. },
  23052. wings: {
  23053. height: math.unit(7.75, "feet"),
  23054. weight: math.unit(500, "lb"),
  23055. name: "Wings",
  23056. image: {
  23057. source: "./media/characters/rifter-yrmori/wings.svg",
  23058. extra: 1357 / 1285
  23059. }
  23060. },
  23061. maw: {
  23062. height: math.unit(0.8, "feet"),
  23063. name: "Maw",
  23064. image: {
  23065. source: "./media/characters/rifter-yrmori/maw.svg"
  23066. }
  23067. },
  23068. mawfront: {
  23069. height: math.unit(1.45, "feet"),
  23070. name: "Maw (Front)",
  23071. image: {
  23072. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Normal",
  23079. height: math.unit(8, "feet"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(42, "meters")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23090. {
  23091. were: {
  23092. height: math.unit(25 + 6 / 12, "feet"),
  23093. weight: math.unit(10000, "lb"),
  23094. name: "Were",
  23095. image: {
  23096. source: "./media/characters/tahajin/were.svg",
  23097. extra: 801 / 770,
  23098. bottom: 0.042
  23099. }
  23100. },
  23101. aquatic: {
  23102. height: math.unit(6 + 4 / 12, "feet"),
  23103. weight: math.unit(160, "lb"),
  23104. name: "Aquatic",
  23105. image: {
  23106. source: "./media/characters/tahajin/aquatic.svg",
  23107. extra: 572 / 542,
  23108. bottom: 0.04
  23109. }
  23110. },
  23111. chow: {
  23112. height: math.unit(8 + 11 / 12, "feet"),
  23113. weight: math.unit(450, "lb"),
  23114. name: "Chow",
  23115. image: {
  23116. source: "./media/characters/tahajin/chow.svg",
  23117. extra: 660 / 640,
  23118. bottom: 0.015
  23119. }
  23120. },
  23121. demiNaga: {
  23122. height: math.unit(6 + 8 / 12, "feet"),
  23123. weight: math.unit(300, "lb"),
  23124. name: "Demi Naga",
  23125. image: {
  23126. source: "./media/characters/tahajin/demi-naga.svg",
  23127. extra: 643 / 615,
  23128. bottom: 0.1
  23129. }
  23130. },
  23131. data: {
  23132. height: math.unit(5, "inches"),
  23133. weight: math.unit(0.1, "lb"),
  23134. name: "Data",
  23135. image: {
  23136. source: "./media/characters/tahajin/data.svg"
  23137. }
  23138. },
  23139. fluu: {
  23140. height: math.unit(5 + 7 / 12, "feet"),
  23141. weight: math.unit(140, "lb"),
  23142. name: "Fluu",
  23143. image: {
  23144. source: "./media/characters/tahajin/fluu.svg",
  23145. extra: 628 / 592,
  23146. bottom: 0.02
  23147. }
  23148. },
  23149. starWarrior: {
  23150. height: math.unit(4 + 5 / 12, "feet"),
  23151. weight: math.unit(50, "lb"),
  23152. name: "Star Warrior",
  23153. image: {
  23154. source: "./media/characters/tahajin/star-warrior.svg"
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(25 + 6 / 12, "feet"),
  23162. default: true
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(8, "feet"),
  23171. weight: math.unit(350, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/gabira/front.svg",
  23175. extra: 1261/1154,
  23176. bottom: 51/1312
  23177. }
  23178. },
  23179. back: {
  23180. height: math.unit(8, "feet"),
  23181. weight: math.unit(350, "lb"),
  23182. name: "Back",
  23183. image: {
  23184. source: "./media/characters/gabira/back.svg",
  23185. extra: 1265/1163,
  23186. bottom: 46/1311
  23187. }
  23188. },
  23189. head: {
  23190. height: math.unit(2.85, "feet"),
  23191. name: "Head",
  23192. image: {
  23193. source: "./media/characters/gabira/head.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(8, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(5 + 3 / 12, "feet"),
  23210. weight: math.unit(137, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/sasha-katraine/front.svg",
  23214. extra: 1745/1694,
  23215. bottom: 37/1782
  23216. }
  23217. },
  23218. back: {
  23219. height: math.unit(5 + 3 / 12, "feet"),
  23220. weight: math.unit(137, "lb"),
  23221. name: "Back",
  23222. image: {
  23223. source: "./media/characters/sasha-katraine/back.svg",
  23224. extra: 1776/1699,
  23225. bottom: 26/1802
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Micro",
  23232. height: math.unit(5, "inches")
  23233. },
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(5 + 3 / 12, "feet"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23243. {
  23244. side: {
  23245. height: math.unit(4, "inches"),
  23246. weight: math.unit(200, "grams"),
  23247. name: "Side",
  23248. image: {
  23249. source: "./media/characters/der/side.svg",
  23250. extra: 719 / 400,
  23251. bottom: 30.6 / 749.9187
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Micro",
  23258. height: math.unit(4, "inches"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23265. {
  23266. side: {
  23267. height: math.unit(30, "meters"),
  23268. weight: math.unit(700, "tonnes"),
  23269. name: "Side",
  23270. image: {
  23271. source: "./media/characters/fixerdragon/side.svg",
  23272. extra: (1293.0514 - 116.03) / 1106.86,
  23273. bottom: 116.03 / 1293.0514
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Planck",
  23280. height: math.unit(1.6e-35, "meters")
  23281. },
  23282. {
  23283. name: "Micro",
  23284. height: math.unit(0.4, "meters")
  23285. },
  23286. {
  23287. name: "Normal",
  23288. height: math.unit(30, "meters"),
  23289. default: true
  23290. },
  23291. {
  23292. name: "Megamacro",
  23293. height: math.unit(1.2, "megameters")
  23294. },
  23295. {
  23296. name: "Teramacro",
  23297. height: math.unit(130, "terameters")
  23298. },
  23299. {
  23300. name: "Yottamacro",
  23301. height: math.unit(6200, "yottameters")
  23302. },
  23303. ]
  23304. ));
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(8, "feet"),
  23310. weight: math.unit(250, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/kite/front.svg",
  23314. extra: 2796 / 2659,
  23315. bottom: 0.002
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(8, "feet"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(360, "feet")
  23328. },
  23329. {
  23330. name: "Megamacro",
  23331. height: math.unit(1500, "feet")
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(5 + 11/12, "feet"),
  23340. weight: math.unit(170, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/poojawa-vynar/front.svg",
  23344. extra: 1735/1585,
  23345. bottom: 96/1831
  23346. }
  23347. },
  23348. back: {
  23349. height: math.unit(5 + 11/12, "feet"),
  23350. weight: math.unit(170, "lb"),
  23351. name: "Back",
  23352. image: {
  23353. source: "./media/characters/poojawa-vynar/back.svg",
  23354. extra: 1749/1607,
  23355. bottom: 28/1777
  23356. }
  23357. },
  23358. male: {
  23359. height: math.unit(5 + 11/12, "feet"),
  23360. weight: math.unit(170, "lb"),
  23361. name: "Male",
  23362. image: {
  23363. source: "./media/characters/poojawa-vynar/male.svg",
  23364. extra: 1855/1713,
  23365. bottom: 63/1918
  23366. }
  23367. },
  23368. taur: {
  23369. height: math.unit(5 + 11/12, "feet"),
  23370. weight: math.unit(170, "lb"),
  23371. name: "Taur",
  23372. image: {
  23373. source: "./media/characters/poojawa-vynar/taur.svg",
  23374. extra: 1151/1059,
  23375. bottom: 356/1507
  23376. }
  23377. },
  23378. frontDressed: {
  23379. height: math.unit(5 + 11/12, "feet"),
  23380. weight: math.unit(170, "lb"),
  23381. name: "Front (Dressed)",
  23382. image: {
  23383. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23384. extra: 1735/1585,
  23385. bottom: 96/1831
  23386. }
  23387. },
  23388. backDressed: {
  23389. height: math.unit(5 + 11/12, "feet"),
  23390. weight: math.unit(170, "lb"),
  23391. name: "Back (Dressed)",
  23392. image: {
  23393. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23394. extra: 1749/1607,
  23395. bottom: 28/1777
  23396. }
  23397. },
  23398. maleDressed: {
  23399. height: math.unit(5 + 11/12, "feet"),
  23400. weight: math.unit(170, "lb"),
  23401. name: "Male (Dressed)",
  23402. image: {
  23403. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23404. extra: 1855/1713,
  23405. bottom: 63/1918
  23406. }
  23407. },
  23408. taurDressed: {
  23409. height: math.unit(5 + 11/12, "feet"),
  23410. weight: math.unit(170, "lb"),
  23411. name: "Taur (Dressed)",
  23412. image: {
  23413. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23414. extra: 1151/1059,
  23415. bottom: 356/1507
  23416. }
  23417. },
  23418. maw: {
  23419. height: math.unit(1.46, "feet"),
  23420. name: "Maw",
  23421. image: {
  23422. source: "./media/characters/poojawa-vynar/maw.svg"
  23423. }
  23424. },
  23425. head: {
  23426. height: math.unit(2.34, "feet"),
  23427. name: "Head",
  23428. image: {
  23429. source: "./media/characters/poojawa-vynar/head.svg"
  23430. }
  23431. },
  23432. paw: {
  23433. height: math.unit(1.61, "feet"),
  23434. name: "Paw",
  23435. image: {
  23436. source: "./media/characters/poojawa-vynar/paw.svg"
  23437. }
  23438. },
  23439. pawToering: {
  23440. height: math.unit(1.72, "feet"),
  23441. name: "Paw (Toering)",
  23442. image: {
  23443. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23444. }
  23445. },
  23446. toering: {
  23447. height: math.unit(2.9, "inches"),
  23448. name: "Toering",
  23449. image: {
  23450. source: "./media/characters/poojawa-vynar/toering.svg"
  23451. }
  23452. },
  23453. shaft: {
  23454. height: math.unit(0.625, "feet"),
  23455. name: "Shaft",
  23456. image: {
  23457. source: "./media/characters/poojawa-vynar/shaft.svg"
  23458. }
  23459. },
  23460. spade: {
  23461. height: math.unit(0.42, "feet"),
  23462. name: "Spade",
  23463. image: {
  23464. source: "./media/characters/poojawa-vynar/spade.svg"
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Shortstack",
  23471. height: math.unit(4, "feet")
  23472. },
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(5 + 11 / 12, "feet"),
  23476. default: true
  23477. },
  23478. {
  23479. name: "Tauric",
  23480. height: math.unit(4, "meters")
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23486. {
  23487. front: {
  23488. height: math.unit(293, "meters"),
  23489. weight: math.unit(70400, "tons"),
  23490. name: "Front",
  23491. image: {
  23492. source: "./media/characters/violette/front.svg",
  23493. extra: 1227 / 1180,
  23494. bottom: 0.005
  23495. }
  23496. },
  23497. back: {
  23498. height: math.unit(293, "meters"),
  23499. weight: math.unit(70400, "tons"),
  23500. name: "Back",
  23501. image: {
  23502. source: "./media/characters/violette/back.svg",
  23503. extra: 1227 / 1180,
  23504. bottom: 0.005
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(293, "meters"),
  23512. default: true
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(1050, "feet"),
  23521. weight: math.unit(200000, "tons"),
  23522. name: "Front",
  23523. image: {
  23524. source: "./media/characters/alessandra/front.svg",
  23525. extra: 960 / 912,
  23526. bottom: 0.06
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(1050, "feet")
  23534. },
  23535. {
  23536. name: "Macro+",
  23537. height: math.unit(900, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(5, "feet"),
  23547. weight: math.unit(187, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/person/front.svg",
  23551. extra: 3087 / 2945,
  23552. bottom: 91 / 3181
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Micro",
  23559. height: math.unit(3, "inches")
  23560. },
  23561. {
  23562. name: "Normal",
  23563. height: math.unit(5, "feet"),
  23564. default: true
  23565. },
  23566. {
  23567. name: "Macro",
  23568. height: math.unit(90, "feet")
  23569. },
  23570. {
  23571. name: "Max Size",
  23572. height: math.unit(280, "feet")
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23578. {
  23579. front: {
  23580. height: math.unit(4.5, "meters"),
  23581. weight: math.unit(3200, "lb"),
  23582. name: "Front",
  23583. image: {
  23584. source: "./media/characters/ty/front.svg",
  23585. extra: 1038 / 960,
  23586. bottom: 31.156 / 1068
  23587. }
  23588. },
  23589. back: {
  23590. height: math.unit(4.5, "meters"),
  23591. weight: math.unit(3200, "lb"),
  23592. name: "Back",
  23593. image: {
  23594. source: "./media/characters/ty/back.svg",
  23595. extra: 1044 / 966,
  23596. bottom: 7.48 / 1049
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(4.5, "meters"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23610. {
  23611. front: {
  23612. height: math.unit(5 + 4 / 12, "feet"),
  23613. weight: math.unit(115, "lb"),
  23614. name: "Front",
  23615. image: {
  23616. source: "./media/characters/rocky/front.svg",
  23617. extra: 1012 / 975,
  23618. bottom: 54 / 1066
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(5 + 4 / 12, "feet"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23632. {
  23633. upright: {
  23634. height: math.unit(6, "meters"),
  23635. weight: math.unit(4000, "kg"),
  23636. name: "Upright",
  23637. image: {
  23638. source: "./media/characters/ruin/upright.svg",
  23639. extra: 668 / 661,
  23640. bottom: 42 / 799.8396
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(6, "meters"),
  23648. default: true
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23654. {
  23655. front: {
  23656. height: math.unit(5, "feet"),
  23657. weight: math.unit(106, "lb"),
  23658. name: "Front",
  23659. image: {
  23660. source: "./media/characters/robin/front.svg",
  23661. extra: 862 / 799,
  23662. bottom: 42.4 / 914.8856
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(5, "feet"),
  23670. default: true
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23676. {
  23677. side: {
  23678. height: math.unit(3, "feet"),
  23679. weight: math.unit(225, "lb"),
  23680. name: "Side",
  23681. image: {
  23682. source: "./media/characters/saian/side.svg",
  23683. extra: 566 / 356,
  23684. bottom: 79.7 / 643
  23685. }
  23686. },
  23687. maw: {
  23688. height: math.unit(2.85, "feet"),
  23689. name: "Maw",
  23690. image: {
  23691. source: "./media/characters/saian/maw.svg"
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Normal",
  23698. height: math.unit(3, "feet"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23705. {
  23706. side: {
  23707. height: math.unit(8, "feet"),
  23708. weight: math.unit(300, "lb"),
  23709. name: "Side",
  23710. image: {
  23711. source: "./media/characters/equus-silvermane/side.svg",
  23712. extra: 2176 / 2050,
  23713. bottom: 65.7 / 2245
  23714. }
  23715. },
  23716. front: {
  23717. height: math.unit(8, "feet"),
  23718. weight: math.unit(300, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/equus-silvermane/front.svg",
  23722. extra: 4633 / 4400,
  23723. bottom: 71.3 / 4706.915
  23724. }
  23725. },
  23726. sideStepping: {
  23727. height: math.unit(8, "feet"),
  23728. weight: math.unit(300, "lb"),
  23729. name: "Side (Stepping)",
  23730. image: {
  23731. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23732. extra: 1968 / 1860,
  23733. bottom: 16.4 / 1989
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(8, "feet")
  23741. },
  23742. {
  23743. name: "Minimacro",
  23744. height: math.unit(75, "feet"),
  23745. default: true
  23746. },
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(150, "feet")
  23750. },
  23751. {
  23752. name: "Macro+",
  23753. height: math.unit(1000, "feet")
  23754. },
  23755. {
  23756. name: "Megamacro",
  23757. height: math.unit(1, "mile")
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23763. {
  23764. side: {
  23765. height: math.unit(20, "feet"),
  23766. weight: math.unit(30000, "kg"),
  23767. name: "Side",
  23768. image: {
  23769. source: "./media/characters/windar/side.svg",
  23770. extra: 1491 / 1248,
  23771. bottom: 82.56 / 1568
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(20, "feet"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23785. {
  23786. side: {
  23787. height: math.unit(15.66, "feet"),
  23788. weight: math.unit(150, "lb"),
  23789. name: "Side",
  23790. image: {
  23791. source: "./media/characters/melody/side.svg",
  23792. extra: 1097 / 944,
  23793. bottom: 11.8 / 1109
  23794. }
  23795. },
  23796. sideOutfit: {
  23797. height: math.unit(15.66, "feet"),
  23798. weight: math.unit(150, "lb"),
  23799. name: "Side (Outfit)",
  23800. image: {
  23801. source: "./media/characters/melody/side-outfit.svg",
  23802. extra: 1097 / 944,
  23803. bottom: 11.8 / 1109
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(15.66, "feet"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23817. {
  23818. armoredFront: {
  23819. height: math.unit(8, "feet"),
  23820. weight: math.unit(325, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/windera/armored-front.svg",
  23824. extra: 1830/1598,
  23825. bottom: 151/1981
  23826. },
  23827. form: "armored",
  23828. default: true
  23829. },
  23830. macroFront: {
  23831. height: math.unit(70, "feet"),
  23832. weight: math.unit(315453, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/windera/macro-front.svg",
  23836. extra: 963/883,
  23837. bottom: 23/986
  23838. },
  23839. form: "macro",
  23840. default: true
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(8, "feet"),
  23847. default: true,
  23848. form: "armored"
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(70, "feet"),
  23853. default: true,
  23854. form: "macro"
  23855. },
  23856. ],
  23857. {
  23858. "armored": {
  23859. name: "Armored",
  23860. default: true
  23861. },
  23862. "macro": {
  23863. name: "Macro",
  23864. },
  23865. }
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23869. {
  23870. front: {
  23871. height: math.unit(28.75, "feet"),
  23872. weight: math.unit(2000, "kg"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/sonear/front.svg",
  23876. extra: 1041.1 / 964.9,
  23877. bottom: 53.7 / 1096.6
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(28.75, "feet"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23891. {
  23892. side: {
  23893. height: math.unit(25.5, "feet"),
  23894. weight: math.unit(23000, "kg"),
  23895. name: "Side",
  23896. image: {
  23897. source: "./media/characters/kanara/side.svg"
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Normal",
  23904. height: math.unit(25.5, "feet"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23911. {
  23912. side: {
  23913. height: math.unit(10, "feet"),
  23914. weight: math.unit(1000, "kg"),
  23915. name: "Side",
  23916. image: {
  23917. source: "./media/characters/ereus/side.svg",
  23918. extra: 1157 / 959,
  23919. bottom: 153 / 1312.5
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Normal",
  23926. height: math.unit(10, "feet"),
  23927. default: true
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23933. {
  23934. side: {
  23935. height: math.unit(4.5, "feet"),
  23936. weight: math.unit(500, "lb"),
  23937. name: "Side",
  23938. image: {
  23939. source: "./media/characters/e-ter/side.svg",
  23940. extra: 1550 / 1248,
  23941. bottom: 146 / 1694
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(4.5, "feet"),
  23949. default: true
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23955. {
  23956. side: {
  23957. height: math.unit(9.7, "feet"),
  23958. weight: math.unit(4000, "kg"),
  23959. name: "Side",
  23960. image: {
  23961. source: "./media/characters/yamie/side.svg"
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(9.7, "feet"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23975. {
  23976. front: {
  23977. height: math.unit(50, "feet"),
  23978. weight: math.unit(50000, "kg"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/anders/front.svg",
  23982. extra: 570 / 539,
  23983. bottom: 14.7 / 586.7
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Large",
  23990. height: math.unit(50, "feet")
  23991. },
  23992. {
  23993. name: "Macro",
  23994. height: math.unit(2000, "feet"),
  23995. default: true
  23996. },
  23997. {
  23998. name: "Megamacro",
  23999. height: math.unit(12, "miles")
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(7 + 2 / 12, "feet"),
  24008. weight: math.unit(300, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/reban/front.svg",
  24012. extra: 1287/1212,
  24013. bottom: 148/1435
  24014. }
  24015. },
  24016. head: {
  24017. height: math.unit(1.95, "feet"),
  24018. name: "Head",
  24019. image: {
  24020. source: "./media/characters/reban/head.svg"
  24021. }
  24022. },
  24023. maw: {
  24024. height: math.unit(0.95, "feet"),
  24025. name: "Maw",
  24026. image: {
  24027. source: "./media/characters/reban/maw.svg"
  24028. }
  24029. },
  24030. foot: {
  24031. height: math.unit(1.65, "feet"),
  24032. name: "Foot",
  24033. image: {
  24034. source: "./media/characters/reban/foot.svg"
  24035. }
  24036. },
  24037. dick: {
  24038. height: math.unit(7 / 5, "feet"),
  24039. name: "Dick",
  24040. image: {
  24041. source: "./media/characters/reban/dick.svg"
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Natural Height",
  24048. height: math.unit(7 + 2 / 12, "feet")
  24049. },
  24050. {
  24051. name: "Macro",
  24052. height: math.unit(500, "feet"),
  24053. default: true
  24054. },
  24055. {
  24056. name: "Canon Height",
  24057. height: math.unit(50, "AU")
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(6, "feet"),
  24066. weight: math.unit(150, "lb"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/terrance-keayes/front.svg",
  24070. extra: 1.005,
  24071. bottom: 151 / 1615
  24072. }
  24073. },
  24074. side: {
  24075. height: math.unit(6, "feet"),
  24076. weight: math.unit(150, "lb"),
  24077. name: "Side",
  24078. image: {
  24079. source: "./media/characters/terrance-keayes/side.svg",
  24080. extra: 1.005,
  24081. bottom: 129.4 / 1544
  24082. }
  24083. },
  24084. back: {
  24085. height: math.unit(6, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Back",
  24088. image: {
  24089. source: "./media/characters/terrance-keayes/back.svg",
  24090. extra: 1.005,
  24091. bottom: 58.4 / 1557.3
  24092. }
  24093. },
  24094. dick: {
  24095. height: math.unit(6 * 0.208, "feet"),
  24096. name: "Dick",
  24097. image: {
  24098. source: "./media/characters/terrance-keayes/dick.svg"
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Canon Height",
  24105. height: math.unit(35, "miles"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24112. {
  24113. front: {
  24114. height: math.unit(6, "feet"),
  24115. weight: math.unit(150, "lb"),
  24116. name: "Front",
  24117. image: {
  24118. source: "./media/characters/ofelia/front.svg",
  24119. extra: 1130/1117,
  24120. bottom: 91/1221
  24121. }
  24122. },
  24123. back: {
  24124. height: math.unit(6, "feet"),
  24125. weight: math.unit(150, "lb"),
  24126. name: "Back",
  24127. image: {
  24128. source: "./media/characters/ofelia/back.svg",
  24129. extra: 1172/1159,
  24130. bottom: 28/1200
  24131. }
  24132. },
  24133. maw: {
  24134. height: math.unit(1, "feet"),
  24135. name: "Maw",
  24136. image: {
  24137. source: "./media/characters/ofelia/maw.svg"
  24138. }
  24139. },
  24140. foot: {
  24141. height: math.unit(1.949, "feet"),
  24142. name: "Foot",
  24143. image: {
  24144. source: "./media/characters/ofelia/foot.svg"
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Canon Height",
  24151. height: math.unit(2000, "miles"),
  24152. default: true
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(6, "feet"),
  24161. weight: math.unit(150, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/samuel/front.svg",
  24165. extra: 265 / 258,
  24166. bottom: 2 / 266.1566
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(100, "feet"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Full Size",
  24178. height: math.unit(1000, "miles")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(6, "feet"),
  24187. weight: math.unit(300, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/beishir-kiel/front.svg",
  24191. extra: 569 / 547,
  24192. bottom: 41.9 / 609
  24193. }
  24194. },
  24195. maw: {
  24196. height: math.unit(6 * 0.202, "feet"),
  24197. name: "Maw",
  24198. image: {
  24199. source: "./media/characters/beishir-kiel/maw.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(300, "feet"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(5 + 7/12, "feet"),
  24216. weight: math.unit(120, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/logan-grey/front.svg",
  24220. extra: 1836/1738,
  24221. bottom: 108/1944
  24222. }
  24223. },
  24224. back: {
  24225. height: math.unit(5 + 7/12, "feet"),
  24226. weight: math.unit(120, "lb"),
  24227. name: "Back",
  24228. image: {
  24229. source: "./media/characters/logan-grey/back.svg",
  24230. extra: 1880/1794,
  24231. bottom: 24/1904
  24232. }
  24233. },
  24234. frontSfw: {
  24235. height: math.unit(5 + 7/12, "feet"),
  24236. weight: math.unit(120, "lb"),
  24237. name: "Front (SFW)",
  24238. image: {
  24239. source: "./media/characters/logan-grey/front-sfw.svg",
  24240. extra: 1836/1738,
  24241. bottom: 108/1944
  24242. }
  24243. },
  24244. backSfw: {
  24245. height: math.unit(5 + 7/12, "feet"),
  24246. weight: math.unit(120, "lb"),
  24247. name: "Back (SFW)",
  24248. image: {
  24249. source: "./media/characters/logan-grey/back-sfw.svg",
  24250. extra: 1880/1794,
  24251. bottom: 24/1904
  24252. }
  24253. },
  24254. hands: {
  24255. height: math.unit(0.84, "feet"),
  24256. name: "Hands",
  24257. image: {
  24258. source: "./media/characters/logan-grey/hands.svg"
  24259. }
  24260. },
  24261. paws: {
  24262. height: math.unit(0.72, "feet"),
  24263. name: "Paws",
  24264. image: {
  24265. source: "./media/characters/logan-grey/paws.svg"
  24266. }
  24267. },
  24268. cock: {
  24269. height: math.unit(1.45, "feet"),
  24270. name: "Cock",
  24271. image: {
  24272. source: "./media/characters/logan-grey/cock.svg"
  24273. }
  24274. },
  24275. cockAlt: {
  24276. height: math.unit(1.437, "feet"),
  24277. name: "Cock (alt)",
  24278. image: {
  24279. source: "./media/characters/logan-grey/cock-alt.svg"
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(5 + 8 / 12, "feet")
  24287. },
  24288. {
  24289. name: "The 500 Foot Femboy",
  24290. height: math.unit(500, "feet"),
  24291. default: true
  24292. },
  24293. {
  24294. name: "Megmacro",
  24295. height: math.unit(20, "miles")
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(8 + 2 / 12, "feet"),
  24304. weight: math.unit(275, "lb"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/draganta/front.svg",
  24308. extra: 1177 / 1135,
  24309. bottom: 33.46 / 1212.1
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(8 + 6 / 12, "feet"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Macro",
  24321. height: math.unit(150, "feet")
  24322. },
  24323. {
  24324. name: "Megamacro",
  24325. height: math.unit(1000, "miles")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(1.72, "m"),
  24334. weight: math.unit(80, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/voski/front.svg",
  24338. extra: 2076.22 / 2022.4,
  24339. bottom: 102.7 / 2177.3866
  24340. }
  24341. },
  24342. frontFlaccid: {
  24343. height: math.unit(1.72, "m"),
  24344. weight: math.unit(80, "lb"),
  24345. name: "Front (Flaccid)",
  24346. image: {
  24347. source: "./media/characters/voski/front-flaccid.svg",
  24348. extra: 2076.22 / 2022.4,
  24349. bottom: 102.7 / 2177.3866
  24350. }
  24351. },
  24352. frontErect: {
  24353. height: math.unit(1.72, "m"),
  24354. weight: math.unit(80, "lb"),
  24355. name: "Front (Erect)",
  24356. image: {
  24357. source: "./media/characters/voski/front-erect.svg",
  24358. extra: 2076.22 / 2022.4,
  24359. bottom: 102.7 / 2177.3866
  24360. }
  24361. },
  24362. back: {
  24363. height: math.unit(1.72, "m"),
  24364. weight: math.unit(80, "lb"),
  24365. name: "Back",
  24366. image: {
  24367. source: "./media/characters/voski/back.svg",
  24368. extra: 2104 / 2051,
  24369. bottom: 10.45 / 2113.63
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(1.72, "m")
  24377. },
  24378. {
  24379. name: "Macro",
  24380. height: math.unit(55, "m"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Macro+",
  24385. height: math.unit(300, "m")
  24386. },
  24387. {
  24388. name: "Macro++",
  24389. height: math.unit(700, "m")
  24390. },
  24391. {
  24392. name: "Macro+++",
  24393. height: math.unit(4500, "m")
  24394. },
  24395. {
  24396. name: "Macro++++",
  24397. height: math.unit(45, "km")
  24398. },
  24399. {
  24400. name: "Macro+++++",
  24401. height: math.unit(1220, "km")
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(2.3, "m"),
  24410. weight: math.unit(304, "kg"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/icowom-lee/front.svg",
  24414. extra: 985 / 955,
  24415. bottom: 25.4 / 1012
  24416. }
  24417. },
  24418. fronttentacles: {
  24419. height: math.unit(2.3, "m"),
  24420. weight: math.unit(304, "kg"),
  24421. name: "Front-tentacles",
  24422. image: {
  24423. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24424. extra: 985 / 955,
  24425. bottom: 25.4 / 1012
  24426. }
  24427. },
  24428. back: {
  24429. height: math.unit(2.3, "m"),
  24430. weight: math.unit(304, "kg"),
  24431. name: "Back",
  24432. image: {
  24433. source: "./media/characters/icowom-lee/back.svg",
  24434. extra: 975 / 954,
  24435. bottom: 9.5 / 985
  24436. }
  24437. },
  24438. backtentacles: {
  24439. height: math.unit(2.3, "m"),
  24440. weight: math.unit(304, "kg"),
  24441. name: "Back-tentacles",
  24442. image: {
  24443. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24444. extra: 975 / 954,
  24445. bottom: 9.5 / 985
  24446. }
  24447. },
  24448. frontDressed: {
  24449. height: math.unit(2.3, "m"),
  24450. weight: math.unit(304, "kg"),
  24451. name: "Front (Dressed)",
  24452. image: {
  24453. source: "./media/characters/icowom-lee/front-dressed.svg",
  24454. extra: 3076 / 2933,
  24455. bottom: 51.4 / 3125.1889
  24456. }
  24457. },
  24458. rump: {
  24459. height: math.unit(0.776, "meters"),
  24460. name: "Rump",
  24461. image: {
  24462. source: "./media/characters/icowom-lee/rump.svg"
  24463. }
  24464. },
  24465. genitals: {
  24466. height: math.unit(0.78, "meters"),
  24467. name: "Genitals",
  24468. image: {
  24469. source: "./media/characters/icowom-lee/genitals.svg"
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(2.3, "meters"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(94, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(22, "meters"),
  24491. weight: math.unit(21000, "kg"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/shock-diamond/front.svg",
  24495. extra: 2204 / 2053,
  24496. bottom: 65 / 2239.47
  24497. }
  24498. },
  24499. frontNude: {
  24500. height: math.unit(22, "meters"),
  24501. weight: math.unit(21000, "kg"),
  24502. name: "Front (Nude)",
  24503. image: {
  24504. source: "./media/characters/shock-diamond/front-nude.svg",
  24505. extra: 2514 / 2285,
  24506. bottom: 13 / 2527.56
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(3, "meters")
  24514. },
  24515. {
  24516. name: "Macro",
  24517. height: math.unit(22, "meters"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(5 + 4/12, "feet"),
  24527. weight: math.unit(125, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/rory/front.svg",
  24531. extra: 1790/1681,
  24532. bottom: 66/1856
  24533. }
  24534. },
  24535. back: {
  24536. height: math.unit(5 + 4/12, "feet"),
  24537. weight: math.unit(125, "lb"),
  24538. name: "Back",
  24539. image: {
  24540. source: "./media/characters/rory/back.svg",
  24541. extra: 1805/1690,
  24542. bottom: 56/1861
  24543. }
  24544. },
  24545. frontDressed: {
  24546. height: math.unit(5 + 4/12, "feet"),
  24547. weight: math.unit(125, "lb"),
  24548. name: "Front (Dressed)",
  24549. image: {
  24550. source: "./media/characters/rory/front-dressed.svg",
  24551. extra: 1790/1681,
  24552. bottom: 66/1856
  24553. }
  24554. },
  24555. backDressed: {
  24556. height: math.unit(5 + 4/12, "feet"),
  24557. weight: math.unit(125, "lb"),
  24558. name: "Back (Dressed)",
  24559. image: {
  24560. source: "./media/characters/rory/back-dressed.svg",
  24561. extra: 1805/1690,
  24562. bottom: 56/1861
  24563. }
  24564. },
  24565. frontNsfw: {
  24566. height: math.unit(5 + 4/12, "feet"),
  24567. weight: math.unit(125, "lb"),
  24568. name: "Front (NSFW)",
  24569. image: {
  24570. source: "./media/characters/rory/front-nsfw.svg",
  24571. extra: 1790/1681,
  24572. bottom: 66/1856
  24573. }
  24574. },
  24575. backNsfw: {
  24576. height: math.unit(5 + 4/12, "feet"),
  24577. weight: math.unit(125, "lb"),
  24578. name: "Back (NSFW)",
  24579. image: {
  24580. source: "./media/characters/rory/back-nsfw.svg",
  24581. extra: 1805/1690,
  24582. bottom: 56/1861
  24583. }
  24584. },
  24585. dick: {
  24586. height: math.unit(0.8, "feet"),
  24587. name: "Dick",
  24588. image: {
  24589. source: "./media/characters/rory/dick.svg"
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Micro",
  24596. height: math.unit(3, "inches")
  24597. },
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(5 + 4/12, "feet"),
  24601. default: true
  24602. },
  24603. {
  24604. name: "Macro",
  24605. height: math.unit(90, "feet")
  24606. },
  24607. {
  24608. name: "Supercharged",
  24609. height: math.unit(270, "feet")
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(5 + 9 / 12, "feet"),
  24618. weight: math.unit(190, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/sprisk/front.svg",
  24622. extra: 1225 / 1180,
  24623. bottom: 42.7 / 1266.4
  24624. }
  24625. },
  24626. frontNsfw: {
  24627. height: math.unit(5 + 9 / 12, "feet"),
  24628. weight: math.unit(190, "lb"),
  24629. name: "Front (NSFW)",
  24630. image: {
  24631. source: "./media/characters/sprisk/front-nsfw.svg",
  24632. extra: 1225 / 1180,
  24633. bottom: 42.7 / 1266.4
  24634. }
  24635. },
  24636. back: {
  24637. height: math.unit(5 + 9 / 12, "feet"),
  24638. weight: math.unit(190, "lb"),
  24639. name: "Back",
  24640. image: {
  24641. source: "./media/characters/sprisk/back.svg",
  24642. extra: 1247 / 1200,
  24643. bottom: 5.6 / 1253.04
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Tiny",
  24650. height: math.unit(2, "inches")
  24651. },
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(5 + 9 / 12, "feet"),
  24655. default: true
  24656. },
  24657. {
  24658. name: "Mini Macro",
  24659. height: math.unit(18, "feet")
  24660. },
  24661. {
  24662. name: "Macro",
  24663. height: math.unit(100, "feet")
  24664. },
  24665. {
  24666. name: "MACRO",
  24667. height: math.unit(50, "miles")
  24668. },
  24669. {
  24670. name: "M A C R O",
  24671. height: math.unit(300, "miles")
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24677. {
  24678. side: {
  24679. height: math.unit(15.6, "meters"),
  24680. weight: math.unit(700000, "kg"),
  24681. name: "Side",
  24682. image: {
  24683. source: "./media/characters/bunsen/side.svg",
  24684. extra: 1644 / 358
  24685. }
  24686. },
  24687. foot: {
  24688. height: math.unit(1.611 * 1644 / 358, "meter"),
  24689. name: "Foot",
  24690. image: {
  24691. source: "./media/characters/bunsen/foot.svg"
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Small",
  24698. height: math.unit(10, "feet")
  24699. },
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(15.6, "meters"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(4 + 11 / 12, "feet"),
  24712. weight: math.unit(140, "lb"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/sesh/front.svg",
  24716. extra: 3420 / 3231,
  24717. bottom: 72 / 3949.5
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(4 + 11 / 12, "feet")
  24725. },
  24726. {
  24727. name: "Grown",
  24728. height: math.unit(15, "feet"),
  24729. default: true
  24730. },
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(1500, "feet")
  24734. },
  24735. {
  24736. name: "Megamacro",
  24737. height: math.unit(30, "miles")
  24738. },
  24739. {
  24740. name: "Continental",
  24741. height: math.unit(3000, "miles")
  24742. },
  24743. {
  24744. name: "Gravity Mass",
  24745. height: math.unit(300000, "miles")
  24746. },
  24747. {
  24748. name: "Planet Buster",
  24749. height: math.unit(30000000, "miles")
  24750. },
  24751. {
  24752. name: "Big",
  24753. height: math.unit(3000000000, "miles")
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(9, "feet"),
  24762. weight: math.unit(350, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/pepper/front.svg",
  24766. extra: 1448 / 1312,
  24767. bottom: 9.4 / 1457.88
  24768. }
  24769. },
  24770. back: {
  24771. height: math.unit(9, "feet"),
  24772. weight: math.unit(350, "lb"),
  24773. name: "Back",
  24774. image: {
  24775. source: "./media/characters/pepper/back.svg",
  24776. extra: 1423 / 1300,
  24777. bottom: 4.6 / 1429
  24778. }
  24779. },
  24780. maw: {
  24781. height: math.unit(0.932, "feet"),
  24782. name: "Maw",
  24783. image: {
  24784. source: "./media/characters/pepper/maw.svg"
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(9, "feet"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(6, "feet"),
  24801. weight: math.unit(150, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/maelstrom/front.svg",
  24805. extra: 2100 / 1883,
  24806. bottom: 94 / 2196.7
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Less Kaiju",
  24813. height: math.unit(200, "feet")
  24814. },
  24815. {
  24816. name: "Kaiju",
  24817. height: math.unit(400, "feet"),
  24818. default: true
  24819. },
  24820. {
  24821. name: "Kaiju-er",
  24822. height: math.unit(600, "feet")
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(6 + 5 / 12, "feet"),
  24831. weight: math.unit(180, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/lexir/front.svg",
  24835. extra: 180 / 172,
  24836. bottom: 12 / 192
  24837. }
  24838. },
  24839. back: {
  24840. height: math.unit(6 + 5 / 12, "feet"),
  24841. weight: math.unit(180, "lb"),
  24842. name: "Back",
  24843. image: {
  24844. source: "./media/characters/lexir/back.svg",
  24845. extra: 1273/1201,
  24846. bottom: 39/1312
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Very Smal",
  24853. height: math.unit(1, "nm")
  24854. },
  24855. {
  24856. name: "Normal",
  24857. height: math.unit(6 + 5 / 12, "feet"),
  24858. default: true
  24859. },
  24860. {
  24861. name: "Macro",
  24862. height: math.unit(1, "mile")
  24863. },
  24864. {
  24865. name: "Megamacro",
  24866. height: math.unit(50, "miles")
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(1.5, "meters"),
  24875. weight: math.unit(100, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/maksio/front.svg",
  24879. extra: 1549 / 1531,
  24880. bottom: 123.7 / 1674.5429
  24881. }
  24882. },
  24883. back: {
  24884. height: math.unit(1.5, "meters"),
  24885. weight: math.unit(100, "lb"),
  24886. name: "Back",
  24887. image: {
  24888. source: "./media/characters/maksio/back.svg",
  24889. extra: 1541 / 1509,
  24890. bottom: 97 / 1639
  24891. }
  24892. },
  24893. hand: {
  24894. height: math.unit(0.621, "feet"),
  24895. name: "Hand",
  24896. image: {
  24897. source: "./media/characters/maksio/hand.svg"
  24898. }
  24899. },
  24900. foot: {
  24901. height: math.unit(1.611, "feet"),
  24902. name: "Foot",
  24903. image: {
  24904. source: "./media/characters/maksio/foot.svg"
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Shrunken",
  24911. height: math.unit(10, "cm")
  24912. },
  24913. {
  24914. name: "Normal",
  24915. height: math.unit(150, "cm"),
  24916. default: true
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(100, "feet"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/erza-bear/front.svg",
  24928. extra: 2449 / 2390,
  24929. bottom: 46 / 2494
  24930. }
  24931. },
  24932. back: {
  24933. height: math.unit(100, "feet"),
  24934. name: "Back",
  24935. image: {
  24936. source: "./media/characters/erza-bear/back.svg",
  24937. extra: 2489 / 2430,
  24938. bottom: 85.4 / 2480
  24939. }
  24940. },
  24941. tail: {
  24942. height: math.unit(42, "feet"),
  24943. name: "Tail",
  24944. image: {
  24945. source: "./media/characters/erza-bear/tail.svg"
  24946. }
  24947. },
  24948. tongue: {
  24949. height: math.unit(8, "feet"),
  24950. name: "Tongue",
  24951. image: {
  24952. source: "./media/characters/erza-bear/tongue.svg"
  24953. }
  24954. },
  24955. dick: {
  24956. height: math.unit(10.5, "feet"),
  24957. name: "Dick",
  24958. image: {
  24959. source: "./media/characters/erza-bear/dick.svg"
  24960. }
  24961. },
  24962. dickVertical: {
  24963. height: math.unit(16.9, "feet"),
  24964. name: "Dick (Vertical)",
  24965. image: {
  24966. source: "./media/characters/erza-bear/dick-vertical.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Macro",
  24973. height: math.unit(100, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(172, "cm"),
  24983. weight: math.unit(73, "kg"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/violet-flor/front.svg",
  24987. extra: 1530 / 1442,
  24988. bottom: 61.9 / 1588.8
  24989. }
  24990. },
  24991. back: {
  24992. height: math.unit(180, "cm"),
  24993. weight: math.unit(73, "kg"),
  24994. name: "Back",
  24995. image: {
  24996. source: "./media/characters/violet-flor/back.svg",
  24997. extra: 1692 / 1630,
  24998. bottom: 20 / 1712
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(172, "cm"),
  25006. default: true
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25012. {
  25013. front: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(220, "lb"),
  25016. name: "Front",
  25017. image: {
  25018. source: "./media/characters/lynn-rhea/front.svg",
  25019. extra: 310 / 273
  25020. }
  25021. },
  25022. back: {
  25023. height: math.unit(6, "feet"),
  25024. weight: math.unit(220, "lb"),
  25025. name: "Back",
  25026. image: {
  25027. source: "./media/characters/lynn-rhea/back.svg",
  25028. extra: 310 / 273
  25029. }
  25030. },
  25031. dicks: {
  25032. height: math.unit(0.9, "feet"),
  25033. name: "Dicks",
  25034. image: {
  25035. source: "./media/characters/lynn-rhea/dicks.svg"
  25036. }
  25037. },
  25038. slit: {
  25039. height: math.unit(0.4, "feet"),
  25040. name: "Slit",
  25041. image: {
  25042. source: "./media/characters/lynn-rhea/slit.svg"
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Micro",
  25049. height: math.unit(1, "inch")
  25050. },
  25051. {
  25052. name: "Macro",
  25053. height: math.unit(60, "feet"),
  25054. default: true
  25055. },
  25056. {
  25057. name: "Megamacro",
  25058. height: math.unit(2, "miles")
  25059. },
  25060. {
  25061. name: "Gigamacro",
  25062. height: math.unit(3, "earths")
  25063. },
  25064. {
  25065. name: "Galactic",
  25066. height: math.unit(0.8, "galaxies")
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25072. {
  25073. front: {
  25074. height: math.unit(1600, "feet"),
  25075. weight: math.unit(85758785169, "kg"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/valathos/front.svg",
  25079. extra: 1451 / 1339
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(1600, "feet"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(7 + 5 / 12, "feet"),
  25096. weight: math.unit(300, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/azula/front.svg",
  25100. extra: 3208 / 2880,
  25101. bottom: 80.2 / 3277
  25102. }
  25103. },
  25104. back: {
  25105. height: math.unit(7 + 5 / 12, "feet"),
  25106. weight: math.unit(300, "lb"),
  25107. name: "Back",
  25108. image: {
  25109. source: "./media/characters/azula/back.svg",
  25110. extra: 3169 / 2822,
  25111. bottom: 150.6 / 3321
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(7 + 5 / 12, "feet"),
  25119. default: true
  25120. },
  25121. {
  25122. name: "Big",
  25123. height: math.unit(20, "feet")
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(5 + 1 / 12, "feet"),
  25132. weight: math.unit(110, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/rupert/front.svg",
  25136. extra: 1549 / 1495,
  25137. bottom: 54.2 / 1604.4
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(5 + 1 / 12, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25151. {
  25152. front: {
  25153. height: math.unit(8 + 4 / 12, "feet"),
  25154. weight: math.unit(350, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/sheera-castellar/front.svg",
  25158. extra: 1957 / 1894,
  25159. bottom: 26.97 / 1975.017
  25160. }
  25161. },
  25162. side: {
  25163. height: math.unit(8 + 4 / 12, "feet"),
  25164. weight: math.unit(350, "lb"),
  25165. name: "Side",
  25166. image: {
  25167. source: "./media/characters/sheera-castellar/side.svg",
  25168. extra: 1957 / 1894
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(8 + 4 / 12, "feet"),
  25173. weight: math.unit(350, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/sheera-castellar/back.svg",
  25177. extra: 1957 / 1894
  25178. }
  25179. },
  25180. angled: {
  25181. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25182. weight: math.unit(350, "lb"),
  25183. name: "Angled",
  25184. image: {
  25185. source: "./media/characters/sheera-castellar/angled.svg",
  25186. extra: 1807 / 1707,
  25187. bottom: 68 / 1875
  25188. }
  25189. },
  25190. genitals: {
  25191. height: math.unit(2.2, "feet"),
  25192. name: "Genitals",
  25193. image: {
  25194. source: "./media/characters/sheera-castellar/genitals.svg"
  25195. }
  25196. },
  25197. taur: {
  25198. height: math.unit(10 + 6/12, "feet"),
  25199. name: "Taur",
  25200. image: {
  25201. source: "./media/characters/sheera-castellar/taur.svg",
  25202. extra: 2017/1909,
  25203. bottom: 185/2202
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(8 + 4 / 12, "feet")
  25211. },
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(150, "feet"),
  25215. default: true
  25216. },
  25217. {
  25218. name: "Macro+",
  25219. height: math.unit(800, "feet")
  25220. },
  25221. ]
  25222. ))
  25223. characterMakers.push(() => makeCharacter(
  25224. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25225. {
  25226. front: {
  25227. height: math.unit(6, "feet"),
  25228. weight: math.unit(150, "lb"),
  25229. name: "Front",
  25230. image: {
  25231. source: "./media/characters/jaipur/front.svg",
  25232. extra: 3860 / 3731,
  25233. bottom: 287 / 4140
  25234. }
  25235. },
  25236. back: {
  25237. height: math.unit(6, "feet"),
  25238. weight: math.unit(150, "lb"),
  25239. name: "Back",
  25240. image: {
  25241. source: "./media/characters/jaipur/back.svg",
  25242. extra: 1637/1561,
  25243. bottom: 154/1791
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(1.85, "meters"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(150, "meters")
  25256. },
  25257. {
  25258. name: "Macro+",
  25259. height: math.unit(0.5, "miles")
  25260. },
  25261. {
  25262. name: "Macro++",
  25263. height: math.unit(2.5, "miles")
  25264. },
  25265. {
  25266. name: "Macro+++",
  25267. height: math.unit(12, "miles")
  25268. },
  25269. {
  25270. name: "Macro++++",
  25271. height: math.unit(120, "miles")
  25272. },
  25273. {
  25274. name: "Macro+++++",
  25275. height: math.unit(1200, "miles")
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25281. {
  25282. front: {
  25283. height: math.unit(6, "feet"),
  25284. weight: math.unit(150, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/sheila-wolf/front.svg",
  25288. extra: 1931 / 1808,
  25289. bottom: 29.5 / 1960
  25290. }
  25291. },
  25292. dick: {
  25293. height: math.unit(1.464, "feet"),
  25294. name: "Dick",
  25295. image: {
  25296. source: "./media/characters/sheila-wolf/dick.svg"
  25297. }
  25298. },
  25299. muzzle: {
  25300. height: math.unit(0.513, "feet"),
  25301. name: "Muzzle",
  25302. image: {
  25303. source: "./media/characters/sheila-wolf/muzzle.svg"
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(70, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(32, "meters"),
  25320. weight: math.unit(300000, "kg"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/almor/front.svg",
  25324. extra: 1408 / 1322,
  25325. bottom: 94.6 / 1506.5
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Macro",
  25332. height: math.unit(32, "meters"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(7, "feet"),
  25342. weight: math.unit(200, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/silver/front.svg",
  25346. extra: 472.1 / 450.5,
  25347. bottom: 26.5 / 499.424
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(7, "feet"),
  25355. default: true
  25356. },
  25357. {
  25358. name: "Macro",
  25359. height: math.unit(800, "feet")
  25360. },
  25361. {
  25362. name: "Megamacro",
  25363. height: math.unit(250, "miles")
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(6, "feet"),
  25372. weight: math.unit(150, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/pliskin/front.svg",
  25376. extra: 1469 / 1359,
  25377. bottom: 70 / 1540
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Micro",
  25384. height: math.unit(3, "inches")
  25385. },
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(5 + 11 / 12, "feet"),
  25389. default: true
  25390. },
  25391. {
  25392. name: "Macro",
  25393. height: math.unit(120, "feet")
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(6, "feet"),
  25402. weight: math.unit(150, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/sammy/front.svg",
  25406. extra: 1193 / 1089,
  25407. bottom: 30.5 / 1226
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Macro",
  25414. height: math.unit(1700, "feet"),
  25415. default: true
  25416. },
  25417. {
  25418. name: "Examacro",
  25419. height: math.unit(2.5e9, "lightyears")
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(21, "meters"),
  25428. weight: math.unit(12, "tonnes"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/kuru/front.svg",
  25432. extra: 4301 / 3785,
  25433. bottom: 371.3 / 4691
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Macro",
  25440. height: math.unit(21, "meters"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(23, "meters"),
  25450. weight: math.unit(12.2, "tonnes"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/rakka/front.svg",
  25454. extra: 4670 / 4169,
  25455. bottom: 301 / 4968.7
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Macro",
  25462. height: math.unit(23, "meters"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(6, "feet"),
  25472. weight: math.unit(150, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/rhys-feline/front.svg",
  25476. extra: 2488 / 2308,
  25477. bottom: 35.67 / 2519.19
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Really Small",
  25484. height: math.unit(1, "nm")
  25485. },
  25486. {
  25487. name: "Micro",
  25488. height: math.unit(4, "inches")
  25489. },
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(4 + 10 / 12, "feet"),
  25493. default: true
  25494. },
  25495. {
  25496. name: "Macro",
  25497. height: math.unit(100, "feet")
  25498. },
  25499. {
  25500. name: "Megamacto",
  25501. height: math.unit(50, "miles")
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25507. {
  25508. side: {
  25509. height: math.unit(30, "feet"),
  25510. weight: math.unit(35000, "kg"),
  25511. name: "Side",
  25512. image: {
  25513. source: "./media/characters/alydar/side.svg",
  25514. extra: 234 / 222,
  25515. bottom: 6.5 / 241
  25516. }
  25517. },
  25518. front: {
  25519. height: math.unit(30, "feet"),
  25520. weight: math.unit(35000, "kg"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/alydar/front.svg",
  25524. extra: 223.37 / 210.2,
  25525. bottom: 22.3 / 246.76
  25526. }
  25527. },
  25528. top: {
  25529. height: math.unit(64.54, "feet"),
  25530. weight: math.unit(35000, "kg"),
  25531. name: "Top",
  25532. image: {
  25533. source: "./media/characters/alydar/top.svg"
  25534. }
  25535. },
  25536. anthro: {
  25537. height: math.unit(30, "feet"),
  25538. weight: math.unit(9000, "kg"),
  25539. name: "Anthro",
  25540. image: {
  25541. source: "./media/characters/alydar/anthro.svg",
  25542. extra: 432 / 421,
  25543. bottom: 7.18 / 440
  25544. }
  25545. },
  25546. maw: {
  25547. height: math.unit(11.693, "feet"),
  25548. name: "Maw",
  25549. image: {
  25550. source: "./media/characters/alydar/maw.svg"
  25551. }
  25552. },
  25553. head: {
  25554. height: math.unit(11.693, "feet"),
  25555. name: "Head",
  25556. image: {
  25557. source: "./media/characters/alydar/head.svg"
  25558. }
  25559. },
  25560. headAlt: {
  25561. height: math.unit(12.861, "feet"),
  25562. name: "Head (Alt)",
  25563. image: {
  25564. source: "./media/characters/alydar/head-alt.svg"
  25565. }
  25566. },
  25567. wing: {
  25568. height: math.unit(20.712, "feet"),
  25569. name: "Wing",
  25570. image: {
  25571. source: "./media/characters/alydar/wing.svg"
  25572. }
  25573. },
  25574. wingFeather: {
  25575. height: math.unit(9.662, "feet"),
  25576. name: "Wing Feather",
  25577. image: {
  25578. source: "./media/characters/alydar/wing-feather.svg"
  25579. }
  25580. },
  25581. countourFeather: {
  25582. height: math.unit(4.154, "feet"),
  25583. name: "Contour Feather",
  25584. image: {
  25585. source: "./media/characters/alydar/contour-feather.svg"
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Diplomatic",
  25592. height: math.unit(13, "feet"),
  25593. default: true
  25594. },
  25595. {
  25596. name: "Small",
  25597. height: math.unit(30, "feet")
  25598. },
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(95, "feet"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Large",
  25606. height: math.unit(285, "feet")
  25607. },
  25608. {
  25609. name: "Incomprehensible",
  25610. height: math.unit(450, "megameters")
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25616. {
  25617. side: {
  25618. height: math.unit(11, "feet"),
  25619. weight: math.unit(1750, "kg"),
  25620. name: "Side",
  25621. image: {
  25622. source: "./media/characters/selicia/side.svg",
  25623. extra: 440 / 396,
  25624. bottom: 24.8 / 465.979
  25625. }
  25626. },
  25627. maw: {
  25628. height: math.unit(4.665, "feet"),
  25629. name: "Maw",
  25630. image: {
  25631. source: "./media/characters/selicia/maw.svg"
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(11, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25645. {
  25646. side: {
  25647. height: math.unit(2 + 6 / 12, "feet"),
  25648. weight: math.unit(30, "lb"),
  25649. name: "Side",
  25650. image: {
  25651. source: "./media/characters/layla/side.svg",
  25652. extra: 244 / 188,
  25653. bottom: 18.2 / 262.1
  25654. }
  25655. },
  25656. back: {
  25657. height: math.unit(2 + 6 / 12, "feet"),
  25658. weight: math.unit(30, "lb"),
  25659. name: "Back",
  25660. image: {
  25661. source: "./media/characters/layla/back.svg",
  25662. extra: 308 / 241.5,
  25663. bottom: 8.9 / 316.8
  25664. }
  25665. },
  25666. cumming: {
  25667. height: math.unit(2 + 6 / 12, "feet"),
  25668. weight: math.unit(30, "lb"),
  25669. name: "Cumming",
  25670. image: {
  25671. source: "./media/characters/layla/cumming.svg",
  25672. extra: 342 / 279,
  25673. bottom: 595 / 938
  25674. }
  25675. },
  25676. dickFlaccid: {
  25677. height: math.unit(2.595, "feet"),
  25678. name: "Flaccid Genitals",
  25679. image: {
  25680. source: "./media/characters/layla/dick-flaccid.svg"
  25681. }
  25682. },
  25683. dickErect: {
  25684. height: math.unit(2.359, "feet"),
  25685. name: "Erect Genitals",
  25686. image: {
  25687. source: "./media/characters/layla/dick-erect.svg"
  25688. }
  25689. },
  25690. dragon: {
  25691. height: math.unit(40, "feet"),
  25692. name: "Dragon",
  25693. image: {
  25694. source: "./media/characters/layla/dragon.svg",
  25695. extra: 610/535,
  25696. bottom: 367/977
  25697. }
  25698. },
  25699. taur: {
  25700. height: math.unit(30, "feet"),
  25701. name: "Taur",
  25702. image: {
  25703. source: "./media/characters/layla/taur.svg",
  25704. extra: 1268/1199,
  25705. bottom: 112/1380
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Micro",
  25712. height: math.unit(1, "inch")
  25713. },
  25714. {
  25715. name: "Small",
  25716. height: math.unit(1, "foot")
  25717. },
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(2 + 6 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Macro",
  25725. height: math.unit(200, "feet")
  25726. },
  25727. {
  25728. name: "Megamacro",
  25729. height: math.unit(1000, "miles")
  25730. },
  25731. {
  25732. name: "Planetary",
  25733. height: math.unit(8000, "miles")
  25734. },
  25735. {
  25736. name: "True Layla",
  25737. height: math.unit(200000 * 7, "multiverses")
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25743. {
  25744. back: {
  25745. height: math.unit(10.5, "feet"),
  25746. weight: math.unit(800, "lb"),
  25747. name: "Back",
  25748. image: {
  25749. source: "./media/characters/knox/back.svg",
  25750. extra: 1486 / 1089,
  25751. bottom: 107 / 1601.4
  25752. }
  25753. },
  25754. side: {
  25755. height: math.unit(10.5, "feet"),
  25756. weight: math.unit(800, "lb"),
  25757. name: "Side",
  25758. image: {
  25759. source: "./media/characters/knox/side.svg",
  25760. extra: 244 / 218,
  25761. bottom: 14 / 260
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Compact",
  25768. height: math.unit(10.5, "feet"),
  25769. default: true
  25770. },
  25771. {
  25772. name: "Dynamax",
  25773. height: math.unit(210, "feet")
  25774. },
  25775. {
  25776. name: "Full Macro",
  25777. height: math.unit(850, "feet")
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(28, "feet"),
  25786. weight: math.unit(10500, "lb"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/kayda/front.svg",
  25790. extra: 1536 / 1428,
  25791. bottom: 68.7 / 1603
  25792. }
  25793. },
  25794. back: {
  25795. height: math.unit(28, "feet"),
  25796. weight: math.unit(10500, "lb"),
  25797. name: "Back",
  25798. image: {
  25799. source: "./media/characters/kayda/back.svg",
  25800. extra: 1557 / 1464,
  25801. bottom: 39.5 / 1597.49
  25802. }
  25803. },
  25804. dick: {
  25805. height: math.unit(3.858, "feet"),
  25806. name: "Dick",
  25807. image: {
  25808. source: "./media/characters/kayda/dick.svg"
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Macro",
  25815. height: math.unit(28, "feet"),
  25816. default: true
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(10 + 11 / 12, "feet"),
  25825. weight: math.unit(1400, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/brian/front.svg",
  25829. extra: 737 / 692,
  25830. bottom: 55.4 / 785
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Normal",
  25837. height: math.unit(10 + 11 / 12, "feet"),
  25838. default: true
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25844. {
  25845. front: {
  25846. height: math.unit(5 + 8 / 12, "feet"),
  25847. weight: math.unit(140, "lb"),
  25848. name: "Front",
  25849. image: {
  25850. source: "./media/characters/khemri/front.svg",
  25851. extra: 4780 / 4059,
  25852. bottom: 80.1 / 4859.25
  25853. }
  25854. },
  25855. },
  25856. [
  25857. {
  25858. name: "Micro",
  25859. height: math.unit(6, "inches")
  25860. },
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(5 + 8 / 12, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25870. {
  25871. front: {
  25872. height: math.unit(13, "feet"),
  25873. weight: math.unit(1700, "lb"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/felix-braveheart/front.svg",
  25877. extra: 1222 / 1157,
  25878. bottom: 53.2 / 1280
  25879. }
  25880. },
  25881. back: {
  25882. height: math.unit(13, "feet"),
  25883. weight: math.unit(1700, "lb"),
  25884. name: "Back",
  25885. image: {
  25886. source: "./media/characters/felix-braveheart/back.svg",
  25887. extra: 1277 / 1203,
  25888. bottom: 50.2 / 1327
  25889. }
  25890. },
  25891. feral: {
  25892. height: math.unit(6, "feet"),
  25893. weight: math.unit(400, "lb"),
  25894. name: "Feral",
  25895. image: {
  25896. source: "./media/characters/felix-braveheart/feral.svg",
  25897. extra: 682 / 625,
  25898. bottom: 6.9 / 688
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(13, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25912. {
  25913. side: {
  25914. height: math.unit(5 + 11 / 12, "feet"),
  25915. weight: math.unit(1400, "lb"),
  25916. name: "Side",
  25917. image: {
  25918. source: "./media/characters/shadow-blade/side.svg",
  25919. extra: 1726 / 1267,
  25920. bottom: 58.4 / 1785
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(5 + 11 / 12, "feet"),
  25928. default: true
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(1 + 6 / 12, "feet"),
  25937. weight: math.unit(25, "lb"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/karla-halldor/front.svg",
  25941. extra: 1459 / 1383,
  25942. bottom: 12 / 1472
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(1 + 6 / 12, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(6 + 2 / 12, "feet"),
  25959. weight: math.unit(160, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/ariam/front.svg",
  25963. extra: 1073/976,
  25964. bottom: 52/1125
  25965. }
  25966. },
  25967. back: {
  25968. height: math.unit(6 + 2/12, "feet"),
  25969. weight: math.unit(160, "lb"),
  25970. name: "Back",
  25971. image: {
  25972. source: "./media/characters/ariam/back.svg",
  25973. extra: 1103/1023,
  25974. bottom: 9/1112
  25975. }
  25976. },
  25977. dressed: {
  25978. height: math.unit(6 + 2/12, "feet"),
  25979. weight: math.unit(160, "lb"),
  25980. name: "Dressed",
  25981. image: {
  25982. source: "./media/characters/ariam/dressed.svg",
  25983. extra: 1099/1009,
  25984. bottom: 25/1124
  25985. }
  25986. },
  25987. squatting: {
  25988. height: math.unit(4.1, "feet"),
  25989. weight: math.unit(160, "lb"),
  25990. name: "Squatting",
  25991. image: {
  25992. source: "./media/characters/ariam/squatting.svg",
  25993. extra: 2617 / 2112,
  25994. bottom: 61.2 / 2681,
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(6 + 2 / 12, "feet"),
  26002. default: true
  26003. },
  26004. {
  26005. name: "Normal+",
  26006. height: math.unit(4, "meters")
  26007. },
  26008. {
  26009. name: "Macro",
  26010. height: math.unit(50, "meters")
  26011. },
  26012. {
  26013. name: "Macro+",
  26014. height: math.unit(100, "meters")
  26015. },
  26016. {
  26017. name: "Megamacro",
  26018. height: math.unit(20, "km")
  26019. },
  26020. {
  26021. name: "Caretaker",
  26022. height: math.unit(444, "megameters")
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(1.67, "meters"),
  26031. weight: math.unit(140, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26035. extra: 438 / 410,
  26036. bottom: 0.75 / 439
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Shrunken",
  26043. height: math.unit(7.6, "cm")
  26044. },
  26045. {
  26046. name: "Human Scale",
  26047. height: math.unit(1.67, "meters")
  26048. },
  26049. {
  26050. name: "Wolxi Scale",
  26051. height: math.unit(36.7, "meters"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(1.73, "meters"),
  26061. weight: math.unit(240, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/izue-two-mothers/front.svg",
  26065. extra: 469 / 437,
  26066. bottom: 1.24 / 470.6
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Shrunken",
  26073. height: math.unit(7.86, "cm")
  26074. },
  26075. {
  26076. name: "Human Scale",
  26077. height: math.unit(1.73, "meters")
  26078. },
  26079. {
  26080. name: "Wolxi Scale",
  26081. height: math.unit(38, "meters"),
  26082. default: true
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(1.55, "meters"),
  26091. weight: math.unit(120, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/teeku-love-shack/front.svg",
  26095. extra: 387 / 362,
  26096. bottom: 1.51 / 388
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Shrunken",
  26103. height: math.unit(7, "cm")
  26104. },
  26105. {
  26106. name: "Human Scale",
  26107. height: math.unit(1.55, "meters")
  26108. },
  26109. {
  26110. name: "Wolxi Scale",
  26111. height: math.unit(34.1, "meters"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(1.83, "meters"),
  26121. weight: math.unit(135, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/dejma-the-red/front.svg",
  26125. extra: 480 / 458,
  26126. bottom: 1.8 / 482
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Shrunken",
  26133. height: math.unit(8.3, "cm")
  26134. },
  26135. {
  26136. name: "Human Scale",
  26137. height: math.unit(1.83, "meters")
  26138. },
  26139. {
  26140. name: "Wolxi Scale",
  26141. height: math.unit(40, "meters"),
  26142. default: true
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(1.78, "meters"),
  26151. weight: math.unit(65, "kg"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/aki/front.svg",
  26155. extra: 452 / 415
  26156. }
  26157. },
  26158. frontNsfw: {
  26159. height: math.unit(1.78, "meters"),
  26160. weight: math.unit(65, "kg"),
  26161. name: "Front (NSFW)",
  26162. image: {
  26163. source: "./media/characters/aki/front-nsfw.svg",
  26164. extra: 452 / 415
  26165. }
  26166. },
  26167. back: {
  26168. height: math.unit(1.78, "meters"),
  26169. weight: math.unit(65, "kg"),
  26170. name: "Back",
  26171. image: {
  26172. source: "./media/characters/aki/back.svg",
  26173. extra: 452 / 415
  26174. }
  26175. },
  26176. rump: {
  26177. height: math.unit(2.05, "feet"),
  26178. name: "Rump",
  26179. image: {
  26180. source: "./media/characters/aki/rump.svg"
  26181. }
  26182. },
  26183. dick: {
  26184. height: math.unit(0.95, "feet"),
  26185. name: "Dick",
  26186. image: {
  26187. source: "./media/characters/aki/dick.svg"
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Micro",
  26194. height: math.unit(15, "cm")
  26195. },
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(178, "cm"),
  26199. default: true
  26200. },
  26201. {
  26202. name: "Macro",
  26203. height: math.unit(214, "m")
  26204. },
  26205. {
  26206. name: "Macro+",
  26207. height: math.unit(534, "m")
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(5 + 5 / 12, "feet"),
  26216. weight: math.unit(120, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/ari/front.svg",
  26220. extra: 1550/1471,
  26221. bottom: 39/1589
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5 + 5 / 12, "feet")
  26229. },
  26230. {
  26231. name: "Macro",
  26232. height: math.unit(100, "feet"),
  26233. default: true
  26234. },
  26235. {
  26236. name: "Megamacro",
  26237. height: math.unit(100, "miles")
  26238. },
  26239. {
  26240. name: "Gigamacro",
  26241. height: math.unit(80000, "miles")
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26247. {
  26248. side: {
  26249. height: math.unit(9, "feet"),
  26250. weight: math.unit(400, "kg"),
  26251. name: "Side",
  26252. image: {
  26253. source: "./media/characters/bolt/side.svg",
  26254. extra: 1126 / 896,
  26255. bottom: 60 / 1187.3,
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Micro",
  26262. height: math.unit(5, "inches")
  26263. },
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(9, "feet"),
  26267. default: true
  26268. },
  26269. {
  26270. name: "Macro",
  26271. height: math.unit(700, "feet")
  26272. },
  26273. {
  26274. name: "Max Size",
  26275. height: math.unit(1.52e22, "yottameters")
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(4.3, "meters"),
  26284. weight: math.unit(3, "tons"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/draekon-sylviar/front.svg",
  26288. extra: 2072/1512,
  26289. bottom: 74/2146
  26290. }
  26291. },
  26292. back: {
  26293. height: math.unit(4.3, "meters"),
  26294. weight: math.unit(3, "tons"),
  26295. name: "Back",
  26296. image: {
  26297. source: "./media/characters/draekon-sylviar/back.svg",
  26298. extra: 1639/1483,
  26299. bottom: 41/1680
  26300. }
  26301. },
  26302. feral: {
  26303. height: math.unit(1.15, "meters"),
  26304. weight: math.unit(3, "tons"),
  26305. name: "Feral",
  26306. image: {
  26307. source: "./media/characters/draekon-sylviar/feral.svg",
  26308. extra: 1033/395,
  26309. bottom: 130/1163
  26310. }
  26311. },
  26312. maw: {
  26313. height: math.unit(1.3, "meters"),
  26314. name: "Maw",
  26315. image: {
  26316. source: "./media/characters/draekon-sylviar/maw.svg"
  26317. }
  26318. },
  26319. mawSeparated: {
  26320. height: math.unit(1.53, "meters"),
  26321. name: "Separated Maw",
  26322. image: {
  26323. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26324. }
  26325. },
  26326. tail: {
  26327. height: math.unit(1.15, "meters"),
  26328. name: "Tail",
  26329. image: {
  26330. source: "./media/characters/draekon-sylviar/tail.svg"
  26331. }
  26332. },
  26333. tailDick: {
  26334. height: math.unit(1.15, "meters"),
  26335. name: "Tail (Dick)",
  26336. image: {
  26337. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26338. }
  26339. },
  26340. tailDickSeparated: {
  26341. height: math.unit(1.19, "meters"),
  26342. name: "Tail (Separated Dick)",
  26343. image: {
  26344. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26345. }
  26346. },
  26347. slit: {
  26348. height: math.unit(1, "meters"),
  26349. name: "Slit",
  26350. image: {
  26351. source: "./media/characters/draekon-sylviar/slit.svg"
  26352. }
  26353. },
  26354. dick: {
  26355. height: math.unit(1.15, "meters"),
  26356. name: "Dick",
  26357. image: {
  26358. source: "./media/characters/draekon-sylviar/dick.svg"
  26359. }
  26360. },
  26361. dickSeparated: {
  26362. height: math.unit(1.1, "meters"),
  26363. name: "Separated Dick",
  26364. image: {
  26365. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26366. }
  26367. },
  26368. sheath: {
  26369. height: math.unit(1.15, "meters"),
  26370. name: "Sheath",
  26371. image: {
  26372. source: "./media/characters/draekon-sylviar/sheath.svg"
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Small",
  26379. height: math.unit(4.53 / 2, "meters"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(4.53, "meters"),
  26385. default: true
  26386. },
  26387. {
  26388. name: "Large",
  26389. height: math.unit(4.53 * 2, "meters"),
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(6 + 2 / 12, "feet"),
  26398. weight: math.unit(180, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/brawler/front.svg",
  26402. extra: 3301 / 3027,
  26403. bottom: 138 / 3439
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(6 + 2 / 12, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(11, "feet"),
  26420. weight: math.unit(1000, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/alex/front.svg",
  26424. bottom: 44.5 / 620
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Micro",
  26431. height: math.unit(5, "inches")
  26432. },
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(11, "feet"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Macro",
  26440. height: math.unit(9.5e9, "feet")
  26441. },
  26442. {
  26443. name: "Max Size",
  26444. height: math.unit(1.4e283, "yottameters")
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26450. {
  26451. female: {
  26452. height: math.unit(29.9, "m"),
  26453. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26454. name: "Female",
  26455. image: {
  26456. source: "./media/characters/zenari/female.svg",
  26457. extra: 3281.6 / 3217,
  26458. bottom: 72.2 / 3353
  26459. }
  26460. },
  26461. male: {
  26462. height: math.unit(27.7, "m"),
  26463. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26464. name: "Male",
  26465. image: {
  26466. source: "./media/characters/zenari/male.svg",
  26467. extra: 3008 / 2991,
  26468. bottom: 54.6 / 3069
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(29.7, "meters"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26482. {
  26483. female: {
  26484. height: math.unit(23.8, "m"),
  26485. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26486. name: "Female",
  26487. image: {
  26488. source: "./media/characters/mactarian/female.svg",
  26489. extra: 2662 / 2569,
  26490. bottom: 73 / 2736
  26491. }
  26492. },
  26493. male: {
  26494. height: math.unit(23.8, "m"),
  26495. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26496. name: "Male",
  26497. image: {
  26498. source: "./media/characters/mactarian/male.svg",
  26499. extra: 2673 / 2600,
  26500. bottom: 76 / 2750
  26501. }
  26502. },
  26503. },
  26504. [
  26505. {
  26506. name: "Macro",
  26507. height: math.unit(23.8, "meters"),
  26508. default: true
  26509. },
  26510. ]
  26511. ))
  26512. characterMakers.push(() => makeCharacter(
  26513. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26514. {
  26515. female: {
  26516. height: math.unit(19.3, "m"),
  26517. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26518. name: "Female",
  26519. image: {
  26520. source: "./media/characters/umok/female.svg",
  26521. extra: 2186 / 2078,
  26522. bottom: 87 / 2277
  26523. }
  26524. },
  26525. male: {
  26526. height: math.unit(19.5, "m"),
  26527. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26528. name: "Male",
  26529. image: {
  26530. source: "./media/characters/umok/male.svg",
  26531. extra: 2233 / 2140,
  26532. bottom: 24.4 / 2258
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(19.3, "meters"),
  26540. default: true
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26546. {
  26547. female: {
  26548. height: math.unit(26.15, "m"),
  26549. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26550. name: "Female",
  26551. image: {
  26552. source: "./media/characters/joraxian/female.svg",
  26553. extra: 2912 / 2824,
  26554. bottom: 36 / 2956
  26555. }
  26556. },
  26557. male: {
  26558. height: math.unit(25.4, "m"),
  26559. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26560. name: "Male",
  26561. image: {
  26562. source: "./media/characters/joraxian/male.svg",
  26563. extra: 2877 / 2721,
  26564. bottom: 82 / 2967
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Macro",
  26571. height: math.unit(26.15, "meters"),
  26572. default: true
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26578. {
  26579. female: {
  26580. height: math.unit(21.6, "m"),
  26581. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26582. name: "Female",
  26583. image: {
  26584. source: "./media/characters/sthara/female.svg",
  26585. extra: 2516 / 2347,
  26586. bottom: 21.5 / 2537
  26587. }
  26588. },
  26589. male: {
  26590. height: math.unit(24, "m"),
  26591. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26592. name: "Male",
  26593. image: {
  26594. source: "./media/characters/sthara/male.svg",
  26595. extra: 2732 / 2607,
  26596. bottom: 23 / 2732
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Macro",
  26603. height: math.unit(21.6, "meters"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(6 + 4 / 12, "feet"),
  26613. weight: math.unit(175, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/luka-bryzant/front.svg",
  26617. extra: 311 / 289,
  26618. bottom: 4 / 315
  26619. }
  26620. },
  26621. back: {
  26622. height: math.unit(6 + 4 / 12, "feet"),
  26623. weight: math.unit(175, "lb"),
  26624. name: "Back",
  26625. image: {
  26626. source: "./media/characters/luka-bryzant/back.svg",
  26627. extra: 311 / 289,
  26628. bottom: 3.8 / 313.7
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Micro",
  26635. height: math.unit(10, "inches")
  26636. },
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(6 + 4 / 12, "feet"),
  26640. default: true
  26641. },
  26642. {
  26643. name: "Large",
  26644. height: math.unit(12, "feet")
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(5 + 7 / 12, "feet"),
  26653. weight: math.unit(185, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/aman-aquila/front.svg",
  26657. extra: 1013 / 976,
  26658. bottom: 45.6 / 1057
  26659. }
  26660. },
  26661. side: {
  26662. height: math.unit(5 + 7 / 12, "feet"),
  26663. weight: math.unit(185, "lb"),
  26664. name: "Side",
  26665. image: {
  26666. source: "./media/characters/aman-aquila/side.svg",
  26667. extra: 1054 / 1011,
  26668. bottom: 15 / 1070
  26669. }
  26670. },
  26671. back: {
  26672. height: math.unit(5 + 7 / 12, "feet"),
  26673. weight: math.unit(185, "lb"),
  26674. name: "Back",
  26675. image: {
  26676. source: "./media/characters/aman-aquila/back.svg",
  26677. extra: 1026 / 970,
  26678. bottom: 12 / 1039
  26679. }
  26680. },
  26681. head: {
  26682. height: math.unit(1.211, "feet"),
  26683. name: "Head",
  26684. image: {
  26685. source: "./media/characters/aman-aquila/head.svg",
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Minimicro",
  26692. height: math.unit(0.057, "inches")
  26693. },
  26694. {
  26695. name: "Micro",
  26696. height: math.unit(7, "inches")
  26697. },
  26698. {
  26699. name: "Mini",
  26700. height: math.unit(3 + 7 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(5 + 7 / 12, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Macro",
  26709. height: math.unit(157 + 7 / 12, "feet")
  26710. },
  26711. {
  26712. name: "Megamacro",
  26713. height: math.unit(1557 + 7 / 12, "feet")
  26714. },
  26715. {
  26716. name: "Gigamacro",
  26717. height: math.unit(15557 + 7 / 12, "feet")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(3 + 2 / 12, "inches"),
  26726. weight: math.unit(0.3, "ounces"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/hiphae/front.svg",
  26730. extra: 1931 / 1683,
  26731. bottom: 24 / 1955
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(3 + 1 / 2, "inches"),
  26739. default: true
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(5 + 10 / 12, "feet"),
  26748. weight: math.unit(165, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/nicky/front.svg",
  26752. extra: 3144 / 2886,
  26753. bottom: 45.6 / 3192
  26754. }
  26755. },
  26756. back: {
  26757. height: math.unit(5 + 10 / 12, "feet"),
  26758. weight: math.unit(165, "lb"),
  26759. name: "Back",
  26760. image: {
  26761. source: "./media/characters/nicky/back.svg",
  26762. extra: 3055 / 2804,
  26763. bottom: 28.4 / 3087
  26764. }
  26765. },
  26766. frontclothed: {
  26767. height: math.unit(5 + 10 / 12, "feet"),
  26768. weight: math.unit(165, "lb"),
  26769. name: "Front-clothed",
  26770. image: {
  26771. source: "./media/characters/nicky/front-clothed.svg",
  26772. extra: 3184.9 / 2926.9,
  26773. bottom: 86.5 / 3239.9
  26774. }
  26775. },
  26776. foot: {
  26777. height: math.unit(1.16, "feet"),
  26778. name: "Foot",
  26779. image: {
  26780. source: "./media/characters/nicky/foot.svg"
  26781. }
  26782. },
  26783. feet: {
  26784. height: math.unit(1.34, "feet"),
  26785. name: "Feet",
  26786. image: {
  26787. source: "./media/characters/nicky/feet.svg"
  26788. }
  26789. },
  26790. maw: {
  26791. height: math.unit(0.9, "feet"),
  26792. name: "Maw",
  26793. image: {
  26794. source: "./media/characters/nicky/maw.svg"
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(5 + 10 / 12, "feet"),
  26802. default: true
  26803. },
  26804. {
  26805. name: "Macro",
  26806. height: math.unit(60, "feet")
  26807. },
  26808. {
  26809. name: "Megamacro",
  26810. height: math.unit(1, "mile")
  26811. },
  26812. ]
  26813. ))
  26814. characterMakers.push(() => makeCharacter(
  26815. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26816. {
  26817. side: {
  26818. height: math.unit(10, "feet"),
  26819. weight: math.unit(600, "lb"),
  26820. name: "Side",
  26821. image: {
  26822. source: "./media/characters/blair/side.svg",
  26823. bottom: 16.6 / 475,
  26824. extra: 458 / 431
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Micro",
  26831. height: math.unit(8, "inches")
  26832. },
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(10, "feet"),
  26836. default: true
  26837. },
  26838. {
  26839. name: "Macro",
  26840. height: math.unit(180, "feet")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(5 + 4 / 12, "feet"),
  26849. weight: math.unit(125, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/fisher/front.svg",
  26853. extra: 444 / 390,
  26854. bottom: 2 / 444.8
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Micro",
  26861. height: math.unit(4, "inches")
  26862. },
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(5 + 4 / 12, "feet"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Macro",
  26870. height: math.unit(100, "feet")
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(6.71, "feet"),
  26879. weight: math.unit(200, "lb"),
  26880. preyCapacity: math.unit(1000000, "people"),
  26881. name: "Front",
  26882. image: {
  26883. source: "./media/characters/gliss/front.svg",
  26884. extra: 2347 / 2231,
  26885. bottom: 113 / 2462
  26886. }
  26887. },
  26888. hammerspaceSize: {
  26889. height: math.unit(6.71 * 717, "feet"),
  26890. weight: math.unit(200, "lb"),
  26891. preyCapacity: math.unit(1000000, "people"),
  26892. name: "Hammerspace Size",
  26893. image: {
  26894. source: "./media/characters/gliss/front.svg",
  26895. extra: 2347 / 2231,
  26896. bottom: 113 / 2462
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(6.71, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26910. {
  26911. side: {
  26912. height: math.unit(1.44, "m"),
  26913. weight: math.unit(80, "kg"),
  26914. name: "Side",
  26915. image: {
  26916. source: "./media/characters/dune-anderson/side.svg",
  26917. bottom: 49 / 1426
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Wolf-sized",
  26924. height: math.unit(1.44, "meters")
  26925. },
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(5.05, "meters"),
  26929. default: true
  26930. },
  26931. {
  26932. name: "Big",
  26933. height: math.unit(14.4, "meters")
  26934. },
  26935. {
  26936. name: "Huge",
  26937. height: math.unit(144, "meters")
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(7, "feet"),
  26946. weight: math.unit(425, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/hind/front.svg",
  26950. extra: 2091 / 1860,
  26951. bottom: 129 / 2220
  26952. }
  26953. },
  26954. back: {
  26955. height: math.unit(7, "feet"),
  26956. weight: math.unit(425, "lb"),
  26957. name: "Back",
  26958. image: {
  26959. source: "./media/characters/hind/back.svg",
  26960. extra: 2091 / 1860,
  26961. bottom: 24.6 / 2309
  26962. }
  26963. },
  26964. tail: {
  26965. height: math.unit(2.8, "feet"),
  26966. name: "Tail",
  26967. image: {
  26968. source: "./media/characters/hind/tail.svg"
  26969. }
  26970. },
  26971. head: {
  26972. height: math.unit(2.55, "feet"),
  26973. name: "Head",
  26974. image: {
  26975. source: "./media/characters/hind/head.svg"
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "XS",
  26982. height: math.unit(0.7, "feet")
  26983. },
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(7, "feet"),
  26987. default: true
  26988. },
  26989. {
  26990. name: "XL",
  26991. height: math.unit(70, "feet")
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(2.1, "meters"),
  27000. weight: math.unit(150, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/tharquench-sizestealer/front.svg",
  27004. extra: 1605/1470,
  27005. bottom: 36/1641
  27006. }
  27007. },
  27008. frontAlt: {
  27009. height: math.unit(2.1, "meters"),
  27010. weight: math.unit(150, "lb"),
  27011. name: "Front (Alt)",
  27012. image: {
  27013. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27014. extra: 2318 / 2063,
  27015. bottom: 93.4 / 2410
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Nano",
  27022. height: math.unit(1, "mm")
  27023. },
  27024. {
  27025. name: "Micro",
  27026. height: math.unit(1, "cm")
  27027. },
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(2.1, "meters"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(7 + 5 / 12, "feet"),
  27040. weight: math.unit(357, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/solex-draconov/front.svg",
  27044. extra: 1993 / 1865,
  27045. bottom: 117 / 2111
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Natural Height",
  27052. height: math.unit(7 + 5 / 12, "feet"),
  27053. default: true
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(350, "feet")
  27058. },
  27059. {
  27060. name: "Macro+",
  27061. height: math.unit(1000, "feet")
  27062. },
  27063. {
  27064. name: "Megamacro",
  27065. height: math.unit(20, "km")
  27066. },
  27067. {
  27068. name: "Megamacro+",
  27069. height: math.unit(1000, "km")
  27070. },
  27071. {
  27072. name: "Gigamacro",
  27073. height: math.unit(2.5, "Gm")
  27074. },
  27075. {
  27076. name: "Teramacro",
  27077. height: math.unit(15, "Tm")
  27078. },
  27079. {
  27080. name: "Galactic",
  27081. height: math.unit(30, "Zm")
  27082. },
  27083. {
  27084. name: "Universal",
  27085. height: math.unit(21000, "Ym")
  27086. },
  27087. {
  27088. name: "Omniversal",
  27089. height: math.unit(9.861e50, "Ym")
  27090. },
  27091. {
  27092. name: "Existential",
  27093. height: math.unit(1e300, "meters")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27099. {
  27100. side: {
  27101. height: math.unit(25, "feet"),
  27102. weight: math.unit(90000, "lb"),
  27103. name: "Side",
  27104. image: {
  27105. source: "./media/characters/mandarax/side.svg",
  27106. extra: 614 / 332,
  27107. bottom: 55 / 630
  27108. }
  27109. },
  27110. lounging: {
  27111. height: math.unit(15.4, "feet"),
  27112. weight: math.unit(90000, "lb"),
  27113. name: "Lounging",
  27114. image: {
  27115. source: "./media/characters/mandarax/lounging.svg",
  27116. extra: 817/609,
  27117. bottom: 685/1502
  27118. }
  27119. },
  27120. head: {
  27121. height: math.unit(11.4, "feet"),
  27122. name: "Head",
  27123. image: {
  27124. source: "./media/characters/mandarax/head.svg"
  27125. }
  27126. },
  27127. belly: {
  27128. height: math.unit(33, "feet"),
  27129. name: "Belly",
  27130. preyCapacity: math.unit(500, "people"),
  27131. image: {
  27132. source: "./media/characters/mandarax/belly.svg"
  27133. }
  27134. },
  27135. dick: {
  27136. height: math.unit(8.46, "feet"),
  27137. name: "Dick",
  27138. image: {
  27139. source: "./media/characters/mandarax/dick.svg"
  27140. }
  27141. },
  27142. top: {
  27143. height: math.unit(28, "meters"),
  27144. name: "Top",
  27145. image: {
  27146. source: "./media/characters/mandarax/top.svg"
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(25, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(5, "feet"),
  27163. weight: math.unit(90, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/pixil/front.svg",
  27167. extra: 2000 / 1618,
  27168. bottom: 12.3 / 2011
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Normal",
  27175. height: math.unit(5, "feet"),
  27176. default: true
  27177. },
  27178. {
  27179. name: "Megamacro",
  27180. height: math.unit(10, "miles"),
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(7 + 2 / 12, "feet"),
  27189. weight: math.unit(200, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/angel/front.svg",
  27193. extra: 1830 / 1737,
  27194. bottom: 22.6 / 1854,
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(7 + 2 / 12, "feet"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Macro",
  27206. height: math.unit(1000, "feet")
  27207. },
  27208. {
  27209. name: "Megamacro",
  27210. height: math.unit(2, "miles")
  27211. },
  27212. {
  27213. name: "Gigamacro",
  27214. height: math.unit(20, "earths")
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(5, "feet"),
  27223. weight: math.unit(180, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/mekana/front.svg",
  27227. extra: 1671 / 1605,
  27228. bottom: 3.5 / 1691
  27229. }
  27230. },
  27231. side: {
  27232. height: math.unit(5, "feet"),
  27233. weight: math.unit(180, "lb"),
  27234. name: "Side",
  27235. image: {
  27236. source: "./media/characters/mekana/side.svg",
  27237. extra: 1671 / 1605,
  27238. bottom: 3.5 / 1691
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(5, "feet"),
  27243. weight: math.unit(180, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/mekana/back.svg",
  27247. extra: 1671 / 1605,
  27248. bottom: 3.5 / 1691
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(5, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(4 + 6 / 12, "feet"),
  27265. weight: math.unit(80, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/pixie/front.svg",
  27269. extra: 1924 / 1825,
  27270. bottom: 22.4 / 1946
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(4 + 6 / 12, "feet"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(40, "feet")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(2.1, "meters"),
  27291. weight: math.unit(200, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/the-lascivious/front.svg",
  27295. extra: 1 / 0.893,
  27296. bottom: 3.5 / 573.7
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Human Scale",
  27303. height: math.unit(2.1, "meters")
  27304. },
  27305. {
  27306. name: "Wolxi Scale",
  27307. height: math.unit(46.2, "m"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Boinker of Buildings",
  27312. height: math.unit(10, "km")
  27313. },
  27314. {
  27315. name: "Shagger of Skyscrapers",
  27316. height: math.unit(40, "km")
  27317. },
  27318. {
  27319. name: "Banger of Boroughs",
  27320. height: math.unit(4000, "km")
  27321. },
  27322. {
  27323. name: "Screwer of States",
  27324. height: math.unit(100000, "km")
  27325. },
  27326. {
  27327. name: "Pounder of Planets",
  27328. height: math.unit(2000000, "km")
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(6, "feet"),
  27337. weight: math.unit(150, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/aj/front.svg",
  27341. extra: 2039 / 1562,
  27342. bottom: 40 / 2079
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(11 + 6 / 12, "feet"),
  27350. default: true
  27351. },
  27352. {
  27353. name: "Megamacro",
  27354. height: math.unit(60, "megameters")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27360. {
  27361. side: {
  27362. height: math.unit(31 + 8 / 12, "feet"),
  27363. weight: math.unit(75000, "kg"),
  27364. name: "Side",
  27365. image: {
  27366. source: "./media/characters/koros/side.svg",
  27367. extra: 1442 / 1297,
  27368. bottom: 122.7 / 1562
  27369. }
  27370. },
  27371. dicksKingsCrown: {
  27372. height: math.unit(6, "feet"),
  27373. name: "Dicks (King's Crown)",
  27374. image: {
  27375. source: "./media/characters/koros/dicks-kings-crown.svg"
  27376. }
  27377. },
  27378. dicksTailSet: {
  27379. height: math.unit(3, "feet"),
  27380. name: "Dicks (Tail Set)",
  27381. image: {
  27382. source: "./media/characters/koros/dicks-tail-set.svg"
  27383. }
  27384. },
  27385. dickCumming: {
  27386. height: math.unit(7.98, "feet"),
  27387. name: "Dick (Cumming)",
  27388. image: {
  27389. source: "./media/characters/koros/dick-cumming.svg"
  27390. }
  27391. },
  27392. dicksBack: {
  27393. height: math.unit(5.9, "feet"),
  27394. name: "Dicks (Back)",
  27395. image: {
  27396. source: "./media/characters/koros/dicks-back.svg"
  27397. }
  27398. },
  27399. dicksFront: {
  27400. height: math.unit(3.72, "feet"),
  27401. name: "Dicks (Front)",
  27402. image: {
  27403. source: "./media/characters/koros/dicks-front.svg"
  27404. }
  27405. },
  27406. dicksPeeking: {
  27407. height: math.unit(3.0, "feet"),
  27408. name: "Dicks (Peeking)",
  27409. image: {
  27410. source: "./media/characters/koros/dicks-peeking.svg"
  27411. }
  27412. },
  27413. eye: {
  27414. height: math.unit(1.7, "feet"),
  27415. name: "Eye",
  27416. image: {
  27417. source: "./media/characters/koros/eye.svg"
  27418. }
  27419. },
  27420. headFront: {
  27421. height: math.unit(11.69, "feet"),
  27422. name: "Head (Front)",
  27423. image: {
  27424. source: "./media/characters/koros/head-front.svg"
  27425. }
  27426. },
  27427. headSide: {
  27428. height: math.unit(14, "feet"),
  27429. name: "Head (Side)",
  27430. image: {
  27431. source: "./media/characters/koros/head-side.svg"
  27432. }
  27433. },
  27434. leg: {
  27435. height: math.unit(17, "feet"),
  27436. name: "Leg",
  27437. image: {
  27438. source: "./media/characters/koros/leg.svg"
  27439. }
  27440. },
  27441. mawSide: {
  27442. height: math.unit(12.8, "feet"),
  27443. name: "Maw (Side)",
  27444. image: {
  27445. source: "./media/characters/koros/maw-side.svg"
  27446. }
  27447. },
  27448. mawSpitting: {
  27449. height: math.unit(17, "feet"),
  27450. name: "Maw (Spitting)",
  27451. image: {
  27452. source: "./media/characters/koros/maw-spitting.svg"
  27453. }
  27454. },
  27455. slit: {
  27456. height: math.unit(2.8, "feet"),
  27457. name: "Slit",
  27458. image: {
  27459. source: "./media/characters/koros/slit.svg"
  27460. }
  27461. },
  27462. stomach: {
  27463. height: math.unit(6.8, "feet"),
  27464. preyCapacity: math.unit(20, "people"),
  27465. name: "Stomach",
  27466. image: {
  27467. source: "./media/characters/koros/stomach.svg"
  27468. }
  27469. },
  27470. wingspanBottom: {
  27471. height: math.unit(114, "feet"),
  27472. name: "Wingspan (Bottom)",
  27473. image: {
  27474. source: "./media/characters/koros/wingspan-bottom.svg"
  27475. }
  27476. },
  27477. wingspanTop: {
  27478. height: math.unit(104, "feet"),
  27479. name: "Wingspan (Top)",
  27480. image: {
  27481. source: "./media/characters/koros/wingspan-top.svg"
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(31 + 8 / 12, "feet"),
  27489. default: true
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(18 + 5 / 12, "feet"),
  27498. weight: math.unit(3750, "kg"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/vexx/front.svg",
  27502. extra: 426 / 396,
  27503. bottom: 31.5 / 458
  27504. }
  27505. },
  27506. maw: {
  27507. height: math.unit(6, "feet"),
  27508. name: "Maw",
  27509. image: {
  27510. source: "./media/characters/vexx/maw.svg"
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(18 + 5 / 12, "feet"),
  27518. default: true
  27519. },
  27520. ]
  27521. ))
  27522. characterMakers.push(() => makeCharacter(
  27523. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27524. {
  27525. front: {
  27526. height: math.unit(17 + 6 / 12, "feet"),
  27527. weight: math.unit(150, "lb"),
  27528. name: "Front",
  27529. image: {
  27530. source: "./media/characters/baadra/front.svg",
  27531. extra: 1694/1553,
  27532. bottom: 179/1873
  27533. }
  27534. },
  27535. frontAlt: {
  27536. height: math.unit(17 + 6 / 12, "feet"),
  27537. weight: math.unit(150, "lb"),
  27538. name: "Front (Alt)",
  27539. image: {
  27540. source: "./media/characters/baadra/front-alt.svg",
  27541. extra: 3137 / 2890,
  27542. bottom: 168.4 / 3305
  27543. }
  27544. },
  27545. back: {
  27546. height: math.unit(17 + 6 / 12, "feet"),
  27547. weight: math.unit(150, "lb"),
  27548. name: "Back",
  27549. image: {
  27550. source: "./media/characters/baadra/back.svg",
  27551. extra: 3142 / 2890,
  27552. bottom: 220 / 3371
  27553. }
  27554. },
  27555. head: {
  27556. height: math.unit(5.45, "feet"),
  27557. name: "Head",
  27558. image: {
  27559. source: "./media/characters/baadra/head.svg"
  27560. }
  27561. },
  27562. headAngry: {
  27563. height: math.unit(4.95, "feet"),
  27564. name: "Head (Angry)",
  27565. image: {
  27566. source: "./media/characters/baadra/head-angry.svg"
  27567. }
  27568. },
  27569. headOpen: {
  27570. height: math.unit(6, "feet"),
  27571. name: "Head (Open)",
  27572. image: {
  27573. source: "./media/characters/baadra/head-open.svg"
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(17 + 6 / 12, "feet"),
  27581. default: true
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(7 + 3 / 12, "feet"),
  27590. weight: math.unit(180, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/juri/front.svg",
  27594. extra: 1401 / 1237,
  27595. bottom: 18.5 / 1418
  27596. }
  27597. },
  27598. side: {
  27599. height: math.unit(7 + 3 / 12, "feet"),
  27600. weight: math.unit(180, "lb"),
  27601. name: "Side",
  27602. image: {
  27603. source: "./media/characters/juri/side.svg",
  27604. extra: 1424 / 1242,
  27605. bottom: 18.5 / 1447
  27606. }
  27607. },
  27608. sitting: {
  27609. height: math.unit(6, "feet"),
  27610. weight: math.unit(180, "lb"),
  27611. name: "Sitting",
  27612. image: {
  27613. source: "./media/characters/juri/sitting.svg",
  27614. extra: 1270 / 1143,
  27615. bottom: 100 / 1343
  27616. }
  27617. },
  27618. back: {
  27619. height: math.unit(7 + 3 / 12, "feet"),
  27620. weight: math.unit(180, "lb"),
  27621. name: "Back",
  27622. image: {
  27623. source: "./media/characters/juri/back.svg",
  27624. extra: 1377 / 1240,
  27625. bottom: 23.7 / 1405
  27626. }
  27627. },
  27628. maw: {
  27629. height: math.unit(2.8, "feet"),
  27630. name: "Maw",
  27631. image: {
  27632. source: "./media/characters/juri/maw.svg"
  27633. }
  27634. },
  27635. stomach: {
  27636. height: math.unit(0.89, "feet"),
  27637. preyCapacity: math.unit(4, "liters"),
  27638. name: "Stomach",
  27639. image: {
  27640. source: "./media/characters/juri/stomach.svg"
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Normal",
  27647. height: math.unit(7 + 3 / 12, "feet"),
  27648. default: true
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27654. {
  27655. fox: {
  27656. height: math.unit(5 + 6 / 12, "feet"),
  27657. weight: math.unit(140, "lb"),
  27658. name: "Fox",
  27659. image: {
  27660. source: "./media/characters/maxene-sita/fox.svg",
  27661. extra: 146 / 138,
  27662. bottom: 2.1 / 148.19
  27663. }
  27664. },
  27665. foxLaying: {
  27666. height: math.unit(1.70, "feet"),
  27667. weight: math.unit(140, "lb"),
  27668. name: "Fox (Laying)",
  27669. image: {
  27670. source: "./media/characters/maxene-sita/fox-laying.svg",
  27671. extra: 910 / 572,
  27672. bottom: 71 / 981
  27673. }
  27674. },
  27675. kitsune: {
  27676. height: math.unit(10, "feet"),
  27677. weight: math.unit(800, "lb"),
  27678. name: "Kitsune",
  27679. image: {
  27680. source: "./media/characters/maxene-sita/kitsune.svg",
  27681. extra: 185 / 176,
  27682. bottom: 4.7 / 189.9
  27683. }
  27684. },
  27685. hellhound: {
  27686. height: math.unit(10, "feet"),
  27687. weight: math.unit(700, "lb"),
  27688. name: "Hellhound",
  27689. image: {
  27690. source: "./media/characters/maxene-sita/hellhound.svg",
  27691. extra: 1600 / 1545,
  27692. bottom: 81 / 1681
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(5 + 6 / 12, "feet"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27706. {
  27707. front: {
  27708. height: math.unit(3 + 4 / 12, "feet"),
  27709. weight: math.unit(70, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/maia/front.svg",
  27713. extra: 227 / 219.5,
  27714. bottom: 40 / 267
  27715. }
  27716. },
  27717. back: {
  27718. height: math.unit(3 + 4 / 12, "feet"),
  27719. weight: math.unit(70, "lb"),
  27720. name: "Back",
  27721. image: {
  27722. source: "./media/characters/maia/back.svg",
  27723. extra: 237 / 225
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(3 + 4 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(5 + 10 / 12, "feet"),
  27740. weight: math.unit(197, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/jabaro/front.svg",
  27744. extra: 225 / 216,
  27745. bottom: 5.06 / 230
  27746. }
  27747. },
  27748. back: {
  27749. height: math.unit(5 + 10 / 12, "feet"),
  27750. weight: math.unit(197, "lb"),
  27751. name: "Back",
  27752. image: {
  27753. source: "./media/characters/jabaro/back.svg",
  27754. extra: 225 / 219,
  27755. bottom: 1.9 / 227
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(5 + 10 / 12, "feet"),
  27763. default: true
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27769. {
  27770. front: {
  27771. height: math.unit(5 + 8 / 12, "feet"),
  27772. weight: math.unit(139, "lb"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/risa/front.svg",
  27776. extra: 270 / 260,
  27777. bottom: 11.2 / 282
  27778. }
  27779. },
  27780. back: {
  27781. height: math.unit(5 + 8 / 12, "feet"),
  27782. weight: math.unit(139, "lb"),
  27783. name: "Back",
  27784. image: {
  27785. source: "./media/characters/risa/back.svg",
  27786. extra: 264 / 255,
  27787. bottom: 4 / 268
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(5 + 8 / 12, "feet"),
  27795. default: true
  27796. },
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27801. {
  27802. front: {
  27803. height: math.unit(2 + 11 / 12, "feet"),
  27804. weight: math.unit(30, "lb"),
  27805. name: "Front",
  27806. image: {
  27807. source: "./media/characters/weatley/front.svg",
  27808. bottom: 10.7 / 414,
  27809. extra: 403.5 / 362
  27810. }
  27811. },
  27812. back: {
  27813. height: math.unit(2 + 11 / 12, "feet"),
  27814. weight: math.unit(30, "lb"),
  27815. name: "Back",
  27816. image: {
  27817. source: "./media/characters/weatley/back.svg",
  27818. bottom: 10.7 / 414,
  27819. extra: 403.5 / 362
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(2 + 11 / 12, "feet"),
  27827. default: true
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(5 + 2 / 12, "feet"),
  27836. weight: math.unit(50, "kg"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/mercury-crescent/front.svg",
  27840. extra: 1088 / 1033,
  27841. bottom: 18.9 / 1109
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5 + 2 / 12, "feet"),
  27849. default: true
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(2, "feet"),
  27858. weight: math.unit(15, "kg"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/diamond-jones/front.svg",
  27862. extra: 727/723,
  27863. bottom: 46/773
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(2, "feet"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(3, "feet"),
  27880. weight: math.unit(30, "kg"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/sweet-bit/front.svg",
  27884. extra: 675 / 567,
  27885. bottom: 27.7 / 703
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(3, "feet"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27899. {
  27900. side: {
  27901. height: math.unit(9.178, "feet"),
  27902. weight: math.unit(500, "lb"),
  27903. name: "Side",
  27904. image: {
  27905. source: "./media/characters/umbrazen/side.svg",
  27906. extra: 1730 / 1473,
  27907. bottom: 34.6 / 1765
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(9.178, "feet"),
  27915. default: true
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(10, "feet"),
  27924. weight: math.unit(750, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/arlist/front.svg",
  27928. extra: 961 / 778,
  27929. bottom: 6.2 / 986
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(10, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(5 + 1 / 12, "feet"),
  27946. weight: math.unit(110, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/aradel/front.svg",
  27950. extra: 324 / 303,
  27951. bottom: 3.6 / 329.4
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(5 + 1 / 12, "feet"),
  27959. default: true
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27965. {
  27966. dressed: {
  27967. height: math.unit(3 + 8 / 12, "feet"),
  27968. weight: math.unit(50, "lb"),
  27969. name: "Dressed",
  27970. image: {
  27971. source: "./media/characters/serryn/dressed.svg",
  27972. extra: 1792 / 1656,
  27973. bottom: 43.5 / 1840
  27974. }
  27975. },
  27976. nude: {
  27977. height: math.unit(3 + 8 / 12, "feet"),
  27978. weight: math.unit(50, "lb"),
  27979. name: "Nude",
  27980. image: {
  27981. source: "./media/characters/serryn/nude.svg",
  27982. extra: 1792 / 1656,
  27983. bottom: 43.5 / 1840
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(3 + 8 / 12, "feet"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27997. {
  27998. front: {
  27999. height: math.unit(7 + 10 / 12, "feet"),
  28000. weight: math.unit(255, "lb"),
  28001. name: "Front",
  28002. image: {
  28003. source: "./media/characters/xavier-thyme/front.svg",
  28004. extra: 3733 / 3642,
  28005. bottom: 131 / 3869
  28006. }
  28007. },
  28008. frontRaven: {
  28009. height: math.unit(7 + 10 / 12, "feet"),
  28010. weight: math.unit(255, "lb"),
  28011. name: "Front (Raven)",
  28012. image: {
  28013. source: "./media/characters/xavier-thyme/front-raven.svg",
  28014. extra: 4385 / 3642,
  28015. bottom: 131 / 4517
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(7 + 10 / 12, "feet"),
  28023. default: true
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28029. {
  28030. front: {
  28031. height: math.unit(1.6, "m"),
  28032. weight: math.unit(50, "kg"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/kiki/front.svg",
  28036. extra: 4682 / 3610,
  28037. bottom: 115 / 4777
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(1.6, "meters"),
  28045. default: true
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(50, "m"),
  28054. weight: math.unit(500, "tonnes"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/ryoko/front.svg",
  28058. extra: 4632 / 3926,
  28059. bottom: 193 / 4823
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(50, "meters"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(30, "m"),
  28076. weight: math.unit(22, "tonnes"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/elio/front.svg",
  28080. extra: 4582 / 3720,
  28081. bottom: 236 / 4828
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(30, "meters"),
  28089. default: true
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28095. {
  28096. front: {
  28097. height: math.unit(6 + 3 / 12, "feet"),
  28098. weight: math.unit(120, "lb"),
  28099. name: "Front",
  28100. image: {
  28101. source: "./media/characters/azura/front.svg",
  28102. extra: 1149 / 1135,
  28103. bottom: 45 / 1194
  28104. }
  28105. },
  28106. frontClothed: {
  28107. height: math.unit(6 + 3 / 12, "feet"),
  28108. weight: math.unit(120, "lb"),
  28109. name: "Front (Clothed)",
  28110. image: {
  28111. source: "./media/characters/azura/front-clothed.svg",
  28112. extra: 1149 / 1135,
  28113. bottom: 45 / 1194
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(6 + 3 / 12, "feet"),
  28121. default: true
  28122. },
  28123. {
  28124. name: "Macro",
  28125. height: math.unit(20 + 6 / 12, "feet")
  28126. },
  28127. {
  28128. name: "Megamacro",
  28129. height: math.unit(12, "miles")
  28130. },
  28131. {
  28132. name: "Gigamacro",
  28133. height: math.unit(10000, "miles")
  28134. },
  28135. {
  28136. name: "Teramacro",
  28137. height: math.unit(900000, "miles")
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(12, "feet"),
  28146. weight: math.unit(1, "ton"),
  28147. capacity: math.unit(660000, "gallons"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/zeus/front.svg",
  28151. extra: 5005 / 4717,
  28152. bottom: 363 / 5388
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(12, "feet")
  28160. },
  28161. {
  28162. name: "Preferred Size",
  28163. height: math.unit(0.5, "miles"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Giga Horse",
  28168. height: math.unit(300, "miles")
  28169. },
  28170. {
  28171. name: "Riding Planets",
  28172. height: math.unit(30, "megameters")
  28173. },
  28174. {
  28175. name: "Cosmic Giant",
  28176. height: math.unit(3, "zettameters")
  28177. },
  28178. {
  28179. name: "Breeding God",
  28180. height: math.unit(9.92e22, "yottameters")
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28186. {
  28187. side: {
  28188. height: math.unit(9, "feet"),
  28189. weight: math.unit(1500, "kg"),
  28190. name: "Side",
  28191. image: {
  28192. source: "./media/characters/fang/side.svg",
  28193. extra: 924 / 866,
  28194. bottom: 47.5 / 972.3
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(9, "feet"),
  28202. default: true
  28203. },
  28204. {
  28205. name: "Macro",
  28206. height: math.unit(75 + 6 / 12, "feet")
  28207. },
  28208. {
  28209. name: "Teramacro",
  28210. height: math.unit(50000, "miles")
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(10, "feet"),
  28219. weight: math.unit(2, "tons"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/rekhit/front.svg",
  28223. extra: 2796 / 2590,
  28224. bottom: 225 / 3022
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(10, "feet"),
  28232. default: true
  28233. },
  28234. {
  28235. name: "Macro",
  28236. height: math.unit(500, "feet")
  28237. },
  28238. ]
  28239. ))
  28240. characterMakers.push(() => makeCharacter(
  28241. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28242. {
  28243. front: {
  28244. height: math.unit(7 + 6.451 / 12, "feet"),
  28245. weight: math.unit(310, "lb"),
  28246. name: "Front",
  28247. image: {
  28248. source: "./media/characters/dahlia-verrick/front.svg",
  28249. extra: 1488 / 1365,
  28250. bottom: 6.2 / 1495
  28251. }
  28252. },
  28253. back: {
  28254. height: math.unit(7 + 6.451 / 12, "feet"),
  28255. weight: math.unit(310, "lb"),
  28256. name: "Back",
  28257. image: {
  28258. source: "./media/characters/dahlia-verrick/back.svg",
  28259. extra: 1472 / 1351,
  28260. bottom: 5.28 / 1477
  28261. }
  28262. },
  28263. frontBusiness: {
  28264. height: math.unit(7 + 6.451 / 12, "feet"),
  28265. weight: math.unit(200, "lb"),
  28266. name: "Front (Business)",
  28267. image: {
  28268. source: "./media/characters/dahlia-verrick/front-business.svg",
  28269. extra: 1478 / 1381,
  28270. bottom: 5.5 / 1484
  28271. }
  28272. },
  28273. frontCasual: {
  28274. height: math.unit(7 + 6.451 / 12, "feet"),
  28275. weight: math.unit(200, "lb"),
  28276. name: "Front (Casual)",
  28277. image: {
  28278. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28279. extra: 1478 / 1381,
  28280. bottom: 5.5 / 1484
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Travel-Sized",
  28287. height: math.unit(7.45, "inches")
  28288. },
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(7 + 6.451 / 12, "feet"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Hitting the Town",
  28296. height: math.unit(37 + 8 / 12, "feet")
  28297. },
  28298. {
  28299. name: "Stomp in the Suburbs",
  28300. height: math.unit(964 + 9.728 / 12, "feet")
  28301. },
  28302. {
  28303. name: "Sit on the City",
  28304. height: math.unit(61747 + 10.592 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Glomp the Globe",
  28308. height: math.unit(252919327 + 4.832 / 12, "feet")
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28314. {
  28315. front: {
  28316. height: math.unit(6 + 4 / 12, "feet"),
  28317. weight: math.unit(320, "lb"),
  28318. name: "Front",
  28319. image: {
  28320. source: "./media/characters/balina-mahigan/front.svg",
  28321. extra: 447 / 428,
  28322. bottom: 18 / 466
  28323. }
  28324. },
  28325. back: {
  28326. height: math.unit(6 + 4 / 12, "feet"),
  28327. weight: math.unit(320, "lb"),
  28328. name: "Back",
  28329. image: {
  28330. source: "./media/characters/balina-mahigan/back.svg",
  28331. extra: 445 / 428,
  28332. bottom: 4.07 / 448
  28333. }
  28334. },
  28335. arm: {
  28336. height: math.unit(1.88, "feet"),
  28337. name: "Arm",
  28338. image: {
  28339. source: "./media/characters/balina-mahigan/arm.svg"
  28340. }
  28341. },
  28342. backPort: {
  28343. height: math.unit(0.685, "feet"),
  28344. name: "Back Port",
  28345. image: {
  28346. source: "./media/characters/balina-mahigan/back-port.svg"
  28347. }
  28348. },
  28349. hoofpaw: {
  28350. height: math.unit(1.41, "feet"),
  28351. name: "Hoofpaw",
  28352. image: {
  28353. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28354. }
  28355. },
  28356. leftHandBack: {
  28357. height: math.unit(0.938, "feet"),
  28358. name: "Left Hand (Back)",
  28359. image: {
  28360. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28361. }
  28362. },
  28363. leftHandFront: {
  28364. height: math.unit(0.938, "feet"),
  28365. name: "Left Hand (Front)",
  28366. image: {
  28367. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28368. }
  28369. },
  28370. rightHandBack: {
  28371. height: math.unit(0.95, "feet"),
  28372. name: "Right Hand (Back)",
  28373. image: {
  28374. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28375. }
  28376. },
  28377. rightHandFront: {
  28378. height: math.unit(0.95, "feet"),
  28379. name: "Right Hand (Front)",
  28380. image: {
  28381. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(6 + 4 / 12, "feet"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(6, "feet"),
  28398. weight: math.unit(320, "lb"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/balina-mejeri/front.svg",
  28402. extra: 517 / 488,
  28403. bottom: 44.2 / 561
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(6 + 4 / 12, "feet")
  28411. },
  28412. {
  28413. name: "Business",
  28414. height: math.unit(155, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28421. {
  28422. kneeling: {
  28423. height: math.unit(6 + 4 / 12, "feet"),
  28424. weight: math.unit(300 * 20, "lb"),
  28425. name: "Kneeling",
  28426. image: {
  28427. source: "./media/characters/balbarian/kneeling.svg",
  28428. extra: 922 / 862,
  28429. bottom: 42.4 / 965
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(6 + 4 / 12, "feet")
  28437. },
  28438. {
  28439. name: "Treasured",
  28440. height: math.unit(18 + 9 / 12, "feet"),
  28441. default: true
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(900, "feet")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(6 + 4 / 12, "feet"),
  28454. weight: math.unit(325, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/balina-amarini/front.svg",
  28458. extra: 415 / 403,
  28459. bottom: 19 / 433.4
  28460. }
  28461. },
  28462. back: {
  28463. height: math.unit(6 + 4 / 12, "feet"),
  28464. weight: math.unit(325, "lb"),
  28465. name: "Back",
  28466. image: {
  28467. source: "./media/characters/balina-amarini/back.svg",
  28468. extra: 415 / 403,
  28469. bottom: 13.5 / 432
  28470. }
  28471. },
  28472. overdrive: {
  28473. height: math.unit(6 + 4 / 12, "feet"),
  28474. weight: math.unit(400, "lb"),
  28475. name: "Overdrive",
  28476. image: {
  28477. source: "./media/characters/balina-amarini/overdrive.svg",
  28478. extra: 269 / 259,
  28479. bottom: 12 / 282
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Boom",
  28486. height: math.unit(9 + 10 / 12, "feet"),
  28487. default: true
  28488. },
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(280, "feet")
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28497. {
  28498. goddess: {
  28499. height: math.unit(600, "feet"),
  28500. weight: math.unit(2000000, "tons"),
  28501. name: "Goddess",
  28502. image: {
  28503. source: "./media/characters/lady-kubwa/goddess.svg",
  28504. extra: 1240.5 / 1223,
  28505. bottom: 22 / 1263
  28506. }
  28507. },
  28508. goddesser: {
  28509. height: math.unit(900, "feet"),
  28510. weight: math.unit(20000000, "lb"),
  28511. name: "Goddess-er",
  28512. image: {
  28513. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28514. extra: 899 / 888,
  28515. bottom: 12.6 / 912
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(600, "feet"),
  28523. default: true
  28524. },
  28525. {
  28526. name: "Megamacro",
  28527. height: math.unit(250, "miles")
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(7 + 7 / 12, "feet"),
  28536. weight: math.unit(250, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/tala-grovehorn/front.svg",
  28540. extra: 2636 / 2525,
  28541. bottom: 147 / 2781
  28542. }
  28543. },
  28544. back: {
  28545. height: math.unit(7 + 7 / 12, "feet"),
  28546. weight: math.unit(250, "lb"),
  28547. name: "Back",
  28548. image: {
  28549. source: "./media/characters/tala-grovehorn/back.svg",
  28550. extra: 2635 / 2539,
  28551. bottom: 100 / 2732.8
  28552. }
  28553. },
  28554. mouth: {
  28555. height: math.unit(1.15, "feet"),
  28556. name: "Mouth",
  28557. image: {
  28558. source: "./media/characters/tala-grovehorn/mouth.svg"
  28559. }
  28560. },
  28561. dick: {
  28562. height: math.unit(2.36, "feet"),
  28563. name: "Dick",
  28564. image: {
  28565. source: "./media/characters/tala-grovehorn/dick.svg"
  28566. }
  28567. },
  28568. slit: {
  28569. height: math.unit(0.61, "feet"),
  28570. name: "Slit",
  28571. image: {
  28572. source: "./media/characters/tala-grovehorn/slit.svg"
  28573. }
  28574. },
  28575. },
  28576. [
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(7 + 7 / 12, "feet"),
  28584. weight: math.unit(225, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/epona/front.svg",
  28588. extra: 2445 / 2290,
  28589. bottom: 251 / 2696
  28590. }
  28591. },
  28592. back: {
  28593. height: math.unit(7 + 7 / 12, "feet"),
  28594. weight: math.unit(225, "lb"),
  28595. name: "Back",
  28596. image: {
  28597. source: "./media/characters/epona/back.svg",
  28598. extra: 2546 / 2408,
  28599. bottom: 44 / 2589
  28600. }
  28601. },
  28602. genitals: {
  28603. height: math.unit(1.5, "feet"),
  28604. name: "Genitals",
  28605. image: {
  28606. source: "./media/characters/epona/genitals.svg"
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(7 + 7 / 12, "feet"),
  28614. default: true
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(7, "feet"),
  28623. weight: math.unit(518, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/avia-bloodbourn/front.svg",
  28627. extra: 1466 / 1350,
  28628. bottom: 65 / 1527
  28629. }
  28630. },
  28631. },
  28632. [
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(9.35, "feet"),
  28640. weight: math.unit(600, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/amera/front.svg",
  28644. extra: 891 / 818,
  28645. bottom: 30 / 922.7
  28646. }
  28647. },
  28648. back: {
  28649. height: math.unit(9.35, "feet"),
  28650. weight: math.unit(600, "lb"),
  28651. name: "Back",
  28652. image: {
  28653. source: "./media/characters/amera/back.svg",
  28654. extra: 876 / 824,
  28655. bottom: 6.8 / 884
  28656. }
  28657. },
  28658. dick: {
  28659. height: math.unit(2.14, "feet"),
  28660. name: "Dick",
  28661. image: {
  28662. source: "./media/characters/amera/dick.svg"
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Normal",
  28669. height: math.unit(9.35, "feet"),
  28670. default: true
  28671. },
  28672. ]
  28673. ))
  28674. characterMakers.push(() => makeCharacter(
  28675. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28676. {
  28677. kneeling: {
  28678. height: math.unit(3 + 4 / 12, "feet"),
  28679. weight: math.unit(90, "lb"),
  28680. name: "Kneeling",
  28681. image: {
  28682. source: "./media/characters/rosewen/kneeling.svg",
  28683. extra: 1835 / 1571,
  28684. bottom: 27.7 / 1862
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(3 + 4 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. weight: math.unit(200, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/sabah/front.svg",
  28705. extra: 849 / 763,
  28706. bottom: 33.9 / 881
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Normal",
  28713. height: math.unit(5 + 10 / 12, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28720. {
  28721. front: {
  28722. height: math.unit(3 + 5 / 12, "feet"),
  28723. weight: math.unit(40, "kg"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/purple-flame/front.svg",
  28727. extra: 1577 / 1412,
  28728. bottom: 97 / 1694
  28729. }
  28730. },
  28731. frontDressed: {
  28732. height: math.unit(3 + 5 / 12, "feet"),
  28733. weight: math.unit(40, "kg"),
  28734. name: "Front (Dressed)",
  28735. image: {
  28736. source: "./media/characters/purple-flame/front-dressed.svg",
  28737. extra: 1577 / 1412,
  28738. bottom: 97 / 1694
  28739. }
  28740. },
  28741. headphones: {
  28742. height: math.unit(0.85, "feet"),
  28743. name: "Headphones",
  28744. image: {
  28745. source: "./media/characters/purple-flame/headphones.svg"
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Really Small",
  28752. height: math.unit(5, "cm")
  28753. },
  28754. {
  28755. name: "Micro",
  28756. height: math.unit(1 + 5 / 12, "feet")
  28757. },
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(3 + 5 / 12, "feet"),
  28761. default: true
  28762. },
  28763. {
  28764. name: "Minimacro",
  28765. height: math.unit(125, "feet")
  28766. },
  28767. {
  28768. name: "Macro",
  28769. height: math.unit(0.5, "miles")
  28770. },
  28771. {
  28772. name: "Megamacro",
  28773. height: math.unit(50, "miles")
  28774. },
  28775. {
  28776. name: "Gigantic",
  28777. height: math.unit(750, "miles")
  28778. },
  28779. {
  28780. name: "Planetary",
  28781. height: math.unit(15000, "miles")
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(14, "feet"),
  28790. weight: math.unit(959, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/arsenal/front.svg",
  28794. extra: 2357 / 2157,
  28795. bottom: 93 / 2458
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(14, "feet"),
  28803. default: true
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(6, "feet"),
  28812. weight: math.unit(150, "lb"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/adira/front.svg",
  28816. extra: 1078 / 1029,
  28817. bottom: 87 / 1166
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Micro",
  28824. height: math.unit(4, "inches"),
  28825. default: true
  28826. },
  28827. {
  28828. name: "Macro",
  28829. height: math.unit(50, "feet")
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(16, "feet"),
  28838. weight: math.unit(1000, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/grim/front.svg",
  28842. extra: 622 / 614,
  28843. bottom: 18.1 / 642
  28844. }
  28845. },
  28846. back: {
  28847. height: math.unit(16, "feet"),
  28848. weight: math.unit(1000, "lb"),
  28849. name: "Back",
  28850. image: {
  28851. source: "./media/characters/grim/back.svg",
  28852. extra: 610.6 / 602,
  28853. bottom: 40.8 / 652
  28854. }
  28855. },
  28856. hunched: {
  28857. height: math.unit(9.75, "feet"),
  28858. weight: math.unit(1000, "lb"),
  28859. name: "Hunched",
  28860. image: {
  28861. source: "./media/characters/grim/hunched.svg",
  28862. extra: 304 / 297,
  28863. bottom: 35.4 / 394
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(16, "feet"),
  28871. default: true
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(2.3, "meters"),
  28880. weight: math.unit(300, "lb"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/sinja/front-sfw.svg",
  28884. extra: 1393 / 1294,
  28885. bottom: 70 / 1463
  28886. }
  28887. },
  28888. frontNsfw: {
  28889. height: math.unit(2.3, "meters"),
  28890. weight: math.unit(300, "lb"),
  28891. name: "Front (NSFW)",
  28892. image: {
  28893. source: "./media/characters/sinja/front-nsfw.svg",
  28894. extra: 1393 / 1294,
  28895. bottom: 70 / 1463
  28896. }
  28897. },
  28898. back: {
  28899. height: math.unit(2.3, "meters"),
  28900. weight: math.unit(300, "lb"),
  28901. name: "Back",
  28902. image: {
  28903. source: "./media/characters/sinja/back.svg",
  28904. extra: 1393 / 1294,
  28905. bottom: 70 / 1463
  28906. }
  28907. },
  28908. head: {
  28909. height: math.unit(1.771, "feet"),
  28910. name: "Head",
  28911. image: {
  28912. source: "./media/characters/sinja/head.svg"
  28913. }
  28914. },
  28915. slit: {
  28916. height: math.unit(0.8, "feet"),
  28917. name: "Slit",
  28918. image: {
  28919. source: "./media/characters/sinja/slit.svg"
  28920. }
  28921. },
  28922. },
  28923. [
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(2.3, "meters")
  28927. },
  28928. {
  28929. name: "Macro",
  28930. height: math.unit(91, "meters"),
  28931. default: true
  28932. },
  28933. {
  28934. name: "Megamacro",
  28935. height: math.unit(91440, "meters")
  28936. },
  28937. {
  28938. name: "Gigamacro",
  28939. height: math.unit(60960000, "meters")
  28940. },
  28941. {
  28942. name: "Teramacro",
  28943. height: math.unit(9144000000, "meters")
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(1.7, "meters"),
  28952. weight: math.unit(130, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/kyu/front.svg",
  28956. extra: 415 / 395,
  28957. bottom: 5 / 420
  28958. }
  28959. },
  28960. head: {
  28961. height: math.unit(1.75, "feet"),
  28962. name: "Head",
  28963. image: {
  28964. source: "./media/characters/kyu/head.svg"
  28965. }
  28966. },
  28967. foot: {
  28968. height: math.unit(0.81, "feet"),
  28969. name: "Foot",
  28970. image: {
  28971. source: "./media/characters/kyu/foot.svg"
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Normal",
  28978. height: math.unit(1.7, "meters")
  28979. },
  28980. {
  28981. name: "Macro",
  28982. height: math.unit(131, "feet"),
  28983. default: true
  28984. },
  28985. {
  28986. name: "Megamacro",
  28987. height: math.unit(91440, "meters")
  28988. },
  28989. {
  28990. name: "Gigamacro",
  28991. height: math.unit(60960000, "meters")
  28992. },
  28993. {
  28994. name: "Teramacro",
  28995. height: math.unit(9144000000, "meters")
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(7 + 1 / 12, "feet"),
  29004. weight: math.unit(250, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/joey/front.svg",
  29008. extra: 1791 / 1537,
  29009. bottom: 28 / 1816
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Micro",
  29016. height: math.unit(3, "inches")
  29017. },
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(7 + 1 / 12, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(165, "cm"),
  29030. weight: math.unit(140, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/sam-evans/front.svg",
  29034. extra: 3417 / 3230,
  29035. bottom: 41.3 / 3417
  29036. }
  29037. },
  29038. frontSixTails: {
  29039. height: math.unit(165, "cm"),
  29040. weight: math.unit(140, "lb"),
  29041. name: "Front-six-tails",
  29042. image: {
  29043. source: "./media/characters/sam-evans/front-six-tails.svg",
  29044. extra: 3417 / 3230,
  29045. bottom: 41.3 / 3417
  29046. }
  29047. },
  29048. back: {
  29049. height: math.unit(165, "cm"),
  29050. weight: math.unit(140, "lb"),
  29051. name: "Back",
  29052. image: {
  29053. source: "./media/characters/sam-evans/back.svg",
  29054. extra: 3227 / 3032,
  29055. bottom: 6.8 / 3234
  29056. }
  29057. },
  29058. face: {
  29059. height: math.unit(0.68, "feet"),
  29060. name: "Face",
  29061. image: {
  29062. source: "./media/characters/sam-evans/face.svg"
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(165, "cm"),
  29070. default: true
  29071. },
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(100, "meters")
  29075. },
  29076. {
  29077. name: "Macro+",
  29078. height: math.unit(800, "meters")
  29079. },
  29080. {
  29081. name: "Macro++",
  29082. height: math.unit(3, "km")
  29083. },
  29084. {
  29085. name: "Macro+++",
  29086. height: math.unit(30, "km")
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(10, "feet"),
  29095. weight: math.unit(750, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/juliet-a/front.svg",
  29099. extra: 1766 / 1720,
  29100. bottom: 43 / 1809
  29101. }
  29102. },
  29103. back: {
  29104. height: math.unit(10, "feet"),
  29105. weight: math.unit(750, "lb"),
  29106. name: "Back",
  29107. image: {
  29108. source: "./media/characters/juliet-a/back.svg",
  29109. extra: 1781 / 1734,
  29110. bottom: 35 / 1810,
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(10, "feet"),
  29118. default: true
  29119. },
  29120. {
  29121. name: "Dragon Form",
  29122. height: math.unit(250, "feet")
  29123. },
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(1000, "feet")
  29127. },
  29128. {
  29129. name: "Megamacro",
  29130. height: math.unit(10000, "feet")
  29131. }
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29136. {
  29137. regular: {
  29138. height: math.unit(7 + 3 / 12, "feet"),
  29139. weight: math.unit(260, "lb"),
  29140. name: "Regular",
  29141. image: {
  29142. source: "./media/characters/wild/regular.svg",
  29143. extra: 97.45 / 92,
  29144. bottom: 6.8 / 104.3
  29145. }
  29146. },
  29147. biggums: {
  29148. height: math.unit(8 + 6 / 12, "feet"),
  29149. weight: math.unit(425, "lb"),
  29150. name: "Biggums",
  29151. image: {
  29152. source: "./media/characters/wild/biggums.svg",
  29153. extra: 97.45 / 92,
  29154. bottom: 7.5 / 132.34
  29155. }
  29156. },
  29157. mawRegular: {
  29158. height: math.unit(1.24, "feet"),
  29159. name: "Maw (Regular)",
  29160. image: {
  29161. source: "./media/characters/wild/maw.svg"
  29162. }
  29163. },
  29164. mawBiggums: {
  29165. height: math.unit(1.47, "feet"),
  29166. name: "Maw (Biggums)",
  29167. image: {
  29168. source: "./media/characters/wild/maw.svg"
  29169. }
  29170. },
  29171. },
  29172. [
  29173. {
  29174. name: "Normal",
  29175. height: math.unit(7 + 3 / 12, "feet"),
  29176. default: true
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29182. {
  29183. front: {
  29184. height: math.unit(2.5, "meters"),
  29185. weight: math.unit(200, "kg"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/vidar/front.svg",
  29189. extra: 2994 / 2795,
  29190. bottom: 56 / 3061
  29191. }
  29192. },
  29193. back: {
  29194. height: math.unit(2.5, "meters"),
  29195. weight: math.unit(200, "kg"),
  29196. name: "Back",
  29197. image: {
  29198. source: "./media/characters/vidar/back.svg",
  29199. extra: 3131 / 2928,
  29200. bottom: 13.5 / 3141.5
  29201. }
  29202. },
  29203. feral: {
  29204. height: math.unit(2.5, "meters"),
  29205. weight: math.unit(2000, "kg"),
  29206. name: "Feral",
  29207. image: {
  29208. source: "./media/characters/vidar/feral.svg",
  29209. extra: 2790 / 1765,
  29210. bottom: 6 / 2796
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(2.5, "meters"),
  29218. default: true
  29219. },
  29220. {
  29221. name: "Macro",
  29222. height: math.unit(100, "meters")
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(5 + 9 / 12, "feet"),
  29231. weight: math.unit(120, "lb"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/ash/front.svg",
  29235. extra: 2189 / 1961,
  29236. bottom: 5.2 / 2194
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(5 + 9 / 12, "feet"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(9, "feet"),
  29253. weight: math.unit(10000, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/gygabite/front.svg",
  29257. bottom: 31.7 / 537.8,
  29258. extra: 505 / 370
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(9, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(12, "feet"),
  29275. weight: math.unit(4000, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/p0tat0/front.svg",
  29279. extra: 1065 / 921,
  29280. bottom: 55.7 / 1121.25
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(12, "feet"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29294. {
  29295. side: {
  29296. height: math.unit(6.5, "feet"),
  29297. weight: math.unit(800, "lb"),
  29298. name: "Side",
  29299. image: {
  29300. source: "./media/characters/dusk/side.svg",
  29301. extra: 615 / 373,
  29302. bottom: 53 / 664
  29303. }
  29304. },
  29305. sitting: {
  29306. height: math.unit(7, "feet"),
  29307. weight: math.unit(800, "lb"),
  29308. name: "Sitting",
  29309. image: {
  29310. source: "./media/characters/dusk/sitting.svg",
  29311. extra: 753 / 425,
  29312. bottom: 33 / 774
  29313. }
  29314. },
  29315. head: {
  29316. height: math.unit(6.1, "feet"),
  29317. name: "Head",
  29318. image: {
  29319. source: "./media/characters/dusk/head.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(7, "feet"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(15, "feet"),
  29336. weight: math.unit(7000, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/jay-direwolf/front.svg",
  29340. extra: 1810 / 1732,
  29341. bottom: 66 / 1892
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Normal",
  29348. height: math.unit(15, "feet"),
  29349. default: true
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(4 + 9 / 12, "feet"),
  29358. weight: math.unit(130, "lb"),
  29359. name: "Front",
  29360. image: {
  29361. source: "./media/characters/anchovie/front.svg",
  29362. extra: 382 / 350,
  29363. bottom: 25 / 409
  29364. }
  29365. },
  29366. back: {
  29367. height: math.unit(4 + 9 / 12, "feet"),
  29368. weight: math.unit(130, "lb"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/anchovie/back.svg",
  29372. extra: 385 / 352,
  29373. bottom: 16.6 / 402
  29374. }
  29375. },
  29376. frontDressed: {
  29377. height: math.unit(4 + 9 / 12, "feet"),
  29378. weight: math.unit(130, "lb"),
  29379. name: "Front (Dressed)",
  29380. image: {
  29381. source: "./media/characters/anchovie/front-dressed.svg",
  29382. extra: 382 / 350,
  29383. bottom: 25 / 409
  29384. }
  29385. },
  29386. backDressed: {
  29387. height: math.unit(4 + 9 / 12, "feet"),
  29388. weight: math.unit(130, "lb"),
  29389. name: "Back (Dressed)",
  29390. image: {
  29391. source: "./media/characters/anchovie/back-dressed.svg",
  29392. extra: 385 / 352,
  29393. bottom: 16.6 / 402
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Micro",
  29400. height: math.unit(6.4, "inches")
  29401. },
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(4 + 9 / 12, "feet"),
  29405. default: true
  29406. },
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(2, "meters"),
  29414. weight: math.unit(180, "lb"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/acidrenamon/front.svg",
  29418. extra: 987 / 890,
  29419. bottom: 22.8 / 1009
  29420. }
  29421. },
  29422. back: {
  29423. height: math.unit(2, "meters"),
  29424. weight: math.unit(180, "lb"),
  29425. name: "Back",
  29426. image: {
  29427. source: "./media/characters/acidrenamon/back.svg",
  29428. extra: 983 / 891,
  29429. bottom: 8.4 / 992
  29430. }
  29431. },
  29432. head: {
  29433. height: math.unit(1.92, "feet"),
  29434. name: "Head",
  29435. image: {
  29436. source: "./media/characters/acidrenamon/head.svg"
  29437. }
  29438. },
  29439. rump: {
  29440. height: math.unit(1.72, "feet"),
  29441. name: "Rump",
  29442. image: {
  29443. source: "./media/characters/acidrenamon/rump.svg"
  29444. }
  29445. },
  29446. tail: {
  29447. height: math.unit(4.2, "feet"),
  29448. name: "Tail",
  29449. image: {
  29450. source: "./media/characters/acidrenamon/tail.svg"
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Normal",
  29457. height: math.unit(2, "meters"),
  29458. default: true
  29459. },
  29460. {
  29461. name: "Minimacro",
  29462. height: math.unit(7, "meters")
  29463. },
  29464. {
  29465. name: "Macro",
  29466. height: math.unit(200, "meters")
  29467. },
  29468. {
  29469. name: "Gigamacro",
  29470. height: math.unit(0.2, "earths")
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29476. {
  29477. front: {
  29478. height: math.unit(152, "feet"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/kenzie-lee/front.svg",
  29482. extra: 1869/1774,
  29483. bottom: 128/1997
  29484. }
  29485. },
  29486. side: {
  29487. height: math.unit(86, "feet"),
  29488. name: "Side",
  29489. image: {
  29490. source: "./media/characters/kenzie-lee/side.svg",
  29491. extra: 930/815,
  29492. bottom: 177/1107
  29493. }
  29494. },
  29495. paw: {
  29496. height: math.unit(15, "feet"),
  29497. name: "Paw",
  29498. image: {
  29499. source: "./media/characters/kenzie-lee/paw.svg"
  29500. }
  29501. },
  29502. },
  29503. [
  29504. {
  29505. name: "Kenzie Flea",
  29506. height: math.unit(2, "mm"),
  29507. default: true
  29508. },
  29509. {
  29510. name: "Micro",
  29511. height: math.unit(2, "inches")
  29512. },
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(152, "feet")
  29516. },
  29517. {
  29518. name: "Megamacro",
  29519. height: math.unit(7, "miles")
  29520. },
  29521. {
  29522. name: "Gigamacro",
  29523. height: math.unit(8000, "miles")
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(6, "feet"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/withers/front.svg",
  29535. extra: 1935/1760,
  29536. bottom: 72/2007
  29537. }
  29538. },
  29539. back: {
  29540. height: math.unit(6, "feet"),
  29541. name: "Back",
  29542. image: {
  29543. source: "./media/characters/withers/back.svg",
  29544. extra: 1944/1792,
  29545. bottom: 12/1956
  29546. }
  29547. },
  29548. dressed: {
  29549. height: math.unit(6, "feet"),
  29550. name: "Dressed",
  29551. image: {
  29552. source: "./media/characters/withers/dressed.svg",
  29553. extra: 1937/1765,
  29554. bottom: 73/2010
  29555. }
  29556. },
  29557. phase1: {
  29558. height: math.unit(1.1, "feet"),
  29559. name: "Phase 1",
  29560. image: {
  29561. source: "./media/characters/withers/phase-1.svg",
  29562. extra: 1885/1232,
  29563. bottom: 0/1885
  29564. }
  29565. },
  29566. phase2: {
  29567. height: math.unit(1.05, "feet"),
  29568. name: "Phase 2",
  29569. image: {
  29570. source: "./media/characters/withers/phase-2.svg",
  29571. extra: 1792/1090,
  29572. bottom: 0/1792
  29573. }
  29574. },
  29575. partyWipe: {
  29576. height: math.unit(1.1, "feet"),
  29577. name: "Party Wipe",
  29578. image: {
  29579. source: "./media/characters/withers/party-wipe.svg",
  29580. extra: 1864/1207,
  29581. bottom: 0/1864
  29582. }
  29583. },
  29584. },
  29585. [
  29586. {
  29587. name: "Macro",
  29588. height: math.unit(167, "feet"),
  29589. default: true
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(15, "miles")
  29594. }
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(6 + 7 / 12, "feet"),
  29602. weight: math.unit(250, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/nemoskii/front.svg",
  29606. extra: 2270 / 1734,
  29607. bottom: 86 / 2354
  29608. }
  29609. },
  29610. back: {
  29611. height: math.unit(6 + 7 / 12, "feet"),
  29612. weight: math.unit(250, "lb"),
  29613. name: "Back",
  29614. image: {
  29615. source: "./media/characters/nemoskii/back.svg",
  29616. extra: 1845 / 1788,
  29617. bottom: 10.5 / 1852
  29618. }
  29619. },
  29620. head: {
  29621. height: math.unit(1.31, "feet"),
  29622. name: "Head",
  29623. image: {
  29624. source: "./media/characters/nemoskii/head.svg"
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Micro",
  29631. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29632. },
  29633. {
  29634. name: "Normal",
  29635. height: math.unit(6 + 7 / 12, "feet"),
  29636. default: true
  29637. },
  29638. {
  29639. name: "Macro",
  29640. height: math.unit((6 + 7 / 12) * 150, "feet")
  29641. },
  29642. {
  29643. name: "Macro+",
  29644. height: math.unit((6 + 7 / 12) * 500, "feet")
  29645. },
  29646. {
  29647. name: "Megamacro",
  29648. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(1, "mile"),
  29657. weight: math.unit(265261.9, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/shui/front.svg",
  29661. extra: 1633 / 1564,
  29662. bottom: 91.5 / 1726
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Macro",
  29669. height: math.unit(1, "mile"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(12 + 6 / 12, "feet"),
  29679. weight: math.unit(1342, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/arokh-takakura/front.svg",
  29683. extra: 1089 / 1043,
  29684. bottom: 77.4 / 1176.7
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(12 + 6 / 12, "feet"),
  29689. weight: math.unit(1342, "lb"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/arokh-takakura/back.svg",
  29693. extra: 1046 / 1019,
  29694. bottom: 102 / 1150
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Big",
  29701. height: math.unit(12 + 6 / 12, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(5 + 6 / 12, "feet"),
  29711. weight: math.unit(150, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/theo/front.svg",
  29715. extra: 1184 / 1131,
  29716. bottom: 7.4 / 1191
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Micro",
  29723. height: math.unit(5, "inches")
  29724. },
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(5 + 6 / 12, "feet"),
  29728. default: true
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(5 + 9 / 12, "feet"),
  29737. weight: math.unit(130, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/cecelia-swift/front.svg",
  29741. extra: 502 / 484,
  29742. bottom: 23 / 523
  29743. }
  29744. },
  29745. back: {
  29746. height: math.unit(5 + 9 / 12, "feet"),
  29747. weight: math.unit(130, "lb"),
  29748. name: "Back",
  29749. image: {
  29750. source: "./media/characters/cecelia-swift/back.svg",
  29751. extra: 499 / 485,
  29752. bottom: 12 / 511
  29753. }
  29754. },
  29755. head: {
  29756. height: math.unit(0.90, "feet"),
  29757. name: "Head",
  29758. image: {
  29759. source: "./media/characters/cecelia-swift/head.svg"
  29760. }
  29761. },
  29762. rump: {
  29763. height: math.unit(1.75, "feet"),
  29764. name: "Rump",
  29765. image: {
  29766. source: "./media/characters/cecelia-swift/rump.svg"
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(5 + 9 / 12, "feet"),
  29774. default: true
  29775. },
  29776. {
  29777. name: "Big",
  29778. height: math.unit(50, "feet")
  29779. },
  29780. {
  29781. name: "Macro",
  29782. height: math.unit(100, "feet")
  29783. },
  29784. {
  29785. name: "Macro+",
  29786. height: math.unit(500, "feet")
  29787. },
  29788. {
  29789. name: "Macro++",
  29790. height: math.unit(1000, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(6, "feet"),
  29799. weight: math.unit(150, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/kaunan/front.svg",
  29803. extra: 2890 / 2523,
  29804. bottom: 49 / 2939
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Macro",
  29811. height: math.unit(150, "feet"),
  29812. default: true
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29818. {
  29819. dressed: {
  29820. height: math.unit(175, "cm"),
  29821. weight: math.unit(60, "kg"),
  29822. name: "Dressed",
  29823. image: {
  29824. source: "./media/characters/fei/dressed.svg",
  29825. extra: 1402/1278,
  29826. bottom: 27/1429
  29827. }
  29828. },
  29829. nude: {
  29830. height: math.unit(175, "cm"),
  29831. weight: math.unit(60, "kg"),
  29832. name: "Nude",
  29833. image: {
  29834. source: "./media/characters/fei/nude.svg",
  29835. extra: 1402/1278,
  29836. bottom: 27/1429
  29837. }
  29838. },
  29839. heels: {
  29840. height: math.unit(0.466, "feet"),
  29841. name: "Heels",
  29842. image: {
  29843. source: "./media/characters/fei/heels.svg",
  29844. extra: 156/152,
  29845. bottom: 28/184
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Mortal",
  29852. height: math.unit(175, "cm")
  29853. },
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(3500, "m")
  29857. },
  29858. {
  29859. name: "Stroll",
  29860. height: math.unit(18.4, "km"),
  29861. default: true
  29862. },
  29863. {
  29864. name: "Showoff",
  29865. height: math.unit(175, "km")
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(7, "feet"),
  29874. weight: math.unit(1000, "kg"),
  29875. name: "Front",
  29876. image: {
  29877. source: "./media/characters/edrax/front.svg",
  29878. extra: 2838 / 2550,
  29879. bottom: 130 / 2968
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Small",
  29886. height: math.unit(7, "feet")
  29887. },
  29888. {
  29889. name: "Normal",
  29890. height: math.unit(1500, "meters")
  29891. },
  29892. {
  29893. name: "Mega",
  29894. height: math.unit(12000000, "km"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "Megamacro",
  29899. height: math.unit(10600000, "lightyears")
  29900. },
  29901. {
  29902. name: "Hypermacro",
  29903. height: math.unit(256, "yottameters")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(10, "feet"),
  29912. weight: math.unit(750, "lb"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/clove/front.svg",
  29916. extra: 1918/1751,
  29917. bottom: 52/1970
  29918. }
  29919. },
  29920. back: {
  29921. height: math.unit(10, "feet"),
  29922. weight: math.unit(750, "lb"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/clove/back.svg",
  29926. extra: 1912/1747,
  29927. bottom: 50/1962
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Normal",
  29934. height: math.unit(10, "feet"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(4, "feet"),
  29944. weight: math.unit(50, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/alex-rabbit/front.svg",
  29948. extra: 507 / 458,
  29949. bottom: 18.5 / 527
  29950. }
  29951. },
  29952. back: {
  29953. height: math.unit(4, "feet"),
  29954. weight: math.unit(50, "lb"),
  29955. name: "Back",
  29956. image: {
  29957. source: "./media/characters/alex-rabbit/back.svg",
  29958. extra: 502 / 460,
  29959. bottom: 18.9 / 521
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(4, "feet"),
  29967. default: true
  29968. },
  29969. ]
  29970. ))
  29971. characterMakers.push(() => makeCharacter(
  29972. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29973. {
  29974. front: {
  29975. height: math.unit(1 + 3 / 12, "feet"),
  29976. weight: math.unit(80, "lb"),
  29977. name: "Front",
  29978. image: {
  29979. source: "./media/characters/zander-rose/front.svg",
  29980. extra: 916 / 797,
  29981. bottom: 17 / 933
  29982. }
  29983. },
  29984. back: {
  29985. height: math.unit(1 + 3 / 12, "feet"),
  29986. weight: math.unit(80, "lb"),
  29987. name: "Back",
  29988. image: {
  29989. source: "./media/characters/zander-rose/back.svg",
  29990. extra: 903 / 779,
  29991. bottom: 31 / 934
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Normal",
  29998. height: math.unit(1 + 3 / 12, "feet"),
  29999. default: true
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30005. {
  30006. anthro: {
  30007. height: math.unit(6, "feet"),
  30008. weight: math.unit(150, "lb"),
  30009. name: "Anthro",
  30010. image: {
  30011. source: "./media/characters/razz/anthro.svg",
  30012. extra: 1437 / 1343,
  30013. bottom: 48 / 1485
  30014. }
  30015. },
  30016. feral: {
  30017. height: math.unit(6, "feet"),
  30018. weight: math.unit(150, "lb"),
  30019. name: "Feral",
  30020. image: {
  30021. source: "./media/characters/razz/feral.svg",
  30022. extra: 2569 / 1385,
  30023. bottom: 95 / 2664
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(6, "feet"),
  30031. default: true
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(9 + 4 / 12, "feet"),
  30040. weight: math.unit(500, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/morrigan/front.svg",
  30044. extra: 2707 / 2579,
  30045. bottom: 156 / 2863
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Normal",
  30052. height: math.unit(9 + 4 / 12, "feet"),
  30053. default: true
  30054. },
  30055. ]
  30056. ))
  30057. characterMakers.push(() => makeCharacter(
  30058. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30059. {
  30060. front: {
  30061. height: math.unit(5, "stories"),
  30062. weight: math.unit(4000, "lb"),
  30063. name: "Front",
  30064. image: {
  30065. source: "./media/characters/jenene/front.svg",
  30066. extra: 1780 / 1710,
  30067. bottom: 57 / 1837
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Normal",
  30074. height: math.unit(5, "stories"),
  30075. default: true
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30081. {
  30082. taurSfw: {
  30083. height: math.unit(10, "meters"),
  30084. weight: math.unit(17500, "kg"),
  30085. name: "Taur",
  30086. image: {
  30087. source: "./media/characters/faey/taur-sfw.svg",
  30088. extra: 1200 / 968,
  30089. bottom: 41 / 1241
  30090. }
  30091. },
  30092. chestmaw: {
  30093. height: math.unit(2.01, "meters"),
  30094. name: "Chestmaw",
  30095. image: {
  30096. source: "./media/characters/faey/chestmaw.svg"
  30097. }
  30098. },
  30099. foot: {
  30100. height: math.unit(2.43, "meters"),
  30101. name: "Foot",
  30102. image: {
  30103. source: "./media/characters/faey/foot.svg"
  30104. }
  30105. },
  30106. jaws: {
  30107. height: math.unit(1.66, "meters"),
  30108. name: "Jaws",
  30109. image: {
  30110. source: "./media/characters/faey/jaws.svg"
  30111. }
  30112. },
  30113. tongues: {
  30114. height: math.unit(2.01, "meters"),
  30115. name: "Tongues",
  30116. image: {
  30117. source: "./media/characters/faey/tongues.svg"
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Small",
  30124. height: math.unit(10, "meters"),
  30125. default: true
  30126. },
  30127. {
  30128. name: "Big",
  30129. height: math.unit(500000, "km")
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(7, "feet"),
  30138. weight: math.unit(275, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/roku/front.svg",
  30142. extra: 903 / 878,
  30143. bottom: 37 / 940
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(7, "feet"),
  30151. default: true
  30152. },
  30153. {
  30154. name: "Macro",
  30155. height: math.unit(500, "feet")
  30156. },
  30157. {
  30158. name: "Megamacro",
  30159. height: math.unit(200, "miles")
  30160. },
  30161. ]
  30162. ))
  30163. characterMakers.push(() => makeCharacter(
  30164. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30165. {
  30166. front: {
  30167. height: math.unit(6 + 2 / 12, "feet"),
  30168. weight: math.unit(150, "lb"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/lira/front.svg",
  30172. extra: 1727 / 1605,
  30173. bottom: 26 / 1753
  30174. }
  30175. },
  30176. back: {
  30177. height: math.unit(6 + 2 / 12, "feet"),
  30178. weight: math.unit(150, "lb"),
  30179. name: "Back",
  30180. image: {
  30181. source: "./media/characters/lira/back.svg",
  30182. extra: 1713/1621,
  30183. bottom: 20/1733
  30184. }
  30185. },
  30186. hand: {
  30187. height: math.unit(0.75, "feet"),
  30188. name: "Hand",
  30189. image: {
  30190. source: "./media/characters/lira/hand.svg"
  30191. }
  30192. },
  30193. maw: {
  30194. height: math.unit(0.65, "feet"),
  30195. name: "Maw",
  30196. image: {
  30197. source: "./media/characters/lira/maw.svg"
  30198. }
  30199. },
  30200. pawDigi: {
  30201. height: math.unit(1.6, "feet"),
  30202. name: "Paw Digi",
  30203. image: {
  30204. source: "./media/characters/lira/paw-digi.svg"
  30205. }
  30206. },
  30207. pawPlanti: {
  30208. height: math.unit(1.4, "feet"),
  30209. name: "Paw Planti",
  30210. image: {
  30211. source: "./media/characters/lira/paw-planti.svg"
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Normal",
  30218. height: math.unit(6 + 2 / 12, "feet"),
  30219. default: true
  30220. },
  30221. {
  30222. name: "Macro",
  30223. height: math.unit(100, "feet")
  30224. },
  30225. {
  30226. name: "Macro²",
  30227. height: math.unit(1600, "feet")
  30228. },
  30229. {
  30230. name: "Planetary",
  30231. height: math.unit(20, "earths")
  30232. },
  30233. ]
  30234. ))
  30235. characterMakers.push(() => makeCharacter(
  30236. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30237. {
  30238. front: {
  30239. height: math.unit(6, "feet"),
  30240. weight: math.unit(150, "lb"),
  30241. name: "Front",
  30242. image: {
  30243. source: "./media/characters/hadjet/front.svg",
  30244. extra: 1480 / 1346,
  30245. bottom: 26 / 1506
  30246. }
  30247. },
  30248. frontNsfw: {
  30249. height: math.unit(6, "feet"),
  30250. weight: math.unit(150, "lb"),
  30251. name: "Front (NSFW)",
  30252. image: {
  30253. source: "./media/characters/hadjet/front-nsfw.svg",
  30254. extra: 1440 / 1358,
  30255. bottom: 52 / 1492
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Macro",
  30262. height: math.unit(10, "stories"),
  30263. default: true
  30264. },
  30265. {
  30266. name: "Megamacro",
  30267. height: math.unit(1.5, "miles")
  30268. },
  30269. {
  30270. name: "Megamacro+",
  30271. height: math.unit(5, "miles")
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30277. {
  30278. side: {
  30279. height: math.unit(106, "feet"),
  30280. weight: math.unit(500, "tonnes"),
  30281. name: "Side",
  30282. image: {
  30283. source: "./media/characters/kodran/side.svg",
  30284. extra: 553 / 480,
  30285. bottom: 33 / 586
  30286. }
  30287. },
  30288. front: {
  30289. height: math.unit(132, "feet"),
  30290. weight: math.unit(500, "tonnes"),
  30291. name: "Front",
  30292. image: {
  30293. source: "./media/characters/kodran/front.svg",
  30294. extra: 667 / 643,
  30295. bottom: 42 / 709
  30296. }
  30297. },
  30298. flying: {
  30299. height: math.unit(350, "feet"),
  30300. weight: math.unit(500, "tonnes"),
  30301. name: "Flying",
  30302. image: {
  30303. source: "./media/characters/kodran/flying.svg"
  30304. }
  30305. },
  30306. foot: {
  30307. height: math.unit(33, "feet"),
  30308. name: "Foot",
  30309. image: {
  30310. source: "./media/characters/kodran/foot.svg"
  30311. }
  30312. },
  30313. footFront: {
  30314. height: math.unit(19, "feet"),
  30315. name: "Foot (Front)",
  30316. image: {
  30317. source: "./media/characters/kodran/foot-front.svg",
  30318. extra: 261 / 261,
  30319. bottom: 91 / 352
  30320. }
  30321. },
  30322. headFront: {
  30323. height: math.unit(53, "feet"),
  30324. name: "Head (Front)",
  30325. image: {
  30326. source: "./media/characters/kodran/head-front.svg"
  30327. }
  30328. },
  30329. headSide: {
  30330. height: math.unit(65, "feet"),
  30331. name: "Head (Side)",
  30332. image: {
  30333. source: "./media/characters/kodran/head-side.svg"
  30334. }
  30335. },
  30336. throat: {
  30337. height: math.unit(79, "feet"),
  30338. name: "Throat",
  30339. image: {
  30340. source: "./media/characters/kodran/throat.svg"
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Large",
  30347. height: math.unit(106, "feet"),
  30348. default: true
  30349. },
  30350. ]
  30351. ))
  30352. characterMakers.push(() => makeCharacter(
  30353. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30354. {
  30355. side: {
  30356. height: math.unit(11, "feet"),
  30357. weight: math.unit(150, "lb"),
  30358. name: "Side",
  30359. image: {
  30360. source: "./media/characters/pyxaron/side.svg",
  30361. extra: 305 / 195,
  30362. bottom: 17 / 322
  30363. }
  30364. },
  30365. },
  30366. [
  30367. {
  30368. name: "Normal",
  30369. height: math.unit(11, "feet"),
  30370. default: true
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(6, "feet"),
  30379. weight: math.unit(150, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/meep/front.svg",
  30383. extra: 88 / 80,
  30384. bottom: 6 / 94
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Fun Sized",
  30391. height: math.unit(2, "inches"),
  30392. default: true
  30393. },
  30394. {
  30395. name: "Friend Sized",
  30396. height: math.unit(8, "inches")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(15, "feet"),
  30405. weight: math.unit(2500, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/holly-rabbit/front.svg",
  30409. extra: 1433 / 1233,
  30410. bottom: 125 / 1558
  30411. }
  30412. },
  30413. dick: {
  30414. height: math.unit(4.6, "feet"),
  30415. name: "Dick",
  30416. image: {
  30417. source: "./media/characters/holly-rabbit/dick.svg"
  30418. }
  30419. },
  30420. },
  30421. [
  30422. {
  30423. name: "Normal",
  30424. height: math.unit(15, "feet"),
  30425. default: true
  30426. },
  30427. {
  30428. name: "Macro",
  30429. height: math.unit(250, "feet")
  30430. },
  30431. {
  30432. name: "Macro+",
  30433. height: math.unit(2500, "feet")
  30434. },
  30435. ]
  30436. ))
  30437. characterMakers.push(() => makeCharacter(
  30438. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30439. {
  30440. front: {
  30441. height: math.unit(3.02, "meters"),
  30442. weight: math.unit(500, "kg"),
  30443. name: "Front",
  30444. image: {
  30445. source: "./media/characters/drena/front.svg",
  30446. extra: 282 / 243,
  30447. bottom: 8 / 290
  30448. }
  30449. },
  30450. side: {
  30451. height: math.unit(3.02, "meters"),
  30452. weight: math.unit(500, "kg"),
  30453. name: "Side",
  30454. image: {
  30455. source: "./media/characters/drena/side.svg",
  30456. extra: 280 / 245,
  30457. bottom: 10 / 290
  30458. }
  30459. },
  30460. back: {
  30461. height: math.unit(3.02, "meters"),
  30462. weight: math.unit(500, "kg"),
  30463. name: "Back",
  30464. image: {
  30465. source: "./media/characters/drena/back.svg",
  30466. extra: 278 / 243,
  30467. bottom: 2 / 280
  30468. }
  30469. },
  30470. foot: {
  30471. height: math.unit(0.75, "meters"),
  30472. name: "Foot",
  30473. image: {
  30474. source: "./media/characters/drena/foot.svg"
  30475. }
  30476. },
  30477. maw: {
  30478. height: math.unit(0.82, "meters"),
  30479. name: "Maw",
  30480. image: {
  30481. source: "./media/characters/drena/maw.svg"
  30482. }
  30483. },
  30484. eating: {
  30485. height: math.unit(0.75, "meters"),
  30486. name: "Eating",
  30487. image: {
  30488. source: "./media/characters/drena/eating.svg"
  30489. }
  30490. },
  30491. rump: {
  30492. height: math.unit(0.93, "meters"),
  30493. name: "Rump",
  30494. image: {
  30495. source: "./media/characters/drena/rump.svg"
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Normal",
  30502. height: math.unit(3.02, "meters"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(6 + 4 / 12, "feet"),
  30512. weight: math.unit(250, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/remmyzilla/front.svg",
  30516. extra: 4033 / 3588,
  30517. bottom: 123 / 4156
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(6 + 4 / 12, "feet"),
  30522. weight: math.unit(250, "lb"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/remmyzilla/back.svg",
  30526. extra: 2687 / 2555,
  30527. bottom: 48 / 2735
  30528. }
  30529. },
  30530. paw: {
  30531. height: math.unit(1.73, "feet"),
  30532. name: "Paw",
  30533. image: {
  30534. source: "./media/characters/remmyzilla/paw.svg"
  30535. },
  30536. extraAttributes: {
  30537. "toeSize": {
  30538. name: "Toe Size",
  30539. power: 2,
  30540. type: "area",
  30541. base: math.unit(0.0035, "m^2")
  30542. },
  30543. "padSize": {
  30544. name: "Pad Size",
  30545. power: 2,
  30546. type: "area",
  30547. base: math.unit(0.015, "m^2")
  30548. },
  30549. "pawsize": {
  30550. name: "Paw Size",
  30551. power: 2,
  30552. type: "area",
  30553. base: math.unit(0.072, "m^2")
  30554. },
  30555. }
  30556. },
  30557. maw: {
  30558. height: math.unit(1.73, "feet"),
  30559. name: "Maw",
  30560. image: {
  30561. source: "./media/characters/remmyzilla/maw.svg"
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(6 + 4 / 12, "feet")
  30569. },
  30570. {
  30571. name: "Minimacro",
  30572. height: math.unit(12 + 8 / 12, "feet")
  30573. },
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(640, "feet"),
  30577. default: true
  30578. },
  30579. {
  30580. name: "Megamacro",
  30581. height: math.unit(6400, "feet")
  30582. },
  30583. {
  30584. name: "Gigamacro",
  30585. height: math.unit(64000, "miles")
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(2.5, "meters"),
  30594. weight: math.unit(300, "lb"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/lawrence/front.svg",
  30598. extra: 357 / 335,
  30599. bottom: 30 / 387
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(2.5, "meters"),
  30604. weight: math.unit(300, "lb"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/lawrence/back.svg",
  30608. extra: 357 / 338,
  30609. bottom: 16 / 373
  30610. }
  30611. },
  30612. head: {
  30613. height: math.unit(0.9, "meter"),
  30614. name: "Head",
  30615. image: {
  30616. source: "./media/characters/lawrence/head.svg"
  30617. }
  30618. },
  30619. maw: {
  30620. height: math.unit(0.7, "meter"),
  30621. name: "Maw",
  30622. image: {
  30623. source: "./media/characters/lawrence/maw.svg"
  30624. }
  30625. },
  30626. footBottom: {
  30627. height: math.unit(0.5, "meter"),
  30628. name: "Foot (Bottom)",
  30629. image: {
  30630. source: "./media/characters/lawrence/foot-bottom.svg"
  30631. }
  30632. },
  30633. footTop: {
  30634. height: math.unit(0.5, "meter"),
  30635. name: "Foot (Top)",
  30636. image: {
  30637. source: "./media/characters/lawrence/foot-top.svg"
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(2.5, "meters"),
  30645. default: true
  30646. },
  30647. {
  30648. name: "Macro",
  30649. height: math.unit(95, "meters")
  30650. },
  30651. {
  30652. name: "Megamacro",
  30653. height: math.unit(150, "km")
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30659. {
  30660. front: {
  30661. height: math.unit(4.2, "meters"),
  30662. name: "Front",
  30663. image: {
  30664. source: "./media/characters/sydney/front.svg",
  30665. extra: 1323 / 1277,
  30666. bottom: 111 / 1434
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Normal",
  30673. height: math.unit(4.2, "meters"),
  30674. default: true
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30680. {
  30681. back: {
  30682. height: math.unit(201, "feet"),
  30683. name: "Back",
  30684. image: {
  30685. source: "./media/characters/jessica/back.svg",
  30686. extra: 273 / 259,
  30687. bottom: 7 / 280
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Normal",
  30694. height: math.unit(201, "feet"),
  30695. default: true
  30696. },
  30697. {
  30698. name: "Megamacro",
  30699. height: math.unit(8, "miles")
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30705. {
  30706. side: {
  30707. height: math.unit(5.6, "m"),
  30708. weight: math.unit(8000, "kg"),
  30709. name: "Side",
  30710. image: {
  30711. source: "./media/characters/victoria/side.svg",
  30712. extra: 1542/1229,
  30713. bottom: 124/1666
  30714. }
  30715. },
  30716. maw: {
  30717. height: math.unit(7.14, "feet"),
  30718. name: "Maw",
  30719. image: {
  30720. source: "./media/characters/victoria/maw.svg"
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Normal",
  30727. height: math.unit(5.6, "m"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30734. {
  30735. front: {
  30736. height: math.unit(5 + 6 / 12, "feet"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/cat/front.svg",
  30740. extra: 1449/1295,
  30741. bottom: 34/1483
  30742. },
  30743. form: "cat",
  30744. default: true
  30745. },
  30746. back: {
  30747. height: math.unit(5 + 6 / 12, "feet"),
  30748. name: "Back",
  30749. image: {
  30750. source: "./media/characters/cat/back.svg",
  30751. extra: 1466/1301,
  30752. bottom: 19/1485
  30753. },
  30754. form: "cat"
  30755. },
  30756. taur: {
  30757. height: math.unit(7, "feet"),
  30758. name: "Taur",
  30759. image: {
  30760. source: "./media/characters/cat/taur.svg",
  30761. extra: 1389/1233,
  30762. bottom: 83/1472
  30763. },
  30764. form: "taur",
  30765. default: true
  30766. },
  30767. lucarioFront: {
  30768. height: math.unit(4, "feet"),
  30769. name: "Lucario (Front)",
  30770. image: {
  30771. source: "./media/characters/cat/lucario-front.svg",
  30772. extra: 1149/1019,
  30773. bottom: 84/1233
  30774. },
  30775. form: "lucario",
  30776. default: true
  30777. },
  30778. lucarioBack: {
  30779. height: math.unit(4, "feet"),
  30780. name: "Lucario (Back)",
  30781. image: {
  30782. source: "./media/characters/cat/lucario-back.svg",
  30783. extra: 1190/1059,
  30784. bottom: 33/1223
  30785. },
  30786. form: "lucario"
  30787. },
  30788. megaLucario: {
  30789. height: math.unit(4, "feet"),
  30790. name: "Mega Lucario",
  30791. image: {
  30792. source: "./media/characters/cat/mega-lucario.svg",
  30793. extra: 1515 / 1319,
  30794. bottom: 63 / 1578
  30795. },
  30796. form: "lucario"
  30797. },
  30798. nickit: {
  30799. height: math.unit(2, "feet"),
  30800. name: "Nickit",
  30801. image: {
  30802. source: "./media/characters/cat/nickit.svg",
  30803. extra: 1980 / 1585,
  30804. bottom: 102 / 2082
  30805. },
  30806. form: "nickit",
  30807. default: true
  30808. },
  30809. lopunnyFront: {
  30810. height: math.unit(5, "feet"),
  30811. name: "Lopunny (Front)",
  30812. image: {
  30813. source: "./media/characters/cat/lopunny-front.svg",
  30814. extra: 1782 / 1469,
  30815. bottom: 38 / 1820
  30816. },
  30817. form: "lopunny",
  30818. default: true
  30819. },
  30820. lopunnyBack: {
  30821. height: math.unit(5, "feet"),
  30822. name: "Lopunny (Back)",
  30823. image: {
  30824. source: "./media/characters/cat/lopunny-back.svg",
  30825. extra: 1660 / 1490,
  30826. bottom: 25 / 1685
  30827. },
  30828. form: "lopunny"
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Really small",
  30834. height: math.unit(1, "nm")
  30835. },
  30836. {
  30837. name: "Micro",
  30838. height: math.unit(5, "inches")
  30839. },
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(5 + 6 / 12, "feet"),
  30843. default: true
  30844. },
  30845. {
  30846. name: "Macro",
  30847. height: math.unit(50, "feet")
  30848. },
  30849. {
  30850. name: "Macro+",
  30851. height: math.unit(150, "feet")
  30852. },
  30853. {
  30854. name: "Megamacro",
  30855. height: math.unit(100, "miles")
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(63.4, "meters"),
  30864. weight: math.unit(3.28349e+6, "kilograms"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/kirina-violet/front.svg",
  30868. extra: 2812 / 2725,
  30869. bottom: 0 / 2812
  30870. }
  30871. },
  30872. back: {
  30873. height: math.unit(63.4, "meters"),
  30874. weight: math.unit(3.28349e+6, "kilograms"),
  30875. name: "Back",
  30876. image: {
  30877. source: "./media/characters/kirina-violet/back.svg",
  30878. extra: 2812 / 2725,
  30879. bottom: 0 / 2812
  30880. }
  30881. },
  30882. mouth: {
  30883. height: math.unit(4.35, "meters"),
  30884. name: "Mouth",
  30885. image: {
  30886. source: "./media/characters/kirina-violet/mouth.svg"
  30887. }
  30888. },
  30889. paw: {
  30890. height: math.unit(5.6, "meters"),
  30891. name: "Paw",
  30892. image: {
  30893. source: "./media/characters/kirina-violet/paw.svg"
  30894. }
  30895. },
  30896. tail: {
  30897. height: math.unit(18, "meters"),
  30898. name: "Tail",
  30899. image: {
  30900. source: "./media/characters/kirina-violet/tail.svg"
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Macro",
  30907. height: math.unit(63.4, "meters"),
  30908. default: true
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(75, "feet"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/cat-gigachu/front.svg",
  30920. extra: 1239/1027,
  30921. bottom: 32/1271
  30922. }
  30923. },
  30924. back: {
  30925. height: math.unit(75, "feet"),
  30926. name: "Back",
  30927. image: {
  30928. source: "./media/characters/cat-gigachu/back.svg",
  30929. extra: 1229/1030,
  30930. bottom: 9/1238
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Dynamax",
  30937. height: math.unit(75, "feet"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(6, "feet"),
  30947. weight: math.unit(150, "lb"),
  30948. name: "Front",
  30949. image: {
  30950. source: "./media/characters/sfaiyan/front.svg",
  30951. extra: 999 / 978,
  30952. bottom: 5 / 1004
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(1.82, "meters")
  30960. },
  30961. {
  30962. name: "Giant",
  30963. height: math.unit(2.27, "km"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(179, "cm"),
  30973. weight: math.unit(100, "kg"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/raunehkeli/front.svg",
  30977. extra: 1934 / 1926,
  30978. bottom: 0 / 1934
  30979. }
  30980. },
  30981. },
  30982. [
  30983. {
  30984. name: "Normal",
  30985. height: math.unit(179, "cm")
  30986. },
  30987. {
  30988. name: "Maximum",
  30989. height: math.unit(575, "meters"),
  30990. default: true
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30996. {
  30997. front: {
  30998. height: math.unit(6, "feet"),
  30999. weight: math.unit(150, "lb"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31003. extra: 2625 / 2518,
  31004. bottom: 60 / 2685
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(6 + 2 / 12, "feet")
  31012. },
  31013. {
  31014. name: "Macro",
  31015. height: math.unit(1180, "feet"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31022. {
  31023. front: {
  31024. height: math.unit(5 + 6 / 12, "feet"),
  31025. weight: math.unit(108, "lb"),
  31026. name: "Front",
  31027. image: {
  31028. source: "./media/characters/lilith-zott/front.svg",
  31029. extra: 2510 / 2238,
  31030. bottom: 100 / 2610
  31031. }
  31032. },
  31033. frontDressed: {
  31034. height: math.unit(5 + 6 / 12, "feet"),
  31035. weight: math.unit(108, "lb"),
  31036. name: "Front (Dressed)",
  31037. image: {
  31038. source: "./media/characters/lilith-zott/front-dressed.svg",
  31039. extra: 2510 / 2238,
  31040. bottom: 100 / 2610
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(5 + 6 / 12, "feet")
  31048. },
  31049. {
  31050. name: "Macro",
  31051. height: math.unit(1030, "feet"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(6, "feet"),
  31061. weight: math.unit(150, "lb"),
  31062. name: "Front",
  31063. image: {
  31064. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31065. extra: 2567 / 2435,
  31066. bottom: 39 / 2606
  31067. }
  31068. },
  31069. frontSuper: {
  31070. height: math.unit(6, "feet"),
  31071. name: "Front (Super)",
  31072. image: {
  31073. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31074. extra: 2567 / 2435,
  31075. bottom: 39 / 2606
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Normal",
  31082. height: math.unit(5 + 10 / 12, "feet")
  31083. },
  31084. {
  31085. name: "Macro",
  31086. height: math.unit(1100, "feet"),
  31087. default: true
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31093. {
  31094. front: {
  31095. height: math.unit(100, "miles"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/sona/front.svg",
  31099. extra: 2433 / 2201,
  31100. bottom: 53 / 2486
  31101. }
  31102. },
  31103. foot: {
  31104. height: math.unit(16.1, "miles"),
  31105. name: "Foot",
  31106. image: {
  31107. source: "./media/characters/sona/foot.svg"
  31108. }
  31109. },
  31110. },
  31111. [
  31112. {
  31113. name: "Macro",
  31114. height: math.unit(100, "miles"),
  31115. default: true
  31116. },
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(6, "feet"),
  31124. weight: math.unit(150, "lb"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/bailey/front.svg",
  31128. extra: 1778 / 1724,
  31129. bottom: 30 / 1808
  31130. }
  31131. },
  31132. },
  31133. [
  31134. {
  31135. name: "Micro",
  31136. height: math.unit(4, "inches")
  31137. },
  31138. {
  31139. name: "Normal",
  31140. height: math.unit(5 + 5 / 12, "feet"),
  31141. default: true
  31142. },
  31143. {
  31144. name: "Macro",
  31145. height: math.unit(250, "feet")
  31146. },
  31147. {
  31148. name: "Megamacro",
  31149. height: math.unit(100, "miles")
  31150. },
  31151. ]
  31152. ))
  31153. characterMakers.push(() => makeCharacter(
  31154. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31155. {
  31156. front: {
  31157. height: math.unit(5 + 2 / 12, "feet"),
  31158. weight: math.unit(120, "lb"),
  31159. name: "Front",
  31160. image: {
  31161. source: "./media/characters/snaps/front.svg",
  31162. extra: 2370 / 2177,
  31163. bottom: 48 / 2418
  31164. }
  31165. },
  31166. back: {
  31167. height: math.unit(5 + 2 / 12, "feet"),
  31168. weight: math.unit(120, "lb"),
  31169. name: "Back",
  31170. image: {
  31171. source: "./media/characters/snaps/back.svg",
  31172. extra: 2408 / 2258,
  31173. bottom: 15 / 2423
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Micro",
  31180. height: math.unit(9, "inches")
  31181. },
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(5 + 2 / 12, "feet"),
  31185. default: true
  31186. },
  31187. {
  31188. name: "Mini Macro",
  31189. height: math.unit(10, "feet")
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(1.8, "meters"),
  31198. weight: math.unit(85, "kg"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/azteck/front.svg",
  31202. extra: 2815 / 2625,
  31203. bottom: 89 / 2904
  31204. }
  31205. },
  31206. back: {
  31207. height: math.unit(1.8, "meters"),
  31208. weight: math.unit(85, "kg"),
  31209. name: "Back",
  31210. image: {
  31211. source: "./media/characters/azteck/back.svg",
  31212. extra: 2856 / 2648,
  31213. bottom: 85 / 2941
  31214. }
  31215. },
  31216. frontDressed: {
  31217. height: math.unit(1.8, "meters"),
  31218. weight: math.unit(85, "kg"),
  31219. name: "Front (Dressed)",
  31220. image: {
  31221. source: "./media/characters/azteck/front-dressed.svg",
  31222. extra: 2147 / 2003,
  31223. bottom: 68 / 2215
  31224. }
  31225. },
  31226. head: {
  31227. height: math.unit(0.47, "meters"),
  31228. weight: math.unit(85, "kg"),
  31229. name: "Head",
  31230. image: {
  31231. source: "./media/characters/azteck/head.svg"
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Bite sized",
  31238. height: math.unit(16, "cm")
  31239. },
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(1.8, "meters"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Pidge", species: ["hellhound"], 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/pidge/front.svg",
  31256. extra: 1936/1820,
  31257. bottom: 0/1936
  31258. }
  31259. },
  31260. back: {
  31261. height: math.unit(6, "feet"),
  31262. weight: math.unit(150, "lb"),
  31263. name: "Back",
  31264. image: {
  31265. source: "./media/characters/pidge/back.svg",
  31266. extra: 1938/1843,
  31267. bottom: 0/1938
  31268. }
  31269. },
  31270. casual: {
  31271. height: math.unit(6, "feet"),
  31272. weight: math.unit(150, "lb"),
  31273. name: "Casual",
  31274. image: {
  31275. source: "./media/characters/pidge/casual.svg",
  31276. extra: 1936/1820,
  31277. bottom: 0/1936
  31278. }
  31279. },
  31280. tech: {
  31281. height: math.unit(6, "feet"),
  31282. weight: math.unit(150, "lb"),
  31283. name: "Tech",
  31284. image: {
  31285. source: "./media/characters/pidge/tech.svg",
  31286. extra: 1802/1682,
  31287. bottom: 0/1802
  31288. }
  31289. },
  31290. head: {
  31291. height: math.unit(1.61, "feet"),
  31292. name: "Head",
  31293. image: {
  31294. source: "./media/characters/pidge/head.svg"
  31295. }
  31296. },
  31297. collar: {
  31298. height: math.unit(0.82, "feet"),
  31299. name: "Collar",
  31300. image: {
  31301. source: "./media/characters/pidge/collar.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Macro",
  31308. height: math.unit(2, "mile"),
  31309. default: true
  31310. },
  31311. {
  31312. name: "PUPPY",
  31313. height: math.unit(20, "miles")
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(6, "feet"),
  31322. weight: math.unit(150, "lb"),
  31323. name: "Front",
  31324. image: {
  31325. source: "./media/characters/en/front.svg",
  31326. extra: 1697 / 1563,
  31327. bottom: 103 / 1800
  31328. }
  31329. },
  31330. back: {
  31331. height: math.unit(6, "feet"),
  31332. weight: math.unit(150, "lb"),
  31333. name: "Back",
  31334. image: {
  31335. source: "./media/characters/en/back.svg",
  31336. extra: 1700 / 1570,
  31337. bottom: 51 / 1751
  31338. }
  31339. },
  31340. frontDressed: {
  31341. height: math.unit(6, "feet"),
  31342. weight: math.unit(150, "lb"),
  31343. name: "Front (Dressed)",
  31344. image: {
  31345. source: "./media/characters/en/front-dressed.svg",
  31346. extra: 1697 / 1563,
  31347. bottom: 103 / 1800
  31348. }
  31349. },
  31350. backDressed: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Back (Dressed)",
  31354. image: {
  31355. source: "./media/characters/en/back-dressed.svg",
  31356. extra: 1700 / 1570,
  31357. bottom: 51 / 1751
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Macro",
  31364. height: math.unit(210, "feet"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(6, "feet"),
  31374. weight: math.unit(150, "lb"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/haze-orris/front.svg",
  31378. extra: 3975 / 3525,
  31379. bottom: 137 / 4112
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Micro",
  31386. height: math.unit(150, "mm"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(6, "feet"),
  31396. weight: math.unit(150, "lb"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/casselene-yaro/front.svg",
  31400. extra: 4721 / 4541,
  31401. bottom: 82 / 4803
  31402. }
  31403. },
  31404. back: {
  31405. height: math.unit(6, "feet"),
  31406. weight: math.unit(150, "lb"),
  31407. name: "Back",
  31408. image: {
  31409. source: "./media/characters/casselene-yaro/back.svg",
  31410. extra: 4569 / 4377,
  31411. bottom: 69 / 4638
  31412. }
  31413. },
  31414. dressed: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(150, "lb"),
  31417. name: "Dressed",
  31418. image: {
  31419. source: "./media/characters/casselene-yaro/dressed.svg",
  31420. extra: 4721 / 4541,
  31421. bottom: 82 / 4803
  31422. }
  31423. },
  31424. maw: {
  31425. height: math.unit(1, "feet"),
  31426. name: "Maw",
  31427. image: {
  31428. source: "./media/characters/casselene-yaro/maw.svg"
  31429. }
  31430. },
  31431. },
  31432. [
  31433. {
  31434. name: "Macro",
  31435. height: math.unit(190, "feet"),
  31436. default: true
  31437. },
  31438. ]
  31439. ))
  31440. characterMakers.push(() => makeCharacter(
  31441. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31442. {
  31443. front: {
  31444. height: math.unit(10, "feet"),
  31445. weight: math.unit(15015, "lb"),
  31446. name: "Front",
  31447. image: {
  31448. source: "./media/characters/platine/front.svg",
  31449. extra: 1741/1650,
  31450. bottom: 84/1825
  31451. }
  31452. },
  31453. side: {
  31454. height: math.unit(10, "feet"),
  31455. weight: math.unit(15015, "lb"),
  31456. name: "Side",
  31457. image: {
  31458. source: "./media/characters/platine/side.svg",
  31459. extra: 1790/1705,
  31460. bottom: 29/1819
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(10, "feet"),
  31468. default: true
  31469. },
  31470. {
  31471. name: "Macro",
  31472. height: math.unit(100, "feet")
  31473. },
  31474. {
  31475. name: "Megamacro",
  31476. height: math.unit(1000, "feet")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(15 + 5 / 12, "feet"),
  31485. weight: math.unit(4600, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/neapolitan-ananassa/front.svg",
  31489. extra: 2903 / 2736,
  31490. bottom: 0 / 2903
  31491. }
  31492. },
  31493. side: {
  31494. height: math.unit(15 + 5 / 12, "feet"),
  31495. weight: math.unit(4600, "lb"),
  31496. name: "Side",
  31497. image: {
  31498. source: "./media/characters/neapolitan-ananassa/side.svg",
  31499. extra: 2925 / 2719,
  31500. bottom: 0 / 2925
  31501. }
  31502. },
  31503. back: {
  31504. height: math.unit(15 + 5 / 12, "feet"),
  31505. weight: math.unit(4600, "lb"),
  31506. name: "Back",
  31507. image: {
  31508. source: "./media/characters/neapolitan-ananassa/back.svg",
  31509. extra: 2903 / 2736,
  31510. bottom: 0 / 2903
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(15 + 5 / 12, "feet"),
  31518. default: true
  31519. },
  31520. {
  31521. name: "Post-Millenium",
  31522. height: math.unit(35 + 5 / 12, "feet")
  31523. },
  31524. {
  31525. name: "Post-Era",
  31526. height: math.unit(450 + 5 / 12, "feet")
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(300, "meters"),
  31535. weight: math.unit(125000, "tonnes"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/pazuzu/front.svg",
  31539. extra: 877 / 794,
  31540. bottom: 47 / 924
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Macro",
  31547. height: math.unit(300, "meters"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31554. {
  31555. side: {
  31556. height: math.unit(10 + 7 / 12, "feet"),
  31557. weight: math.unit(2.5, "tons"),
  31558. name: "Side",
  31559. image: {
  31560. source: "./media/characters/aasha/side.svg",
  31561. extra: 1345 / 1245,
  31562. bottom: 111 / 1456
  31563. }
  31564. },
  31565. back: {
  31566. height: math.unit(10 + 7 / 12, "feet"),
  31567. weight: math.unit(2.5, "tons"),
  31568. name: "Back",
  31569. image: {
  31570. source: "./media/characters/aasha/back.svg",
  31571. extra: 1133 / 1057,
  31572. bottom: 257 / 1390
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(10 + 7 / 12, "feet"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31586. {
  31587. front: {
  31588. height: math.unit(6 + 3 / 12, "feet"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/nevan/front.svg",
  31592. extra: 704 / 704,
  31593. bottom: 28 / 732
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(6 + 3 / 12, "feet"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/nevan/back.svg",
  31601. extra: 714 / 714,
  31602. bottom: 21 / 735
  31603. }
  31604. },
  31605. frontFlaccid: {
  31606. height: math.unit(6 + 3 / 12, "feet"),
  31607. name: "Front (Flaccid)",
  31608. image: {
  31609. source: "./media/characters/nevan/front-flaccid.svg",
  31610. extra: 704 / 704,
  31611. bottom: 28 / 732
  31612. }
  31613. },
  31614. frontErect: {
  31615. height: math.unit(6 + 3 / 12, "feet"),
  31616. name: "Front (Erect)",
  31617. image: {
  31618. source: "./media/characters/nevan/front-erect.svg",
  31619. extra: 704 / 704,
  31620. bottom: 28 / 732
  31621. }
  31622. },
  31623. backFlaccid: {
  31624. height: math.unit(6 + 3 / 12, "feet"),
  31625. name: "Back (Flaccid)",
  31626. image: {
  31627. source: "./media/characters/nevan/back-flaccid.svg",
  31628. extra: 714 / 714,
  31629. bottom: 21 / 735
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Normal",
  31636. height: math.unit(6 + 3 / 12, "feet"),
  31637. default: true
  31638. },
  31639. ]
  31640. ))
  31641. characterMakers.push(() => makeCharacter(
  31642. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31643. {
  31644. front: {
  31645. height: math.unit(4, "feet"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/arhan/front.svg",
  31649. extra: 3368 / 3133,
  31650. bottom: 0 / 3368
  31651. }
  31652. },
  31653. side: {
  31654. height: math.unit(4, "feet"),
  31655. name: "Side",
  31656. image: {
  31657. source: "./media/characters/arhan/side.svg",
  31658. extra: 3347 / 3105,
  31659. bottom: 0 / 3347
  31660. }
  31661. },
  31662. tongue: {
  31663. height: math.unit(1.42, "feet"),
  31664. name: "Tongue",
  31665. image: {
  31666. source: "./media/characters/arhan/tongue.svg"
  31667. }
  31668. },
  31669. head: {
  31670. height: math.unit(0.85, "feet"),
  31671. name: "Head",
  31672. image: {
  31673. source: "./media/characters/arhan/head.svg"
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Normal",
  31680. height: math.unit(4, "feet"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(5 + 7.5 / 12, "feet"),
  31690. weight: math.unit(120, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/digi-duncan/front.svg",
  31694. extra: 330 / 326,
  31695. bottom: 16 / 346
  31696. }
  31697. },
  31698. side: {
  31699. height: math.unit(5 + 7.5 / 12, "feet"),
  31700. weight: math.unit(120, "lb"),
  31701. name: "Side",
  31702. image: {
  31703. source: "./media/characters/digi-duncan/side.svg",
  31704. extra: 341 / 337,
  31705. bottom: 1 / 342
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(5 + 7.5 / 12, "feet"),
  31710. weight: math.unit(120, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/digi-duncan/back.svg",
  31714. extra: 330 / 326,
  31715. bottom: 12 / 342
  31716. }
  31717. },
  31718. },
  31719. [
  31720. {
  31721. name: "Speck",
  31722. height: math.unit(0.25, "mm")
  31723. },
  31724. {
  31725. name: "Micro",
  31726. height: math.unit(5, "mm")
  31727. },
  31728. {
  31729. name: "Tiny",
  31730. height: math.unit(0.5, "inches"),
  31731. default: true
  31732. },
  31733. {
  31734. name: "Human",
  31735. height: math.unit(5 + 7.5 / 12, "feet")
  31736. },
  31737. {
  31738. name: "Minigiant",
  31739. height: math.unit(8 + 5.25, "feet")
  31740. },
  31741. {
  31742. name: "Giant",
  31743. height: math.unit(2000, "feet")
  31744. },
  31745. {
  31746. name: "Mega",
  31747. height: math.unit(371.1, "miles")
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(2, "meters"),
  31756. weight: math.unit(350, "kg"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31760. extra: 898 / 838,
  31761. bottom: 9 / 907
  31762. }
  31763. },
  31764. },
  31765. [
  31766. {
  31767. name: "Micro",
  31768. height: math.unit(8, "meters")
  31769. },
  31770. {
  31771. name: "Normal",
  31772. height: math.unit(50, "meters"),
  31773. default: true
  31774. },
  31775. {
  31776. name: "Macro",
  31777. height: math.unit(500, "meters")
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31783. {
  31784. front: {
  31785. height: math.unit(6 + 6 / 12, "feet"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/khardesh/front.svg",
  31789. extra: 1788/1596,
  31790. bottom: 66/1854
  31791. }
  31792. },
  31793. back: {
  31794. height: math.unit(6 + 6 / 12, "feet"),
  31795. name: "Back",
  31796. image: {
  31797. source: "./media/characters/khardesh/back.svg",
  31798. extra: 1781/1584,
  31799. bottom: 68/1849
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(6 + 6 / 12, "feet"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Normal+",
  31811. height: math.unit(4, "meters")
  31812. },
  31813. {
  31814. name: "Macro",
  31815. height: math.unit(50, "meters")
  31816. },
  31817. {
  31818. name: "Macro+",
  31819. height: math.unit(100, "meters")
  31820. },
  31821. {
  31822. name: "Megamacro",
  31823. height: math.unit(20, "km")
  31824. },
  31825. ]
  31826. ))
  31827. characterMakers.push(() => makeCharacter(
  31828. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31829. {
  31830. front: {
  31831. height: math.unit(6, "feet"),
  31832. weight: math.unit(150, "lb"),
  31833. name: "Front",
  31834. image: {
  31835. source: "./media/characters/kosho/front.svg",
  31836. extra: 1847 / 1847,
  31837. bottom: 86 / 1933
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Second-stage micro",
  31844. height: math.unit(0.5, "inches")
  31845. },
  31846. {
  31847. name: "First-stage micro",
  31848. height: math.unit(6, "inches")
  31849. },
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(6, "feet"),
  31853. default: true
  31854. },
  31855. {
  31856. name: "First-stage macro",
  31857. height: math.unit(72, "feet")
  31858. },
  31859. {
  31860. name: "Second-stage macro",
  31861. height: math.unit(864, "feet")
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31867. {
  31868. normal: {
  31869. height: math.unit(4 + 6 / 12, "feet"),
  31870. name: "Normal",
  31871. image: {
  31872. source: "./media/characters/hydra/normal.svg",
  31873. extra: 2833 / 2634,
  31874. bottom: 68 / 2901
  31875. }
  31876. },
  31877. smol: {
  31878. height: math.unit(0.705, "inches"),
  31879. name: "Smol",
  31880. image: {
  31881. source: "./media/characters/hydra/smol.svg",
  31882. extra: 2715 / 2540,
  31883. bottom: 0 / 2715
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(4 + 6 / 12, "feet"),
  31891. default: true
  31892. }
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(0.6, "cm"),
  31900. name: "Front",
  31901. image: {
  31902. source: "./media/characters/daz/front.svg",
  31903. extra: 1682 / 1164,
  31904. bottom: 42 / 1724
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(0.6, "cm"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(6, "feet"),
  31921. weight: math.unit(235, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/theo-pangolin/front.svg",
  31925. extra: 1996 / 1969,
  31926. bottom: 115 / 2111
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(6, "feet"),
  31931. weight: math.unit(235, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/theo-pangolin/back.svg",
  31935. extra: 1979 / 1979,
  31936. bottom: 40 / 2019
  31937. }
  31938. },
  31939. feral: {
  31940. height: math.unit(2, "feet"),
  31941. weight: math.unit(30, "lb"),
  31942. name: "Feral",
  31943. image: {
  31944. source: "./media/characters/theo-pangolin/feral.svg",
  31945. extra: 803 / 791,
  31946. bottom: 181 / 984
  31947. }
  31948. },
  31949. footFive: {
  31950. height: math.unit(1.43, "feet"),
  31951. name: "Foot (Five Toes)",
  31952. image: {
  31953. source: "./media/characters/theo-pangolin/foot-five.svg"
  31954. }
  31955. },
  31956. footFour: {
  31957. height: math.unit(1.43, "feet"),
  31958. name: "Foot (Four Toes)",
  31959. image: {
  31960. source: "./media/characters/theo-pangolin/foot-four.svg"
  31961. }
  31962. },
  31963. handFour: {
  31964. height: math.unit(0.81, "feet"),
  31965. name: "Hand (Four Fingers)",
  31966. image: {
  31967. source: "./media/characters/theo-pangolin/hand-four.svg"
  31968. }
  31969. },
  31970. handThree: {
  31971. height: math.unit(0.81, "feet"),
  31972. name: "Hand (Three Fingers)",
  31973. image: {
  31974. source: "./media/characters/theo-pangolin/hand-three.svg"
  31975. }
  31976. },
  31977. headFront: {
  31978. height: math.unit(1.37, "feet"),
  31979. name: "Head (Front)",
  31980. image: {
  31981. source: "./media/characters/theo-pangolin/head-front.svg"
  31982. }
  31983. },
  31984. headSide: {
  31985. height: math.unit(1.43, "feet"),
  31986. name: "Head (Side)",
  31987. image: {
  31988. source: "./media/characters/theo-pangolin/head-side.svg"
  31989. }
  31990. },
  31991. tongue: {
  31992. height: math.unit(2.29, "feet"),
  31993. name: "Tongue",
  31994. image: {
  31995. source: "./media/characters/theo-pangolin/tongue.svg"
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(6, "feet")
  32003. },
  32004. {
  32005. name: "Macro",
  32006. height: math.unit(400, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(6, "inches"),
  32016. weight: math.unit(0.036, "kg"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/renée/front.svg",
  32020. extra: 900 / 886,
  32021. bottom: 8 / 908
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Nano",
  32028. height: math.unit(1, "nm")
  32029. },
  32030. {
  32031. name: "Micro",
  32032. height: math.unit(1, "mm")
  32033. },
  32034. {
  32035. name: "Normal",
  32036. height: math.unit(6, "inches")
  32037. },
  32038. {
  32039. name: "Macro",
  32040. height: math.unit(2000, "feet"),
  32041. default: true
  32042. },
  32043. {
  32044. name: "Megamacro",
  32045. height: math.unit(2, "km")
  32046. },
  32047. {
  32048. name: "Gigamacro",
  32049. height: math.unit(2000, "km")
  32050. },
  32051. {
  32052. name: "Teramacro",
  32053. height: math.unit(250000, "km")
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32059. {
  32060. front: {
  32061. height: math.unit(4, "meters"),
  32062. weight: math.unit(150, "kg"),
  32063. name: "Front",
  32064. image: {
  32065. source: "./media/characters/caledvwlch/front.svg",
  32066. extra: 1757/1537,
  32067. bottom: 31/1788
  32068. }
  32069. },
  32070. side: {
  32071. height: math.unit(4, "meters"),
  32072. weight: math.unit(150, "kg"),
  32073. name: "Side",
  32074. image: {
  32075. source: "./media/characters/caledvwlch/side.svg",
  32076. extra: 1605 / 1536,
  32077. bottom: 31 / 1636
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(4, "meters"),
  32082. weight: math.unit(150, "kg"),
  32083. name: "Back",
  32084. image: {
  32085. source: "./media/characters/caledvwlch/back.svg",
  32086. extra: 1635 / 1565,
  32087. bottom: 27 / 1662
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "\"Incognito\"",
  32094. height: math.unit(4, "meters")
  32095. },
  32096. {
  32097. name: "Small rampage",
  32098. height: math.unit(600, "meters")
  32099. },
  32100. {
  32101. name: "Mega",
  32102. height: math.unit(30, "km")
  32103. },
  32104. {
  32105. name: "Home-size",
  32106. height: math.unit(50, "km"),
  32107. default: true
  32108. },
  32109. {
  32110. name: "Giga",
  32111. height: math.unit(300, "km")
  32112. },
  32113. {
  32114. name: "Lounging",
  32115. height: math.unit(11000, "km")
  32116. },
  32117. {
  32118. name: "Planet snacking",
  32119. height: math.unit(2000000, "km")
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(6, "feet"),
  32128. weight: math.unit(215, "lb"),
  32129. name: "Front",
  32130. image: {
  32131. source: "./media/characters/sapphire-svell/front.svg",
  32132. extra: 495 / 455,
  32133. bottom: 20 / 515
  32134. }
  32135. },
  32136. back: {
  32137. height: math.unit(6, "feet"),
  32138. weight: math.unit(216, "lb"),
  32139. name: "Back",
  32140. image: {
  32141. source: "./media/characters/sapphire-svell/back.svg",
  32142. extra: 497 / 477,
  32143. bottom: 7 / 504
  32144. }
  32145. },
  32146. maw: {
  32147. height: math.unit(1.57, "feet"),
  32148. name: "Maw",
  32149. image: {
  32150. source: "./media/characters/sapphire-svell/maw.svg"
  32151. }
  32152. },
  32153. foot: {
  32154. height: math.unit(1.07, "feet"),
  32155. name: "Foot",
  32156. image: {
  32157. source: "./media/characters/sapphire-svell/foot.svg"
  32158. }
  32159. },
  32160. toering: {
  32161. height: math.unit(1.7, "inch"),
  32162. name: "Toering",
  32163. image: {
  32164. source: "./media/characters/sapphire-svell/toering.svg"
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(300, "feet"),
  32172. default: true
  32173. },
  32174. {
  32175. name: "Augmented",
  32176. height: math.unit(1250, "feet")
  32177. },
  32178. {
  32179. name: "Unleashed",
  32180. height: math.unit(3000, "feet")
  32181. },
  32182. ]
  32183. ))
  32184. characterMakers.push(() => makeCharacter(
  32185. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32186. {
  32187. side: {
  32188. height: math.unit(2 + 3 / 12, "feet"),
  32189. weight: math.unit(110, "lb"),
  32190. name: "Side",
  32191. image: {
  32192. source: "./media/characters/glitch-flux/side.svg",
  32193. extra: 997 / 805,
  32194. bottom: 20 / 1017
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(2 + 3 / 12, "feet"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(4, "meters"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/mid/front.svg",
  32214. extra: 507 / 476,
  32215. bottom: 17 / 524
  32216. }
  32217. },
  32218. back: {
  32219. height: math.unit(4, "meters"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/mid/back.svg",
  32223. extra: 519 / 487,
  32224. bottom: 7 / 526
  32225. }
  32226. },
  32227. stuck: {
  32228. height: math.unit(2.2, "meters"),
  32229. name: "Stuck",
  32230. image: {
  32231. source: "./media/characters/mid/stuck.svg",
  32232. extra: 1951 / 1869,
  32233. bottom: 88 / 2039
  32234. }
  32235. }
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(4, "meters"),
  32241. default: true
  32242. },
  32243. {
  32244. name: "Big",
  32245. height: math.unit(10, "meters")
  32246. },
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(800, "meters")
  32250. },
  32251. {
  32252. name: "Megamacro",
  32253. height: math.unit(100, "km")
  32254. },
  32255. {
  32256. name: "Overgrown",
  32257. height: math.unit(1, "parsec")
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(2.5, "meters"),
  32266. weight: math.unit(225, "kg"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/iris/front.svg",
  32270. extra: 3348 / 3251,
  32271. bottom: 205 / 3553
  32272. }
  32273. },
  32274. maw: {
  32275. height: math.unit(0.56, "meter"),
  32276. name: "Maw",
  32277. image: {
  32278. source: "./media/characters/iris/maw.svg"
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Mewter cat",
  32285. height: math.unit(1.2, "meters")
  32286. },
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(2.5, "meters"),
  32290. default: true
  32291. },
  32292. {
  32293. name: "Minimacro",
  32294. height: math.unit(18, "feet")
  32295. },
  32296. {
  32297. name: "Macro",
  32298. height: math.unit(140, "feet")
  32299. },
  32300. {
  32301. name: "Macro+",
  32302. height: math.unit(180, "meters")
  32303. },
  32304. {
  32305. name: "Megamacro",
  32306. height: math.unit(2746, "meters")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(6, "feet"),
  32315. weight: math.unit(135, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/axel/front.svg",
  32319. extra: 908 / 908,
  32320. bottom: 58 / 966
  32321. }
  32322. },
  32323. side: {
  32324. height: math.unit(6, "feet"),
  32325. weight: math.unit(135, "lb"),
  32326. name: "Side",
  32327. image: {
  32328. source: "./media/characters/axel/side.svg",
  32329. extra: 958 / 958,
  32330. bottom: 11 / 969
  32331. }
  32332. },
  32333. back: {
  32334. height: math.unit(6, "feet"),
  32335. weight: math.unit(135, "lb"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/axel/back.svg",
  32339. extra: 887 / 887,
  32340. bottom: 34 / 921
  32341. }
  32342. },
  32343. head: {
  32344. height: math.unit(1.07, "feet"),
  32345. name: "Head",
  32346. image: {
  32347. source: "./media/characters/axel/head.svg"
  32348. }
  32349. },
  32350. beak: {
  32351. height: math.unit(1.4, "feet"),
  32352. name: "Beak",
  32353. image: {
  32354. source: "./media/characters/axel/beak.svg"
  32355. }
  32356. },
  32357. beakSide: {
  32358. height: math.unit(1.4, "feet"),
  32359. name: "Beak Side",
  32360. image: {
  32361. source: "./media/characters/axel/beak-side.svg"
  32362. }
  32363. },
  32364. sheath: {
  32365. height: math.unit(0.5, "feet"),
  32366. name: "Sheath",
  32367. image: {
  32368. source: "./media/characters/axel/sheath.svg"
  32369. }
  32370. },
  32371. dick: {
  32372. height: math.unit(0.98, "feet"),
  32373. name: "Dick",
  32374. image: {
  32375. source: "./media/characters/axel/dick.svg"
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Macro",
  32382. height: math.unit(68, "meters"),
  32383. default: true
  32384. },
  32385. ]
  32386. ))
  32387. characterMakers.push(() => makeCharacter(
  32388. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32389. {
  32390. front: {
  32391. height: math.unit(3.5, "meters"),
  32392. weight: math.unit(1200, "kg"),
  32393. name: "Front",
  32394. image: {
  32395. source: "./media/characters/joanna/front.svg",
  32396. extra: 1596 / 1488,
  32397. bottom: 29 / 1625
  32398. }
  32399. },
  32400. back: {
  32401. height: math.unit(3.5, "meters"),
  32402. weight: math.unit(1200, "kg"),
  32403. name: "Back",
  32404. image: {
  32405. source: "./media/characters/joanna/back.svg",
  32406. extra: 1594 / 1495,
  32407. bottom: 26 / 1620
  32408. }
  32409. },
  32410. frontShorts: {
  32411. height: math.unit(3.5, "meters"),
  32412. weight: math.unit(1200, "kg"),
  32413. name: "Front (Shorts)",
  32414. image: {
  32415. source: "./media/characters/joanna/front-shorts.svg",
  32416. extra: 1596 / 1488,
  32417. bottom: 29 / 1625
  32418. }
  32419. },
  32420. frontBiker: {
  32421. height: math.unit(3.5, "meters"),
  32422. weight: math.unit(1200, "kg"),
  32423. name: "Front (Biker)",
  32424. image: {
  32425. source: "./media/characters/joanna/front-biker.svg",
  32426. extra: 1596 / 1488,
  32427. bottom: 29 / 1625
  32428. }
  32429. },
  32430. backBiker: {
  32431. height: math.unit(3.5, "meters"),
  32432. weight: math.unit(1200, "kg"),
  32433. name: "Back (Biker)",
  32434. image: {
  32435. source: "./media/characters/joanna/back-biker.svg",
  32436. extra: 1594 / 1495,
  32437. bottom: 88 / 1682
  32438. }
  32439. },
  32440. bikeLeft: {
  32441. height: math.unit(2.4, "meters"),
  32442. weight: math.unit(1600, "kg"),
  32443. name: "Bike (Left)",
  32444. image: {
  32445. source: "./media/characters/joanna/bike-left.svg",
  32446. extra: 720 / 720,
  32447. bottom: 8 / 728
  32448. }
  32449. },
  32450. bikeRight: {
  32451. height: math.unit(2.4, "meters"),
  32452. weight: math.unit(1600, "kg"),
  32453. name: "Bike (Right)",
  32454. image: {
  32455. source: "./media/characters/joanna/bike-right.svg",
  32456. extra: 720 / 720,
  32457. bottom: 8 / 728
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Incognito",
  32464. height: math.unit(3.5, "meters")
  32465. },
  32466. {
  32467. name: "Casual Big",
  32468. height: math.unit(200, "meters")
  32469. },
  32470. {
  32471. name: "Macro",
  32472. height: math.unit(600, "meters")
  32473. },
  32474. {
  32475. name: "Original",
  32476. height: math.unit(20, "km"),
  32477. default: true
  32478. },
  32479. {
  32480. name: "Giga",
  32481. height: math.unit(400, "km")
  32482. },
  32483. {
  32484. name: "Lounging",
  32485. height: math.unit(1500, "km")
  32486. },
  32487. {
  32488. name: "Planetary",
  32489. height: math.unit(200000, "km")
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32495. {
  32496. front: {
  32497. height: math.unit(6, "feet"),
  32498. weight: math.unit(150, "lb"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/hugo-sigil/front.svg",
  32502. extra: 522 / 500,
  32503. bottom: 2 / 524
  32504. }
  32505. },
  32506. back: {
  32507. height: math.unit(6, "feet"),
  32508. weight: math.unit(150, "lb"),
  32509. name: "Back",
  32510. image: {
  32511. source: "./media/characters/hugo-sigil/back.svg",
  32512. extra: 519 / 495,
  32513. bottom: 5 / 524
  32514. }
  32515. },
  32516. maw: {
  32517. height: math.unit(1.4, "feet"),
  32518. weight: math.unit(150, "lb"),
  32519. name: "Maw",
  32520. image: {
  32521. source: "./media/characters/hugo-sigil/maw.svg"
  32522. }
  32523. },
  32524. feet: {
  32525. height: math.unit(1.56, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Feet",
  32528. image: {
  32529. source: "./media/characters/hugo-sigil/feet.svg",
  32530. extra: 177 / 177,
  32531. bottom: 12 / 189
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(6, "feet")
  32539. },
  32540. {
  32541. name: "Macro",
  32542. height: math.unit(200, "feet"),
  32543. default: true
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(6, "feet"),
  32552. weight: math.unit(150, "lb"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/peri/front.svg",
  32556. extra: 2354 / 2233,
  32557. bottom: 49 / 2403
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Really Small",
  32564. height: math.unit(1, "nm")
  32565. },
  32566. {
  32567. name: "Micro",
  32568. height: math.unit(4, "inches")
  32569. },
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(7, "inches"),
  32573. default: true
  32574. },
  32575. {
  32576. name: "Macro",
  32577. height: math.unit(400, "feet")
  32578. },
  32579. {
  32580. name: "Megamacro",
  32581. height: math.unit(100, "miles")
  32582. },
  32583. ]
  32584. ))
  32585. characterMakers.push(() => makeCharacter(
  32586. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32587. {
  32588. frontSlim: {
  32589. height: math.unit(7, "feet"),
  32590. name: "Front (Slim)",
  32591. image: {
  32592. source: "./media/characters/issilora/front-slim.svg",
  32593. extra: 529 / 449,
  32594. bottom: 53 / 582
  32595. }
  32596. },
  32597. sideSlim: {
  32598. height: math.unit(7, "feet"),
  32599. name: "Side (Slim)",
  32600. image: {
  32601. source: "./media/characters/issilora/side-slim.svg",
  32602. extra: 570 / 480,
  32603. bottom: 30 / 600
  32604. }
  32605. },
  32606. backSlim: {
  32607. height: math.unit(7, "feet"),
  32608. name: "Back (Slim)",
  32609. image: {
  32610. source: "./media/characters/issilora/back-slim.svg",
  32611. extra: 537 / 455,
  32612. bottom: 46 / 583
  32613. }
  32614. },
  32615. frontBuff: {
  32616. height: math.unit(7, "feet"),
  32617. name: "Front (Buff)",
  32618. image: {
  32619. source: "./media/characters/issilora/front-buff.svg",
  32620. extra: 2310 / 2035,
  32621. bottom: 335 / 2645
  32622. }
  32623. },
  32624. head: {
  32625. height: math.unit(1.94, "feet"),
  32626. name: "Head",
  32627. image: {
  32628. source: "./media/characters/issilora/head.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Minimum",
  32635. height: math.unit(7, "feet")
  32636. },
  32637. {
  32638. name: "Comfortable",
  32639. height: math.unit(17, "feet")
  32640. },
  32641. {
  32642. name: "Fun Size",
  32643. height: math.unit(47, "feet")
  32644. },
  32645. {
  32646. name: "Natural Macro",
  32647. height: math.unit(137, "feet"),
  32648. default: true
  32649. },
  32650. {
  32651. name: "Maximum Kaiju",
  32652. height: math.unit(397, "feet")
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32658. {
  32659. front: {
  32660. height: math.unit(50 + 9/12, "feet"),
  32661. weight: math.unit(32.8, "tons"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/irb'iiritaahn/front.svg",
  32665. extra: 1878/1826,
  32666. bottom: 326/2204
  32667. }
  32668. },
  32669. back: {
  32670. height: math.unit(50 + 9/12, "feet"),
  32671. weight: math.unit(32.8, "tons"),
  32672. name: "Back",
  32673. image: {
  32674. source: "./media/characters/irb'iiritaahn/back.svg",
  32675. extra: 2052/2018,
  32676. bottom: 152/2204
  32677. }
  32678. },
  32679. head: {
  32680. height: math.unit(12.86, "feet"),
  32681. name: "Head",
  32682. image: {
  32683. source: "./media/characters/irb'iiritaahn/head.svg"
  32684. }
  32685. },
  32686. maw: {
  32687. height: math.unit(9.66, "feet"),
  32688. name: "Maw",
  32689. image: {
  32690. source: "./media/characters/irb'iiritaahn/maw.svg"
  32691. }
  32692. },
  32693. frontDick: {
  32694. height: math.unit(8.78461, "feet"),
  32695. name: "Front Dick",
  32696. image: {
  32697. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32698. }
  32699. },
  32700. rearDick: {
  32701. height: math.unit(8.78461, "feet"),
  32702. name: "Rear Dick",
  32703. image: {
  32704. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32705. }
  32706. },
  32707. rearDickUnfolded: {
  32708. height: math.unit(8.78, "feet"),
  32709. name: "Rear Dick (Unfolded)",
  32710. image: {
  32711. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32712. }
  32713. },
  32714. wings: {
  32715. height: math.unit(43, "feet"),
  32716. name: "Wings",
  32717. image: {
  32718. source: "./media/characters/irb'iiritaahn/wings.svg"
  32719. }
  32720. },
  32721. },
  32722. [
  32723. {
  32724. name: "Macro",
  32725. height: math.unit(50 + 9/12, "feet"),
  32726. default: true
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32732. {
  32733. front: {
  32734. height: math.unit(205, "cm"),
  32735. weight: math.unit(102, "kg"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/irbisgreif/front.svg",
  32739. extra: 785/706,
  32740. bottom: 13/798
  32741. }
  32742. },
  32743. back: {
  32744. height: math.unit(205, "cm"),
  32745. weight: math.unit(102, "kg"),
  32746. name: "Back",
  32747. image: {
  32748. source: "./media/characters/irbisgreif/back.svg",
  32749. extra: 713/701,
  32750. bottom: 26/739
  32751. }
  32752. },
  32753. frontDressed: {
  32754. height: math.unit(216, "cm"),
  32755. weight: math.unit(102, "kg"),
  32756. name: "Front-dressed",
  32757. image: {
  32758. source: "./media/characters/irbisgreif/front-dressed.svg",
  32759. extra: 902/776,
  32760. bottom: 14/916
  32761. }
  32762. },
  32763. sideDressed: {
  32764. height: math.unit(195, "cm"),
  32765. weight: math.unit(102, "kg"),
  32766. name: "Side-dressed",
  32767. image: {
  32768. source: "./media/characters/irbisgreif/side-dressed.svg",
  32769. extra: 788/688,
  32770. bottom: 21/809
  32771. }
  32772. },
  32773. backDressed: {
  32774. height: math.unit(216, "cm"),
  32775. weight: math.unit(102, "kg"),
  32776. name: "Back-dressed",
  32777. image: {
  32778. source: "./media/characters/irbisgreif/back-dressed.svg",
  32779. extra: 901/783,
  32780. bottom: 10/911
  32781. }
  32782. },
  32783. dick: {
  32784. height: math.unit(0.49, "feet"),
  32785. name: "Dick",
  32786. image: {
  32787. source: "./media/characters/irbisgreif/dick.svg"
  32788. }
  32789. },
  32790. wingTop: {
  32791. height: math.unit(1.93 , "feet"),
  32792. name: "Wing-top",
  32793. image: {
  32794. source: "./media/characters/irbisgreif/wing-top.svg"
  32795. }
  32796. },
  32797. wingBottom: {
  32798. height: math.unit(1.93 , "feet"),
  32799. name: "Wing-bottom",
  32800. image: {
  32801. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Normal",
  32808. height: math.unit(216, "cm"),
  32809. default: true
  32810. },
  32811. ]
  32812. ))
  32813. characterMakers.push(() => makeCharacter(
  32814. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32815. {
  32816. front: {
  32817. height: math.unit(6, "feet"),
  32818. weight: math.unit(150, "lb"),
  32819. name: "Front",
  32820. image: {
  32821. source: "./media/characters/pride/front.svg",
  32822. extra: 1299/1230,
  32823. bottom: 18/1317
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Normal",
  32830. height: math.unit(7, "feet")
  32831. },
  32832. {
  32833. name: "Mini-macro",
  32834. height: math.unit(11, "feet")
  32835. },
  32836. {
  32837. name: "Macro",
  32838. height: math.unit(15, "meters"),
  32839. default: true
  32840. },
  32841. {
  32842. name: "Macro+",
  32843. height: math.unit(40, "meters")
  32844. },
  32845. ]
  32846. ))
  32847. characterMakers.push(() => makeCharacter(
  32848. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32849. {
  32850. front: {
  32851. height: math.unit(4 + 2 / 12, "feet"),
  32852. weight: math.unit(95, "lb"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/vaelophis-nyx/front.svg",
  32856. extra: 2532/2330,
  32857. bottom: 0/2532
  32858. }
  32859. },
  32860. back: {
  32861. height: math.unit(4 + 2 / 12, "feet"),
  32862. weight: math.unit(95, "lb"),
  32863. name: "Back",
  32864. image: {
  32865. source: "./media/characters/vaelophis-nyx/back.svg",
  32866. extra: 2484/2361,
  32867. bottom: 0/2484
  32868. }
  32869. },
  32870. feralSide: {
  32871. height: math.unit(2 + 1/12, "feet"),
  32872. weight: math.unit(20, "lb"),
  32873. name: "Feral (Side)",
  32874. image: {
  32875. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32876. extra: 1721/1581,
  32877. bottom: 70/1791
  32878. }
  32879. },
  32880. feralLazing: {
  32881. height: math.unit(1.08, "feet"),
  32882. weight: math.unit(20, "lb"),
  32883. name: "Feral (Lazing)",
  32884. image: {
  32885. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32886. extra: 822/822,
  32887. bottom: 248/1070
  32888. }
  32889. },
  32890. ear: {
  32891. height: math.unit(0.416, "feet"),
  32892. name: "Ear",
  32893. image: {
  32894. source: "./media/characters/vaelophis-nyx/ear.svg"
  32895. }
  32896. },
  32897. eye: {
  32898. height: math.unit(0.0748, "feet"),
  32899. name: "Eye",
  32900. image: {
  32901. source: "./media/characters/vaelophis-nyx/eye.svg"
  32902. }
  32903. },
  32904. mouth: {
  32905. height: math.unit(0.378, "feet"),
  32906. name: "Mouth",
  32907. image: {
  32908. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32909. }
  32910. },
  32911. spade: {
  32912. height: math.unit(0.55, "feet"),
  32913. name: "Spade",
  32914. image: {
  32915. source: "./media/characters/vaelophis-nyx/spade.svg"
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(4 + 2/12, "feet"),
  32923. default: true
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32929. {
  32930. front: {
  32931. height: math.unit(7, "feet"),
  32932. weight: math.unit(231, "lb"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/flux/front.svg",
  32936. extra: 919/871,
  32937. bottom: 0/919
  32938. }
  32939. },
  32940. back: {
  32941. height: math.unit(7, "feet"),
  32942. weight: math.unit(231, "lb"),
  32943. name: "Back",
  32944. image: {
  32945. source: "./media/characters/flux/back.svg",
  32946. extra: 1040/992,
  32947. bottom: 0/1040
  32948. }
  32949. },
  32950. frontDressed: {
  32951. height: math.unit(7, "feet"),
  32952. weight: math.unit(231, "lb"),
  32953. name: "Front (Dressed)",
  32954. image: {
  32955. source: "./media/characters/flux/front-dressed.svg",
  32956. extra: 919/871,
  32957. bottom: 0/919
  32958. }
  32959. },
  32960. feralSide: {
  32961. height: math.unit(5, "feet"),
  32962. weight: math.unit(150, "lb"),
  32963. name: "Feral (Side)",
  32964. image: {
  32965. source: "./media/characters/flux/feral-side.svg",
  32966. extra: 598/528,
  32967. bottom: 28/626
  32968. }
  32969. },
  32970. head: {
  32971. height: math.unit(1.585, "feet"),
  32972. name: "Head",
  32973. image: {
  32974. source: "./media/characters/flux/head.svg"
  32975. }
  32976. },
  32977. headSide: {
  32978. height: math.unit(1.74, "feet"),
  32979. name: "Head (Side)",
  32980. image: {
  32981. source: "./media/characters/flux/head-side.svg"
  32982. }
  32983. },
  32984. headSideFire: {
  32985. height: math.unit(1.76, "feet"),
  32986. name: "Head (Side, Fire)",
  32987. image: {
  32988. source: "./media/characters/flux/head-side-fire.svg"
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(7, "feet"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(9, "feet"),
  33005. weight: math.unit(1012, "lb"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/ulfra-lupae/front.svg",
  33009. extra: 1083/1011,
  33010. bottom: 67/1150
  33011. }
  33012. },
  33013. },
  33014. [
  33015. {
  33016. name: "Micro",
  33017. height: math.unit(6, "inches")
  33018. },
  33019. {
  33020. name: "Socializing",
  33021. height: math.unit(6 + 5/12, "feet")
  33022. },
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(9, "feet"),
  33026. default: true
  33027. },
  33028. {
  33029. name: "Macro",
  33030. height: math.unit(150, "feet")
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(5 + 2/12, "feet"),
  33039. weight: math.unit(120, "lb"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/timber/front.svg",
  33043. extra: 2814/2705,
  33044. bottom: 181/2995
  33045. }
  33046. },
  33047. },
  33048. [
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(5 + 2/12, "feet"),
  33052. default: true
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33058. {
  33059. front: {
  33060. height: math.unit(9, "feet"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/nicki/front.svg",
  33064. extra: 1240/990,
  33065. bottom: 45/1285
  33066. },
  33067. form: "anthro",
  33068. default: true
  33069. },
  33070. side: {
  33071. height: math.unit(9, "feet"),
  33072. name: "Side",
  33073. image: {
  33074. source: "./media/characters/nicki/side.svg",
  33075. extra: 1047/973,
  33076. bottom: 61/1108
  33077. },
  33078. form: "anthro"
  33079. },
  33080. back: {
  33081. height: math.unit(9, "feet"),
  33082. name: "Back",
  33083. image: {
  33084. source: "./media/characters/nicki/back.svg",
  33085. extra: 1006/965,
  33086. bottom: 39/1045
  33087. },
  33088. form: "anthro"
  33089. },
  33090. taur: {
  33091. height: math.unit(15, "feet"),
  33092. name: "Taur",
  33093. image: {
  33094. source: "./media/characters/nicki/taur.svg",
  33095. extra: 1592/1347,
  33096. bottom: 0/1592
  33097. },
  33098. form: "taur",
  33099. default: true
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(9, "feet"),
  33106. form: "anthro",
  33107. default: true
  33108. },
  33109. {
  33110. name: "Normal",
  33111. height: math.unit(15, "feet"),
  33112. form: "taur",
  33113. default: true
  33114. }
  33115. ],
  33116. {
  33117. "anthro": {
  33118. name: "Anthro",
  33119. default: true
  33120. },
  33121. "taur": {
  33122. name: "Taur"
  33123. }
  33124. }
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(7 + 10/12, "feet"),
  33131. weight: math.unit(3.5, "tons"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/lee/front.svg",
  33135. extra: 1773/1615,
  33136. bottom: 86/1859
  33137. }
  33138. },
  33139. hand: {
  33140. height: math.unit(1.78, "feet"),
  33141. name: "Hand",
  33142. image: {
  33143. source: "./media/characters/lee/hand.svg"
  33144. }
  33145. },
  33146. maw: {
  33147. height: math.unit(1.18, "feet"),
  33148. name: "Maw",
  33149. image: {
  33150. source: "./media/characters/lee/maw.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(7 + 10/12, "feet"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33164. {
  33165. front: {
  33166. height: math.unit(9, "feet"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/guti/front.svg",
  33170. extra: 4551/4355,
  33171. bottom: 123/4674
  33172. }
  33173. },
  33174. tongue: {
  33175. height: math.unit(1, "feet"),
  33176. name: "Tongue",
  33177. image: {
  33178. source: "./media/characters/guti/tongue.svg"
  33179. }
  33180. },
  33181. paw: {
  33182. height: math.unit(1.18, "feet"),
  33183. name: "Paw",
  33184. image: {
  33185. source: "./media/characters/guti/paw.svg"
  33186. }
  33187. },
  33188. },
  33189. [
  33190. {
  33191. name: "Normal",
  33192. height: math.unit(9, "feet"),
  33193. default: true
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33199. {
  33200. side: {
  33201. height: math.unit(5, "meters"),
  33202. name: "Side",
  33203. image: {
  33204. source: "./media/characters/vesper/side.svg",
  33205. extra: 1605/1518,
  33206. bottom: 0/1605
  33207. }
  33208. },
  33209. },
  33210. [
  33211. {
  33212. name: "Small",
  33213. height: math.unit(5, "meters")
  33214. },
  33215. {
  33216. name: "Sage",
  33217. height: math.unit(100, "meters"),
  33218. default: true
  33219. },
  33220. {
  33221. name: "Fun Size",
  33222. height: math.unit(600, "meters")
  33223. },
  33224. {
  33225. name: "Goddess",
  33226. height: math.unit(20000, "km")
  33227. },
  33228. {
  33229. name: "Maximum",
  33230. height: math.unit(5, "galaxies")
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(6 + 3/12, "feet"),
  33239. weight: math.unit(190, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/gawain/front.svg",
  33243. extra: 2222/2139,
  33244. bottom: 90/2312
  33245. }
  33246. },
  33247. back: {
  33248. height: math.unit(6 + 3/12, "feet"),
  33249. weight: math.unit(190, "lb"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/gawain/back.svg",
  33253. extra: 2199/2111,
  33254. bottom: 73/2272
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(6 + 3/12, "feet"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33268. {
  33269. side: {
  33270. height: math.unit(3.5, "meters"),
  33271. weight: math.unit(16000, "lb"),
  33272. name: "Side",
  33273. image: {
  33274. source: "./media/characters/dascalti/side.svg",
  33275. extra: 392/273,
  33276. bottom: 47/439
  33277. }
  33278. },
  33279. breath: {
  33280. height: math.unit(7.4, "feet"),
  33281. name: "Breath",
  33282. image: {
  33283. source: "./media/characters/dascalti/breath.svg"
  33284. }
  33285. },
  33286. fed: {
  33287. height: math.unit(3.6, "meters"),
  33288. weight: math.unit(16000, "lb"),
  33289. name: "Fed",
  33290. image: {
  33291. source: "./media/characters/dascalti/fed.svg",
  33292. extra: 1419/820,
  33293. bottom: 95/1514
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(3.5, "meters"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33307. {
  33308. front: {
  33309. height: math.unit(3 + 5/12, "feet"),
  33310. name: "Front",
  33311. image: {
  33312. source: "./media/characters/mauve/front.svg",
  33313. extra: 1126/1033,
  33314. bottom: 65/1191
  33315. }
  33316. },
  33317. side: {
  33318. height: math.unit(3 + 5/12, "feet"),
  33319. name: "Side",
  33320. image: {
  33321. source: "./media/characters/mauve/side.svg",
  33322. extra: 1089/1001,
  33323. bottom: 29/1118
  33324. }
  33325. },
  33326. back: {
  33327. height: math.unit(3 + 5/12, "feet"),
  33328. name: "Back",
  33329. image: {
  33330. source: "./media/characters/mauve/back.svg",
  33331. extra: 1173/1053,
  33332. bottom: 109/1282
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Normal",
  33339. height: math.unit(3 + 5/12, "feet"),
  33340. default: true
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(6 + 3/12, "feet"),
  33349. weight: math.unit(430, "lb"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/carlos/front.svg",
  33353. extra: 1964/1913,
  33354. bottom: 70/2034
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(6 + 3/12, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33368. {
  33369. back: {
  33370. height: math.unit(5 + 10/12, "feet"),
  33371. weight: math.unit(200, "lb"),
  33372. name: "Back",
  33373. image: {
  33374. source: "./media/characters/jax/back.svg",
  33375. extra: 764/739,
  33376. bottom: 25/789
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Normal",
  33383. height: math.unit(5 + 10/12, "feet"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33390. {
  33391. front: {
  33392. height: math.unit(8, "feet"),
  33393. weight: math.unit(250, "lb"),
  33394. name: "Front",
  33395. image: {
  33396. source: "./media/characters/eikthynir/front.svg",
  33397. extra: 1332/1166,
  33398. bottom: 82/1414
  33399. }
  33400. },
  33401. back: {
  33402. height: math.unit(8, "feet"),
  33403. weight: math.unit(250, "lb"),
  33404. name: "Back",
  33405. image: {
  33406. source: "./media/characters/eikthynir/back.svg",
  33407. extra: 1342/1190,
  33408. bottom: 19/1361
  33409. }
  33410. },
  33411. dick: {
  33412. height: math.unit(2.35, "feet"),
  33413. name: "Dick",
  33414. image: {
  33415. source: "./media/characters/eikthynir/dick.svg"
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(8, "feet"),
  33423. default: true
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(99, "meters"),
  33432. weight: math.unit(13000, "tons"),
  33433. name: "Front",
  33434. image: {
  33435. source: "./media/characters/zlmos/front.svg",
  33436. extra: 2202/1992,
  33437. bottom: 315/2517
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Macro",
  33444. height: math.unit(99, "meters"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(6 + 5/12, "feet"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/purri/front.svg",
  33457. extra: 1698/1610,
  33458. bottom: 32/1730
  33459. }
  33460. },
  33461. frontAlt: {
  33462. height: math.unit(6 + 5/12, "feet"),
  33463. name: "Front (Alt)",
  33464. image: {
  33465. source: "./media/characters/purri/front-alt.svg",
  33466. extra: 450/420,
  33467. bottom: 26/476
  33468. }
  33469. },
  33470. boots: {
  33471. height: math.unit(5.5, "feet"),
  33472. name: "Boots",
  33473. image: {
  33474. source: "./media/characters/purri/boots.svg",
  33475. extra: 905/853,
  33476. bottom: 18/923
  33477. }
  33478. },
  33479. lying: {
  33480. height: math.unit(2, "feet"),
  33481. name: "Lying",
  33482. image: {
  33483. source: "./media/characters/purri/lying.svg",
  33484. extra: 940/843,
  33485. bottom: 146/1086
  33486. }
  33487. },
  33488. devious: {
  33489. height: math.unit(1.77, "feet"),
  33490. name: "Devious",
  33491. image: {
  33492. source: "./media/characters/purri/devious.svg",
  33493. extra: 1440/1155,
  33494. bottom: 147/1587
  33495. }
  33496. },
  33497. bean: {
  33498. height: math.unit(1.94, "feet"),
  33499. name: "Bean",
  33500. image: {
  33501. source: "./media/characters/purri/bean.svg"
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Micro",
  33508. height: math.unit(1, "mm")
  33509. },
  33510. {
  33511. name: "Normal",
  33512. height: math.unit(6 + 5/12, "feet"),
  33513. default: true
  33514. },
  33515. {
  33516. name: "Macro :3c",
  33517. height: math.unit(2, "miles")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(6 + 2/12, "feet"),
  33526. weight: math.unit(250, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/moonlight/front.svg",
  33530. extra: 1044/908,
  33531. bottom: 56/1100
  33532. }
  33533. },
  33534. feral: {
  33535. height: math.unit(3 + 1/12, "feet"),
  33536. weight: math.unit(50, "kg"),
  33537. name: "Feral",
  33538. image: {
  33539. source: "./media/characters/moonlight/feral.svg",
  33540. extra: 3705/2791,
  33541. bottom: 145/3850
  33542. }
  33543. },
  33544. paw: {
  33545. height: math.unit(1, "feet"),
  33546. name: "Paw",
  33547. image: {
  33548. source: "./media/characters/moonlight/paw.svg"
  33549. }
  33550. },
  33551. paws: {
  33552. height: math.unit(0.98, "feet"),
  33553. name: "Paws",
  33554. image: {
  33555. source: "./media/characters/moonlight/paws.svg",
  33556. extra: 939/939,
  33557. bottom: 50/989
  33558. }
  33559. },
  33560. mouth: {
  33561. height: math.unit(0.48, "feet"),
  33562. name: "Mouth",
  33563. image: {
  33564. source: "./media/characters/moonlight/mouth.svg"
  33565. }
  33566. },
  33567. dick: {
  33568. height: math.unit(1.46, "feet"),
  33569. name: "Dick",
  33570. image: {
  33571. source: "./media/characters/moonlight/dick.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(6 + 2/12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Macro",
  33583. height: math.unit(300, "feet")
  33584. },
  33585. {
  33586. name: "Macro+",
  33587. height: math.unit(1, "mile")
  33588. },
  33589. {
  33590. name: "Mt. Moon",
  33591. height: math.unit(5, "miles")
  33592. },
  33593. {
  33594. name: "Megamacro",
  33595. height: math.unit(15, "miles")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33601. {
  33602. back: {
  33603. height: math.unit(6, "feet"),
  33604. weight: math.unit(150, "lb"),
  33605. name: "Back",
  33606. image: {
  33607. source: "./media/characters/sylen/back.svg",
  33608. extra: 1335/1273,
  33609. bottom: 107/1442
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(5 + 5/12, "feet")
  33617. },
  33618. {
  33619. name: "Megamacro",
  33620. height: math.unit(3, "miles"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(6, "feet"),
  33630. weight: math.unit(190, "lb"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/huttser/front.svg",
  33634. extra: 1152/1058,
  33635. bottom: 23/1175
  33636. }
  33637. },
  33638. side: {
  33639. height: math.unit(6, "feet"),
  33640. weight: math.unit(190, "lb"),
  33641. name: "Side",
  33642. image: {
  33643. source: "./media/characters/huttser/side.svg",
  33644. extra: 1174/1065,
  33645. bottom: 18/1192
  33646. }
  33647. },
  33648. back: {
  33649. height: math.unit(6, "feet"),
  33650. weight: math.unit(190, "lb"),
  33651. name: "Back",
  33652. image: {
  33653. source: "./media/characters/huttser/back.svg",
  33654. extra: 1158/1056,
  33655. bottom: 12/1170
  33656. }
  33657. },
  33658. },
  33659. [
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33664. {
  33665. side: {
  33666. height: math.unit(12 + 9/12, "feet"),
  33667. weight: math.unit(15000, "lb"),
  33668. name: "Side",
  33669. image: {
  33670. source: "./media/characters/faan/side.svg",
  33671. extra: 2747/2697,
  33672. bottom: 0/2747
  33673. }
  33674. },
  33675. front: {
  33676. height: math.unit(12 + 9/12, "feet"),
  33677. weight: math.unit(15000, "lb"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/faan/front.svg",
  33681. extra: 607/571,
  33682. bottom: 24/631
  33683. }
  33684. },
  33685. head: {
  33686. height: math.unit(2.85, "feet"),
  33687. name: "Head",
  33688. image: {
  33689. source: "./media/characters/faan/head.svg"
  33690. }
  33691. },
  33692. headAlt: {
  33693. height: math.unit(3.13, "feet"),
  33694. name: "Head-alt",
  33695. image: {
  33696. source: "./media/characters/faan/head-alt.svg"
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(12 + 9/12, "feet"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(6, "feet"),
  33713. weight: math.unit(300, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/tanio/front.svg",
  33717. extra: 711/673,
  33718. bottom: 25/736
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(6, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(3, "inches"),
  33735. name: "Front",
  33736. image: {
  33737. source: "./media/characters/noboru/front.svg",
  33738. extra: 1039/932,
  33739. bottom: 18/1057
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Micro",
  33746. height: math.unit(3, "inches"),
  33747. default: true
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33753. {
  33754. front: {
  33755. height: math.unit(1.85, "meters"),
  33756. weight: math.unit(80, "kg"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/daniel-barrett/front.svg",
  33760. extra: 355/337,
  33761. bottom: 9/364
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Pico",
  33768. height: math.unit(0.0433, "mm")
  33769. },
  33770. {
  33771. name: "Nano",
  33772. height: math.unit(1.5, "mm")
  33773. },
  33774. {
  33775. name: "Micro",
  33776. height: math.unit(5.3, "cm"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(1.85, "meters")
  33782. },
  33783. {
  33784. name: "Macro",
  33785. height: math.unit(64.7, "meters")
  33786. },
  33787. {
  33788. name: "Megamacro",
  33789. height: math.unit(2.26, "km")
  33790. },
  33791. {
  33792. name: "Gigamacro",
  33793. height: math.unit(79, "km")
  33794. },
  33795. {
  33796. name: "Teramacro",
  33797. height: math.unit(2765, "km")
  33798. },
  33799. {
  33800. name: "Petamacro",
  33801. height: math.unit(96678, "km")
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(30, "meters"),
  33810. weight: math.unit(400, "tons"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/zeel/front.svg",
  33814. extra: 2599/2599,
  33815. bottom: 226/2825
  33816. }
  33817. },
  33818. },
  33819. [
  33820. {
  33821. name: "Macro",
  33822. height: math.unit(30, "meters"),
  33823. default: true
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(6 + 7/12, "feet"),
  33832. weight: math.unit(210, "lb"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/tarn/front.svg",
  33836. extra: 3517/3220,
  33837. bottom: 91/3608
  33838. }
  33839. },
  33840. back: {
  33841. height: math.unit(6 + 7/12, "feet"),
  33842. weight: math.unit(210, "lb"),
  33843. name: "Back",
  33844. image: {
  33845. source: "./media/characters/tarn/back.svg",
  33846. extra: 3566/3241,
  33847. bottom: 34/3600
  33848. }
  33849. },
  33850. dick: {
  33851. height: math.unit(1.65, "feet"),
  33852. name: "Dick",
  33853. image: {
  33854. source: "./media/characters/tarn/dick.svg"
  33855. }
  33856. },
  33857. paw: {
  33858. height: math.unit(1.80, "feet"),
  33859. name: "Paw",
  33860. image: {
  33861. source: "./media/characters/tarn/paw.svg"
  33862. }
  33863. },
  33864. tongue: {
  33865. height: math.unit(0.97, "feet"),
  33866. name: "Tongue",
  33867. image: {
  33868. source: "./media/characters/tarn/tongue.svg"
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Micro",
  33875. height: math.unit(4, "inches")
  33876. },
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(6 + 7/12, "feet"),
  33880. default: true
  33881. },
  33882. {
  33883. name: "Macro",
  33884. height: math.unit(300, "feet")
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33890. {
  33891. front: {
  33892. height: math.unit(5 + 7/12, "feet"),
  33893. weight: math.unit(80, "kg"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33897. extra: 3023/2865,
  33898. bottom: 33/3056
  33899. }
  33900. },
  33901. back: {
  33902. height: math.unit(5 + 7/12, "feet"),
  33903. weight: math.unit(80, "kg"),
  33904. name: "Back",
  33905. image: {
  33906. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33907. extra: 3020/2886,
  33908. bottom: 30/3050
  33909. }
  33910. },
  33911. dick: {
  33912. height: math.unit(0.98, "feet"),
  33913. name: "Dick",
  33914. image: {
  33915. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33916. }
  33917. },
  33918. anatomy: {
  33919. height: math.unit(2.86, "feet"),
  33920. name: "Anatomy",
  33921. image: {
  33922. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Really Small",
  33929. height: math.unit(2, "inches")
  33930. },
  33931. {
  33932. name: "Micro",
  33933. height: math.unit(5.583, "inches")
  33934. },
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(5 + 7/12, "feet"),
  33938. default: true
  33939. },
  33940. {
  33941. name: "Macro",
  33942. height: math.unit(67, "feet")
  33943. },
  33944. {
  33945. name: "Megamacro",
  33946. height: math.unit(134, "feet")
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(9, "feet"),
  33955. weight: math.unit(120, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/sally/front.svg",
  33959. extra: 1506/1349,
  33960. bottom: 66/1572
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(9, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(8, "feet"),
  33977. weight: math.unit(900, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/owen/front.svg",
  33981. extra: 1761/1657,
  33982. bottom: 74/1835
  33983. }
  33984. },
  33985. side: {
  33986. height: math.unit(8, "feet"),
  33987. weight: math.unit(900, "lb"),
  33988. name: "Side",
  33989. image: {
  33990. source: "./media/characters/owen/side.svg",
  33991. extra: 1797/1734,
  33992. bottom: 30/1827
  33993. }
  33994. },
  33995. back: {
  33996. height: math.unit(8, "feet"),
  33997. weight: math.unit(900, "lb"),
  33998. name: "Back",
  33999. image: {
  34000. source: "./media/characters/owen/back.svg",
  34001. extra: 1796/1706,
  34002. bottom: 59/1855
  34003. }
  34004. },
  34005. maw: {
  34006. height: math.unit(1.76, "feet"),
  34007. name: "Maw",
  34008. image: {
  34009. source: "./media/characters/owen/maw.svg"
  34010. }
  34011. },
  34012. },
  34013. [
  34014. {
  34015. name: "Normal",
  34016. height: math.unit(8, "feet"),
  34017. default: true
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34023. {
  34024. front: {
  34025. height: math.unit(4, "feet"),
  34026. weight: math.unit(400, "lb"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/ryth/front.svg",
  34030. extra: 1920/1748,
  34031. bottom: 42/1962
  34032. }
  34033. },
  34034. back: {
  34035. height: math.unit(4, "feet"),
  34036. weight: math.unit(400, "lb"),
  34037. name: "Back",
  34038. image: {
  34039. source: "./media/characters/ryth/back.svg",
  34040. extra: 1897/1690,
  34041. bottom: 89/1986
  34042. }
  34043. },
  34044. mouth: {
  34045. height: math.unit(1.39, "feet"),
  34046. name: "Mouth",
  34047. image: {
  34048. source: "./media/characters/ryth/mouth.svg"
  34049. }
  34050. },
  34051. tailmaw: {
  34052. height: math.unit(1.23, "feet"),
  34053. name: "Tailmaw",
  34054. image: {
  34055. source: "./media/characters/ryth/tailmaw.svg"
  34056. }
  34057. },
  34058. goia: {
  34059. height: math.unit(4, "meters"),
  34060. weight: math.unit(10800, "lb"),
  34061. name: "Goia",
  34062. image: {
  34063. source: "./media/characters/ryth/goia.svg",
  34064. extra: 745/640,
  34065. bottom: 107/852
  34066. }
  34067. },
  34068. goiaFront: {
  34069. height: math.unit(4, "meters"),
  34070. weight: math.unit(10800, "lb"),
  34071. name: "Goia (Front)",
  34072. image: {
  34073. source: "./media/characters/ryth/goia-front.svg",
  34074. extra: 750/586,
  34075. bottom: 114/864
  34076. }
  34077. },
  34078. goiaMaw: {
  34079. height: math.unit(5.55, "feet"),
  34080. name: "Goia Maw",
  34081. image: {
  34082. source: "./media/characters/ryth/goia-maw.svg"
  34083. }
  34084. },
  34085. goiaForepaw: {
  34086. height: math.unit(3.5, "feet"),
  34087. name: "Goia Forepaw",
  34088. image: {
  34089. source: "./media/characters/ryth/goia-forepaw.svg"
  34090. }
  34091. },
  34092. goiaHindpaw: {
  34093. height: math.unit(5.55, "feet"),
  34094. name: "Goia Hindpaw",
  34095. image: {
  34096. source: "./media/characters/ryth/goia-hindpaw.svg"
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Normal",
  34103. height: math.unit(4, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34110. {
  34111. front: {
  34112. height: math.unit(7, "feet"),
  34113. weight: math.unit(180, "lb"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/necrolance/front.svg",
  34117. extra: 1062/947,
  34118. bottom: 41/1103
  34119. }
  34120. },
  34121. back: {
  34122. height: math.unit(7, "feet"),
  34123. weight: math.unit(180, "lb"),
  34124. name: "Back",
  34125. image: {
  34126. source: "./media/characters/necrolance/back.svg",
  34127. extra: 1045/984,
  34128. bottom: 14/1059
  34129. }
  34130. },
  34131. wing: {
  34132. height: math.unit(2.67, "feet"),
  34133. name: "Wing",
  34134. image: {
  34135. source: "./media/characters/necrolance/wing.svg"
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Normal",
  34142. height: math.unit(7, "feet"),
  34143. default: true
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34149. {
  34150. front: {
  34151. height: math.unit(76, "meters"),
  34152. weight: math.unit(30000, "tons"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/tyler/front.svg",
  34156. extra: 1640/1640,
  34157. bottom: 114/1754
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Macro",
  34164. height: math.unit(76, "meters"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(4 + 11/12, "feet"),
  34174. weight: math.unit(132, "lb"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/icey/front.svg",
  34178. extra: 2750/2550,
  34179. bottom: 33/2783
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(4 + 11/12, "feet"),
  34184. weight: math.unit(132, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/icey/back.svg",
  34188. extra: 2624/2481,
  34189. bottom: 35/2659
  34190. }
  34191. },
  34192. },
  34193. [
  34194. {
  34195. name: "Normal",
  34196. height: math.unit(4 + 11/12, "feet"),
  34197. default: true
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(100, "feet"),
  34206. weight: math.unit(0, "lb"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/smile/front.svg",
  34210. extra: 2983/2912,
  34211. bottom: 162/3145
  34212. }
  34213. },
  34214. back: {
  34215. height: math.unit(100, "feet"),
  34216. weight: math.unit(0, "lb"),
  34217. name: "Back",
  34218. image: {
  34219. source: "./media/characters/smile/back.svg",
  34220. extra: 3143/3031,
  34221. bottom: 91/3234
  34222. }
  34223. },
  34224. head: {
  34225. height: math.unit(26.3, "feet"),
  34226. weight: math.unit(0, "lb"),
  34227. name: "Head",
  34228. image: {
  34229. source: "./media/characters/smile/head.svg"
  34230. }
  34231. },
  34232. collar: {
  34233. height: math.unit(5.3, "feet"),
  34234. weight: math.unit(0, "lb"),
  34235. name: "Collar",
  34236. image: {
  34237. source: "./media/characters/smile/collar.svg"
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "Macro",
  34244. height: math.unit(100, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34251. {
  34252. dragon: {
  34253. height: math.unit(26, "feet"),
  34254. weight: math.unit(36, "tons"),
  34255. name: "Dragon",
  34256. image: {
  34257. source: "./media/characters/arimphae/dragon.svg",
  34258. extra: 1574/983,
  34259. bottom: 357/1931
  34260. }
  34261. },
  34262. drake: {
  34263. height: math.unit(9, "feet"),
  34264. weight: math.unit(1.5, "tons"),
  34265. name: "Drake",
  34266. image: {
  34267. source: "./media/characters/arimphae/drake.svg",
  34268. extra: 1120/925,
  34269. bottom: 435/1555
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Small",
  34276. height: math.unit(26*5/9, "feet")
  34277. },
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(26, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(8 + 9/12, "feet"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/xander/front.svg",
  34293. extra: 1237/974,
  34294. bottom: 94/1331
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(8 + 9/12, "feet"),
  34302. default: true
  34303. },
  34304. {
  34305. name: "Gaze Grabber",
  34306. height: math.unit(13 + 8/12, "feet")
  34307. },
  34308. {
  34309. name: "Jaw Dropper",
  34310. height: math.unit(27, "feet")
  34311. },
  34312. {
  34313. name: "Show Stopper",
  34314. height: math.unit(136, "feet")
  34315. },
  34316. {
  34317. name: "Superstar",
  34318. height: math.unit(1.9e6, "miles")
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34324. {
  34325. side: {
  34326. height: math.unit(2100, "feet"),
  34327. name: "Side",
  34328. image: {
  34329. source: "./media/characters/osiris/side.svg",
  34330. extra: 1105/939,
  34331. bottom: 167/1272
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Macro",
  34338. height: math.unit(2100, "feet"),
  34339. default: true
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(6 + 8/12, "feet"),
  34348. weight: math.unit(225, "lb"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/rhys-londe/front.svg",
  34352. extra: 2258/2141,
  34353. bottom: 188/2446
  34354. }
  34355. },
  34356. back: {
  34357. height: math.unit(6 + 8/12, "feet"),
  34358. weight: math.unit(225, "lb"),
  34359. name: "Back",
  34360. image: {
  34361. source: "./media/characters/rhys-londe/back.svg",
  34362. extra: 2237/2137,
  34363. bottom: 63/2300
  34364. }
  34365. },
  34366. frontNsfw: {
  34367. height: math.unit(6 + 8/12, "feet"),
  34368. weight: math.unit(225, "lb"),
  34369. name: "Front (NSFW)",
  34370. image: {
  34371. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34372. extra: 2258/2141,
  34373. bottom: 188/2446
  34374. }
  34375. },
  34376. backNsfw: {
  34377. height: math.unit(6 + 8/12, "feet"),
  34378. weight: math.unit(225, "lb"),
  34379. name: "Back (NSFW)",
  34380. image: {
  34381. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34382. extra: 2237/2137,
  34383. bottom: 63/2300
  34384. }
  34385. },
  34386. dick: {
  34387. height: math.unit(30, "inches"),
  34388. name: "Dick",
  34389. image: {
  34390. source: "./media/characters/rhys-londe/dick.svg"
  34391. }
  34392. },
  34393. maw: {
  34394. height: math.unit(1.6, "feet"),
  34395. name: "Maw",
  34396. image: {
  34397. source: "./media/characters/rhys-londe/maw.svg"
  34398. }
  34399. },
  34400. },
  34401. [
  34402. {
  34403. name: "Normal",
  34404. height: math.unit(6 + 8/12, "feet"),
  34405. default: true
  34406. },
  34407. ]
  34408. ))
  34409. characterMakers.push(() => makeCharacter(
  34410. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34411. {
  34412. front: {
  34413. height: math.unit(3 + 10/12, "feet"),
  34414. weight: math.unit(90, "lb"),
  34415. name: "Front",
  34416. image: {
  34417. source: "./media/characters/taivas-ensim/front.svg",
  34418. extra: 1327/1216,
  34419. bottom: 96/1423
  34420. }
  34421. },
  34422. back: {
  34423. height: math.unit(3 + 10/12, "feet"),
  34424. weight: math.unit(90, "lb"),
  34425. name: "Back",
  34426. image: {
  34427. source: "./media/characters/taivas-ensim/back.svg",
  34428. extra: 1355/1247,
  34429. bottom: 11/1366
  34430. }
  34431. },
  34432. frontNsfw: {
  34433. height: math.unit(3 + 10/12, "feet"),
  34434. weight: math.unit(90, "lb"),
  34435. name: "Front (NSFW)",
  34436. image: {
  34437. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34438. extra: 1327/1216,
  34439. bottom: 96/1423
  34440. }
  34441. },
  34442. backNsfw: {
  34443. height: math.unit(3 + 10/12, "feet"),
  34444. weight: math.unit(90, "lb"),
  34445. name: "Back (NSFW)",
  34446. image: {
  34447. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34448. extra: 1355/1247,
  34449. bottom: 11/1366
  34450. }
  34451. },
  34452. },
  34453. [
  34454. {
  34455. name: "Normal",
  34456. height: math.unit(3 + 10/12, "feet"),
  34457. default: true
  34458. },
  34459. ]
  34460. ))
  34461. characterMakers.push(() => makeCharacter(
  34462. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34463. {
  34464. front: {
  34465. height: math.unit(9 + 6/12, "feet"),
  34466. weight: math.unit(940, "lb"),
  34467. name: "Front",
  34468. image: {
  34469. source: "./media/characters/byliss/front.svg",
  34470. extra: 1327/1290,
  34471. bottom: 82/1409
  34472. }
  34473. },
  34474. back: {
  34475. height: math.unit(9 + 6/12, "feet"),
  34476. weight: math.unit(940, "lb"),
  34477. name: "Back",
  34478. image: {
  34479. source: "./media/characters/byliss/back.svg",
  34480. extra: 1376/1349,
  34481. bottom: 9/1385
  34482. }
  34483. },
  34484. frontNsfw: {
  34485. height: math.unit(9 + 6/12, "feet"),
  34486. weight: math.unit(940, "lb"),
  34487. name: "Front (NSFW)",
  34488. image: {
  34489. source: "./media/characters/byliss/front-nsfw.svg",
  34490. extra: 1327/1290,
  34491. bottom: 82/1409
  34492. }
  34493. },
  34494. backNsfw: {
  34495. height: math.unit(9 + 6/12, "feet"),
  34496. weight: math.unit(940, "lb"),
  34497. name: "Back (NSFW)",
  34498. image: {
  34499. source: "./media/characters/byliss/back-nsfw.svg",
  34500. extra: 1376/1349,
  34501. bottom: 9/1385
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(9 + 6/12, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(5 + 2/12, "feet"),
  34518. weight: math.unit(200, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/noraly/front.svg",
  34522. extra: 4985/4773,
  34523. bottom: 150/5135
  34524. }
  34525. },
  34526. full: {
  34527. height: math.unit(5 + 2/12, "feet"),
  34528. weight: math.unit(164, "lb"),
  34529. name: "Full",
  34530. image: {
  34531. source: "./media/characters/noraly/full.svg",
  34532. extra: 1114/1059,
  34533. bottom: 35/1149
  34534. }
  34535. },
  34536. fuller: {
  34537. height: math.unit(5 + 2/12, "feet"),
  34538. weight: math.unit(230, "lb"),
  34539. name: "Fuller",
  34540. image: {
  34541. source: "./media/characters/noraly/fuller.svg",
  34542. extra: 1114/1059,
  34543. bottom: 35/1149
  34544. }
  34545. },
  34546. fullest: {
  34547. height: math.unit(5 + 2/12, "feet"),
  34548. weight: math.unit(300, "lb"),
  34549. name: "Fullest",
  34550. image: {
  34551. source: "./media/characters/noraly/fullest.svg",
  34552. extra: 1114/1059,
  34553. bottom: 35/1149
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(5 + 2/12, "feet"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34567. {
  34568. front: {
  34569. height: math.unit(5 + 2/12, "feet"),
  34570. weight: math.unit(210, "lb"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/pera/front.svg",
  34574. extra: 1560/1531,
  34575. bottom: 165/1725
  34576. }
  34577. },
  34578. back: {
  34579. height: math.unit(5 + 2/12, "feet"),
  34580. weight: math.unit(210, "lb"),
  34581. name: "Back",
  34582. image: {
  34583. source: "./media/characters/pera/back.svg",
  34584. extra: 1523/1493,
  34585. bottom: 152/1675
  34586. }
  34587. },
  34588. dick: {
  34589. height: math.unit(2.4, "feet"),
  34590. name: "Dick",
  34591. image: {
  34592. source: "./media/characters/pera/dick.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(5 + 2/12, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(12, "feet"),
  34609. weight: math.unit(3200, "lb"),
  34610. name: "Front",
  34611. image: {
  34612. source: "./media/characters/julian/front.svg",
  34613. extra: 2962/2701,
  34614. bottom: 184/3146
  34615. }
  34616. },
  34617. maw: {
  34618. height: math.unit(5.35, "feet"),
  34619. name: "Maw",
  34620. image: {
  34621. source: "./media/characters/julian/maw.svg"
  34622. }
  34623. },
  34624. paw: {
  34625. height: math.unit(3.07, "feet"),
  34626. name: "Paw",
  34627. image: {
  34628. source: "./media/characters/julian/paw.svg"
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Default",
  34635. height: math.unit(12, "feet"),
  34636. default: true
  34637. },
  34638. {
  34639. name: "Big",
  34640. height: math.unit(50, "feet")
  34641. },
  34642. {
  34643. name: "Really Big",
  34644. height: math.unit(1, "mile")
  34645. },
  34646. {
  34647. name: "Extremely Big",
  34648. height: math.unit(100, "miles")
  34649. },
  34650. {
  34651. name: "Planet Hugger",
  34652. height: math.unit(200, "megameters")
  34653. },
  34654. {
  34655. name: "Unreasonably Big",
  34656. height: math.unit(1e300, "meters")
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34662. {
  34663. solgooleo: {
  34664. height: math.unit(4, "meters"),
  34665. weight: math.unit(6000*1.5, "kg"),
  34666. volume: math.unit(6000, "liters"),
  34667. name: "Solgooleo",
  34668. image: {
  34669. source: "./media/characters/pi/solgooleo.svg",
  34670. extra: 388/331,
  34671. bottom: 29/417
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(4, "meters"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(8, "feet"),
  34688. weight: math.unit(4, "tons"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/shaun/front.svg",
  34692. extra: 503/495,
  34693. bottom: 20/523
  34694. }
  34695. },
  34696. back: {
  34697. height: math.unit(8, "feet"),
  34698. weight: math.unit(4, "tons"),
  34699. name: "Back",
  34700. image: {
  34701. source: "./media/characters/shaun/back.svg",
  34702. extra: 487/480,
  34703. bottom: 20/507
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Lorg",
  34710. height: math.unit(8, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34717. {
  34718. frontAnthro: {
  34719. height: math.unit(7, "feet"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/sini/front-anthro.svg",
  34723. extra: 726/678,
  34724. bottom: 35/761
  34725. },
  34726. form: "anthro",
  34727. default: true
  34728. },
  34729. backAnthro: {
  34730. height: math.unit(7, "feet"),
  34731. name: "Back",
  34732. image: {
  34733. source: "./media/characters/sini/back-anthro.svg",
  34734. extra: 743/701,
  34735. bottom: 12/755
  34736. },
  34737. form: "anthro",
  34738. },
  34739. frontAnthroNsfw: {
  34740. height: math.unit(7, "feet"),
  34741. name: "Front (NSFW)",
  34742. image: {
  34743. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34744. extra: 726/678,
  34745. bottom: 35/761
  34746. },
  34747. form: "anthro"
  34748. },
  34749. backAnthroNsfw: {
  34750. height: math.unit(7, "feet"),
  34751. name: "Back (NSFW)",
  34752. image: {
  34753. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34754. extra: 743/701,
  34755. bottom: 12/755
  34756. },
  34757. form: "anthro",
  34758. },
  34759. mawAnthro: {
  34760. height: math.unit(2.14, "feet"),
  34761. name: "Maw",
  34762. image: {
  34763. source: "./media/characters/sini/maw-anthro.svg"
  34764. },
  34765. form: "anthro"
  34766. },
  34767. dick: {
  34768. height: math.unit(1.45, "feet"),
  34769. name: "Dick",
  34770. image: {
  34771. source: "./media/characters/sini/dick-anthro.svg"
  34772. },
  34773. form: "anthro"
  34774. },
  34775. feral: {
  34776. height: math.unit(16, "feet"),
  34777. name: "Feral",
  34778. image: {
  34779. source: "./media/characters/sini/feral.svg",
  34780. extra: 814/605,
  34781. bottom: 11/825
  34782. },
  34783. form: "feral",
  34784. default: true
  34785. },
  34786. feralNsfw: {
  34787. height: math.unit(16, "feet"),
  34788. name: "Feral (NSFW)",
  34789. image: {
  34790. source: "./media/characters/sini/feral-nsfw.svg",
  34791. extra: 814/605,
  34792. bottom: 11/825
  34793. },
  34794. form: "feral"
  34795. },
  34796. mawFeral: {
  34797. height: math.unit(5.66, "feet"),
  34798. name: "Maw",
  34799. image: {
  34800. source: "./media/characters/sini/maw-feral.svg"
  34801. },
  34802. form: "feral",
  34803. },
  34804. pawFeral: {
  34805. height: math.unit(5.17, "feet"),
  34806. name: "Paw",
  34807. image: {
  34808. source: "./media/characters/sini/paw-feral.svg"
  34809. },
  34810. form: "feral",
  34811. },
  34812. rumpFeral: {
  34813. height: math.unit(13.11, "feet"),
  34814. name: "Rump",
  34815. image: {
  34816. source: "./media/characters/sini/rump-feral.svg"
  34817. },
  34818. form: "feral",
  34819. },
  34820. dickFeral: {
  34821. height: math.unit(1, "feet"),
  34822. name: "Dick",
  34823. image: {
  34824. source: "./media/characters/sini/dick-feral.svg"
  34825. },
  34826. form: "feral",
  34827. },
  34828. eyeFeral: {
  34829. height: math.unit(1.23, "feet"),
  34830. name: "Eye",
  34831. image: {
  34832. source: "./media/characters/sini/eye-feral.svg"
  34833. },
  34834. form: "feral",
  34835. },
  34836. },
  34837. [
  34838. {
  34839. name: "Normal",
  34840. height: math.unit(7, "feet"),
  34841. default: true,
  34842. form: "anthro"
  34843. },
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(16, "feet"),
  34847. default: true,
  34848. form: "feral"
  34849. },
  34850. ],
  34851. {
  34852. "anthro": {
  34853. name: "Anthro",
  34854. default: true
  34855. },
  34856. "feral": {
  34857. name: "Feral",
  34858. }
  34859. }
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34863. {
  34864. side: {
  34865. height: math.unit(47.2, "meters"),
  34866. weight: math.unit(10000, "tons"),
  34867. name: "Side",
  34868. image: {
  34869. source: "./media/characters/raylldo/side.svg",
  34870. extra: 2363/642,
  34871. bottom: 221/2584
  34872. }
  34873. },
  34874. top: {
  34875. height: math.unit(240, "meters"),
  34876. weight: math.unit(10000, "tons"),
  34877. name: "Top",
  34878. image: {
  34879. source: "./media/characters/raylldo/top.svg"
  34880. }
  34881. },
  34882. bottom: {
  34883. height: math.unit(240, "meters"),
  34884. weight: math.unit(10000, "tons"),
  34885. name: "Bottom",
  34886. image: {
  34887. source: "./media/characters/raylldo/bottom.svg"
  34888. }
  34889. },
  34890. head: {
  34891. height: math.unit(38.6, "meters"),
  34892. name: "Head",
  34893. image: {
  34894. source: "./media/characters/raylldo/head.svg",
  34895. extra: 1335/1112,
  34896. bottom: 0/1335
  34897. }
  34898. },
  34899. maw: {
  34900. height: math.unit(16.37, "meters"),
  34901. name: "Maw",
  34902. image: {
  34903. source: "./media/characters/raylldo/maw.svg",
  34904. extra: 883/660,
  34905. bottom: 0/883
  34906. },
  34907. extraAttributes: {
  34908. preyCapacity: {
  34909. name: "Capacity",
  34910. power: 3,
  34911. type: "volume",
  34912. base: math.unit(1000, "people")
  34913. },
  34914. tongueSize: {
  34915. name: "Tongue Size",
  34916. power: 2,
  34917. type: "area",
  34918. base: math.unit(21, "m^2")
  34919. }
  34920. }
  34921. },
  34922. forepaw: {
  34923. height: math.unit(18, "meters"),
  34924. name: "Forepaw",
  34925. image: {
  34926. source: "./media/characters/raylldo/forepaw.svg"
  34927. }
  34928. },
  34929. hindpaw: {
  34930. height: math.unit(23, "meters"),
  34931. name: "Hindpaw",
  34932. image: {
  34933. source: "./media/characters/raylldo/hindpaw.svg"
  34934. }
  34935. },
  34936. genitals: {
  34937. height: math.unit(42, "meters"),
  34938. name: "Genitals",
  34939. image: {
  34940. source: "./media/characters/raylldo/genitals.svg"
  34941. }
  34942. },
  34943. },
  34944. [
  34945. {
  34946. name: "Normal",
  34947. height: math.unit(47.2, "meters"),
  34948. default: true
  34949. },
  34950. ]
  34951. ))
  34952. characterMakers.push(() => makeCharacter(
  34953. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34954. {
  34955. anthroFront: {
  34956. height: math.unit(9, "feet"),
  34957. weight: math.unit(600, "lb"),
  34958. name: "Anthro (Front)",
  34959. image: {
  34960. source: "./media/characters/glint/anthro-front.svg",
  34961. extra: 1097/1018,
  34962. bottom: 28/1125
  34963. }
  34964. },
  34965. anthroBack: {
  34966. height: math.unit(9, "feet"),
  34967. weight: math.unit(600, "lb"),
  34968. name: "Anthro (Back)",
  34969. image: {
  34970. source: "./media/characters/glint/anthro-back.svg",
  34971. extra: 1154/997,
  34972. bottom: 36/1190
  34973. }
  34974. },
  34975. feral: {
  34976. height: math.unit(11, "feet"),
  34977. weight: math.unit(50000, "lb"),
  34978. name: "Feral",
  34979. image: {
  34980. source: "./media/characters/glint/feral.svg",
  34981. extra: 3035/1585,
  34982. bottom: 1169/4204
  34983. }
  34984. },
  34985. dickAnthro: {
  34986. height: math.unit(0.7, "meters"),
  34987. name: "Dick (Anthro)",
  34988. image: {
  34989. source: "./media/characters/glint/dick-anthro.svg"
  34990. }
  34991. },
  34992. dickFeral: {
  34993. height: math.unit(2.65, "meters"),
  34994. name: "Dick (Feral)",
  34995. image: {
  34996. source: "./media/characters/glint/dick-feral.svg"
  34997. }
  34998. },
  34999. slitHidden: {
  35000. height: math.unit(5.85, "meters"),
  35001. name: "Slit (Hidden)",
  35002. image: {
  35003. source: "./media/characters/glint/slit-hidden.svg"
  35004. }
  35005. },
  35006. slitErect: {
  35007. height: math.unit(5.85, "meters"),
  35008. name: "Slit (Erect)",
  35009. image: {
  35010. source: "./media/characters/glint/slit-erect.svg"
  35011. }
  35012. },
  35013. mawAnthro: {
  35014. height: math.unit(0.63, "meters"),
  35015. name: "Maw (Anthro)",
  35016. image: {
  35017. source: "./media/characters/glint/maw.svg"
  35018. }
  35019. },
  35020. mawFeral: {
  35021. height: math.unit(2.89, "meters"),
  35022. name: "Maw (Feral)",
  35023. image: {
  35024. source: "./media/characters/glint/maw.svg"
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(9, "feet"),
  35032. default: true
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35038. {
  35039. side: {
  35040. height: math.unit(15, "feet"),
  35041. weight: math.unit(5000, "kg"),
  35042. name: "Side",
  35043. image: {
  35044. source: "./media/characters/kairne/side.svg",
  35045. extra: 979/811,
  35046. bottom: 13/992
  35047. }
  35048. },
  35049. front: {
  35050. height: math.unit(15, "feet"),
  35051. weight: math.unit(5000, "kg"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/kairne/front.svg",
  35055. extra: 908/814,
  35056. bottom: 26/934
  35057. }
  35058. },
  35059. sideNsfw: {
  35060. height: math.unit(15, "feet"),
  35061. weight: math.unit(5000, "kg"),
  35062. name: "Side (NSFW)",
  35063. image: {
  35064. source: "./media/characters/kairne/side-nsfw.svg",
  35065. extra: 979/811,
  35066. bottom: 13/992
  35067. }
  35068. },
  35069. frontNsfw: {
  35070. height: math.unit(15, "feet"),
  35071. weight: math.unit(5000, "kg"),
  35072. name: "Front (NSFW)",
  35073. image: {
  35074. source: "./media/characters/kairne/front-nsfw.svg",
  35075. extra: 908/814,
  35076. bottom: 26/934
  35077. }
  35078. },
  35079. dickCaged: {
  35080. height: math.unit(0.65, "meters"),
  35081. name: "Dick-caged",
  35082. image: {
  35083. source: "./media/characters/kairne/dick-caged.svg"
  35084. }
  35085. },
  35086. dick: {
  35087. height: math.unit(0.79, "meters"),
  35088. name: "Dick",
  35089. image: {
  35090. source: "./media/characters/kairne/dick.svg"
  35091. }
  35092. },
  35093. genitals: {
  35094. height: math.unit(1.29, "meters"),
  35095. name: "Genitals",
  35096. image: {
  35097. source: "./media/characters/kairne/genitals.svg"
  35098. }
  35099. },
  35100. maw: {
  35101. height: math.unit(1.73, "meters"),
  35102. name: "Maw",
  35103. image: {
  35104. source: "./media/characters/kairne/maw.svg"
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(15, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(5 + 8/12, "feet"),
  35121. weight: math.unit(139, "lb"),
  35122. name: "Front",
  35123. image: {
  35124. source: "./media/characters/biscuit-jackal/front.svg",
  35125. extra: 2106/1961,
  35126. bottom: 58/2164
  35127. }
  35128. },
  35129. back: {
  35130. height: math.unit(5 + 8/12, "feet"),
  35131. weight: math.unit(139, "lb"),
  35132. name: "Back",
  35133. image: {
  35134. source: "./media/characters/biscuit-jackal/back.svg",
  35135. extra: 2132/1976,
  35136. bottom: 57/2189
  35137. }
  35138. },
  35139. werejackal: {
  35140. height: math.unit(6 + 3/12, "feet"),
  35141. weight: math.unit(188, "lb"),
  35142. name: "Werejackal",
  35143. image: {
  35144. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35145. extra: 2373/2178,
  35146. bottom: 53/2426
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(5 + 8/12, "feet"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35160. {
  35161. front: {
  35162. height: math.unit(140, "cm"),
  35163. weight: math.unit(45, "kg"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/tayra-white/front.svg",
  35167. extra: 2229/2192,
  35168. bottom: 75/2304
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(140, "cm"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(4 + 5/12, "feet"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/scoop/front.svg",
  35188. extra: 1257/1136,
  35189. bottom: 69/1326
  35190. }
  35191. },
  35192. back: {
  35193. height: math.unit(4 + 5/12, "feet"),
  35194. name: "Back",
  35195. image: {
  35196. source: "./media/characters/scoop/back.svg",
  35197. extra: 1321/1152,
  35198. bottom: 32/1353
  35199. }
  35200. },
  35201. maw: {
  35202. height: math.unit(0.68, "feet"),
  35203. name: "Maw",
  35204. image: {
  35205. source: "./media/characters/scoop/maw.svg"
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Really Small",
  35212. height: math.unit(1, "mm")
  35213. },
  35214. {
  35215. name: "Micro",
  35216. height: math.unit(1, "inch")
  35217. },
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(4 + 5/12, "feet"),
  35221. default: true
  35222. },
  35223. {
  35224. name: "Macro",
  35225. height: math.unit(200, "feet")
  35226. },
  35227. {
  35228. name: "Megamacro",
  35229. height: math.unit(3240, "feet")
  35230. },
  35231. {
  35232. name: "Teramacro",
  35233. height: math.unit(2500, "miles")
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35239. {
  35240. front: {
  35241. height: math.unit(15 + 7/12, "feet"),
  35242. weight: math.unit(1150, "tons"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/saphinara/front.svg",
  35246. extra: 1837/1643,
  35247. bottom: 84/1921
  35248. },
  35249. form: "normal",
  35250. default: true
  35251. },
  35252. side: {
  35253. height: math.unit(15 + 7/12, "feet"),
  35254. weight: math.unit(1150, "tons"),
  35255. name: "Side",
  35256. image: {
  35257. source: "./media/characters/saphinara/side.svg",
  35258. extra: 605/547,
  35259. bottom: 6/611
  35260. },
  35261. form: "normal"
  35262. },
  35263. back: {
  35264. height: math.unit(15 + 7/12, "feet"),
  35265. weight: math.unit(1150, "tons"),
  35266. name: "Back",
  35267. image: {
  35268. source: "./media/characters/saphinara/back.svg",
  35269. extra: 591/531,
  35270. bottom: 13/604
  35271. },
  35272. form: "normal"
  35273. },
  35274. frontTail: {
  35275. height: math.unit(15 + 7/12, "feet"),
  35276. weight: math.unit(1150, "tons"),
  35277. name: "Front (Full Tail)",
  35278. image: {
  35279. source: "./media/characters/saphinara/front-tail.svg",
  35280. extra: 2256/1630,
  35281. bottom: 261/2517
  35282. },
  35283. form: "normal"
  35284. },
  35285. insides: {
  35286. height: math.unit(11.92, "feet"),
  35287. name: "Insides",
  35288. image: {
  35289. source: "./media/characters/saphinara/insides.svg"
  35290. },
  35291. form: "normal"
  35292. },
  35293. head: {
  35294. height: math.unit(4.17, "feet"),
  35295. name: "Head",
  35296. image: {
  35297. source: "./media/characters/saphinara/head.svg"
  35298. },
  35299. form: "normal"
  35300. },
  35301. tongue: {
  35302. height: math.unit(4.60, "feet"),
  35303. name: "Tongue",
  35304. image: {
  35305. source: "./media/characters/saphinara/tongue.svg"
  35306. },
  35307. form: "normal"
  35308. },
  35309. headEnraged: {
  35310. height: math.unit(5.55, "feet"),
  35311. name: "Head (Enraged)",
  35312. image: {
  35313. source: "./media/characters/saphinara/head-enraged.svg"
  35314. },
  35315. form: "normal"
  35316. },
  35317. wings: {
  35318. height: math.unit(11.95, "feet"),
  35319. name: "Wings",
  35320. image: {
  35321. source: "./media/characters/saphinara/wings.svg"
  35322. },
  35323. form: "normal"
  35324. },
  35325. feathers: {
  35326. height: math.unit(8.92, "feet"),
  35327. name: "Feathers",
  35328. image: {
  35329. source: "./media/characters/saphinara/feathers.svg"
  35330. },
  35331. form: "normal"
  35332. },
  35333. shackles: {
  35334. height: math.unit(2, "feet"),
  35335. name: "Shackles",
  35336. image: {
  35337. source: "./media/characters/saphinara/shackles.svg"
  35338. },
  35339. form: "normal"
  35340. },
  35341. eyes: {
  35342. height: math.unit(1.331, "feet"),
  35343. name: "Eyes",
  35344. image: {
  35345. source: "./media/characters/saphinara/eyes.svg"
  35346. },
  35347. form: "normal"
  35348. },
  35349. eyesEnraged: {
  35350. height: math.unit(1.331, "feet"),
  35351. name: "Eyes (Enraged)",
  35352. image: {
  35353. source: "./media/characters/saphinara/eyes-enraged.svg"
  35354. },
  35355. form: "normal"
  35356. },
  35357. trueFormSide: {
  35358. height: math.unit(200, "feet"),
  35359. weight: math.unit(1e7, "tons"),
  35360. name: "Side",
  35361. image: {
  35362. source: "./media/characters/saphinara/true-form-side.svg",
  35363. extra: 1399/770,
  35364. bottom: 97/1496
  35365. },
  35366. form: "true-form",
  35367. default: true
  35368. },
  35369. trueFormMaw: {
  35370. height: math.unit(71.5, "feet"),
  35371. name: "Maw",
  35372. image: {
  35373. source: "./media/characters/saphinara/true-form-maw.svg",
  35374. extra: 2302/1453,
  35375. bottom: 0/2302
  35376. },
  35377. form: "true-form"
  35378. },
  35379. meowberusSide: {
  35380. height: math.unit(75, "feet"),
  35381. weight: math.unit(180000, "kg"),
  35382. preyCapacity: math.unit(50000, "people"),
  35383. name: "Side",
  35384. image: {
  35385. source: "./media/characters/saphinara/meowberus-side.svg",
  35386. extra: 1400/711,
  35387. bottom: 126/1526
  35388. },
  35389. form: "meowberus",
  35390. extraAttributes: {
  35391. "pawArea": {
  35392. name: "Paw Size",
  35393. power: 2,
  35394. type: "area",
  35395. base: math.unit(35, "m^2")
  35396. }
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(15 + 7/12, "feet"),
  35404. default: true,
  35405. form: "normal"
  35406. },
  35407. {
  35408. name: "Angry",
  35409. height: math.unit(30 + 6/12, "feet"),
  35410. form: "normal"
  35411. },
  35412. {
  35413. name: "Enraged",
  35414. height: math.unit(102 + 1/12, "feet"),
  35415. form: "normal"
  35416. },
  35417. {
  35418. name: "True",
  35419. height: math.unit(200, "feet"),
  35420. default: true,
  35421. form: "true-form"
  35422. },
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(75, "feet"),
  35426. default: true,
  35427. form: "meowberus"
  35428. },
  35429. ],
  35430. {
  35431. "normal": {
  35432. name: "Normal",
  35433. default: true
  35434. },
  35435. "true-form": {
  35436. name: "True Form"
  35437. },
  35438. "meowberus": {
  35439. name: "Meowberus",
  35440. },
  35441. }
  35442. ))
  35443. characterMakers.push(() => makeCharacter(
  35444. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35445. {
  35446. front: {
  35447. height: math.unit(6 + 8/12, "feet"),
  35448. weight: math.unit(300, "lb"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/jrain/front.svg",
  35452. extra: 3039/2865,
  35453. bottom: 399/3438
  35454. }
  35455. },
  35456. back: {
  35457. height: math.unit(6 + 8/12, "feet"),
  35458. weight: math.unit(300, "lb"),
  35459. name: "Back",
  35460. image: {
  35461. source: "./media/characters/jrain/back.svg",
  35462. extra: 3089/2938,
  35463. bottom: 172/3261
  35464. }
  35465. },
  35466. head: {
  35467. height: math.unit(2.14, "feet"),
  35468. name: "Head",
  35469. image: {
  35470. source: "./media/characters/jrain/head.svg"
  35471. }
  35472. },
  35473. maw: {
  35474. height: math.unit(1.77, "feet"),
  35475. name: "Maw",
  35476. image: {
  35477. source: "./media/characters/jrain/maw.svg"
  35478. }
  35479. },
  35480. leftHand: {
  35481. height: math.unit(1.1, "feet"),
  35482. name: "Left Hand",
  35483. image: {
  35484. source: "./media/characters/jrain/left-hand.svg"
  35485. }
  35486. },
  35487. rightHand: {
  35488. height: math.unit(1.1, "feet"),
  35489. name: "Right Hand",
  35490. image: {
  35491. source: "./media/characters/jrain/right-hand.svg"
  35492. }
  35493. },
  35494. eye: {
  35495. height: math.unit(0.35, "feet"),
  35496. name: "Eye",
  35497. image: {
  35498. source: "./media/characters/jrain/eye.svg"
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(6 + 8/12, "feet"),
  35506. default: true
  35507. },
  35508. {
  35509. name: "Casually Large",
  35510. height: math.unit(25, "feet")
  35511. },
  35512. {
  35513. name: "Giant",
  35514. height: math.unit(100, "feet")
  35515. },
  35516. {
  35517. name: "Kaiju",
  35518. height: math.unit(300, "feet")
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35524. {
  35525. dragon: {
  35526. height: math.unit(5, "meters"),
  35527. name: "Dragon",
  35528. image: {
  35529. source: "./media/characters/sabrina/dragon.svg",
  35530. extra: 3670 / 2365,
  35531. bottom: 333 / 4003
  35532. }
  35533. },
  35534. gryphon: {
  35535. height: math.unit(3, "meters"),
  35536. name: "Gryphon",
  35537. image: {
  35538. source: "./media/characters/sabrina/gryphon.svg",
  35539. extra: 1576 / 945,
  35540. bottom: 71 / 1647
  35541. }
  35542. },
  35543. snake: {
  35544. height: math.unit(12, "meters"),
  35545. name: "Snake",
  35546. image: {
  35547. source: "./media/characters/sabrina/snake.svg",
  35548. extra: 1758 / 1320,
  35549. bottom: 186 / 1944
  35550. }
  35551. },
  35552. collar: {
  35553. height: math.unit(1.86, "meters"),
  35554. name: "Collar",
  35555. image: {
  35556. source: "./media/characters/sabrina/collar.svg"
  35557. }
  35558. },
  35559. eye: {
  35560. height: math.unit(0.53, "meters"),
  35561. name: "Eye",
  35562. image: {
  35563. source: "./media/characters/sabrina/eye.svg"
  35564. }
  35565. },
  35566. foot: {
  35567. height: math.unit(1.86, "meters"),
  35568. name: "Foot",
  35569. image: {
  35570. source: "./media/characters/sabrina/foot.svg"
  35571. }
  35572. },
  35573. hand: {
  35574. height: math.unit(1.32, "meters"),
  35575. name: "Hand",
  35576. image: {
  35577. source: "./media/characters/sabrina/hand.svg"
  35578. }
  35579. },
  35580. head: {
  35581. height: math.unit(2.44, "meters"),
  35582. name: "Head",
  35583. image: {
  35584. source: "./media/characters/sabrina/head.svg"
  35585. }
  35586. },
  35587. headAngry: {
  35588. height: math.unit(2.44, "meters"),
  35589. name: "Head (Angry))",
  35590. image: {
  35591. source: "./media/characters/sabrina/head-angry.svg"
  35592. }
  35593. },
  35594. maw: {
  35595. height: math.unit(1.65, "meters"),
  35596. name: "Maw",
  35597. image: {
  35598. source: "./media/characters/sabrina/maw.svg"
  35599. }
  35600. },
  35601. spikes: {
  35602. height: math.unit(1.69, "meters"),
  35603. name: "Spikes",
  35604. image: {
  35605. source: "./media/characters/sabrina/spikes.svg"
  35606. }
  35607. },
  35608. stomach: {
  35609. height: math.unit(1.15, "meters"),
  35610. name: "Stomach",
  35611. image: {
  35612. source: "./media/characters/sabrina/stomach.svg"
  35613. }
  35614. },
  35615. tongue: {
  35616. height: math.unit(1.27, "meters"),
  35617. name: "Tongue",
  35618. image: {
  35619. source: "./media/characters/sabrina/tongue.svg"
  35620. }
  35621. },
  35622. wingDorsal: {
  35623. height: math.unit(4.85, "meters"),
  35624. name: "Wing (Dorsal)",
  35625. image: {
  35626. source: "./media/characters/sabrina/wing-dorsal.svg"
  35627. }
  35628. },
  35629. wingVentral: {
  35630. height: math.unit(4.85, "meters"),
  35631. name: "Wing (Ventral)",
  35632. image: {
  35633. source: "./media/characters/sabrina/wing-ventral.svg"
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(5, "meters"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35647. {
  35648. frontMaid: {
  35649. height: math.unit(5 + 5/12, "feet"),
  35650. weight: math.unit(130, "lb"),
  35651. name: "Front (Maid)",
  35652. image: {
  35653. source: "./media/characters/midnight-tales/front-maid.svg",
  35654. extra: 489/454,
  35655. bottom: 61/550
  35656. }
  35657. },
  35658. frontFormal: {
  35659. height: math.unit(5 + 5/12, "feet"),
  35660. weight: math.unit(130, "lb"),
  35661. name: "Front (Formal)",
  35662. image: {
  35663. source: "./media/characters/midnight-tales/front-formal.svg",
  35664. extra: 489/454,
  35665. bottom: 61/550
  35666. }
  35667. },
  35668. back: {
  35669. height: math.unit(5 + 5/12, "feet"),
  35670. weight: math.unit(130, "lb"),
  35671. name: "Back",
  35672. image: {
  35673. source: "./media/characters/midnight-tales/back.svg",
  35674. extra: 498/456,
  35675. bottom: 33/531
  35676. }
  35677. },
  35678. frontBeast: {
  35679. height: math.unit(40, "feet"),
  35680. weight: math.unit(64000, "lb"),
  35681. name: "Front (Beast)",
  35682. image: {
  35683. source: "./media/characters/midnight-tales/front-beast.svg",
  35684. extra: 927/860,
  35685. bottom: 53/980
  35686. }
  35687. },
  35688. backBeast: {
  35689. height: math.unit(40, "feet"),
  35690. weight: math.unit(64000, "lb"),
  35691. name: "Back (Beast)",
  35692. image: {
  35693. source: "./media/characters/midnight-tales/back-beast.svg",
  35694. extra: 929/855,
  35695. bottom: 16/945
  35696. }
  35697. },
  35698. footBeast: {
  35699. height: math.unit(6.7, "feet"),
  35700. name: "Foot (Beast)",
  35701. image: {
  35702. source: "./media/characters/midnight-tales/foot-beast.svg"
  35703. }
  35704. },
  35705. headBeast: {
  35706. height: math.unit(8, "feet"),
  35707. name: "Head (Beast)",
  35708. image: {
  35709. source: "./media/characters/midnight-tales/head-beast.svg"
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(5 + 5 / 12, "feet"),
  35717. default: true
  35718. },
  35719. {
  35720. name: "Macro",
  35721. height: math.unit(25, "feet")
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(5 + 10/12, "feet"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/argon/front.svg",
  35733. extra: 2009/1935,
  35734. bottom: 118/2127
  35735. }
  35736. },
  35737. back: {
  35738. height: math.unit(5 + 10/12, "feet"),
  35739. name: "Back",
  35740. image: {
  35741. source: "./media/characters/argon/back.svg",
  35742. extra: 2047/1992,
  35743. bottom: 20/2067
  35744. }
  35745. },
  35746. frontDressed: {
  35747. height: math.unit(5 + 10/12, "feet"),
  35748. name: "Front (Dressed)",
  35749. image: {
  35750. source: "./media/characters/argon/front-dressed.svg",
  35751. extra: 2009/1935,
  35752. bottom: 118/2127
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(5 + 10/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(8 + 6/12, "feet"),
  35769. weight: math.unit(1150, "lb"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/kichi/front.svg",
  35773. extra: 1267/1164,
  35774. bottom: 61/1328
  35775. }
  35776. },
  35777. back: {
  35778. height: math.unit(8 + 6/12, "feet"),
  35779. weight: math.unit(1150, "lb"),
  35780. name: "Back",
  35781. image: {
  35782. source: "./media/characters/kichi/back.svg",
  35783. extra: 1273/1166,
  35784. bottom: 33/1306
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(8 + 6/12, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(6, "feet"),
  35801. weight: math.unit(210, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/manetel-greyscale/front.svg",
  35805. extra: 350/312,
  35806. bottom: 8/358
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Micro",
  35813. height: math.unit(2, "inches")
  35814. },
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(6, "feet"),
  35818. default: true
  35819. },
  35820. {
  35821. name: "Minimacro",
  35822. height: math.unit(17, "feet")
  35823. },
  35824. {
  35825. name: "Macro",
  35826. height: math.unit(117, "feet")
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35832. {
  35833. side: {
  35834. height: math.unit(5 + 1/12, "feet"),
  35835. weight: math.unit(418, "lb"),
  35836. name: "Side",
  35837. image: {
  35838. source: "./media/characters/softpurr/side.svg",
  35839. extra: 1993/1945,
  35840. bottom: 134/2127
  35841. }
  35842. },
  35843. front: {
  35844. height: math.unit(5 + 1/12, "feet"),
  35845. weight: math.unit(418, "lb"),
  35846. name: "Front",
  35847. image: {
  35848. source: "./media/characters/softpurr/front.svg",
  35849. extra: 1950/1856,
  35850. bottom: 174/2124
  35851. }
  35852. },
  35853. paw: {
  35854. height: math.unit(1, "feet"),
  35855. name: "Paw",
  35856. image: {
  35857. source: "./media/characters/softpurr/paw.svg"
  35858. }
  35859. },
  35860. },
  35861. [
  35862. {
  35863. name: "Normal",
  35864. height: math.unit(5 + 1/12, "feet"),
  35865. default: true
  35866. },
  35867. ]
  35868. ))
  35869. characterMakers.push(() => makeCharacter(
  35870. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35871. {
  35872. front: {
  35873. height: math.unit(260, "meters"),
  35874. name: "Front",
  35875. image: {
  35876. source: "./media/characters/anahita/front.svg",
  35877. extra: 665/635,
  35878. bottom: 89/754
  35879. }
  35880. },
  35881. },
  35882. [
  35883. {
  35884. name: "Macro",
  35885. height: math.unit(260, "meters"),
  35886. default: true
  35887. },
  35888. ]
  35889. ))
  35890. characterMakers.push(() => makeCharacter(
  35891. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35892. {
  35893. front: {
  35894. height: math.unit(4 + 10/12, "feet"),
  35895. weight: math.unit(160, "lb"),
  35896. name: "Front",
  35897. image: {
  35898. source: "./media/characters/chip-mouse/front.svg",
  35899. extra: 3528/3408,
  35900. bottom: 0/3528
  35901. }
  35902. },
  35903. frontNsfw: {
  35904. height: math.unit(4 + 10/12, "feet"),
  35905. weight: math.unit(160, "lb"),
  35906. name: "Front (NSFW)",
  35907. image: {
  35908. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35909. extra: 3528/3408,
  35910. bottom: 0/3528
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(4 + 10/12, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35924. {
  35925. side: {
  35926. height: math.unit(10, "feet"),
  35927. weight: math.unit(14000, "lb"),
  35928. name: "Side",
  35929. image: {
  35930. source: "./media/characters/kremm/side.svg",
  35931. extra: 1390/1053,
  35932. bottom: 90/1480
  35933. }
  35934. },
  35935. gut: {
  35936. height: math.unit(5.8, "feet"),
  35937. name: "Gut",
  35938. image: {
  35939. source: "./media/characters/kremm/gut.svg"
  35940. }
  35941. },
  35942. ass: {
  35943. height: math.unit(6.1, "feet"),
  35944. name: "Ass",
  35945. image: {
  35946. source: "./media/characters/kremm/ass.svg"
  35947. }
  35948. },
  35949. jaws: {
  35950. height: math.unit(2.2, "feet"),
  35951. name: "Jaws",
  35952. image: {
  35953. source: "./media/characters/kremm/jaws.svg"
  35954. }
  35955. },
  35956. dick: {
  35957. height: math.unit(4.26, "feet"),
  35958. name: "Dick",
  35959. image: {
  35960. source: "./media/characters/kremm/dick.svg"
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(10, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(30, "stories"),
  35977. name: "Front",
  35978. image: {
  35979. source: "./media/characters/kai/front.svg",
  35980. extra: 1892/1718,
  35981. bottom: 162/2054
  35982. }
  35983. },
  35984. },
  35985. [
  35986. {
  35987. name: "Macro",
  35988. height: math.unit(30, "stories"),
  35989. default: true
  35990. },
  35991. ]
  35992. ))
  35993. characterMakers.push(() => makeCharacter(
  35994. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35995. {
  35996. front: {
  35997. height: math.unit(6 + 4/12, "feet"),
  35998. weight: math.unit(145, "lb"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/sykes/front.svg",
  36002. extra: 1321 / 1187,
  36003. bottom: 66 / 1387
  36004. }
  36005. },
  36006. back: {
  36007. height: math.unit(6 + 4/12, "feet"),
  36008. weight: math.unit(145, "lb"),
  36009. name: "Back",
  36010. image: {
  36011. source: "./media/characters/sykes/back.svg",
  36012. extra: 1326/1181,
  36013. bottom: 31/1357
  36014. }
  36015. },
  36016. traditionalOutfit: {
  36017. height: math.unit(6 + 4/12, "feet"),
  36018. weight: math.unit(145, "lb"),
  36019. name: "Traditional Outfit",
  36020. image: {
  36021. source: "./media/characters/sykes/traditional-outfit.svg",
  36022. extra: 1321 / 1187,
  36023. bottom: 66 / 1387
  36024. }
  36025. },
  36026. adventureOutfit: {
  36027. height: math.unit(6 + 4/12, "feet"),
  36028. weight: math.unit(145, "lb"),
  36029. name: "Adventure Outfit",
  36030. image: {
  36031. source: "./media/characters/sykes/adventure-outfit.svg",
  36032. extra: 1321 / 1187,
  36033. bottom: 66 / 1387
  36034. }
  36035. },
  36036. handLeft: {
  36037. height: math.unit(0.9, "feet"),
  36038. name: "Hand (Left)",
  36039. image: {
  36040. source: "./media/characters/sykes/hand-left.svg"
  36041. }
  36042. },
  36043. handRight: {
  36044. height: math.unit(0.839, "feet"),
  36045. name: "Hand (Right)",
  36046. image: {
  36047. source: "./media/characters/sykes/hand-right.svg"
  36048. }
  36049. },
  36050. leftFoot: {
  36051. height: math.unit(1.2, "feet"),
  36052. name: "Foot (Left)",
  36053. image: {
  36054. source: "./media/characters/sykes/foot-left.svg"
  36055. }
  36056. },
  36057. rightFoot: {
  36058. height: math.unit(1.2, "feet"),
  36059. name: "Foot (Right)",
  36060. image: {
  36061. source: "./media/characters/sykes/foot-right.svg"
  36062. }
  36063. },
  36064. maw: {
  36065. height: math.unit(1.93, "feet"),
  36066. name: "Maw",
  36067. image: {
  36068. source: "./media/characters/sykes/maw.svg"
  36069. }
  36070. },
  36071. teeth: {
  36072. height: math.unit(0.51, "feet"),
  36073. name: "Teeth",
  36074. image: {
  36075. source: "./media/characters/sykes/teeth.svg"
  36076. }
  36077. },
  36078. tongue: {
  36079. height: math.unit(2.13, "feet"),
  36080. name: "Tongue",
  36081. image: {
  36082. source: "./media/characters/sykes/tongue.svg"
  36083. }
  36084. },
  36085. uvula: {
  36086. height: math.unit(0.16, "feet"),
  36087. name: "Uvula",
  36088. image: {
  36089. source: "./media/characters/sykes/uvula.svg"
  36090. }
  36091. },
  36092. collar: {
  36093. height: math.unit(0.287, "feet"),
  36094. name: "Collar",
  36095. image: {
  36096. source: "./media/characters/sykes/collar.svg"
  36097. }
  36098. },
  36099. tail: {
  36100. height: math.unit(3.8, "feet"),
  36101. name: "Tail",
  36102. image: {
  36103. source: "./media/characters/sykes/tail.svg"
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Shrunken",
  36110. height: math.unit(5, "inches")
  36111. },
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(6 + 4 / 12, "feet"),
  36115. default: true
  36116. },
  36117. {
  36118. name: "Big",
  36119. height: math.unit(15, "feet")
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(5 + 8/12, "feet"),
  36128. weight: math.unit(190, "lb"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/oven-otter/front.svg",
  36132. extra: 1809/1740,
  36133. bottom: 181/1990
  36134. }
  36135. },
  36136. back: {
  36137. height: math.unit(5 + 8/12, "feet"),
  36138. weight: math.unit(190, "lb"),
  36139. name: "Back",
  36140. image: {
  36141. source: "./media/characters/oven-otter/back.svg",
  36142. extra: 1709/1635,
  36143. bottom: 118/1827
  36144. }
  36145. },
  36146. hand: {
  36147. height: math.unit(1.07, "feet"),
  36148. name: "Hand",
  36149. image: {
  36150. source: "./media/characters/oven-otter/hand.svg"
  36151. }
  36152. },
  36153. beans: {
  36154. height: math.unit(1.74, "feet"),
  36155. name: "Beans",
  36156. image: {
  36157. source: "./media/characters/oven-otter/beans.svg"
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Micro",
  36164. height: math.unit(0.5, "inches")
  36165. },
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(5 + 8/12, "feet"),
  36169. default: true
  36170. },
  36171. {
  36172. name: "Macro",
  36173. height: math.unit(250, "feet")
  36174. },
  36175. {
  36176. name: "Really High",
  36177. height: math.unit(420, "feet")
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(5, "meters"),
  36186. weight: math.unit(292000000000000, "kg"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/devourer/front.svg",
  36190. extra: 1800/1733,
  36191. bottom: 211/2011
  36192. }
  36193. },
  36194. maw: {
  36195. height: math.unit(1.1, "meter"),
  36196. name: "Maw",
  36197. image: {
  36198. source: "./media/characters/devourer/maw.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Small",
  36205. height: math.unit(3, "meters")
  36206. },
  36207. {
  36208. name: "Large",
  36209. height: math.unit(5, "meters"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36216. {
  36217. front: {
  36218. height: math.unit(6, "feet"),
  36219. weight: math.unit(400, "lb"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/ellarby/front.svg",
  36223. extra: 1909/1763,
  36224. bottom: 80/1989
  36225. }
  36226. },
  36227. back: {
  36228. height: math.unit(6, "feet"),
  36229. weight: math.unit(400, "lb"),
  36230. name: "Back",
  36231. image: {
  36232. source: "./media/characters/ellarby/back.svg",
  36233. extra: 1914/1784,
  36234. bottom: 172/2086
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Mischief",
  36241. height: math.unit(18, "inches")
  36242. },
  36243. {
  36244. name: "Trouble",
  36245. height: math.unit(12, "feet")
  36246. },
  36247. {
  36248. name: "Havoc",
  36249. height: math.unit(200, "feet"),
  36250. default: true
  36251. },
  36252. {
  36253. name: "Pandemonium",
  36254. height: math.unit(1, "mile")
  36255. },
  36256. {
  36257. name: "Catastrophe",
  36258. height: math.unit(100, "miles")
  36259. },
  36260. ]
  36261. ))
  36262. characterMakers.push(() => makeCharacter(
  36263. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36264. {
  36265. front: {
  36266. height: math.unit(4.7, "meters"),
  36267. weight: math.unit(6500, "kg"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/vex/front.svg",
  36271. extra: 1288/1140,
  36272. bottom: 100/1388
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(4.7, "meters"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36286. {
  36287. normal: {
  36288. height: math.unit(6, "feet"),
  36289. weight: math.unit(350, "lb"),
  36290. name: "Normal",
  36291. image: {
  36292. source: "./media/characters/teshy/normal.svg",
  36293. extra: 1795/1735,
  36294. bottom: 16/1811
  36295. }
  36296. },
  36297. monsterFront: {
  36298. height: math.unit(12, "feet"),
  36299. weight: math.unit(4700, "lb"),
  36300. name: "Monster (Front)",
  36301. image: {
  36302. source: "./media/characters/teshy/monster-front.svg",
  36303. extra: 2042/2034,
  36304. bottom: 128/2170
  36305. }
  36306. },
  36307. monsterSide: {
  36308. height: math.unit(12, "feet"),
  36309. weight: math.unit(4700, "lb"),
  36310. name: "Monster (Side)",
  36311. image: {
  36312. source: "./media/characters/teshy/monster-side.svg",
  36313. extra: 2067/2056,
  36314. bottom: 70/2137
  36315. }
  36316. },
  36317. monsterBack: {
  36318. height: math.unit(12, "feet"),
  36319. weight: math.unit(4700, "lb"),
  36320. name: "Monster (Back)",
  36321. image: {
  36322. source: "./media/characters/teshy/monster-back.svg",
  36323. extra: 1921/1914,
  36324. bottom: 171/2092
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(6, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(6, "feet"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/ramey/front.svg",
  36344. extra: 790/787,
  36345. bottom: 27/817
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(6, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(5 + 5/12, "feet"),
  36362. weight: math.unit(120, "lb"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/phirae/front.svg",
  36366. extra: 2491/2436,
  36367. bottom: 38/2529
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(5 + 5/12, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36381. {
  36382. front: {
  36383. height: math.unit(5 + 3/12, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/stagglas/front.svg",
  36387. extra: 962/882,
  36388. bottom: 53/1015
  36389. }
  36390. },
  36391. feral: {
  36392. height: math.unit(335, "cm"),
  36393. name: "Feral",
  36394. image: {
  36395. source: "./media/characters/stagglas/feral.svg",
  36396. extra: 1732/1090,
  36397. bottom: 48/1780
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(5 + 3/12, "feet"),
  36405. default: true
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(5 + 4/12, "feet"),
  36414. weight: math.unit(145, "lb"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/starra/front.svg",
  36418. extra: 1790/1691,
  36419. bottom: 91/1881
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(5 + 4/12, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(2.2, "meters"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36439. extra: 1248/972,
  36440. bottom: 38/1286
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(2.2, "meters"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36454. {
  36455. side: {
  36456. height: math.unit(8 + 2/12, "feet"),
  36457. weight: math.unit(1240, "lb"),
  36458. name: "Side",
  36459. image: {
  36460. source: "./media/characters/mika-valentine/side.svg",
  36461. extra: 2670/2501,
  36462. bottom: 250/2920
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(8 + 2/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(7 + 2/12, "feet"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/xoltol/front.svg",
  36482. extra: 2212/2124,
  36483. bottom: 84/2296
  36484. }
  36485. },
  36486. side: {
  36487. height: math.unit(7 + 2/12, "feet"),
  36488. name: "Side",
  36489. image: {
  36490. source: "./media/characters/xoltol/side.svg",
  36491. extra: 2273/2197,
  36492. bottom: 26/2299
  36493. }
  36494. },
  36495. hand: {
  36496. height: math.unit(2.5, "feet"),
  36497. name: "Hand",
  36498. image: {
  36499. source: "./media/characters/xoltol/hand.svg"
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Small-ish",
  36506. height: math.unit(5 + 11/12, "feet")
  36507. },
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(7 + 2/12, "feet")
  36511. },
  36512. {
  36513. name: "\"Macro\"",
  36514. height: math.unit(14 + 9/12, "feet"),
  36515. default: true
  36516. },
  36517. {
  36518. name: "Alternate Height",
  36519. height: math.unit(20, "feet")
  36520. },
  36521. {
  36522. name: "Actually Macro",
  36523. height: math.unit(100, "feet")
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(5 + 2/12, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/kotetsu-redwood/front.svg",
  36535. extra: 1053/942,
  36536. bottom: 60/1113
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(5 + 2/12, "feet"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(2.4, "meters"),
  36553. weight: math.unit(125, "kg"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/lilith/front.svg",
  36557. extra: 1590/1513,
  36558. bottom: 203/1793
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Humanoid",
  36565. height: math.unit(2.4, "meters")
  36566. },
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(6, "meters"),
  36570. default: true
  36571. },
  36572. {
  36573. name: "Largest",
  36574. height: math.unit(55, "meters")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(8 + 4/12, "feet"),
  36583. weight: math.unit(535, "lb"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/beh'kah-bolger/front.svg",
  36587. extra: 1660/1603,
  36588. bottom: 37/1697
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(8 + 4/12, "feet"),
  36596. default: true
  36597. },
  36598. {
  36599. name: "Kaiju",
  36600. height: math.unit(250, "feet")
  36601. },
  36602. {
  36603. name: "Still Growing",
  36604. height: math.unit(10, "miles")
  36605. },
  36606. {
  36607. name: "Continental",
  36608. height: math.unit(5000, "miles")
  36609. },
  36610. {
  36611. name: "Final Form",
  36612. height: math.unit(2500000, "miles")
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36618. {
  36619. front: {
  36620. height: math.unit(7 + 2/12, "feet"),
  36621. weight: math.unit(230, "kg"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/tatyana-milewska/front.svg",
  36625. extra: 1199/1150,
  36626. bottom: 86/1285
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(7 + 2/12, "feet"),
  36634. default: true
  36635. },
  36636. {
  36637. name: "Big",
  36638. height: math.unit(12, "feet")
  36639. },
  36640. {
  36641. name: "Minimacro",
  36642. height: math.unit(20, "feet")
  36643. },
  36644. {
  36645. name: "Macro",
  36646. height: math.unit(120, "feet")
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(7 + 8/12, "feet"),
  36655. weight: math.unit(152, "kg"),
  36656. name: "Front",
  36657. image: {
  36658. source: "./media/characters/helen-arri/front.svg",
  36659. extra: 440/423,
  36660. bottom: 14/454
  36661. }
  36662. },
  36663. back: {
  36664. height: math.unit(7 + 8/12, "feet"),
  36665. weight: math.unit(152, "kg"),
  36666. name: "Back",
  36667. image: {
  36668. source: "./media/characters/helen-arri/back.svg",
  36669. extra: 443/426,
  36670. bottom: 8/451
  36671. }
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "Normal",
  36677. height: math.unit(7 + 8/12, "feet"),
  36678. default: true
  36679. },
  36680. {
  36681. name: "Big",
  36682. height: math.unit(14, "feet")
  36683. },
  36684. {
  36685. name: "Minimacro",
  36686. height: math.unit(24, "feet")
  36687. },
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(140, "feet")
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(6, "meters"),
  36699. name: "Front",
  36700. image: {
  36701. source: "./media/characters/ehanu-rehu/front.svg",
  36702. extra: 1800/1800,
  36703. bottom: 59/1859
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(6, "meters"),
  36711. default: true
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36717. {
  36718. front: {
  36719. height: math.unit(7 + 3/12, "feet"),
  36720. name: "Front",
  36721. image: {
  36722. source: "./media/characters/renholder/front.svg",
  36723. extra: 3096/2960,
  36724. bottom: 250/3346
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Normal Bat",
  36731. height: math.unit(7 + 3/12, "feet"),
  36732. default: true
  36733. },
  36734. {
  36735. name: "Slightly Tall Bat",
  36736. height: math.unit(100, "feet")
  36737. },
  36738. {
  36739. name: "Big Bat",
  36740. height: math.unit(1000, "feet")
  36741. },
  36742. {
  36743. name: "City-Sized Bat",
  36744. height: math.unit(200000, "feet")
  36745. },
  36746. {
  36747. name: "Bigger Bat",
  36748. height: math.unit(10000, "miles")
  36749. },
  36750. {
  36751. name: "Solar Sized Bat",
  36752. height: math.unit(100, "AU")
  36753. },
  36754. {
  36755. name: "Galactic Bat",
  36756. height: math.unit(200000, "lightyears")
  36757. },
  36758. {
  36759. name: "Universally Known Bat",
  36760. height: math.unit(1, "universe")
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(6 + 11/12, "feet"),
  36769. weight: math.unit(250, "lb"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/cookiecat/front.svg",
  36773. extra: 893/827,
  36774. bottom: 14/907
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Micro",
  36781. height: math.unit(3, "inches")
  36782. },
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(6 + 11/12, "feet"),
  36786. default: true
  36787. },
  36788. {
  36789. name: "Macro",
  36790. height: math.unit(100, "feet")
  36791. },
  36792. {
  36793. name: "Macro+",
  36794. height: math.unit(404, "feet")
  36795. },
  36796. {
  36797. name: "Megamacro",
  36798. height: math.unit(165, "miles")
  36799. },
  36800. {
  36801. name: "Planetary",
  36802. height: math.unit(4600, "miles")
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(10 + 3/12, "feet"),
  36811. weight: math.unit(1500, "lb"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/tux-kusanagi/front.svg",
  36815. extra: 944/840,
  36816. bottom: 39/983
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(10 + 3/12, "feet"),
  36821. weight: math.unit(1500, "lb"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/tux-kusanagi/back.svg",
  36825. extra: 941/842,
  36826. bottom: 28/969
  36827. }
  36828. },
  36829. rump: {
  36830. height: math.unit(5.25, "feet"),
  36831. name: "Rump",
  36832. image: {
  36833. source: "./media/characters/tux-kusanagi/rump.svg"
  36834. }
  36835. },
  36836. beak: {
  36837. height: math.unit(1.54, "feet"),
  36838. name: "Beak",
  36839. image: {
  36840. source: "./media/characters/tux-kusanagi/beak.svg"
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(10 + 3/12, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(58, "feet"),
  36857. weight: math.unit(200, "tons"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/uzarmazari/front.svg",
  36861. extra: 1575/1455,
  36862. bottom: 152/1727
  36863. }
  36864. },
  36865. back: {
  36866. height: math.unit(58, "feet"),
  36867. weight: math.unit(200, "tons"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/uzarmazari/back.svg",
  36871. extra: 1585/1510,
  36872. bottom: 157/1742
  36873. }
  36874. },
  36875. head: {
  36876. height: math.unit(26, "feet"),
  36877. name: "Head",
  36878. image: {
  36879. source: "./media/characters/uzarmazari/head.svg"
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(58, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36893. {
  36894. side: {
  36895. height: math.unit(15, "feet"),
  36896. name: "Side",
  36897. image: {
  36898. source: "./media/characters/akitu/side.svg",
  36899. extra: 1421/1321,
  36900. bottom: 157/1578
  36901. }
  36902. },
  36903. front: {
  36904. height: math.unit(15, "feet"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/akitu/front.svg",
  36908. extra: 1435/1326,
  36909. bottom: 232/1667
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(15, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(10 + 8/12, "feet"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/azalie-croixland/front.svg",
  36929. extra: 1972/1856,
  36930. bottom: 31/2003
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Original Height",
  36937. height: math.unit(5 + 4/12, "feet")
  36938. },
  36939. {
  36940. name: "Normal Height",
  36941. height: math.unit(10 + 8/12, "feet"),
  36942. default: true
  36943. },
  36944. ]
  36945. ))
  36946. characterMakers.push(() => makeCharacter(
  36947. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36948. {
  36949. side: {
  36950. height: math.unit(7 + 1/12, "feet"),
  36951. weight: math.unit(245, "lb"),
  36952. name: "Side",
  36953. image: {
  36954. source: "./media/characters/kavus-kazian/side.svg",
  36955. extra: 349/342,
  36956. bottom: 15/364
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(7 + 1/12, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36970. {
  36971. normalFront: {
  36972. height: math.unit(5 + 11/12, "feet"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/moonlight-rose/normal-front.svg",
  36976. extra: 1980/1825,
  36977. bottom: 18/1998
  36978. },
  36979. form: "normal",
  36980. default: true
  36981. },
  36982. normalBack: {
  36983. height: math.unit(5 + 11/12, "feet"),
  36984. name: "Back",
  36985. image: {
  36986. source: "./media/characters/moonlight-rose/normal-back.svg",
  36987. extra: 2010/1839,
  36988. bottom: 10/2020
  36989. },
  36990. form: "normal"
  36991. },
  36992. demonFront: {
  36993. height: math.unit(1.5, "earths"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/moonlight-rose/demon.svg",
  36997. extra: 1400/1294,
  36998. bottom: 45/1445
  36999. },
  37000. form: "demon",
  37001. default: true
  37002. },
  37003. terraFront: {
  37004. height: math.unit(1.5, "earths"),
  37005. name: "Front",
  37006. image: {
  37007. source: "./media/characters/moonlight-rose/terra.svg"
  37008. },
  37009. form: "terra",
  37010. default: true
  37011. },
  37012. jupiterFront: {
  37013. height: math.unit(69911*2, "km"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37017. extra: 1367/1286,
  37018. bottom: 55/1422
  37019. },
  37020. form: "jupiter",
  37021. default: true
  37022. },
  37023. neptuneFront: {
  37024. height: math.unit(24622*2, "feet"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37028. extra: 1851/1712,
  37029. bottom: 0/1851
  37030. },
  37031. form: "neptune",
  37032. default: true
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "\"Natural\" Height",
  37038. height: math.unit(5 + 11/12, "feet"),
  37039. form: "normal"
  37040. },
  37041. {
  37042. name: "Smallest comfortable size",
  37043. height: math.unit(40, "meters"),
  37044. form: "normal"
  37045. },
  37046. {
  37047. name: "Common size",
  37048. height: math.unit(50, "km"),
  37049. form: "normal",
  37050. default: true
  37051. },
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(1.5, "earths"),
  37055. form: "demon",
  37056. default: true
  37057. },
  37058. {
  37059. name: "Universal",
  37060. height: math.unit(15, "universes"),
  37061. form: "demon"
  37062. },
  37063. {
  37064. name: "Earth",
  37065. height: math.unit(1.5, "earths"),
  37066. form: "terra",
  37067. default: true
  37068. },
  37069. {
  37070. name: "Super Earth",
  37071. height: math.unit(67.5, "earths"),
  37072. form: "terra"
  37073. },
  37074. {
  37075. name: "Doesn't fit in a solar system...",
  37076. height: math.unit(1, "galaxy"),
  37077. form: "terra"
  37078. },
  37079. {
  37080. name: "Saturn",
  37081. height: math.unit(58232*2, "km"),
  37082. form: "jupiter"
  37083. },
  37084. {
  37085. name: "Jupiter",
  37086. height: math.unit(69911*2, "km"),
  37087. form: "jupiter",
  37088. default: true
  37089. },
  37090. {
  37091. name: "HD 100546 b",
  37092. height: math.unit(482938, "km"),
  37093. form: "jupiter"
  37094. },
  37095. {
  37096. name: "Enceladus",
  37097. height: math.unit(513*2, "km"),
  37098. form: "neptune"
  37099. },
  37100. {
  37101. name: "Europe",
  37102. height: math.unit(1560*2, "km"),
  37103. form: "neptune"
  37104. },
  37105. {
  37106. name: "Neptune",
  37107. height: math.unit(24622*2, "km"),
  37108. form: "neptune",
  37109. default: true
  37110. },
  37111. {
  37112. name: "CoRoT-9b",
  37113. height: math.unit(75067*2, "km"),
  37114. form: "neptune"
  37115. },
  37116. ],
  37117. {
  37118. "normal": {
  37119. name: "Normal",
  37120. default: true
  37121. },
  37122. "demon": {
  37123. name: "Demon"
  37124. },
  37125. "terra": {
  37126. name: "Terra"
  37127. },
  37128. "jupiter": {
  37129. name: "Jupiter"
  37130. },
  37131. "neptune": {
  37132. name: "Neptune"
  37133. }
  37134. }
  37135. ))
  37136. characterMakers.push(() => makeCharacter(
  37137. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37138. {
  37139. front: {
  37140. height: math.unit(16, "feet"),
  37141. weight: math.unit(610, "kg"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/huckle/front.svg",
  37145. extra: 1731/1625,
  37146. bottom: 33/1764
  37147. }
  37148. },
  37149. back: {
  37150. height: math.unit(16, "feet"),
  37151. weight: math.unit(610, "kg"),
  37152. name: "Back",
  37153. image: {
  37154. source: "./media/characters/huckle/back.svg",
  37155. extra: 1738/1651,
  37156. bottom: 37/1775
  37157. }
  37158. },
  37159. laughing: {
  37160. height: math.unit(3.75, "feet"),
  37161. name: "Laughing",
  37162. image: {
  37163. source: "./media/characters/huckle/laughing.svg"
  37164. }
  37165. },
  37166. angry: {
  37167. height: math.unit(4.15, "feet"),
  37168. name: "Angry",
  37169. image: {
  37170. source: "./media/characters/huckle/angry.svg"
  37171. }
  37172. },
  37173. },
  37174. [
  37175. {
  37176. name: "Normal",
  37177. height: math.unit(16, "feet"),
  37178. default: true
  37179. },
  37180. {
  37181. name: "Mini Macro",
  37182. height: math.unit(463, "feet")
  37183. },
  37184. {
  37185. name: "Macro",
  37186. height: math.unit(1680, "meters")
  37187. },
  37188. {
  37189. name: "Mega Macro",
  37190. height: math.unit(175, "km")
  37191. },
  37192. {
  37193. name: "Terra Macro",
  37194. height: math.unit(32, "gigameters")
  37195. },
  37196. {
  37197. name: "Multiverse+",
  37198. height: math.unit(2.56e23, "yottameters")
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(6 + 9/12, "feet"),
  37207. weight: math.unit(280, "lb"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/candy/front.svg",
  37211. extra: 234/217,
  37212. bottom: 11/245
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Really Small",
  37219. height: math.unit(0.1, "nm")
  37220. },
  37221. {
  37222. name: "Micro",
  37223. height: math.unit(2, "inches")
  37224. },
  37225. {
  37226. name: "Normal",
  37227. height: math.unit(6 + 9/12, "feet"),
  37228. default: true
  37229. },
  37230. {
  37231. name: "Small Macro",
  37232. height: math.unit(69, "feet")
  37233. },
  37234. {
  37235. name: "Macro",
  37236. height: math.unit(160, "feet")
  37237. },
  37238. {
  37239. name: "Megamacro",
  37240. height: math.unit(22000, "miles")
  37241. },
  37242. {
  37243. name: "Gigamacro",
  37244. height: math.unit(50000, "miles")
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(4, "feet"),
  37253. weight: math.unit(90, "lb"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/joey-mcdonald/front.svg",
  37257. extra: 1059/852,
  37258. bottom: 33/1092
  37259. }
  37260. },
  37261. back: {
  37262. height: math.unit(4, "feet"),
  37263. weight: math.unit(90, "lb"),
  37264. name: "Back",
  37265. image: {
  37266. source: "./media/characters/joey-mcdonald/back.svg",
  37267. extra: 1077/879,
  37268. bottom: 5/1082
  37269. }
  37270. },
  37271. frontKobold: {
  37272. height: math.unit(4, "feet"),
  37273. weight: math.unit(100, "lb"),
  37274. name: "Front-kobold",
  37275. image: {
  37276. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37277. extra: 1480/1367,
  37278. bottom: 0/1480
  37279. }
  37280. },
  37281. backKobold: {
  37282. height: math.unit(4, "feet"),
  37283. weight: math.unit(100, "lb"),
  37284. name: "Back-kobold",
  37285. image: {
  37286. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37287. extra: 1449/1361,
  37288. bottom: 0/1449
  37289. }
  37290. },
  37291. },
  37292. [
  37293. {
  37294. name: "Normal",
  37295. height: math.unit(4, "feet"),
  37296. default: true
  37297. },
  37298. ]
  37299. ))
  37300. characterMakers.push(() => makeCharacter(
  37301. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37302. {
  37303. front: {
  37304. height: math.unit(12 + 6/12, "feet"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/kass-lockheed/front.svg",
  37308. extra: 354/343,
  37309. bottom: 9/363
  37310. }
  37311. },
  37312. back: {
  37313. height: math.unit(12 + 6/12, "feet"),
  37314. name: "Back",
  37315. image: {
  37316. source: "./media/characters/kass-lockheed/back.svg",
  37317. extra: 364/352,
  37318. bottom: 3/367
  37319. }
  37320. },
  37321. dick: {
  37322. height: math.unit(3.12, "feet"),
  37323. name: "Dick",
  37324. image: {
  37325. source: "./media/characters/kass-lockheed/dick.svg"
  37326. }
  37327. },
  37328. head: {
  37329. height: math.unit(2.6, "feet"),
  37330. name: "Head",
  37331. image: {
  37332. source: "./media/characters/kass-lockheed/head.svg"
  37333. }
  37334. },
  37335. bleh: {
  37336. height: math.unit(2.85, "feet"),
  37337. name: "Bleh",
  37338. image: {
  37339. source: "./media/characters/kass-lockheed/bleh.svg"
  37340. }
  37341. },
  37342. smug: {
  37343. height: math.unit(2.85, "feet"),
  37344. name: "Smug",
  37345. image: {
  37346. source: "./media/characters/kass-lockheed/smug.svg"
  37347. }
  37348. },
  37349. },
  37350. [
  37351. {
  37352. name: "Normal",
  37353. height: math.unit(12 + 6/12, "feet"),
  37354. default: true
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(6 + 2/12, "feet"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/taylor/front.svg",
  37366. extra: 639/495,
  37367. bottom: 12/651
  37368. }
  37369. },
  37370. },
  37371. [
  37372. {
  37373. name: "Normal",
  37374. height: math.unit(6 + 2/12, "feet"),
  37375. default: true
  37376. },
  37377. {
  37378. name: "Big",
  37379. height: math.unit(15, "feet")
  37380. },
  37381. {
  37382. name: "Lorg",
  37383. height: math.unit(80, "feet")
  37384. },
  37385. {
  37386. name: "Too Lorg",
  37387. height: math.unit(120, "feet")
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(15, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/kaizer/front.svg",
  37399. extra: 1612/1436,
  37400. bottom: 43/1655
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(15, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37414. {
  37415. front: {
  37416. height: math.unit(2, "feet"),
  37417. weight: math.unit(30, "lb"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/sandy/front.svg",
  37421. extra: 1439/1307,
  37422. bottom: 194/1633
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(2, "feet"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(3, "feet"),
  37439. name: "Front",
  37440. image: {
  37441. source: "./media/characters/mellvi/front.svg",
  37442. extra: 1831/1630,
  37443. bottom: 58/1889
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(3, "feet"),
  37451. default: true
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(5 + 11/12, "feet"),
  37460. weight: math.unit(200, "lb"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/shirou/front.svg",
  37464. extra: 2491/2383,
  37465. bottom: 189/2680
  37466. }
  37467. },
  37468. back: {
  37469. height: math.unit(5 + 11/12, "feet"),
  37470. weight: math.unit(200, "lb"),
  37471. name: "Back",
  37472. image: {
  37473. source: "./media/characters/shirou/back.svg",
  37474. extra: 2554/2450,
  37475. bottom: 76/2630
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(5 + 11/12, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(6 + 3/12, "feet"),
  37492. weight: math.unit(177, "lb"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/noryu/front.svg",
  37496. extra: 973/885,
  37497. bottom: 10/983
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(6 + 3/12, "feet"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(5 + 6/12, "feet"),
  37514. weight: math.unit(170, "lb"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/mevolas-rubenido/front.svg",
  37518. extra: 2109/1901,
  37519. bottom: 96/2205
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(5 + 6/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(100, "feet"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/dee/front.svg",
  37539. extra: 2153/2036,
  37540. bottom: 59/2212
  37541. }
  37542. },
  37543. back: {
  37544. height: math.unit(100, "feet"),
  37545. name: "Back",
  37546. image: {
  37547. source: "./media/characters/dee/back.svg",
  37548. extra: 2183/2058,
  37549. bottom: 75/2258
  37550. }
  37551. },
  37552. foot: {
  37553. height: math.unit(19.43, "feet"),
  37554. name: "Foot",
  37555. image: {
  37556. source: "./media/characters/dee/foot.svg"
  37557. }
  37558. },
  37559. hoof: {
  37560. height: math.unit(20.6, "feet"),
  37561. name: "Hoof",
  37562. image: {
  37563. source: "./media/characters/dee/hoof.svg"
  37564. }
  37565. },
  37566. },
  37567. [
  37568. {
  37569. name: "Macro",
  37570. height: math.unit(100, "feet"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(5 + 6/12, "feet"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/teh/front.svg",
  37583. extra: 1002/847,
  37584. bottom: 62/1064
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(5 + 6/12, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37598. {
  37599. side: {
  37600. height: math.unit(6 + 1/12, "feet"),
  37601. weight: math.unit(204, "lb"),
  37602. name: "Side",
  37603. image: {
  37604. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37605. extra: 974/775,
  37606. bottom: 169/1143
  37607. }
  37608. },
  37609. sitting: {
  37610. height: math.unit(6 + 2/12, "feet"),
  37611. weight: math.unit(204, "lb"),
  37612. name: "Sitting",
  37613. image: {
  37614. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37615. extra: 1175/964,
  37616. bottom: 378/1553
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Normal",
  37623. height: math.unit(6 + 1/12, "feet"),
  37624. default: true
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(6, "inches"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/tululi/front.svg",
  37636. extra: 1997/1876,
  37637. bottom: 20/2017
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(6, "inches"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(4 + 1/12, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/star/front.svg",
  37657. extra: 1493/1189,
  37658. bottom: 48/1541
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(4 + 1/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(6 + 3/12, "feet"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/comet/front.svg",
  37678. extra: 1681/1462,
  37679. bottom: 26/1707
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(6 + 3/12, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37693. {
  37694. front: {
  37695. height: math.unit(950, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/vortex/front.svg",
  37699. extra: 1497/1434,
  37700. bottom: 56/1553
  37701. }
  37702. },
  37703. maw: {
  37704. height: math.unit(285, "feet"),
  37705. name: "Maw",
  37706. image: {
  37707. source: "./media/characters/vortex/maw.svg"
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Macro",
  37714. height: math.unit(950, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(600, "feet"),
  37724. weight: math.unit(0.02, "grams"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/doodle/front.svg",
  37728. extra: 1578/1413,
  37729. bottom: 37/1615
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Macro",
  37736. height: math.unit(600, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(6 + 6/12, "feet"),
  37746. name: "Front",
  37747. image: {
  37748. source: "./media/characters/jai/front.svg",
  37749. extra: 1645/1534,
  37750. bottom: 115/1760
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(6 + 6/12, "feet"),
  37758. default: true
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37764. {
  37765. front: {
  37766. height: math.unit(6 + 8/12, "feet"),
  37767. name: "Front",
  37768. image: {
  37769. source: "./media/characters/pixel/front.svg",
  37770. extra: 1900/1735,
  37771. bottom: 63/1963
  37772. }
  37773. },
  37774. },
  37775. [
  37776. {
  37777. name: "Normal",
  37778. height: math.unit(6 + 8/12, "feet"),
  37779. default: true
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37785. {
  37786. back: {
  37787. height: math.unit(4 + 1/12, "feet"),
  37788. weight: math.unit(75, "lb"),
  37789. name: "Back",
  37790. image: {
  37791. source: "./media/characters/rhett/back.svg",
  37792. extra: 930/878,
  37793. bottom: 25/955
  37794. }
  37795. },
  37796. front: {
  37797. height: math.unit(4 + 1/12, "feet"),
  37798. weight: math.unit(75, "lb"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/rhett/front.svg",
  37802. extra: 1682/1586,
  37803. bottom: 92/1774
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Micro",
  37810. height: math.unit(8, "inches")
  37811. },
  37812. {
  37813. name: "Tiny",
  37814. height: math.unit(2, "feet")
  37815. },
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(4 + 1/12, "feet"),
  37819. default: true
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37825. {
  37826. front: {
  37827. height: math.unit(3 + 3/12, "feet"),
  37828. name: "Front",
  37829. image: {
  37830. source: "./media/characters/penny/front.svg",
  37831. extra: 1406/1311,
  37832. bottom: 26/1432
  37833. }
  37834. },
  37835. },
  37836. [
  37837. {
  37838. name: "Normal",
  37839. height: math.unit(3 + 3/12, "feet"),
  37840. default: true
  37841. },
  37842. ]
  37843. ))
  37844. characterMakers.push(() => makeCharacter(
  37845. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37846. {
  37847. front: {
  37848. height: math.unit(4 + 11/12, "feet"),
  37849. name: "Front",
  37850. image: {
  37851. source: "./media/characters/monty/front.svg",
  37852. extra: 1479/1209,
  37853. bottom: 0/1479
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(4 + 11/12, "feet"),
  37861. default: true
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37867. {
  37868. front: {
  37869. height: math.unit(8 + 4/12, "feet"),
  37870. name: "Front",
  37871. image: {
  37872. source: "./media/characters/sterling/front.svg",
  37873. extra: 1420/1236,
  37874. bottom: 27/1447
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(8 + 4/12, "feet"),
  37882. default: true
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(15, "feet"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/marble/front.svg",
  37894. extra: 973/937,
  37895. bottom: 32/1005
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(15, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37909. {
  37910. front: {
  37911. height: math.unit(3, "inches"),
  37912. name: "Front",
  37913. image: {
  37914. source: "./media/characters/powder/front.svg",
  37915. extra: 1504/1334,
  37916. bottom: 518/2022
  37917. }
  37918. },
  37919. },
  37920. [
  37921. {
  37922. name: "Normal",
  37923. height: math.unit(3, "inches"),
  37924. default: true
  37925. },
  37926. ]
  37927. ))
  37928. characterMakers.push(() => makeCharacter(
  37929. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37930. {
  37931. front: {
  37932. height: math.unit(4 + 5/12, "feet"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/joey-raccoon/front.svg",
  37936. extra: 1273/1197,
  37937. bottom: 0/1273
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(4 + 5/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(8 + 4/12, "feet"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/vick/front.svg",
  37957. extra: 2187/2118,
  37958. bottom: 47/2234
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(8 + 4/12, "feet"),
  37966. default: true
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(5 + 5/12, "feet"),
  37975. name: "Front",
  37976. image: {
  37977. source: "./media/characters/mitsy/front.svg",
  37978. extra: 1842/1695,
  37979. bottom: 0/1842
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(5 + 5/12, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(6 + 3/12, "feet"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/silvy/front.svg",
  37999. extra: 1995/1836,
  38000. bottom: 225/2220
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(6 + 3/12, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(3 + 8/12, "feet"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/rodney/front.svg",
  38020. extra: 1956/1747,
  38021. bottom: 31/1987
  38022. }
  38023. },
  38024. frontDressed: {
  38025. height: math.unit(2.9, "feet"),
  38026. name: "Front (Dressed)",
  38027. image: {
  38028. source: "./media/characters/rodney/front-dressed.svg",
  38029. extra: 1382/1241,
  38030. bottom: 385/1767
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(3 + 8/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(5 + 9/12, "feet"),
  38047. weight: math.unit(194, "lbs"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/zakail-sudekai/front.svg",
  38051. extra: 2696/2533,
  38052. bottom: 248/2944
  38053. }
  38054. },
  38055. maw: {
  38056. height: math.unit(1.35, "feet"),
  38057. name: "Maw",
  38058. image: {
  38059. source: "./media/characters/zakail-sudekai/maw.svg"
  38060. }
  38061. },
  38062. },
  38063. [
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(5 + 9/12, "feet"),
  38067. default: true
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(8 + 4/12, "feet"),
  38076. weight: math.unit(1200, "lb"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/eleanor/front.svg",
  38080. extra: 1226/1192,
  38081. bottom: 52/1278
  38082. }
  38083. },
  38084. back: {
  38085. height: math.unit(8 + 4/12, "feet"),
  38086. weight: math.unit(1200, "lb"),
  38087. name: "Back",
  38088. image: {
  38089. source: "./media/characters/eleanor/back.svg",
  38090. extra: 1242/1184,
  38091. bottom: 60/1302
  38092. }
  38093. },
  38094. head: {
  38095. height: math.unit(2.62, "feet"),
  38096. name: "Head",
  38097. image: {
  38098. source: "./media/characters/eleanor/head.svg"
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(8 + 4/12, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(8 + 4/12, "feet"),
  38115. weight: math.unit(750, "lb"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/tanya/front.svg",
  38119. extra: 1749/1615,
  38120. bottom: 33/1782
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Normal",
  38127. height: math.unit(8 + 4/12, "feet"),
  38128. default: true
  38129. },
  38130. ]
  38131. ))
  38132. characterMakers.push(() => makeCharacter(
  38133. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38134. {
  38135. front: {
  38136. height: math.unit(5, "feet"),
  38137. weight: math.unit(225, "lb"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/cindy/front.svg",
  38141. extra: 1320/1250,
  38142. bottom: 42/1362
  38143. }
  38144. },
  38145. frontDressed: {
  38146. height: math.unit(5, "feet"),
  38147. weight: math.unit(225, "lb"),
  38148. name: "Front (Dressed)",
  38149. image: {
  38150. source: "./media/characters/cindy/front-dressed.svg",
  38151. extra: 1320/1250,
  38152. bottom: 42/1362
  38153. }
  38154. },
  38155. back: {
  38156. height: math.unit(5, "feet"),
  38157. weight: math.unit(225, "lb"),
  38158. name: "Back",
  38159. image: {
  38160. source: "./media/characters/cindy/back.svg",
  38161. extra: 1384/1346,
  38162. bottom: 14/1398
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(5, "feet"),
  38170. default: true
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(6 + 9/12, "feet"),
  38179. weight: math.unit(440, "lb"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/wilbur-owen/front.svg",
  38183. extra: 1575/1448,
  38184. bottom: 72/1647
  38185. }
  38186. },
  38187. back: {
  38188. height: math.unit(6 + 9/12, "feet"),
  38189. weight: math.unit(440, "lb"),
  38190. name: "Back",
  38191. image: {
  38192. source: "./media/characters/wilbur-owen/back.svg",
  38193. extra: 1578/1445,
  38194. bottom: 36/1614
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(6 + 9/12, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(6 + 5/12, "feet"),
  38211. weight: math.unit(650, "lb"),
  38212. name: "Front",
  38213. image: {
  38214. source: "./media/characters/keegan/front.svg",
  38215. extra: 2387/2198,
  38216. bottom: 33/2420
  38217. }
  38218. },
  38219. side: {
  38220. height: math.unit(6 + 5/12, "feet"),
  38221. weight: math.unit(650, "lb"),
  38222. name: "Side",
  38223. image: {
  38224. source: "./media/characters/keegan/side.svg",
  38225. extra: 2390/2202,
  38226. bottom: 47/2437
  38227. }
  38228. },
  38229. back: {
  38230. height: math.unit(6 + 5/12, "feet"),
  38231. weight: math.unit(650, "lb"),
  38232. name: "Back",
  38233. image: {
  38234. source: "./media/characters/keegan/back.svg",
  38235. extra: 2418/2268,
  38236. bottom: 15/2433
  38237. }
  38238. },
  38239. frontSfw: {
  38240. height: math.unit(6 + 5/12, "feet"),
  38241. weight: math.unit(650, "lb"),
  38242. name: "Front (SFW)",
  38243. image: {
  38244. source: "./media/characters/keegan/front-sfw.svg",
  38245. extra: 2387/2198,
  38246. bottom: 33/2420
  38247. }
  38248. },
  38249. beans: {
  38250. height: math.unit(1.85, "feet"),
  38251. name: "Beans",
  38252. image: {
  38253. source: "./media/characters/keegan/beans.svg"
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(6 + 5/12, "feet"),
  38261. default: true
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38267. {
  38268. front: {
  38269. height: math.unit(9, "feet"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/colton/front.svg",
  38273. extra: 1589/1326,
  38274. bottom: 139/1728
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(9, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(2 + 9/12, "feet"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/bora/front.svg",
  38294. extra: 1265/1250,
  38295. bottom: 24/1289
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Normal",
  38302. height: math.unit(2 + 9/12, "feet"),
  38303. default: true
  38304. },
  38305. ]
  38306. ))
  38307. characterMakers.push(() => makeCharacter(
  38308. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38309. {
  38310. front: {
  38311. height: math.unit(8, "feet"),
  38312. name: "Front",
  38313. image: {
  38314. source: "./media/characters/myu-myu/front.svg",
  38315. extra: 1949/1857,
  38316. bottom: 90/2039
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(8, "feet"),
  38324. default: true
  38325. },
  38326. {
  38327. name: "Big",
  38328. height: math.unit(15, "feet")
  38329. },
  38330. {
  38331. name: "BIG",
  38332. height: math.unit(25, "feet")
  38333. },
  38334. ]
  38335. ))
  38336. characterMakers.push(() => makeCharacter(
  38337. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38338. {
  38339. side: {
  38340. height: math.unit(7 + 5/12, "feet"),
  38341. weight: math.unit(2800, "lb"),
  38342. name: "Side",
  38343. image: {
  38344. source: "./media/characters/haloren/side.svg",
  38345. extra: 1793/409,
  38346. bottom: 59/1852
  38347. }
  38348. },
  38349. frontPaw: {
  38350. height: math.unit(2.36, "feet"),
  38351. name: "Front paw",
  38352. image: {
  38353. source: "./media/characters/haloren/front-paw.svg"
  38354. }
  38355. },
  38356. hindPaw: {
  38357. height: math.unit(3.18, "feet"),
  38358. name: "Hind paw",
  38359. image: {
  38360. source: "./media/characters/haloren/hind-paw.svg"
  38361. }
  38362. },
  38363. maw: {
  38364. height: math.unit(5.05, "feet"),
  38365. name: "Maw",
  38366. image: {
  38367. source: "./media/characters/haloren/maw.svg"
  38368. }
  38369. },
  38370. dick: {
  38371. height: math.unit(2.90, "feet"),
  38372. name: "Dick",
  38373. image: {
  38374. source: "./media/characters/haloren/dick.svg"
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(7 + 5/12, "feet"),
  38382. default: true
  38383. },
  38384. {
  38385. name: "Enhanced",
  38386. height: math.unit(14 + 3/12, "feet")
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(171, "cm"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/kimmy/front.svg",
  38398. extra: 1491/1435,
  38399. bottom: 53/1544
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Small",
  38406. height: math.unit(9, "cm")
  38407. },
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(171, "cm"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38417. {
  38418. front: {
  38419. height: math.unit(8, "feet"),
  38420. weight: math.unit(300, "lb"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/galeboomer/front.svg",
  38424. extra: 4651/4415,
  38425. bottom: 162/4813
  38426. }
  38427. },
  38428. back: {
  38429. height: math.unit(8, "feet"),
  38430. weight: math.unit(300, "lb"),
  38431. name: "Back",
  38432. image: {
  38433. source: "./media/characters/galeboomer/back.svg",
  38434. extra: 4544/4314,
  38435. bottom: 16/4560
  38436. }
  38437. },
  38438. frontAlt: {
  38439. height: math.unit(8, "feet"),
  38440. weight: math.unit(300, "lb"),
  38441. name: "Front (Alt)",
  38442. image: {
  38443. source: "./media/characters/galeboomer/front-alt.svg",
  38444. extra: 4458/4228,
  38445. bottom: 68/4526
  38446. }
  38447. },
  38448. maw: {
  38449. height: math.unit(1.2, "feet"),
  38450. name: "Maw",
  38451. image: {
  38452. source: "./media/characters/galeboomer/maw.svg"
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(8, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(5 + 9/12, "feet"),
  38469. weight: math.unit(120, "lb"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/chyr/front.svg",
  38473. extra: 1323/1254,
  38474. bottom: 63/1386
  38475. }
  38476. },
  38477. back: {
  38478. height: math.unit(5 + 9/12, "feet"),
  38479. weight: math.unit(120, "lb"),
  38480. name: "Back",
  38481. image: {
  38482. source: "./media/characters/chyr/back.svg",
  38483. extra: 1323/1252,
  38484. bottom: 48/1371
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(5 + 9/12, "feet"),
  38492. default: true
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(7, "feet"),
  38501. weight: math.unit(310, "lb"),
  38502. name: "Front",
  38503. image: {
  38504. source: "./media/characters/solarus/front.svg",
  38505. extra: 2415/2021,
  38506. bottom: 103/2518
  38507. }
  38508. },
  38509. back: {
  38510. height: math.unit(7, "feet"),
  38511. weight: math.unit(310, "lb"),
  38512. name: "Back",
  38513. image: {
  38514. source: "./media/characters/solarus/back.svg",
  38515. extra: 2463/2089,
  38516. bottom: 79/2542
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(7, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(16, "feet"),
  38533. name: "Front",
  38534. image: {
  38535. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38536. extra: 1844/1780,
  38537. bottom: 58/1902
  38538. }
  38539. },
  38540. winterCoat: {
  38541. height: math.unit(16, "feet"),
  38542. name: "Winter Coat",
  38543. image: {
  38544. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38545. extra: 1807/1775,
  38546. bottom: 69/1876
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(16, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "Chicago Size",
  38558. height: math.unit(560, "feet")
  38559. },
  38560. ]
  38561. ))
  38562. characterMakers.push(() => makeCharacter(
  38563. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38564. {
  38565. front: {
  38566. height: math.unit(11 + 6/12, "feet"),
  38567. weight: math.unit(1366, "lb"),
  38568. name: "Front",
  38569. image: {
  38570. source: "./media/characters/lexor/front.svg",
  38571. extra: 1560/1481,
  38572. bottom: 211/1771
  38573. }
  38574. },
  38575. back: {
  38576. height: math.unit(11 + 6/12, "feet"),
  38577. weight: math.unit(1366, "lb"),
  38578. name: "Back",
  38579. image: {
  38580. source: "./media/characters/lexor/back.svg",
  38581. extra: 1614/1533,
  38582. bottom: 76/1690
  38583. }
  38584. },
  38585. maw: {
  38586. height: math.unit(3, "feet"),
  38587. name: "Maw",
  38588. image: {
  38589. source: "./media/characters/lexor/maw.svg"
  38590. }
  38591. },
  38592. dick: {
  38593. height: math.unit(2.59, "feet"),
  38594. name: "Dick",
  38595. image: {
  38596. source: "./media/characters/lexor/dick.svg"
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(11 + 6/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(5 + 8/12, "feet"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/magnum/front.svg",
  38616. extra: 942/855,
  38617. bottom: 26/968
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(5 + 8/12, "feet"),
  38625. default: true
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(18 + 4/12, "feet"),
  38634. weight: math.unit(1500, "kg"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/solas-sharpsman/front.svg",
  38638. extra: 1698/1589,
  38639. bottom: 0/1698
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(18 + 4/12, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(5 + 5/12, "feet"),
  38656. weight: math.unit(180, "lb"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/october/front.svg",
  38660. extra: 1800/1650,
  38661. bottom: 0/1800
  38662. }
  38663. },
  38664. frontNsfw: {
  38665. height: math.unit(5 + 5/12, "feet"),
  38666. weight: math.unit(180, "lb"),
  38667. name: "Front (NSFW)",
  38668. image: {
  38669. source: "./media/characters/october/front-nsfw.svg",
  38670. extra: 1392/1307,
  38671. bottom: 42/1434
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(5 + 5/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(8 + 6/12, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/essynkardi/front.svg",
  38691. extra: 1914/1846,
  38692. bottom: 22/1936
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(8 + 6/12, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(6 + 6/12, "feet"),
  38709. weight: math.unit(7, "lb"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/icky/front.svg",
  38713. extra: 813/782,
  38714. bottom: 66/879
  38715. }
  38716. },
  38717. back: {
  38718. height: math.unit(6 + 6/12, "feet"),
  38719. weight: math.unit(7, "lb"),
  38720. name: "Back",
  38721. image: {
  38722. source: "./media/characters/icky/back.svg",
  38723. extra: 754/735,
  38724. bottom: 56/810
  38725. }
  38726. },
  38727. },
  38728. [
  38729. {
  38730. name: "Normal",
  38731. height: math.unit(6 + 6/12, "feet"),
  38732. default: true
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(15, "feet"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/rojas/front.svg",
  38744. extra: 1462/1408,
  38745. bottom: 95/1557
  38746. }
  38747. },
  38748. back: {
  38749. height: math.unit(15, "feet"),
  38750. name: "Back",
  38751. image: {
  38752. source: "./media/characters/rojas/back.svg",
  38753. extra: 1023/954,
  38754. bottom: 28/1051
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Normal",
  38761. height: math.unit(15, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38768. {
  38769. frontHuman: {
  38770. height: math.unit(5 + 7/12, "feet"),
  38771. name: "Front (Human)",
  38772. image: {
  38773. source: "./media/characters/alek-dryagan/front-human.svg",
  38774. extra: 1687/1667,
  38775. bottom: 69/1756
  38776. }
  38777. },
  38778. backHuman: {
  38779. height: math.unit(5 + 7/12, "feet"),
  38780. name: "Back (Human)",
  38781. image: {
  38782. source: "./media/characters/alek-dryagan/back-human.svg",
  38783. extra: 1670/1649,
  38784. bottom: 65/1735
  38785. }
  38786. },
  38787. frontDemi: {
  38788. height: math.unit(65, "feet"),
  38789. name: "Front (Demi)",
  38790. image: {
  38791. source: "./media/characters/alek-dryagan/front-demi.svg",
  38792. extra: 1669/1642,
  38793. bottom: 49/1718
  38794. }
  38795. },
  38796. backDemi: {
  38797. height: math.unit(65, "feet"),
  38798. name: "Back (Demi)",
  38799. image: {
  38800. source: "./media/characters/alek-dryagan/back-demi.svg",
  38801. extra: 1658/1637,
  38802. bottom: 40/1698
  38803. }
  38804. },
  38805. mawHuman: {
  38806. height: math.unit(0.3, "feet"),
  38807. name: "Maw (Human)",
  38808. image: {
  38809. source: "./media/characters/alek-dryagan/maw-human.svg"
  38810. }
  38811. },
  38812. mawDemi: {
  38813. height: math.unit(3.8, "feet"),
  38814. name: "Maw (Demi)",
  38815. image: {
  38816. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Normal",
  38823. height: math.unit(5 + 7/12, "feet"),
  38824. default: true
  38825. },
  38826. ]
  38827. ))
  38828. characterMakers.push(() => makeCharacter(
  38829. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38830. {
  38831. frontHuman: {
  38832. height: math.unit(5 + 2/12, "feet"),
  38833. name: "Front (Human)",
  38834. image: {
  38835. source: "./media/characters/gen/front-human.svg",
  38836. extra: 1627/1538,
  38837. bottom: 71/1698
  38838. }
  38839. },
  38840. backHuman: {
  38841. height: math.unit(5 + 2/12, "feet"),
  38842. name: "Back (Human)",
  38843. image: {
  38844. source: "./media/characters/gen/back-human.svg",
  38845. extra: 1638/1548,
  38846. bottom: 69/1707
  38847. }
  38848. },
  38849. frontDemi: {
  38850. height: math.unit(5 + 2/12, "feet"),
  38851. name: "Front (Demi)",
  38852. image: {
  38853. source: "./media/characters/gen/front-demi.svg",
  38854. extra: 1627/1538,
  38855. bottom: 71/1698
  38856. }
  38857. },
  38858. backDemi: {
  38859. height: math.unit(5 + 2/12, "feet"),
  38860. name: "Back (Demi)",
  38861. image: {
  38862. source: "./media/characters/gen/back-demi.svg",
  38863. extra: 1638/1548,
  38864. bottom: 69/1707
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(5 + 2/12, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38878. {
  38879. frontImp: {
  38880. height: math.unit(1 + 11/12, "feet"),
  38881. name: "Front (Imp)",
  38882. image: {
  38883. source: "./media/characters/max-kobold/front-imp.svg",
  38884. extra: 1238/1134,
  38885. bottom: 81/1319
  38886. }
  38887. },
  38888. backImp: {
  38889. height: math.unit(1 + 11/12, "feet"),
  38890. name: "Back (Imp)",
  38891. image: {
  38892. source: "./media/characters/max-kobold/back-imp.svg",
  38893. extra: 1334/1175,
  38894. bottom: 34/1368
  38895. }
  38896. },
  38897. frontDemi: {
  38898. height: math.unit(5 + 9/12, "feet"),
  38899. name: "Front (Demi)",
  38900. image: {
  38901. source: "./media/characters/max-kobold/front-demi.svg",
  38902. extra: 1715/1685,
  38903. bottom: 54/1769
  38904. }
  38905. },
  38906. backDemi: {
  38907. height: math.unit(5 + 9/12, "feet"),
  38908. name: "Back (Demi)",
  38909. image: {
  38910. source: "./media/characters/max-kobold/back-demi.svg",
  38911. extra: 1752/1729,
  38912. bottom: 41/1793
  38913. }
  38914. },
  38915. handImp: {
  38916. height: math.unit(0.45, "feet"),
  38917. name: "Hand (Imp)",
  38918. image: {
  38919. source: "./media/characters/max-kobold/hand.svg"
  38920. }
  38921. },
  38922. pawImp: {
  38923. height: math.unit(0.46, "feet"),
  38924. name: "Paw (Imp)",
  38925. image: {
  38926. source: "./media/characters/max-kobold/paw.svg"
  38927. }
  38928. },
  38929. handDemi: {
  38930. height: math.unit(0.80, "feet"),
  38931. name: "Hand (Demi)",
  38932. image: {
  38933. source: "./media/characters/max-kobold/hand.svg"
  38934. }
  38935. },
  38936. pawDemi: {
  38937. height: math.unit(1.1, "feet"),
  38938. name: "Paw (Demi)",
  38939. image: {
  38940. source: "./media/characters/max-kobold/paw.svg"
  38941. }
  38942. },
  38943. headImp: {
  38944. height: math.unit(1.33, "feet"),
  38945. name: "Head (Imp)",
  38946. image: {
  38947. source: "./media/characters/max-kobold/head-imp.svg"
  38948. }
  38949. },
  38950. mawImp: {
  38951. height: math.unit(0.75, "feet"),
  38952. name: "Maw (Imp)",
  38953. image: {
  38954. source: "./media/characters/max-kobold/maw-imp.svg"
  38955. }
  38956. },
  38957. mawDemi: {
  38958. height: math.unit(0.42, "feet"),
  38959. name: "Maw (Demi)",
  38960. image: {
  38961. source: "./media/characters/max-kobold/maw-demi.svg"
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(1 + 11/12, "feet"),
  38969. default: true
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(7 + 5/12, "feet"),
  38978. name: "Front",
  38979. image: {
  38980. source: "./media/characters/carbon/front.svg",
  38981. extra: 1754/1689,
  38982. bottom: 65/1819
  38983. }
  38984. },
  38985. back: {
  38986. height: math.unit(7 + 5/12, "feet"),
  38987. name: "Back",
  38988. image: {
  38989. source: "./media/characters/carbon/back.svg",
  38990. extra: 1762/1695,
  38991. bottom: 24/1786
  38992. }
  38993. },
  38994. frontGigantamax: {
  38995. height: math.unit(150, "feet"),
  38996. name: "Front (Gigantamax)",
  38997. image: {
  38998. source: "./media/characters/carbon/front-gigantamax.svg",
  38999. extra: 1826/1669,
  39000. bottom: 59/1885
  39001. }
  39002. },
  39003. backGigantamax: {
  39004. height: math.unit(150, "feet"),
  39005. name: "Back (Gigantamax)",
  39006. image: {
  39007. source: "./media/characters/carbon/back-gigantamax.svg",
  39008. extra: 1796/1653,
  39009. bottom: 53/1849
  39010. }
  39011. },
  39012. maw: {
  39013. height: math.unit(0.48, "feet"),
  39014. name: "Maw",
  39015. image: {
  39016. source: "./media/characters/carbon/maw.svg"
  39017. }
  39018. },
  39019. mawGigantamax: {
  39020. height: math.unit(7.5, "feet"),
  39021. name: "Maw (Gigantamax)",
  39022. image: {
  39023. source: "./media/characters/carbon/maw-gigantamax.svg"
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(7 + 5/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(6, "feet"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/maverick/front.svg",
  39043. extra: 1672/1661,
  39044. bottom: 85/1757
  39045. }
  39046. },
  39047. back: {
  39048. height: math.unit(6, "feet"),
  39049. name: "Back",
  39050. image: {
  39051. source: "./media/characters/maverick/back.svg",
  39052. extra: 1642/1631,
  39053. bottom: 38/1680
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(6, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(15, "feet"),
  39070. weight: math.unit(615, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/grockle/front.svg",
  39074. extra: 1535/1427,
  39075. bottom: 56/1591
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(15, "feet"),
  39083. default: true
  39084. },
  39085. {
  39086. name: "Large",
  39087. height: math.unit(150, "feet")
  39088. },
  39089. {
  39090. name: "Macro",
  39091. height: math.unit(1876, "feet")
  39092. },
  39093. {
  39094. name: "Mega Macro",
  39095. height: math.unit(121940, "feet")
  39096. },
  39097. {
  39098. name: "Giga Macro",
  39099. height: math.unit(750, "km")
  39100. },
  39101. {
  39102. name: "Tera Macro",
  39103. height: math.unit(750000, "km")
  39104. },
  39105. {
  39106. name: "Galactic",
  39107. height: math.unit(1.4e5, "km")
  39108. },
  39109. {
  39110. name: "Godlike",
  39111. height: math.unit(9.8e280, "galaxies")
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(11, "meters"),
  39120. weight: math.unit(20, "tonnes"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/alistair/front.svg",
  39124. extra: 1265/1009,
  39125. bottom: 93/1358
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(11, "meters"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(5 + 8/12, "feet"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/haruka/front.svg",
  39145. extra: 2012/1952,
  39146. bottom: 0/2012
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(5 + 8/12, "feet"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39160. {
  39161. back: {
  39162. height: math.unit(9, "feet"),
  39163. name: "Back",
  39164. image: {
  39165. source: "./media/characters/vivian-sylveon/back.svg",
  39166. extra: 1853/1714,
  39167. bottom: 0/1853
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(9, "feet"),
  39175. default: true
  39176. },
  39177. {
  39178. name: "Macro",
  39179. height: math.unit(500, "feet")
  39180. },
  39181. {
  39182. name: "Megamacro",
  39183. height: math.unit(600, "miles")
  39184. },
  39185. {
  39186. name: "Gigamacro",
  39187. height: math.unit(30000, "miles")
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39193. {
  39194. anthro: {
  39195. height: math.unit(5 + 10/12, "feet"),
  39196. weight: math.unit(100, "lb"),
  39197. name: "Anthro",
  39198. image: {
  39199. source: "./media/characters/daiki/anthro.svg",
  39200. extra: 1115/1027,
  39201. bottom: 69/1184
  39202. }
  39203. },
  39204. feral: {
  39205. height: math.unit(200, "feet"),
  39206. name: "Feral",
  39207. image: {
  39208. source: "./media/characters/daiki/feral.svg",
  39209. extra: 1256/313,
  39210. bottom: 39/1295
  39211. }
  39212. },
  39213. feralHead: {
  39214. height: math.unit(171, "feet"),
  39215. name: "Feral Head",
  39216. image: {
  39217. source: "./media/characters/daiki/feral-head.svg"
  39218. }
  39219. },
  39220. manaDragon: {
  39221. height: math.unit(170, "meters"),
  39222. name: "Mana-dragon",
  39223. image: {
  39224. source: "./media/characters/daiki/mana-dragon.svg",
  39225. extra: 763/420,
  39226. bottom: 97/860
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(5 + 10/12, "feet"),
  39234. default: true
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39240. {
  39241. fullyEquippedFront: {
  39242. height: math.unit(3 + 1/12, "feet"),
  39243. weight: math.unit(24, "lb"),
  39244. name: "Fully Equipped (Front)",
  39245. image: {
  39246. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39247. extra: 687/605,
  39248. bottom: 18/705
  39249. }
  39250. },
  39251. fullyEquippedBack: {
  39252. height: math.unit(3 + 1/12, "feet"),
  39253. weight: math.unit(24, "lb"),
  39254. name: "Fully Equipped (Back)",
  39255. image: {
  39256. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39257. extra: 689/590,
  39258. bottom: 18/707
  39259. }
  39260. },
  39261. dailyWear: {
  39262. height: math.unit(3 + 1/12, "feet"),
  39263. weight: math.unit(24, "lb"),
  39264. name: "Daily Wear",
  39265. image: {
  39266. source: "./media/characters/tea-spot/daily-wear.svg",
  39267. extra: 701/620,
  39268. bottom: 21/722
  39269. }
  39270. },
  39271. maidWork: {
  39272. height: math.unit(3 + 1/12, "feet"),
  39273. weight: math.unit(24, "lb"),
  39274. name: "Maid Work",
  39275. image: {
  39276. source: "./media/characters/tea-spot/maid-work.svg",
  39277. extra: 693/609,
  39278. bottom: 15/708
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(3 + 1/12, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(175, "cm"),
  39295. weight: math.unit(75, "kg"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/chee/front.svg",
  39299. extra: 1796/1740,
  39300. bottom: 40/1836
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Micro-Micro",
  39307. height: math.unit(1, "nm")
  39308. },
  39309. {
  39310. name: "Micro-erst",
  39311. height: math.unit(1, "micrometer")
  39312. },
  39313. {
  39314. name: "Micro-er",
  39315. height: math.unit(1, "cm")
  39316. },
  39317. {
  39318. name: "Normal",
  39319. height: math.unit(175, "cm"),
  39320. default: true
  39321. },
  39322. {
  39323. name: "Macro",
  39324. height: math.unit(100, "m")
  39325. },
  39326. {
  39327. name: "Macro-er",
  39328. height: math.unit(1, "km")
  39329. },
  39330. {
  39331. name: "Macro-erst",
  39332. height: math.unit(10, "km")
  39333. },
  39334. {
  39335. name: "Macro-Macro",
  39336. height: math.unit(100, "km")
  39337. },
  39338. ]
  39339. ))
  39340. characterMakers.push(() => makeCharacter(
  39341. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39342. {
  39343. front: {
  39344. height: math.unit(11 + 9/12, "feet"),
  39345. weight: math.unit(935, "lb"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/kingsley/front.svg",
  39349. extra: 1803/1674,
  39350. bottom: 127/1930
  39351. }
  39352. },
  39353. frontNude: {
  39354. height: math.unit(11 + 9/12, "feet"),
  39355. weight: math.unit(935, "lb"),
  39356. name: "Front (Nude)",
  39357. image: {
  39358. source: "./media/characters/kingsley/front-nude.svg",
  39359. extra: 1803/1674,
  39360. bottom: 127/1930
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(11 + 9/12, "feet"),
  39368. default: true
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39374. {
  39375. side: {
  39376. height: math.unit(9, "feet"),
  39377. name: "Side",
  39378. image: {
  39379. source: "./media/characters/rymel/side.svg",
  39380. extra: 792/469,
  39381. bottom: 121/913
  39382. }
  39383. },
  39384. maw: {
  39385. height: math.unit(2.4, "meters"),
  39386. name: "Maw",
  39387. image: {
  39388. source: "./media/characters/rymel/maw.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "House Drake",
  39395. height: math.unit(2, "feet")
  39396. },
  39397. {
  39398. name: "Reduced",
  39399. height: math.unit(4.5, "feet")
  39400. },
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(9, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(1.74, "meters"),
  39413. weight: math.unit(55, "kg"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/rubus/front.svg",
  39417. extra: 1894/1742,
  39418. bottom: 44/1938
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(1.74, "meters"),
  39426. default: true
  39427. },
  39428. ]
  39429. ))
  39430. characterMakers.push(() => makeCharacter(
  39431. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39432. {
  39433. front: {
  39434. height: math.unit(5 + 2/12, "feet"),
  39435. weight: math.unit(112, "lb"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/cassie-kingston/front.svg",
  39439. extra: 1438/1390,
  39440. bottom: 47/1485
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(5 + 2/12, "feet"),
  39448. default: true
  39449. },
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(128, "feet")
  39453. },
  39454. {
  39455. name: "Megamacro",
  39456. height: math.unit(2.56, "miles")
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(7, "feet"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/fox/front.svg",
  39468. extra: 1798/1703,
  39469. bottom: 55/1853
  39470. }
  39471. },
  39472. back: {
  39473. height: math.unit(7, "feet"),
  39474. name: "Back",
  39475. image: {
  39476. source: "./media/characters/fox/back.svg",
  39477. extra: 1748/1649,
  39478. bottom: 32/1780
  39479. }
  39480. },
  39481. head: {
  39482. height: math.unit(1.95, "feet"),
  39483. name: "Head",
  39484. image: {
  39485. source: "./media/characters/fox/head.svg"
  39486. }
  39487. },
  39488. dick: {
  39489. height: math.unit(1.33, "feet"),
  39490. name: "Dick",
  39491. image: {
  39492. source: "./media/characters/fox/dick.svg"
  39493. }
  39494. },
  39495. foot: {
  39496. height: math.unit(1, "feet"),
  39497. name: "Foot",
  39498. image: {
  39499. source: "./media/characters/fox/foot.svg"
  39500. }
  39501. },
  39502. paw: {
  39503. height: math.unit(0.92, "feet"),
  39504. name: "Paw",
  39505. image: {
  39506. source: "./media/characters/fox/paw.svg"
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Small",
  39513. height: math.unit(3, "inches")
  39514. },
  39515. {
  39516. name: "\"Realistic\"",
  39517. height: math.unit(7, "feet")
  39518. },
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(150, "feet"),
  39522. default: true
  39523. },
  39524. {
  39525. name: "BIG",
  39526. height: math.unit(1200, "feet")
  39527. },
  39528. {
  39529. name: "👀",
  39530. height: math.unit(5, "miles")
  39531. },
  39532. {
  39533. name: "👀👀👀",
  39534. height: math.unit(64, "miles")
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(625, "feet"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/asonja-rossa/front.svg",
  39546. extra: 1833/1686,
  39547. bottom: 24/1857
  39548. }
  39549. },
  39550. back: {
  39551. height: math.unit(625, "feet"),
  39552. name: "Back",
  39553. image: {
  39554. source: "./media/characters/asonja-rossa/back.svg",
  39555. extra: 1852/1753,
  39556. bottom: 26/1878
  39557. }
  39558. },
  39559. },
  39560. [
  39561. {
  39562. name: "Macro",
  39563. height: math.unit(625, "feet"),
  39564. default: true
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39570. {
  39571. side: {
  39572. height: math.unit(8, "feet"),
  39573. name: "Side",
  39574. image: {
  39575. source: "./media/characters/rezukii/side.svg",
  39576. extra: 979/542,
  39577. bottom: 87/1066
  39578. }
  39579. },
  39580. sitting: {
  39581. height: math.unit(14.6, "feet"),
  39582. name: "Sitting",
  39583. image: {
  39584. source: "./media/characters/rezukii/sitting.svg",
  39585. extra: 1023/813,
  39586. bottom: 45/1068
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Tiny",
  39593. height: math.unit(2, "feet")
  39594. },
  39595. {
  39596. name: "Smol",
  39597. height: math.unit(4, "feet")
  39598. },
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(8, "feet"),
  39602. default: true
  39603. },
  39604. {
  39605. name: "Big",
  39606. height: math.unit(12, "feet")
  39607. },
  39608. {
  39609. name: "Macro",
  39610. height: math.unit(30, "feet")
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(14, "feet"),
  39619. weight: math.unit(9.5, "tonnes"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/dawnheart/front.svg",
  39623. extra: 2792/2675,
  39624. bottom: 64/2856
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(14, "feet"),
  39632. default: true
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39638. {
  39639. front: {
  39640. height: math.unit(1.7, "m"),
  39641. name: "Front",
  39642. image: {
  39643. source: "./media/characters/gladi/front.svg",
  39644. extra: 1460/1362,
  39645. bottom: 19/1479
  39646. }
  39647. },
  39648. back: {
  39649. height: math.unit(1.7, "m"),
  39650. name: "Back",
  39651. image: {
  39652. source: "./media/characters/gladi/back.svg",
  39653. extra: 1459/1357,
  39654. bottom: 12/1471
  39655. }
  39656. },
  39657. feral: {
  39658. height: math.unit(2.05, "m"),
  39659. name: "Feral",
  39660. image: {
  39661. source: "./media/characters/gladi/feral.svg",
  39662. extra: 821/557,
  39663. bottom: 91/912
  39664. }
  39665. },
  39666. },
  39667. [
  39668. {
  39669. name: "Shortest",
  39670. height: math.unit(70, "cm")
  39671. },
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(1.7, "m")
  39675. },
  39676. {
  39677. name: "Macro",
  39678. height: math.unit(10, "m"),
  39679. default: true
  39680. },
  39681. {
  39682. name: "Tallest",
  39683. height: math.unit(200, "m")
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(5 + 7/12, "feet"),
  39692. weight: math.unit(2, "tons"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/erdno/front.svg",
  39696. extra: 1234/1129,
  39697. bottom: 35/1269
  39698. }
  39699. },
  39700. angled: {
  39701. height: math.unit(5 + 7/12, "feet"),
  39702. weight: math.unit(2, "tons"),
  39703. name: "Angled",
  39704. image: {
  39705. source: "./media/characters/erdno/angled.svg",
  39706. extra: 1185/1139,
  39707. bottom: 36/1221
  39708. }
  39709. },
  39710. side: {
  39711. height: math.unit(5 + 7/12, "feet"),
  39712. weight: math.unit(2, "tons"),
  39713. name: "Side",
  39714. image: {
  39715. source: "./media/characters/erdno/side.svg",
  39716. extra: 1191/1144,
  39717. bottom: 40/1231
  39718. }
  39719. },
  39720. back: {
  39721. height: math.unit(5 + 7/12, "feet"),
  39722. weight: math.unit(2, "tons"),
  39723. name: "Back",
  39724. image: {
  39725. source: "./media/characters/erdno/back.svg",
  39726. extra: 1202/1146,
  39727. bottom: 17/1219
  39728. }
  39729. },
  39730. frontNsfw: {
  39731. height: math.unit(5 + 7/12, "feet"),
  39732. weight: math.unit(2, "tons"),
  39733. name: "Front (NSFW)",
  39734. image: {
  39735. source: "./media/characters/erdno/front-nsfw.svg",
  39736. extra: 1234/1129,
  39737. bottom: 35/1269
  39738. }
  39739. },
  39740. angledNsfw: {
  39741. height: math.unit(5 + 7/12, "feet"),
  39742. weight: math.unit(2, "tons"),
  39743. name: "Angled (NSFW)",
  39744. image: {
  39745. source: "./media/characters/erdno/angled-nsfw.svg",
  39746. extra: 1185/1139,
  39747. bottom: 36/1221
  39748. }
  39749. },
  39750. sideNsfw: {
  39751. height: math.unit(5 + 7/12, "feet"),
  39752. weight: math.unit(2, "tons"),
  39753. name: "Side (NSFW)",
  39754. image: {
  39755. source: "./media/characters/erdno/side-nsfw.svg",
  39756. extra: 1191/1144,
  39757. bottom: 40/1231
  39758. }
  39759. },
  39760. backNsfw: {
  39761. height: math.unit(5 + 7/12, "feet"),
  39762. weight: math.unit(2, "tons"),
  39763. name: "Back (NSFW)",
  39764. image: {
  39765. source: "./media/characters/erdno/back-nsfw.svg",
  39766. extra: 1202/1146,
  39767. bottom: 17/1219
  39768. }
  39769. },
  39770. frontHyper: {
  39771. height: math.unit(5 + 7/12, "feet"),
  39772. weight: math.unit(2, "tons"),
  39773. name: "Front (Hyper)",
  39774. image: {
  39775. source: "./media/characters/erdno/front-hyper.svg",
  39776. extra: 1298/1136,
  39777. bottom: 35/1333
  39778. }
  39779. },
  39780. },
  39781. [
  39782. {
  39783. name: "Normal",
  39784. height: math.unit(5 + 7/12, "feet"),
  39785. default: true
  39786. },
  39787. {
  39788. name: "Big",
  39789. height: math.unit(5.7, "meters")
  39790. },
  39791. {
  39792. name: "Macro",
  39793. height: math.unit(5.7, "kilometers")
  39794. },
  39795. {
  39796. name: "Megamacro",
  39797. height: math.unit(5.7, "earths")
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39803. {
  39804. front: {
  39805. height: math.unit(5 + 10/12, "feet"),
  39806. weight: math.unit(150, "lb"),
  39807. name: "Front",
  39808. image: {
  39809. source: "./media/characters/jamie/front.svg",
  39810. extra: 1908/1768,
  39811. bottom: 19/1927
  39812. }
  39813. },
  39814. },
  39815. [
  39816. {
  39817. name: "Minimum",
  39818. height: math.unit(2, "cm")
  39819. },
  39820. {
  39821. name: "Micro",
  39822. height: math.unit(3, "inches")
  39823. },
  39824. {
  39825. name: "Normal",
  39826. height: math.unit(5 + 10/12, "feet"),
  39827. default: true
  39828. },
  39829. {
  39830. name: "Macro",
  39831. height: math.unit(150, "feet")
  39832. },
  39833. {
  39834. name: "Megamacro",
  39835. height: math.unit(10000, "m")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(2, "meters"),
  39844. weight: math.unit(100, "kg"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/shiron/front.svg",
  39848. extra: 2103/1985,
  39849. bottom: 98/2201
  39850. }
  39851. },
  39852. back: {
  39853. height: math.unit(2, "meters"),
  39854. weight: math.unit(100, "kg"),
  39855. name: "Back",
  39856. image: {
  39857. source: "./media/characters/shiron/back.svg",
  39858. extra: 2110/2015,
  39859. bottom: 89/2199
  39860. }
  39861. },
  39862. hand: {
  39863. height: math.unit(0.96, "feet"),
  39864. name: "Hand",
  39865. image: {
  39866. source: "./media/characters/shiron/hand.svg"
  39867. }
  39868. },
  39869. foot: {
  39870. height: math.unit(1.464, "feet"),
  39871. name: "Foot",
  39872. image: {
  39873. source: "./media/characters/shiron/foot.svg"
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(2, "meters")
  39881. },
  39882. {
  39883. name: "Macro",
  39884. height: math.unit(500, "meters"),
  39885. default: true
  39886. },
  39887. {
  39888. name: "Megamacro",
  39889. height: math.unit(20, "km")
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(6, "feet"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/sam/front.svg",
  39901. extra: 849/826,
  39902. bottom: 19/868
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Normal",
  39909. height: math.unit(6, "feet"),
  39910. default: true
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(8 + 4/12, "feet"),
  39919. weight: math.unit(122, "kg"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/namori-kurogawa/front.svg",
  39923. extra: 1894/1576,
  39924. bottom: 34/1928
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(8 + 4/12, "feet"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(9, "feet"),
  39941. weight: math.unit(621, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/unmru/front.svg",
  39945. extra: 1853/1747,
  39946. bottom: 73/1926
  39947. }
  39948. },
  39949. side: {
  39950. height: math.unit(9, "feet"),
  39951. weight: math.unit(621, "lb"),
  39952. name: "Side",
  39953. image: {
  39954. source: "./media/characters/unmru/side.svg",
  39955. extra: 1781/1671,
  39956. bottom: 127/1908
  39957. }
  39958. },
  39959. back: {
  39960. height: math.unit(9, "feet"),
  39961. weight: math.unit(621, "lb"),
  39962. name: "Back",
  39963. image: {
  39964. source: "./media/characters/unmru/back.svg",
  39965. extra: 1894/1765,
  39966. bottom: 75/1969
  39967. }
  39968. },
  39969. dick: {
  39970. height: math.unit(3, "feet"),
  39971. weight: math.unit(35, "lb"),
  39972. name: "Dick",
  39973. image: {
  39974. source: "./media/characters/unmru/dick.svg"
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Normal",
  39981. height: math.unit(9, "feet")
  39982. },
  39983. {
  39984. name: "Natural",
  39985. height: math.unit(27, "feet"),
  39986. default: true
  39987. },
  39988. {
  39989. name: "Giant",
  39990. height: math.unit(90, "feet")
  39991. },
  39992. {
  39993. name: "Kaiju",
  39994. height: math.unit(270, "feet")
  39995. },
  39996. {
  39997. name: "Macro",
  39998. height: math.unit(900, "feet")
  39999. },
  40000. {
  40001. name: "Macro+",
  40002. height: math.unit(2700, "feet")
  40003. },
  40004. {
  40005. name: "Megamacro",
  40006. height: math.unit(9000, "feet")
  40007. },
  40008. {
  40009. name: "City-Crushing",
  40010. height: math.unit(27000, "feet")
  40011. },
  40012. {
  40013. name: "Mountain-Mashing",
  40014. height: math.unit(90000, "feet")
  40015. },
  40016. {
  40017. name: "Earth-Eclipsing",
  40018. height: math.unit(2.7e8, "feet")
  40019. },
  40020. {
  40021. name: "Sol-Swallowing",
  40022. height: math.unit(9e10, "feet")
  40023. },
  40024. {
  40025. name: "Majoris-Munching",
  40026. height: math.unit(2.7e13, "feet")
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40032. {
  40033. front: {
  40034. height: math.unit(1, "inch"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/squeaks-mouse/front.svg",
  40038. extra: 352/308,
  40039. bottom: 25/377
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Micro",
  40046. height: math.unit(1, "inch"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40053. {
  40054. side: {
  40055. height: math.unit(35, "feet"),
  40056. name: "Side",
  40057. image: {
  40058. source: "./media/characters/sayko/side.svg",
  40059. extra: 1697/1021,
  40060. bottom: 82/1779
  40061. }
  40062. },
  40063. head: {
  40064. height: math.unit(16, "feet"),
  40065. name: "Head",
  40066. image: {
  40067. source: "./media/characters/sayko/head.svg"
  40068. }
  40069. },
  40070. forepaw: {
  40071. height: math.unit(7.85, "feet"),
  40072. name: "Forepaw",
  40073. image: {
  40074. source: "./media/characters/sayko/forepaw.svg"
  40075. }
  40076. },
  40077. hindpaw: {
  40078. height: math.unit(8.8, "feet"),
  40079. name: "Hindpaw",
  40080. image: {
  40081. source: "./media/characters/sayko/hindpaw.svg"
  40082. }
  40083. },
  40084. },
  40085. [
  40086. {
  40087. name: "Normal",
  40088. height: math.unit(35, "feet"),
  40089. default: true
  40090. },
  40091. {
  40092. name: "Colossus",
  40093. height: math.unit(100, "meters")
  40094. },
  40095. {
  40096. name: "\"Small\" Deity",
  40097. height: math.unit(1, "km")
  40098. },
  40099. {
  40100. name: "\"Large\" Deity",
  40101. height: math.unit(15, "km")
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(6, "feet"),
  40110. weight: math.unit(250, "lb"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/mukiro/front.svg",
  40114. extra: 1368/1310,
  40115. bottom: 34/1402
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Normal",
  40122. height: math.unit(6, "feet"),
  40123. default: true
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(12 + 4/12, "feet"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40135. extra: 1346/1311,
  40136. bottom: 65/1411
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Base",
  40143. height: math.unit(12 + 4/12, "feet"),
  40144. default: true
  40145. },
  40146. {
  40147. name: "Macro",
  40148. height: math.unit(150, "feet")
  40149. },
  40150. {
  40151. name: "Mega",
  40152. height: math.unit(2, "miles")
  40153. },
  40154. {
  40155. name: "Demi God",
  40156. height: math.unit(4, "AU")
  40157. },
  40158. {
  40159. name: "God Size",
  40160. height: math.unit(1, "universe")
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40166. {
  40167. front: {
  40168. height: math.unit(3 + 3/12, "feet"),
  40169. weight: math.unit(88, "lb"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/trey/front.svg",
  40173. extra: 1815/1509,
  40174. bottom: 60/1875
  40175. }
  40176. },
  40177. },
  40178. [
  40179. {
  40180. name: "Normal",
  40181. height: math.unit(3 + 3/12, "feet"),
  40182. default: true
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40188. {
  40189. front: {
  40190. height: math.unit(4, "meters"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/adelonda/front.svg",
  40194. extra: 1077/982,
  40195. bottom: 39/1116
  40196. }
  40197. },
  40198. back: {
  40199. height: math.unit(4, "meters"),
  40200. name: "Back",
  40201. image: {
  40202. source: "./media/characters/adelonda/back.svg",
  40203. extra: 1105/1003,
  40204. bottom: 25/1130
  40205. }
  40206. },
  40207. feral: {
  40208. height: math.unit(40/1.5, "meters"),
  40209. name: "Feral",
  40210. image: {
  40211. source: "./media/characters/adelonda/feral.svg",
  40212. extra: 597/271,
  40213. bottom: 387/984
  40214. }
  40215. },
  40216. },
  40217. [
  40218. {
  40219. name: "Normal",
  40220. height: math.unit(4, "meters"),
  40221. default: true
  40222. },
  40223. ]
  40224. ))
  40225. characterMakers.push(() => makeCharacter(
  40226. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40227. {
  40228. front: {
  40229. height: math.unit(8 + 4/12, "feet"),
  40230. weight: math.unit(670, "lb"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/acadiel/front.svg",
  40234. extra: 1901/1595,
  40235. bottom: 142/2043
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(8 + 4/12, "feet"),
  40243. default: true
  40244. },
  40245. {
  40246. name: "Macro",
  40247. height: math.unit(200, "feet")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(6 + 2/12, "feet"),
  40256. weight: math.unit(185, "lb"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/kayne-ein/front.svg",
  40260. extra: 1780/1560,
  40261. bottom: 81/1861
  40262. }
  40263. },
  40264. },
  40265. [
  40266. {
  40267. name: "Normal",
  40268. height: math.unit(6 + 2/12, "feet"),
  40269. default: true
  40270. },
  40271. {
  40272. name: "Transformation Stage",
  40273. height: math.unit(15, "feet")
  40274. },
  40275. {
  40276. name: "Macro",
  40277. height: math.unit(150, "feet")
  40278. },
  40279. {
  40280. name: "Earth's Shadow",
  40281. height: math.unit(6200, "miles")
  40282. },
  40283. {
  40284. name: "Universal Demon",
  40285. height: math.unit(28e9, "parsecs")
  40286. },
  40287. {
  40288. name: "Multiverse God",
  40289. height: math.unit(3, "multiverses")
  40290. },
  40291. ]
  40292. ))
  40293. characterMakers.push(() => makeCharacter(
  40294. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40295. {
  40296. front: {
  40297. height: math.unit(5 + 5/12, "feet"),
  40298. name: "Front",
  40299. image: {
  40300. source: "./media/characters/fawn/front.svg",
  40301. extra: 1873/1731,
  40302. bottom: 95/1968
  40303. }
  40304. },
  40305. back: {
  40306. height: math.unit(5 + 5/12, "feet"),
  40307. name: "Back",
  40308. image: {
  40309. source: "./media/characters/fawn/back.svg",
  40310. extra: 1813/1700,
  40311. bottom: 14/1827
  40312. }
  40313. },
  40314. hoof: {
  40315. height: math.unit(1.45, "feet"),
  40316. name: "Hoof",
  40317. image: {
  40318. source: "./media/characters/fawn/hoof.svg"
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(5 + 5/12, "feet"),
  40326. default: true
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(2 + 5/12, "feet"),
  40335. name: "Front",
  40336. image: {
  40337. source: "./media/characters/orion/front.svg",
  40338. extra: 1366/1304,
  40339. bottom: 43/1409
  40340. }
  40341. },
  40342. paw: {
  40343. height: math.unit(0.52, "feet"),
  40344. name: "Paw",
  40345. image: {
  40346. source: "./media/characters/orion/paw.svg"
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(2 + 5/12, "feet"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(5 + 10/12, "feet"),
  40363. name: "Front",
  40364. image: {
  40365. source: "./media/characters/vera/front.svg",
  40366. extra: 1680/1575,
  40367. bottom: 49/1729
  40368. }
  40369. },
  40370. back: {
  40371. height: math.unit(5 + 10/12, "feet"),
  40372. name: "Back",
  40373. image: {
  40374. source: "./media/characters/vera/back.svg",
  40375. extra: 1700/1588,
  40376. bottom: 18/1718
  40377. }
  40378. },
  40379. arcanine: {
  40380. height: math.unit(6 + 8/12, "feet"),
  40381. name: "Arcanine",
  40382. image: {
  40383. source: "./media/characters/vera/arcanine.svg",
  40384. extra: 1590/1511,
  40385. bottom: 71/1661
  40386. }
  40387. },
  40388. maw: {
  40389. height: math.unit(0.82, "feet"),
  40390. name: "Maw",
  40391. image: {
  40392. source: "./media/characters/vera/maw.svg"
  40393. }
  40394. },
  40395. mawArcanine: {
  40396. height: math.unit(0.97, "feet"),
  40397. name: "Maw (Arcanine)",
  40398. image: {
  40399. source: "./media/characters/vera/maw-arcanine.svg"
  40400. }
  40401. },
  40402. paw: {
  40403. height: math.unit(0.75, "feet"),
  40404. name: "Paw",
  40405. image: {
  40406. source: "./media/characters/vera/paw.svg"
  40407. }
  40408. },
  40409. pawprint: {
  40410. height: math.unit(0.52, "feet"),
  40411. name: "Pawprint",
  40412. image: {
  40413. source: "./media/characters/vera/pawprint.svg"
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(5 + 10/12, "feet"),
  40421. default: true
  40422. },
  40423. {
  40424. name: "Macro",
  40425. height: math.unit(75, "feet")
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40431. {
  40432. front: {
  40433. height: math.unit(4, "feet"),
  40434. weight: math.unit(40, "lb"),
  40435. name: "Front",
  40436. image: {
  40437. source: "./media/characters/orvan-rabbit/front.svg",
  40438. extra: 1896/1642,
  40439. bottom: 29/1925
  40440. }
  40441. },
  40442. },
  40443. [
  40444. {
  40445. name: "Normal",
  40446. height: math.unit(4, "feet"),
  40447. default: true
  40448. },
  40449. ]
  40450. ))
  40451. characterMakers.push(() => makeCharacter(
  40452. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40453. {
  40454. front: {
  40455. height: math.unit(6, "feet"),
  40456. weight: math.unit(168, "lb"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/lisa/front.svg",
  40460. extra: 2065/1867,
  40461. bottom: 46/2111
  40462. }
  40463. },
  40464. back: {
  40465. height: math.unit(6, "feet"),
  40466. weight: math.unit(168, "lb"),
  40467. name: "Back",
  40468. image: {
  40469. source: "./media/characters/lisa/back.svg",
  40470. extra: 1982/1838,
  40471. bottom: 29/2011
  40472. }
  40473. },
  40474. maw: {
  40475. height: math.unit(0.81, "feet"),
  40476. name: "Maw",
  40477. image: {
  40478. source: "./media/characters/lisa/maw.svg"
  40479. }
  40480. },
  40481. paw: {
  40482. height: math.unit(0.9, "feet"),
  40483. name: "Paw",
  40484. image: {
  40485. source: "./media/characters/lisa/paw.svg"
  40486. }
  40487. },
  40488. caribousune: {
  40489. height: math.unit(7 + 2/12, "feet"),
  40490. weight: math.unit(268, "lb"),
  40491. name: "Caribousune",
  40492. image: {
  40493. source: "./media/characters/lisa/caribousune.svg",
  40494. extra: 1843/1633,
  40495. bottom: 29/1872
  40496. }
  40497. },
  40498. frontCaribousune: {
  40499. height: math.unit(7 + 2/12, "feet"),
  40500. weight: math.unit(268, "lb"),
  40501. name: "Front (Caribousune)",
  40502. image: {
  40503. source: "./media/characters/lisa/front-caribousune.svg",
  40504. extra: 1818/1638,
  40505. bottom: 52/1870
  40506. }
  40507. },
  40508. sideCaribousune: {
  40509. height: math.unit(7 + 2/12, "feet"),
  40510. weight: math.unit(268, "lb"),
  40511. name: "Side (Caribousune)",
  40512. image: {
  40513. source: "./media/characters/lisa/side-caribousune.svg",
  40514. extra: 1851/1635,
  40515. bottom: 16/1867
  40516. }
  40517. },
  40518. backCaribousune: {
  40519. height: math.unit(7 + 2/12, "feet"),
  40520. weight: math.unit(268, "lb"),
  40521. name: "Back (Caribousune)",
  40522. image: {
  40523. source: "./media/characters/lisa/back-caribousune.svg",
  40524. extra: 1801/1604,
  40525. bottom: 44/1845
  40526. }
  40527. },
  40528. caribou: {
  40529. height: math.unit(7 + 2/12, "feet"),
  40530. weight: math.unit(268, "lb"),
  40531. name: "Caribou",
  40532. image: {
  40533. source: "./media/characters/lisa/caribou.svg",
  40534. extra: 1843/1633,
  40535. bottom: 29/1872
  40536. }
  40537. },
  40538. frontCaribou: {
  40539. height: math.unit(7 + 2/12, "feet"),
  40540. weight: math.unit(268, "lb"),
  40541. name: "Front (Caribou)",
  40542. image: {
  40543. source: "./media/characters/lisa/front-caribou.svg",
  40544. extra: 1818/1638,
  40545. bottom: 52/1870
  40546. }
  40547. },
  40548. sideCaribou: {
  40549. height: math.unit(7 + 2/12, "feet"),
  40550. weight: math.unit(268, "lb"),
  40551. name: "Side (Caribou)",
  40552. image: {
  40553. source: "./media/characters/lisa/side-caribou.svg",
  40554. extra: 1851/1635,
  40555. bottom: 16/1867
  40556. }
  40557. },
  40558. backCaribou: {
  40559. height: math.unit(7 + 2/12, "feet"),
  40560. weight: math.unit(268, "lb"),
  40561. name: "Back (Caribou)",
  40562. image: {
  40563. source: "./media/characters/lisa/back-caribou.svg",
  40564. extra: 1801/1604,
  40565. bottom: 44/1845
  40566. }
  40567. },
  40568. mawCaribou: {
  40569. height: math.unit(1.45, "feet"),
  40570. name: "Maw (Caribou)",
  40571. image: {
  40572. source: "./media/characters/lisa/maw-caribou.svg"
  40573. }
  40574. },
  40575. mawCaribousune: {
  40576. height: math.unit(1.45, "feet"),
  40577. name: "Maw (Caribousune)",
  40578. image: {
  40579. source: "./media/characters/lisa/maw-caribousune.svg"
  40580. }
  40581. },
  40582. pawCaribousune: {
  40583. height: math.unit(1.61, "feet"),
  40584. name: "Paw (Caribou)",
  40585. image: {
  40586. source: "./media/characters/lisa/paw-caribousune.svg"
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Normal",
  40593. height: math.unit(6, "feet")
  40594. },
  40595. {
  40596. name: "God Size",
  40597. height: math.unit(72, "feet"),
  40598. default: true
  40599. },
  40600. {
  40601. name: "Towering",
  40602. height: math.unit(288, "feet")
  40603. },
  40604. {
  40605. name: "City Size",
  40606. height: math.unit(48384, "feet")
  40607. },
  40608. {
  40609. name: "Continental",
  40610. height: math.unit(4200, "miles")
  40611. },
  40612. {
  40613. name: "Planet Eater",
  40614. height: math.unit(42, "earths")
  40615. },
  40616. {
  40617. name: "Star Swallower",
  40618. height: math.unit(42, "solarradii")
  40619. },
  40620. {
  40621. name: "System Swallower",
  40622. height: math.unit(84000, "AU")
  40623. },
  40624. {
  40625. name: "Galaxy Gobbler",
  40626. height: math.unit(42, "galaxies")
  40627. },
  40628. {
  40629. name: "Universe Devourer",
  40630. height: math.unit(42, "universes")
  40631. },
  40632. {
  40633. name: "Multiverse Muncher",
  40634. height: math.unit(42, "multiverses")
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(36, "feet"),
  40643. name: "Front",
  40644. image: {
  40645. source: "./media/characters/shadow-rat/front.svg",
  40646. extra: 1845/1758,
  40647. bottom: 83/1928
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(36, "feet"),
  40655. default: true
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40661. {
  40662. side: {
  40663. height: math.unit(8, "feet"),
  40664. weight: math.unit(2630, "lb"),
  40665. name: "Side",
  40666. image: {
  40667. source: "./media/characters/torallia/side.svg",
  40668. extra: 2164/2021,
  40669. bottom: 371/2535
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Mortal Interaction",
  40676. height: math.unit(8, "feet")
  40677. },
  40678. {
  40679. name: "Natural",
  40680. height: math.unit(24, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Giant",
  40685. height: math.unit(80, "feet")
  40686. },
  40687. {
  40688. name: "Kaiju",
  40689. height: math.unit(240, "feet")
  40690. },
  40691. {
  40692. name: "Macro",
  40693. height: math.unit(800, "feet")
  40694. },
  40695. {
  40696. name: "Macro+",
  40697. height: math.unit(2400, "feet")
  40698. },
  40699. {
  40700. name: "Macro++",
  40701. height: math.unit(8000, "feet")
  40702. },
  40703. {
  40704. name: "City-Crushing",
  40705. height: math.unit(24000, "feet")
  40706. },
  40707. {
  40708. name: "Mountain-Mashing",
  40709. height: math.unit(80000, "feet")
  40710. },
  40711. {
  40712. name: "District Demolisher",
  40713. height: math.unit(240000, "feet")
  40714. },
  40715. {
  40716. name: "Tri-County Terror",
  40717. height: math.unit(800000, "feet")
  40718. },
  40719. {
  40720. name: "State Smasher",
  40721. height: math.unit(2.4e6, "feet")
  40722. },
  40723. {
  40724. name: "Nation Nemesis",
  40725. height: math.unit(8e6, "feet")
  40726. },
  40727. {
  40728. name: "Continent Cracker",
  40729. height: math.unit(2.4e7, "feet")
  40730. },
  40731. {
  40732. name: "Planet-Pillaging",
  40733. height: math.unit(8e7, "feet")
  40734. },
  40735. {
  40736. name: "Earth-Eclipsing",
  40737. height: math.unit(2.4e8, "feet")
  40738. },
  40739. {
  40740. name: "Jovian-Jostling",
  40741. height: math.unit(8e8, "feet")
  40742. },
  40743. {
  40744. name: "Gas Giant Gulper",
  40745. height: math.unit(2.4e9, "feet")
  40746. },
  40747. {
  40748. name: "Astral Annihilator",
  40749. height: math.unit(8e9, "feet")
  40750. },
  40751. {
  40752. name: "Celestial Conqueror",
  40753. height: math.unit(2.4e10, "feet")
  40754. },
  40755. {
  40756. name: "Sol-Swallowing",
  40757. height: math.unit(8e10, "feet")
  40758. },
  40759. {
  40760. name: "Hunter of the Heavens",
  40761. height: math.unit(2.4e13, "feet")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(6 + 8/12, "feet"),
  40770. weight: math.unit(250, "kilograms"),
  40771. volume: math.unit(28, "liters"),
  40772. name: "Front",
  40773. image: {
  40774. source: "./media/characters/rebecca-pawlson/front.svg",
  40775. extra: 1737/1596,
  40776. bottom: 107/1844
  40777. }
  40778. },
  40779. back: {
  40780. height: math.unit(6 + 8/12, "feet"),
  40781. weight: math.unit(250, "kilograms"),
  40782. volume: math.unit(28, "liters"),
  40783. name: "Back",
  40784. image: {
  40785. source: "./media/characters/rebecca-pawlson/back.svg",
  40786. extra: 1702/1523,
  40787. bottom: 86/1788
  40788. }
  40789. },
  40790. },
  40791. [
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(6 + 8/12, "feet")
  40795. },
  40796. {
  40797. name: "Mini Macro",
  40798. height: math.unit(10, "feet"),
  40799. default: true
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(100, "feet")
  40804. },
  40805. {
  40806. name: "Mega Macro",
  40807. height: math.unit(2500, "feet")
  40808. },
  40809. {
  40810. name: "Giga Macro",
  40811. height: math.unit(50, "miles")
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(7 + 6/12, "feet"),
  40820. weight: math.unit(600, "lb"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/moxie-nova/front.svg",
  40824. extra: 1734/1652,
  40825. bottom: 41/1775
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Normal",
  40832. height: math.unit(7 + 6/12, "feet"),
  40833. default: true
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40839. {
  40840. goat: {
  40841. height: math.unit(4, "feet"),
  40842. weight: math.unit(180, "lb"),
  40843. name: "Goat",
  40844. image: {
  40845. source: "./media/characters/tiffany/goat.svg",
  40846. extra: 1845/1595,
  40847. bottom: 106/1951
  40848. }
  40849. },
  40850. front: {
  40851. height: math.unit(5, "feet"),
  40852. weight: math.unit(150, "lb"),
  40853. name: "Foxcoon",
  40854. image: {
  40855. source: "./media/characters/tiffany/foxcoon.svg",
  40856. extra: 1941/1845,
  40857. bottom: 58/1999
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(5, "feet"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(8, "feet"),
  40874. weight: math.unit(300, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/raxinath/front.svg",
  40878. extra: 1407/1309,
  40879. bottom: 39/1446
  40880. }
  40881. },
  40882. back: {
  40883. height: math.unit(8, "feet"),
  40884. weight: math.unit(300, "lb"),
  40885. name: "Back",
  40886. image: {
  40887. source: "./media/characters/raxinath/back.svg",
  40888. extra: 1405/1315,
  40889. bottom: 9/1414
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Speck",
  40896. height: math.unit(0.5, "nm")
  40897. },
  40898. {
  40899. name: "Micro",
  40900. height: math.unit(3, "inches")
  40901. },
  40902. {
  40903. name: "Kobold",
  40904. height: math.unit(3, "feet")
  40905. },
  40906. {
  40907. name: "Normal",
  40908. height: math.unit(8, "feet"),
  40909. default: true
  40910. },
  40911. {
  40912. name: "Giant",
  40913. height: math.unit(50, "feet")
  40914. },
  40915. {
  40916. name: "Macro",
  40917. height: math.unit(1000, "feet")
  40918. },
  40919. {
  40920. name: "Megamacro",
  40921. height: math.unit(1, "mile")
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(10, "feet"),
  40930. weight: math.unit(1442, "lb"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/mal-dragon/front.svg",
  40934. extra: 1515/1444,
  40935. bottom: 113/1628
  40936. }
  40937. },
  40938. back: {
  40939. height: math.unit(10, "feet"),
  40940. weight: math.unit(1442, "lb"),
  40941. name: "Back",
  40942. image: {
  40943. source: "./media/characters/mal-dragon/back.svg",
  40944. extra: 1527/1434,
  40945. bottom: 25/1552
  40946. }
  40947. },
  40948. },
  40949. [
  40950. {
  40951. name: "Mortal Interaction",
  40952. height: math.unit(10, "feet"),
  40953. default: true
  40954. },
  40955. {
  40956. name: "Large",
  40957. height: math.unit(30, "feet")
  40958. },
  40959. {
  40960. name: "Kaiju",
  40961. height: math.unit(300, "feet")
  40962. },
  40963. {
  40964. name: "Megamacro",
  40965. height: math.unit(10000, "feet")
  40966. },
  40967. {
  40968. name: "Continent Cracker",
  40969. height: math.unit(30000000, "feet")
  40970. },
  40971. {
  40972. name: "Sol-Swallowing",
  40973. height: math.unit(1e11, "feet")
  40974. },
  40975. {
  40976. name: "Light Universal",
  40977. height: math.unit(5, "universes")
  40978. },
  40979. {
  40980. name: "Universe Atoms",
  40981. height: math.unit(1.829e9, "universes")
  40982. },
  40983. {
  40984. name: "Light Multiversal",
  40985. height: math.unit(5, "multiverses")
  40986. },
  40987. {
  40988. name: "Multiverse Atoms",
  40989. height: math.unit(1.829e9, "multiverses")
  40990. },
  40991. {
  40992. name: "Fabric of Time",
  40993. height: math.unit(1e262, "multiverses")
  40994. },
  40995. ]
  40996. ))
  40997. characterMakers.push(() => makeCharacter(
  40998. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40999. {
  41000. front: {
  41001. height: math.unit(9, "feet"),
  41002. weight: math.unit(1050, "lb"),
  41003. name: "Front",
  41004. image: {
  41005. source: "./media/characters/tabitha/front.svg",
  41006. extra: 2083/1994,
  41007. bottom: 68/2151
  41008. }
  41009. },
  41010. },
  41011. [
  41012. {
  41013. name: "Baseline",
  41014. height: math.unit(9, "feet"),
  41015. default: true
  41016. },
  41017. {
  41018. name: "Giant",
  41019. height: math.unit(90, "feet")
  41020. },
  41021. {
  41022. name: "Macro",
  41023. height: math.unit(900, "feet")
  41024. },
  41025. {
  41026. name: "Megamacro",
  41027. height: math.unit(9000, "feet")
  41028. },
  41029. {
  41030. name: "City-Crushing",
  41031. height: math.unit(27000, "feet")
  41032. },
  41033. {
  41034. name: "Mountain-Mashing",
  41035. height: math.unit(90000, "feet")
  41036. },
  41037. {
  41038. name: "Nation Nemesis",
  41039. height: math.unit(9e6, "feet")
  41040. },
  41041. {
  41042. name: "Continent Cracker",
  41043. height: math.unit(27e6, "feet")
  41044. },
  41045. {
  41046. name: "Earth-Eclipsing",
  41047. height: math.unit(2.7e8, "feet")
  41048. },
  41049. {
  41050. name: "Gas Giant Gulper",
  41051. height: math.unit(2.7e9, "feet")
  41052. },
  41053. {
  41054. name: "Sol-Swallowing",
  41055. height: math.unit(9e10, "feet")
  41056. },
  41057. {
  41058. name: "Galaxy Gulper",
  41059. height: math.unit(9, "galaxies")
  41060. },
  41061. {
  41062. name: "Cosmos Churner",
  41063. height: math.unit(9, "universes")
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41069. {
  41070. front: {
  41071. height: math.unit(160, "cm"),
  41072. weight: math.unit(55, "kg"),
  41073. name: "Front",
  41074. image: {
  41075. source: "./media/characters/tow/front.svg",
  41076. extra: 1751/1722,
  41077. bottom: 74/1825
  41078. }
  41079. },
  41080. },
  41081. [
  41082. {
  41083. name: "Norm",
  41084. height: math.unit(160, "cm")
  41085. },
  41086. {
  41087. name: "Casual",
  41088. height: math.unit(3200, "m"),
  41089. default: true
  41090. },
  41091. {
  41092. name: "Show-Off",
  41093. height: math.unit(160, "km")
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41099. {
  41100. front: {
  41101. height: math.unit(7 + 11/12, "feet"),
  41102. weight: math.unit(342.8, "lb"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/vivian-orca-dragon/front.svg",
  41106. extra: 1890/1865,
  41107. bottom: 28/1918
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Micro",
  41114. height: math.unit(5, "inches")
  41115. },
  41116. {
  41117. name: "Normal",
  41118. height: math.unit(7 + 11/12, "feet"),
  41119. default: true
  41120. },
  41121. {
  41122. name: "Macro",
  41123. height: math.unit(395 + 7/12, "feet")
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41129. {
  41130. side: {
  41131. height: math.unit(10, "feet"),
  41132. weight: math.unit(1442, "lb"),
  41133. name: "Side",
  41134. image: {
  41135. source: "./media/characters/lotherakon/side.svg",
  41136. extra: 1604/1497,
  41137. bottom: 89/1693
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Mortal Interaction",
  41144. height: math.unit(10, "feet")
  41145. },
  41146. {
  41147. name: "Large",
  41148. height: math.unit(30, "feet"),
  41149. default: true
  41150. },
  41151. {
  41152. name: "Giant",
  41153. height: math.unit(100, "feet")
  41154. },
  41155. {
  41156. name: "Kaiju",
  41157. height: math.unit(300, "feet")
  41158. },
  41159. {
  41160. name: "Macro",
  41161. height: math.unit(1000, "feet")
  41162. },
  41163. {
  41164. name: "Macro+",
  41165. height: math.unit(3000, "feet")
  41166. },
  41167. {
  41168. name: "Megamacro",
  41169. height: math.unit(10000, "feet")
  41170. },
  41171. {
  41172. name: "City-Crushing",
  41173. height: math.unit(30000, "feet")
  41174. },
  41175. {
  41176. name: "Continent Cracker",
  41177. height: math.unit(30e6, "feet")
  41178. },
  41179. {
  41180. name: "Earth Eclipsing",
  41181. height: math.unit(3e8, "feet")
  41182. },
  41183. {
  41184. name: "Gas Giant Gulper",
  41185. height: math.unit(3e9, "feet")
  41186. },
  41187. {
  41188. name: "Sol-Swallowing",
  41189. height: math.unit(1e11, "feet")
  41190. },
  41191. {
  41192. name: "System Swallower",
  41193. height: math.unit(3e14, "feet")
  41194. },
  41195. {
  41196. name: "Galaxy Gulper",
  41197. height: math.unit(10, "galaxies")
  41198. },
  41199. {
  41200. name: "Light Universal",
  41201. height: math.unit(5, "universes")
  41202. },
  41203. {
  41204. name: "Universe Palm",
  41205. height: math.unit(20, "universes")
  41206. },
  41207. {
  41208. name: "Light Multiversal",
  41209. height: math.unit(5, "multiverses")
  41210. },
  41211. {
  41212. name: "Multiverse Palm",
  41213. height: math.unit(20, "multiverses")
  41214. },
  41215. {
  41216. name: "Inferno Incarnate",
  41217. height: math.unit(1e7, "multiverses")
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41223. {
  41224. front: {
  41225. height: math.unit(8, "feet"),
  41226. weight: math.unit(1200, "lb"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/malithee/front.svg",
  41230. extra: 1675/1640,
  41231. bottom: 162/1837
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Mortal Interaction",
  41238. height: math.unit(8, "feet"),
  41239. default: true
  41240. },
  41241. {
  41242. name: "Large",
  41243. height: math.unit(24, "feet")
  41244. },
  41245. {
  41246. name: "Kaiju",
  41247. height: math.unit(240, "feet")
  41248. },
  41249. {
  41250. name: "Megamacro",
  41251. height: math.unit(8000, "feet")
  41252. },
  41253. {
  41254. name: "Continent Cracker",
  41255. height: math.unit(24e6, "feet")
  41256. },
  41257. {
  41258. name: "Earth-Eclipsing",
  41259. height: math.unit(2.4e8, "feet")
  41260. },
  41261. {
  41262. name: "Sol-Swallowing",
  41263. height: math.unit(8e10, "feet")
  41264. },
  41265. {
  41266. name: "Galaxy Gulper",
  41267. height: math.unit(8, "galaxies")
  41268. },
  41269. {
  41270. name: "Light Universal",
  41271. height: math.unit(4, "universes")
  41272. },
  41273. {
  41274. name: "Universe Atoms",
  41275. height: math.unit(1.829e9, "universes")
  41276. },
  41277. {
  41278. name: "Light Multiversal",
  41279. height: math.unit(4, "multiverses")
  41280. },
  41281. {
  41282. name: "Multiverse Atoms",
  41283. height: math.unit(1.829e9, "multiverses")
  41284. },
  41285. {
  41286. name: "Nigh-Omnipresence",
  41287. height: math.unit(8e261, "multiverses")
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(10, "feet"),
  41296. weight: math.unit(1500, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/miles-thestia/front.svg",
  41300. extra: 1812/1727,
  41301. bottom: 86/1898
  41302. }
  41303. },
  41304. back: {
  41305. height: math.unit(10, "feet"),
  41306. weight: math.unit(1500, "lb"),
  41307. name: "Back",
  41308. image: {
  41309. source: "./media/characters/miles-thestia/back.svg",
  41310. extra: 1799/1690,
  41311. bottom: 47/1846
  41312. }
  41313. },
  41314. frontNsfw: {
  41315. height: math.unit(10, "feet"),
  41316. weight: math.unit(1500, "lb"),
  41317. name: "Front (NSFW)",
  41318. image: {
  41319. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41320. extra: 1812/1727,
  41321. bottom: 86/1898
  41322. }
  41323. },
  41324. },
  41325. [
  41326. {
  41327. name: "Mini-Macro",
  41328. height: math.unit(10, "feet"),
  41329. default: true
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(25, "feet"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/titan-s-wulf/front.svg",
  41341. extra: 1560/1484,
  41342. bottom: 76/1636
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Smallest",
  41349. height: math.unit(25, "feet"),
  41350. default: true
  41351. },
  41352. {
  41353. name: "Normal",
  41354. height: math.unit(200, "feet")
  41355. },
  41356. {
  41357. name: "Macro",
  41358. height: math.unit(200000, "feet")
  41359. },
  41360. {
  41361. name: "Multiversal Original",
  41362. height: math.unit(10000, "multiverses")
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(8, "feet"),
  41371. weight: math.unit(553, "lb"),
  41372. name: "Front",
  41373. image: {
  41374. source: "./media/characters/tawendeh/front.svg",
  41375. extra: 2365/2268,
  41376. bottom: 83/2448
  41377. }
  41378. },
  41379. frontClothed: {
  41380. height: math.unit(8, "feet"),
  41381. weight: math.unit(553, "lb"),
  41382. name: "Front (Clothed)",
  41383. image: {
  41384. source: "./media/characters/tawendeh/front-clothed.svg",
  41385. extra: 2365/2268,
  41386. bottom: 83/2448
  41387. }
  41388. },
  41389. back: {
  41390. height: math.unit(8, "feet"),
  41391. weight: math.unit(553, "lb"),
  41392. name: "Back",
  41393. image: {
  41394. source: "./media/characters/tawendeh/back.svg",
  41395. extra: 2397/2294,
  41396. bottom: 42/2439
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Mortal Interaction",
  41403. height: math.unit(8, "feet"),
  41404. default: true
  41405. },
  41406. {
  41407. name: "Giant",
  41408. height: math.unit(80, "feet")
  41409. },
  41410. {
  41411. name: "Macro",
  41412. height: math.unit(800, "feet")
  41413. },
  41414. {
  41415. name: "Megamacro",
  41416. height: math.unit(8000, "feet")
  41417. },
  41418. {
  41419. name: "City-Crushing",
  41420. height: math.unit(24000, "feet")
  41421. },
  41422. {
  41423. name: "Mountain-Mashing",
  41424. height: math.unit(80000, "feet")
  41425. },
  41426. {
  41427. name: "Nation Nemesis",
  41428. height: math.unit(8e6, "feet")
  41429. },
  41430. {
  41431. name: "Continent Cracker",
  41432. height: math.unit(24e6, "feet")
  41433. },
  41434. {
  41435. name: "Earth-Eclipsing",
  41436. height: math.unit(2.4e8, "feet")
  41437. },
  41438. {
  41439. name: "Gas Giant Gulper",
  41440. height: math.unit(2.4e9, "feet")
  41441. },
  41442. {
  41443. name: "Sol-Swallowing",
  41444. height: math.unit(8e10, "feet")
  41445. },
  41446. {
  41447. name: "Galaxy Gulper",
  41448. height: math.unit(8, "galaxies")
  41449. },
  41450. {
  41451. name: "Cosmos Churner",
  41452. height: math.unit(8, "universes")
  41453. },
  41454. {
  41455. name: "Omnipotent Otter",
  41456. height: math.unit(80, "universes")
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41462. {
  41463. front: {
  41464. height: math.unit(2.6, "meters"),
  41465. weight: math.unit(900, "kg"),
  41466. name: "Front",
  41467. image: {
  41468. source: "./media/characters/neesha/front.svg",
  41469. extra: 1803/1653,
  41470. bottom: 128/1931
  41471. }
  41472. },
  41473. },
  41474. [
  41475. {
  41476. name: "Normal",
  41477. height: math.unit(2.6, "meters"),
  41478. default: true
  41479. },
  41480. {
  41481. name: "Macro",
  41482. height: math.unit(50, "meters")
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(5, "feet"),
  41491. weight: math.unit(185, "lb"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/kyera/front.svg",
  41495. extra: 1875/1790,
  41496. bottom: 96/1971
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(5, "feet"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(7 + 6/12, "feet"),
  41513. weight: math.unit(540, "lb"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/yuko/front.svg",
  41517. extra: 1282/1222,
  41518. bottom: 101/1383
  41519. }
  41520. },
  41521. frontClothed: {
  41522. height: math.unit(7 + 6/12, "feet"),
  41523. weight: math.unit(540, "lb"),
  41524. name: "Front (Clothed)",
  41525. image: {
  41526. source: "./media/characters/yuko/front-clothed.svg",
  41527. extra: 1282/1222,
  41528. bottom: 101/1383
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Normal",
  41535. height: math.unit(7 + 6/12, "feet"),
  41536. default: true
  41537. },
  41538. {
  41539. name: "Macro",
  41540. height: math.unit(26 + 9/12, "feet")
  41541. },
  41542. {
  41543. name: "Megamacro",
  41544. height: math.unit(300, "feet")
  41545. },
  41546. {
  41547. name: "Gigamacro",
  41548. height: math.unit(5000, "feet")
  41549. },
  41550. {
  41551. name: "Planetary",
  41552. height: math.unit(10000, "miles")
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41558. {
  41559. front: {
  41560. height: math.unit(8 + 2/12, "feet"),
  41561. weight: math.unit(600, "lb"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/deam-nitrel/front.svg",
  41565. extra: 1308/1234,
  41566. bottom: 125/1433
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Normal",
  41573. height: math.unit(8 + 2/12, "feet"),
  41574. default: true
  41575. },
  41576. ]
  41577. ))
  41578. characterMakers.push(() => makeCharacter(
  41579. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41580. {
  41581. front: {
  41582. height: math.unit(6.1, "feet"),
  41583. weight: math.unit(180, "lb"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/skyress/front.svg",
  41587. extra: 1045/915,
  41588. bottom: 28/1073
  41589. }
  41590. },
  41591. maw: {
  41592. height: math.unit(1, "feet"),
  41593. name: "Maw",
  41594. image: {
  41595. source: "./media/characters/skyress/maw.svg"
  41596. }
  41597. },
  41598. },
  41599. [
  41600. {
  41601. name: "Normal",
  41602. height: math.unit(6.1, "feet"),
  41603. default: true
  41604. },
  41605. {
  41606. name: "Macro",
  41607. height: math.unit(200, "feet")
  41608. },
  41609. ]
  41610. ))
  41611. characterMakers.push(() => makeCharacter(
  41612. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41613. {
  41614. front: {
  41615. height: math.unit(4 + 2/12, "feet"),
  41616. weight: math.unit(40, "kg"),
  41617. name: "Front",
  41618. image: {
  41619. source: "./media/characters/amethyst-jones/front.svg",
  41620. extra: 1220/1150,
  41621. bottom: 101/1321
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Normal",
  41628. height: math.unit(4 + 2/12, "feet"),
  41629. default: true
  41630. },
  41631. ]
  41632. ))
  41633. characterMakers.push(() => makeCharacter(
  41634. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41635. {
  41636. front: {
  41637. height: math.unit(1.7, "m"),
  41638. weight: math.unit(135, "lb"),
  41639. name: "Front",
  41640. image: {
  41641. source: "./media/characters/jade/front.svg",
  41642. extra: 1818/1767,
  41643. bottom: 32/1850
  41644. }
  41645. },
  41646. back: {
  41647. height: math.unit(1.7, "m"),
  41648. weight: math.unit(135, "lb"),
  41649. name: "Back",
  41650. image: {
  41651. source: "./media/characters/jade/back.svg",
  41652. extra: 1869/1809,
  41653. bottom: 35/1904
  41654. }
  41655. },
  41656. hand: {
  41657. height: math.unit(0.24, "m"),
  41658. name: "Hand",
  41659. image: {
  41660. source: "./media/characters/jade/hand.svg"
  41661. }
  41662. },
  41663. foot: {
  41664. height: math.unit(0.263, "m"),
  41665. name: "Foot",
  41666. image: {
  41667. source: "./media/characters/jade/foot.svg"
  41668. }
  41669. },
  41670. dick: {
  41671. height: math.unit(0.47, "m"),
  41672. name: "Dick",
  41673. image: {
  41674. source: "./media/characters/jade/dick.svg"
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Micro",
  41681. height: math.unit(22, "cm")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(1.7, "m"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(152, "m")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(100, "miles"),
  41699. weight: math.unit(20000, "tons"),
  41700. name: "Front",
  41701. image: {
  41702. source: "./media/characters/cookie/front.svg",
  41703. extra: 1125/1070,
  41704. bottom: 30/1155
  41705. }
  41706. },
  41707. },
  41708. [
  41709. {
  41710. name: "Big",
  41711. height: math.unit(50, "feet")
  41712. },
  41713. {
  41714. name: "Macro",
  41715. height: math.unit(100, "miles"),
  41716. default: true
  41717. },
  41718. {
  41719. name: "Megamacro",
  41720. height: math.unit(90000, "miles")
  41721. },
  41722. ]
  41723. ))
  41724. characterMakers.push(() => makeCharacter(
  41725. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41726. {
  41727. front: {
  41728. height: math.unit(6, "feet"),
  41729. weight: math.unit(145, "lb"),
  41730. name: "Front",
  41731. image: {
  41732. source: "./media/characters/farzian/front.svg",
  41733. extra: 1902/1693,
  41734. bottom: 108/2010
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Macro",
  41741. height: math.unit(500, "feet"),
  41742. default: true
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41748. {
  41749. front: {
  41750. height: math.unit(3 + 6/12, "feet"),
  41751. weight: math.unit(50, "lb"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/kimberly-tilson/front.svg",
  41755. extra: 1400/1322,
  41756. bottom: 36/1436
  41757. }
  41758. },
  41759. back: {
  41760. height: math.unit(3 + 6/12, "feet"),
  41761. weight: math.unit(50, "lb"),
  41762. name: "Back",
  41763. image: {
  41764. source: "./media/characters/kimberly-tilson/back.svg",
  41765. extra: 1370/1307,
  41766. bottom: 20/1390
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Normal",
  41773. height: math.unit(3 + 6/12, "feet"),
  41774. default: true
  41775. },
  41776. ]
  41777. ))
  41778. characterMakers.push(() => makeCharacter(
  41779. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41780. {
  41781. front: {
  41782. height: math.unit(1148, "feet"),
  41783. weight: math.unit(34057, "lb"),
  41784. name: "Front",
  41785. image: {
  41786. source: "./media/characters/harthos/front.svg",
  41787. extra: 1391/1339,
  41788. bottom: 13/1404
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Macro",
  41795. height: math.unit(1148, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(15, "feet"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/hypatia/front.svg",
  41808. extra: 1653/1591,
  41809. bottom: 79/1732
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Normal",
  41816. height: math.unit(15, "feet")
  41817. },
  41818. {
  41819. name: "Small",
  41820. height: math.unit(300, "feet")
  41821. },
  41822. {
  41823. name: "Macro",
  41824. height: math.unit(2500, "feet"),
  41825. default: true
  41826. },
  41827. {
  41828. name: "Mega Macro",
  41829. height: math.unit(1500, "miles")
  41830. },
  41831. {
  41832. name: "Giga Macro",
  41833. height: math.unit(1.5e6, "miles")
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(6, "feet"),
  41842. weight: math.unit(200, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/wulver/front.svg",
  41846. extra: 1724/1632,
  41847. bottom: 130/1854
  41848. }
  41849. },
  41850. frontNsfw: {
  41851. height: math.unit(6, "feet"),
  41852. weight: math.unit(200, "lb"),
  41853. name: "Front (NSFW)",
  41854. image: {
  41855. source: "./media/characters/wulver/front-nsfw.svg",
  41856. extra: 1724/1632,
  41857. bottom: 130/1854
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Human-Sized",
  41864. height: math.unit(6, "feet")
  41865. },
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(4, "meters"),
  41869. default: true
  41870. },
  41871. {
  41872. name: "Large",
  41873. height: math.unit(6, "m")
  41874. },
  41875. ]
  41876. ))
  41877. characterMakers.push(() => makeCharacter(
  41878. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41879. {
  41880. front: {
  41881. height: math.unit(7, "feet"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/maru/front.svg",
  41885. extra: 1595/1570,
  41886. bottom: 0/1595
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Normal",
  41893. height: math.unit(7, "feet"),
  41894. default: true
  41895. },
  41896. {
  41897. name: "Macro",
  41898. height: math.unit(700, "feet")
  41899. },
  41900. {
  41901. name: "Mega Macro",
  41902. height: math.unit(25, "miles")
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(6, "feet"),
  41911. weight: math.unit(170, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/xenon/front.svg",
  41915. extra: 1376/1305,
  41916. bottom: 56/1432
  41917. }
  41918. },
  41919. back: {
  41920. height: math.unit(6, "feet"),
  41921. weight: math.unit(170, "lb"),
  41922. name: "Back",
  41923. image: {
  41924. source: "./media/characters/xenon/back.svg",
  41925. extra: 1328/1259,
  41926. bottom: 95/1423
  41927. }
  41928. },
  41929. maw: {
  41930. height: math.unit(0.52, "feet"),
  41931. name: "Maw",
  41932. image: {
  41933. source: "./media/characters/xenon/maw.svg"
  41934. }
  41935. },
  41936. handLeft: {
  41937. height: math.unit(0.82 * 169 / 153, "feet"),
  41938. name: "Hand (Left)",
  41939. image: {
  41940. source: "./media/characters/xenon/hand-left.svg"
  41941. }
  41942. },
  41943. handRight: {
  41944. height: math.unit(0.82, "feet"),
  41945. name: "Hand (Right)",
  41946. image: {
  41947. source: "./media/characters/xenon/hand-right.svg"
  41948. }
  41949. },
  41950. footLeft: {
  41951. height: math.unit(1.13, "feet"),
  41952. name: "Foot (Left)",
  41953. image: {
  41954. source: "./media/characters/xenon/foot-left.svg"
  41955. }
  41956. },
  41957. footRight: {
  41958. height: math.unit(1.13 * 194 / 196, "feet"),
  41959. name: "Foot (Right)",
  41960. image: {
  41961. source: "./media/characters/xenon/foot-right.svg"
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Micro",
  41968. height: math.unit(0.8, "inches")
  41969. },
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(6, "feet")
  41973. },
  41974. {
  41975. name: "Macro",
  41976. height: math.unit(50, "feet"),
  41977. default: true
  41978. },
  41979. {
  41980. name: "Macro+",
  41981. height: math.unit(250, "feet")
  41982. },
  41983. {
  41984. name: "Megamacro",
  41985. height: math.unit(1500, "feet")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(7 + 5/12, "feet"),
  41994. name: "Front",
  41995. image: {
  41996. source: "./media/characters/zane/front.svg",
  41997. extra: 1260/1203,
  41998. bottom: 94/1354
  41999. }
  42000. },
  42001. back: {
  42002. height: math.unit(5.05, "feet"),
  42003. name: "Back",
  42004. image: {
  42005. source: "./media/characters/zane/back.svg",
  42006. extra: 893/829,
  42007. bottom: 30/923
  42008. }
  42009. },
  42010. werewolf: {
  42011. height: math.unit(11, "feet"),
  42012. name: "Werewolf",
  42013. image: {
  42014. source: "./media/characters/zane/werewolf.svg",
  42015. extra: 1383/1323,
  42016. bottom: 89/1472
  42017. }
  42018. },
  42019. foot: {
  42020. height: math.unit(1.46, "feet"),
  42021. name: "Foot",
  42022. image: {
  42023. source: "./media/characters/zane/foot.svg"
  42024. }
  42025. },
  42026. footFront: {
  42027. height: math.unit(0.784, "feet"),
  42028. name: "Foot (Front)",
  42029. image: {
  42030. source: "./media/characters/zane/foot-front.svg"
  42031. }
  42032. },
  42033. dick: {
  42034. height: math.unit(1.95, "feet"),
  42035. name: "Dick",
  42036. image: {
  42037. source: "./media/characters/zane/dick.svg"
  42038. }
  42039. },
  42040. dickWerewolf: {
  42041. height: math.unit(3.77, "feet"),
  42042. name: "Dick (Werewolf)",
  42043. image: {
  42044. source: "./media/characters/zane/dick.svg"
  42045. }
  42046. },
  42047. },
  42048. [
  42049. {
  42050. name: "Normal",
  42051. height: math.unit(7 + 5/12, "feet"),
  42052. default: true
  42053. },
  42054. ]
  42055. ))
  42056. characterMakers.push(() => makeCharacter(
  42057. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42058. {
  42059. front: {
  42060. height: math.unit(6 + 2/12, "feet"),
  42061. weight: math.unit(284, "lb"),
  42062. name: "Front",
  42063. image: {
  42064. source: "./media/characters/benni-desparque/front.svg",
  42065. extra: 1353/1126,
  42066. bottom: 69/1422
  42067. }
  42068. },
  42069. },
  42070. [
  42071. {
  42072. name: "Civilian",
  42073. height: math.unit(6 + 2/12, "feet")
  42074. },
  42075. {
  42076. name: "Normal",
  42077. height: math.unit(98, "feet"),
  42078. default: true
  42079. },
  42080. {
  42081. name: "Kaiju Fighter",
  42082. height: math.unit(268, "feet")
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(5, "feet"),
  42091. weight: math.unit(105, "lb"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/maxine/front.svg",
  42095. extra: 1386/1250,
  42096. bottom: 71/1457
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(5, "feet"),
  42104. default: true
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42110. {
  42111. front: {
  42112. height: math.unit(11 + 7/12, "feet"),
  42113. weight: math.unit(9576, "lb"),
  42114. name: "Front",
  42115. image: {
  42116. source: "./media/characters/scaly/front.svg",
  42117. extra: 888/867,
  42118. bottom: 36/924
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(11 + 7/12, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42132. {
  42133. front: {
  42134. height: math.unit(6 + 3/12, "feet"),
  42135. name: "Front",
  42136. image: {
  42137. source: "./media/characters/saelria/front.svg",
  42138. extra: 1243/1138,
  42139. bottom: 46/1289
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Micro",
  42146. height: math.unit(6, "inches"),
  42147. },
  42148. {
  42149. name: "Normal",
  42150. height: math.unit(6 + 3/12, "feet"),
  42151. default: true
  42152. },
  42153. {
  42154. name: "Macro",
  42155. height: math.unit(25, "feet")
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(80, "meters"),
  42164. weight: math.unit(7000, "tonnes"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/tef/front.svg",
  42168. extra: 2036/1991,
  42169. bottom: 54/2090
  42170. }
  42171. },
  42172. back: {
  42173. height: math.unit(80, "meters"),
  42174. weight: math.unit(7000, "tonnes"),
  42175. name: "Back",
  42176. image: {
  42177. source: "./media/characters/tef/back.svg",
  42178. extra: 2036/1991,
  42179. bottom: 54/2090
  42180. }
  42181. },
  42182. },
  42183. [
  42184. {
  42185. name: "Macro",
  42186. height: math.unit(80, "meters"),
  42187. default: true
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(13, "feet"),
  42196. weight: math.unit(6, "tons"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/rover/front.svg",
  42200. extra: 1233/1156,
  42201. bottom: 50/1283
  42202. }
  42203. },
  42204. back: {
  42205. height: math.unit(13, "feet"),
  42206. weight: math.unit(6, "tons"),
  42207. name: "Back",
  42208. image: {
  42209. source: "./media/characters/rover/back.svg",
  42210. extra: 1327/1258,
  42211. bottom: 39/1366
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(13, "feet"),
  42219. default: true
  42220. },
  42221. {
  42222. name: "Macro",
  42223. height: math.unit(1300, "feet")
  42224. },
  42225. {
  42226. name: "Megamacro",
  42227. height: math.unit(1300, "miles")
  42228. },
  42229. {
  42230. name: "Gigamacro",
  42231. height: math.unit(1300000, "miles")
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42237. {
  42238. front: {
  42239. height: math.unit(6, "feet"),
  42240. weight: math.unit(150, "lb"),
  42241. name: "Front",
  42242. image: {
  42243. source: "./media/characters/ariz/front.svg",
  42244. extra: 1401/1346,
  42245. bottom: 5/1406
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Normal",
  42252. height: math.unit(10, "feet"),
  42253. default: true
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(6, "feet"),
  42262. weight: math.unit(140, "lb"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/sigrun/front.svg",
  42266. extra: 1418/1359,
  42267. bottom: 27/1445
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Macro",
  42274. height: math.unit(35, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(6, "feet"),
  42284. weight: math.unit(150, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/numin/front.svg",
  42288. extra: 1433/1388,
  42289. bottom: 12/1445
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Macro",
  42296. height: math.unit(21.5, "km"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(6, "feet"),
  42306. weight: math.unit(463, "lb"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/melwa/front.svg",
  42310. extra: 1307/1248,
  42311. bottom: 93/1400
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Macro",
  42318. height: math.unit(50, "meters"),
  42319. default: true
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(325, "feet"),
  42328. name: "Front",
  42329. image: {
  42330. source: "./media/characters/zorkaiju/front.svg",
  42331. extra: 1955/1814,
  42332. bottom: 40/1995
  42333. }
  42334. },
  42335. frontExtended: {
  42336. height: math.unit(325, "feet"),
  42337. name: "Front (Extended)",
  42338. image: {
  42339. source: "./media/characters/zorkaiju/front-extended.svg",
  42340. extra: 1955/1814,
  42341. bottom: 40/1995
  42342. }
  42343. },
  42344. side: {
  42345. height: math.unit(325, "feet"),
  42346. name: "Side",
  42347. image: {
  42348. source: "./media/characters/zorkaiju/side.svg",
  42349. extra: 1495/1396,
  42350. bottom: 17/1512
  42351. }
  42352. },
  42353. sideExtended: {
  42354. height: math.unit(325, "feet"),
  42355. name: "Side (Extended)",
  42356. image: {
  42357. source: "./media/characters/zorkaiju/side-extended.svg",
  42358. extra: 1495/1396,
  42359. bottom: 17/1512
  42360. }
  42361. },
  42362. back: {
  42363. height: math.unit(325, "feet"),
  42364. name: "Back",
  42365. image: {
  42366. source: "./media/characters/zorkaiju/back.svg",
  42367. extra: 1959/1821,
  42368. bottom: 31/1990
  42369. }
  42370. },
  42371. backExtended: {
  42372. height: math.unit(325, "feet"),
  42373. name: "Back (Extended)",
  42374. image: {
  42375. source: "./media/characters/zorkaiju/back-extended.svg",
  42376. extra: 1959/1821,
  42377. bottom: 31/1990
  42378. }
  42379. },
  42380. hand: {
  42381. height: math.unit(58.4, "feet"),
  42382. name: "Hand",
  42383. image: {
  42384. source: "./media/characters/zorkaiju/hand.svg"
  42385. }
  42386. },
  42387. handExtended: {
  42388. height: math.unit(61.4, "feet"),
  42389. name: "Hand (Extended)",
  42390. image: {
  42391. source: "./media/characters/zorkaiju/hand-extended.svg"
  42392. }
  42393. },
  42394. foot: {
  42395. height: math.unit(95, "feet"),
  42396. name: "Foot",
  42397. image: {
  42398. source: "./media/characters/zorkaiju/foot.svg"
  42399. }
  42400. },
  42401. leftArm: {
  42402. height: math.unit(59, "feet"),
  42403. name: "Left Arm",
  42404. image: {
  42405. source: "./media/characters/zorkaiju/left-arm.svg"
  42406. }
  42407. },
  42408. rightArm: {
  42409. height: math.unit(59, "feet"),
  42410. name: "Right Arm",
  42411. image: {
  42412. source: "./media/characters/zorkaiju/right-arm.svg"
  42413. }
  42414. },
  42415. leftArmExtended: {
  42416. height: math.unit(59 * 1.033546, "feet"),
  42417. name: "Left Arm (Extended)",
  42418. image: {
  42419. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42420. }
  42421. },
  42422. rightArmExtended: {
  42423. height: math.unit(59 * 1.0496, "feet"),
  42424. name: "Right Arm (Extended)",
  42425. image: {
  42426. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42427. }
  42428. },
  42429. tail: {
  42430. height: math.unit(104, "feet"),
  42431. name: "Tail",
  42432. image: {
  42433. source: "./media/characters/zorkaiju/tail.svg"
  42434. }
  42435. },
  42436. tailExtended: {
  42437. height: math.unit(104, "feet"),
  42438. name: "Tail (Extended)",
  42439. image: {
  42440. source: "./media/characters/zorkaiju/tail-extended.svg"
  42441. }
  42442. },
  42443. tailBottom: {
  42444. height: math.unit(104, "feet"),
  42445. name: "Tail Bottom",
  42446. image: {
  42447. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42448. }
  42449. },
  42450. crystal: {
  42451. height: math.unit(27.54, "feet"),
  42452. name: "Crystal",
  42453. image: {
  42454. source: "./media/characters/zorkaiju/crystal.svg"
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Kaiju",
  42461. height: math.unit(325, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42468. {
  42469. front: {
  42470. height: math.unit(6 + 1/12, "feet"),
  42471. weight: math.unit(115, "lb"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/bailey-belfry/front.svg",
  42475. extra: 1240/1121,
  42476. bottom: 101/1341
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(6 + 1/12, "feet"),
  42484. default: true
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42490. {
  42491. side: {
  42492. height: math.unit(4, "meters"),
  42493. weight: math.unit(250, "kg"),
  42494. name: "Side",
  42495. image: {
  42496. source: "./media/characters/blacky/side.svg",
  42497. extra: 1027/919,
  42498. bottom: 43/1070
  42499. }
  42500. },
  42501. maw: {
  42502. height: math.unit(1, "meters"),
  42503. name: "Maw",
  42504. image: {
  42505. source: "./media/characters/blacky/maw.svg"
  42506. }
  42507. },
  42508. paw: {
  42509. height: math.unit(1, "meters"),
  42510. name: "Paw",
  42511. image: {
  42512. source: "./media/characters/blacky/paw.svg"
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "Normal",
  42519. height: math.unit(4, "meters"),
  42520. default: true
  42521. },
  42522. ]
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42526. {
  42527. front: {
  42528. height: math.unit(170, "cm"),
  42529. weight: math.unit(66, "kg"),
  42530. name: "Front",
  42531. image: {
  42532. source: "./media/characters/thux-ei/front.svg",
  42533. extra: 1109/1011,
  42534. bottom: 8/1117
  42535. }
  42536. },
  42537. },
  42538. [
  42539. {
  42540. name: "Normal",
  42541. height: math.unit(170, "cm"),
  42542. default: true
  42543. },
  42544. ]
  42545. ))
  42546. characterMakers.push(() => makeCharacter(
  42547. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42548. {
  42549. front: {
  42550. height: math.unit(5, "feet"),
  42551. weight: math.unit(120, "lb"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/roxanne-voltaire/front.svg",
  42555. extra: 1901/1779,
  42556. bottom: 53/1954
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(5, "feet"),
  42564. default: true
  42565. },
  42566. {
  42567. name: "Giant",
  42568. height: math.unit(50, "feet")
  42569. },
  42570. {
  42571. name: "Titan",
  42572. height: math.unit(500, "feet")
  42573. },
  42574. {
  42575. name: "Macro",
  42576. height: math.unit(5000, "feet")
  42577. },
  42578. {
  42579. name: "Megamacro",
  42580. height: math.unit(50000, "feet")
  42581. },
  42582. {
  42583. name: "Gigamacro",
  42584. height: math.unit(500000, "feet")
  42585. },
  42586. {
  42587. name: "Teramacro",
  42588. height: math.unit(5e6, "feet")
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(6 + 2/12, "feet"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/squeaks/front.svg",
  42600. extra: 1823/1768,
  42601. bottom: 138/1961
  42602. }
  42603. },
  42604. },
  42605. [
  42606. {
  42607. name: "Micro",
  42608. height: math.unit(0.5, "inches")
  42609. },
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(6 + 2/12, "feet"),
  42613. default: true
  42614. },
  42615. {
  42616. name: "Macro",
  42617. height: math.unit(600, "feet")
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(1.72, "meters"),
  42626. name: "Front",
  42627. image: {
  42628. source: "./media/characters/archinger/front.svg",
  42629. extra: 1861/1675,
  42630. bottom: 125/1986
  42631. }
  42632. },
  42633. back: {
  42634. height: math.unit(1.72, "meters"),
  42635. name: "Back",
  42636. image: {
  42637. source: "./media/characters/archinger/back.svg",
  42638. extra: 1844/1701,
  42639. bottom: 104/1948
  42640. }
  42641. },
  42642. cock: {
  42643. height: math.unit(0.59, "feet"),
  42644. name: "Cock",
  42645. image: {
  42646. source: "./media/characters/archinger/cock.svg"
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Normal",
  42653. height: math.unit(1.72, "meters"),
  42654. default: true
  42655. },
  42656. {
  42657. name: "Macro",
  42658. height: math.unit(84, "meters")
  42659. },
  42660. {
  42661. name: "Macro+",
  42662. height: math.unit(112, "meters")
  42663. },
  42664. {
  42665. name: "Macro++",
  42666. height: math.unit(960, "meters")
  42667. },
  42668. {
  42669. name: "Macro+++",
  42670. height: math.unit(4, "km")
  42671. },
  42672. {
  42673. name: "Macro++++",
  42674. height: math.unit(48, "km")
  42675. },
  42676. {
  42677. name: "Macro+++++",
  42678. height: math.unit(4500, "km")
  42679. },
  42680. ]
  42681. ))
  42682. characterMakers.push(() => makeCharacter(
  42683. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42684. {
  42685. front: {
  42686. height: math.unit(5 + 5/12, "feet"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/alsnapz/front.svg",
  42690. extra: 1157/1065,
  42691. bottom: 42/1199
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(5 + 5/12, "feet"),
  42699. default: true
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42705. {
  42706. side: {
  42707. height: math.unit(3.2, "earths"),
  42708. name: "Side",
  42709. image: {
  42710. source: "./media/characters/mag/side.svg",
  42711. extra: 1331/1008,
  42712. bottom: 52/1383
  42713. }
  42714. },
  42715. wing: {
  42716. height: math.unit(1.94, "earths"),
  42717. name: "Wing",
  42718. image: {
  42719. source: "./media/characters/mag/wing.svg"
  42720. }
  42721. },
  42722. dick: {
  42723. height: math.unit(1.8, "earths"),
  42724. name: "Dick",
  42725. image: {
  42726. source: "./media/characters/mag/dick.svg"
  42727. }
  42728. },
  42729. ass: {
  42730. height: math.unit(1.33, "earths"),
  42731. name: "Ass",
  42732. image: {
  42733. source: "./media/characters/mag/ass.svg"
  42734. }
  42735. },
  42736. head: {
  42737. height: math.unit(1.1, "earths"),
  42738. name: "Head",
  42739. image: {
  42740. source: "./media/characters/mag/head.svg"
  42741. }
  42742. },
  42743. maw: {
  42744. height: math.unit(1.62, "earths"),
  42745. name: "Maw",
  42746. image: {
  42747. source: "./media/characters/mag/maw.svg"
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Small",
  42754. height: math.unit(162, "feet")
  42755. },
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(3.2, "earths"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(512, "feet"),
  42768. weight: math.unit(63509, "tonnes"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/vorrel-harroc/front.svg",
  42772. extra: 1075/1063,
  42773. bottom: 62/1137
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(10, "feet")
  42781. },
  42782. {
  42783. name: "Macro",
  42784. height: math.unit(512, "feet"),
  42785. default: true
  42786. },
  42787. {
  42788. name: "Megamacro",
  42789. height: math.unit(256, "miles")
  42790. },
  42791. {
  42792. name: "Gigamacro",
  42793. height: math.unit(4096, "miles")
  42794. },
  42795. ]
  42796. ))
  42797. characterMakers.push(() => makeCharacter(
  42798. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42799. {
  42800. side: {
  42801. height: math.unit(50, "feet"),
  42802. name: "Side",
  42803. image: {
  42804. source: "./media/characters/froimar/side.svg",
  42805. extra: 855/638,
  42806. bottom: 99/954
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Macro",
  42813. height: math.unit(50, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42820. {
  42821. front: {
  42822. height: math.unit(210, "miles"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/timothy/front.svg",
  42826. extra: 1007/943,
  42827. bottom: 62/1069
  42828. }
  42829. },
  42830. frontSkirt: {
  42831. height: math.unit(210, "miles"),
  42832. name: "Front (Skirt)",
  42833. image: {
  42834. source: "./media/characters/timothy/front-skirt.svg",
  42835. extra: 1007/943,
  42836. bottom: 62/1069
  42837. }
  42838. },
  42839. frontCoat: {
  42840. height: math.unit(210, "miles"),
  42841. name: "Front (Coat)",
  42842. image: {
  42843. source: "./media/characters/timothy/front-coat.svg",
  42844. extra: 1007/943,
  42845. bottom: 62/1069
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Macro",
  42852. height: math.unit(210, "miles"),
  42853. default: true
  42854. },
  42855. {
  42856. name: "Megamacro",
  42857. height: math.unit(210000, "miles")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(188, "feet"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/pyotr/front.svg",
  42869. extra: 1912/1826,
  42870. bottom: 18/1930
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Macro",
  42877. height: math.unit(188, "feet"),
  42878. default: true
  42879. },
  42880. {
  42881. name: "Megamacro",
  42882. height: math.unit(8, "miles")
  42883. },
  42884. ]
  42885. ))
  42886. characterMakers.push(() => makeCharacter(
  42887. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42888. {
  42889. side: {
  42890. height: math.unit(10, "feet"),
  42891. weight: math.unit(4500, "lb"),
  42892. name: "Side",
  42893. image: {
  42894. source: "./media/characters/ackart/side.svg",
  42895. extra: 1776/1668,
  42896. bottom: 116/1892
  42897. }
  42898. },
  42899. },
  42900. [
  42901. {
  42902. name: "Normal",
  42903. height: math.unit(10, "feet"),
  42904. default: true
  42905. },
  42906. ]
  42907. ))
  42908. characterMakers.push(() => makeCharacter(
  42909. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42910. {
  42911. side: {
  42912. height: math.unit(21, "feet"),
  42913. name: "Side",
  42914. image: {
  42915. source: "./media/characters/nolow/side.svg",
  42916. extra: 1484/1434,
  42917. bottom: 85/1569
  42918. }
  42919. },
  42920. sideErect: {
  42921. height: math.unit(21, "feet"),
  42922. name: "Side-erect",
  42923. image: {
  42924. source: "./media/characters/nolow/side-erect.svg",
  42925. extra: 1484/1434,
  42926. bottom: 85/1569
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Regular",
  42933. height: math.unit(12, "feet")
  42934. },
  42935. {
  42936. name: "Big Chee",
  42937. height: math.unit(21, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(7, "feet"),
  42947. weight: math.unit(250, "lb"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/nines/front.svg",
  42951. extra: 1741/1607,
  42952. bottom: 41/1782
  42953. }
  42954. },
  42955. side: {
  42956. height: math.unit(7, "feet"),
  42957. weight: math.unit(250, "lb"),
  42958. name: "Side",
  42959. image: {
  42960. source: "./media/characters/nines/side.svg",
  42961. extra: 1854/1735,
  42962. bottom: 93/1947
  42963. }
  42964. },
  42965. back: {
  42966. height: math.unit(7, "feet"),
  42967. weight: math.unit(250, "lb"),
  42968. name: "Back",
  42969. image: {
  42970. source: "./media/characters/nines/back.svg",
  42971. extra: 1748/1615,
  42972. bottom: 20/1768
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Megamacro",
  42979. height: math.unit(99, "km"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(5 + 10/12, "feet"),
  42989. weight: math.unit(210, "lb"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/zenith/front.svg",
  42993. extra: 1531/1452,
  42994. bottom: 198/1729
  42995. }
  42996. },
  42997. back: {
  42998. height: math.unit(5 + 10/12, "feet"),
  42999. weight: math.unit(210, "lb"),
  43000. name: "Back",
  43001. image: {
  43002. source: "./media/characters/zenith/back.svg",
  43003. extra: 1571/1487,
  43004. bottom: 75/1646
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(5 + 10/12, "feet"),
  43012. default: true
  43013. }
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(4, "feet"),
  43021. weight: math.unit(60, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/jasper/front.svg",
  43025. extra: 1450/1379,
  43026. bottom: 19/1469
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(4, "feet"),
  43034. default: true
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43040. {
  43041. front: {
  43042. height: math.unit(6 + 5/12, "feet"),
  43043. weight: math.unit(290, "lb"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/tiberius-thyben/front.svg",
  43047. extra: 757/739,
  43048. bottom: 39/796
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Micro",
  43055. height: math.unit(1.5, "inches")
  43056. },
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(6 + 5/12, "feet"),
  43060. default: true
  43061. },
  43062. {
  43063. name: "Macro",
  43064. height: math.unit(300, "feet")
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(5 + 6/12, "feet"),
  43073. weight: math.unit(60, "kg"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/sabre/front.svg",
  43077. extra: 738/671,
  43078. bottom: 27/765
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Teeny",
  43085. height: math.unit(2, "inches")
  43086. },
  43087. {
  43088. name: "Smol",
  43089. height: math.unit(8, "inches")
  43090. },
  43091. {
  43092. name: "Normal",
  43093. height: math.unit(5 + 6/12, "feet"),
  43094. default: true
  43095. },
  43096. {
  43097. name: "Mini-Macro",
  43098. height: math.unit(15, "feet")
  43099. },
  43100. {
  43101. name: "Macro",
  43102. height: math.unit(50, "feet")
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43108. {
  43109. front: {
  43110. height: math.unit(6 + 4/12, "feet"),
  43111. weight: math.unit(170, "lb"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/charlie/front.svg",
  43115. extra: 1348/1228,
  43116. bottom: 15/1363
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Macro",
  43123. height: math.unit(1700, "meters"),
  43124. default: true
  43125. },
  43126. {
  43127. name: "MegaMacro",
  43128. height: math.unit(20400, "meters")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(6 + 3/12, "feet"),
  43137. weight: math.unit(185, "lb"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/susan-grant/front.svg",
  43141. extra: 1351/1327,
  43142. bottom: 26/1377
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Normal",
  43149. height: math.unit(6 + 3/12, "feet"),
  43150. default: true
  43151. },
  43152. {
  43153. name: "Macro",
  43154. height: math.unit(225, "feet")
  43155. },
  43156. {
  43157. name: "Macro+",
  43158. height: math.unit(900, "feet")
  43159. },
  43160. {
  43161. name: "MegaMacro",
  43162. height: math.unit(14400, "feet")
  43163. },
  43164. ]
  43165. ))
  43166. characterMakers.push(() => makeCharacter(
  43167. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43168. {
  43169. front: {
  43170. height: math.unit(5 + 4/12, "feet"),
  43171. weight: math.unit(110, "lb"),
  43172. name: "Front",
  43173. image: {
  43174. source: "./media/characters/axel-isanov/front.svg",
  43175. extra: 1096/1065,
  43176. bottom: 13/1109
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(5 + 4/12, "feet"),
  43184. default: true
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(9, "feet"),
  43193. weight: math.unit(467, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/necahual/front.svg",
  43197. extra: 920/873,
  43198. bottom: 26/946
  43199. }
  43200. },
  43201. back: {
  43202. height: math.unit(9, "feet"),
  43203. weight: math.unit(467, "lb"),
  43204. name: "Back",
  43205. image: {
  43206. source: "./media/characters/necahual/back.svg",
  43207. extra: 930/884,
  43208. bottom: 16/946
  43209. }
  43210. },
  43211. frontUnderwear: {
  43212. height: math.unit(9, "feet"),
  43213. weight: math.unit(467, "lb"),
  43214. name: "Front (Underwear)",
  43215. image: {
  43216. source: "./media/characters/necahual/front-underwear.svg",
  43217. extra: 920/873,
  43218. bottom: 26/946
  43219. }
  43220. },
  43221. frontDressed: {
  43222. height: math.unit(9, "feet"),
  43223. weight: math.unit(467, "lb"),
  43224. name: "Front (Dressed)",
  43225. image: {
  43226. source: "./media/characters/necahual/front-dressed.svg",
  43227. extra: 920/873,
  43228. bottom: 26/946
  43229. }
  43230. },
  43231. },
  43232. [
  43233. {
  43234. name: "Comprsesed",
  43235. height: math.unit(9, "feet")
  43236. },
  43237. {
  43238. name: "Natural",
  43239. height: math.unit(15, "feet"),
  43240. default: true
  43241. },
  43242. {
  43243. name: "Boosted",
  43244. height: math.unit(50, "feet")
  43245. },
  43246. {
  43247. name: "Boosted+",
  43248. height: math.unit(150, "feet")
  43249. },
  43250. {
  43251. name: "Max",
  43252. height: math.unit(500, "feet")
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(22 + 1/12, "feet"),
  43261. weight: math.unit(3200, "lb"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/theo-acacia/front.svg",
  43265. extra: 1796/1741,
  43266. bottom: 83/1879
  43267. }
  43268. },
  43269. frontUnderwear: {
  43270. height: math.unit(22 + 1/12, "feet"),
  43271. weight: math.unit(3200, "lb"),
  43272. name: "Front (Underwear)",
  43273. image: {
  43274. source: "./media/characters/theo-acacia/front-underwear.svg",
  43275. extra: 1796/1741,
  43276. bottom: 83/1879
  43277. }
  43278. },
  43279. frontNude: {
  43280. height: math.unit(22 + 1/12, "feet"),
  43281. weight: math.unit(3200, "lb"),
  43282. name: "Front (Nude)",
  43283. image: {
  43284. source: "./media/characters/theo-acacia/front-nude.svg",
  43285. extra: 1796/1741,
  43286. bottom: 83/1879
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(22 + 1/12, "feet"),
  43294. default: true
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43300. {
  43301. front: {
  43302. height: math.unit(20, "feet"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/astra/front.svg",
  43306. extra: 1850/1714,
  43307. bottom: 106/1956
  43308. }
  43309. },
  43310. frontUndressed: {
  43311. height: math.unit(20, "feet"),
  43312. name: "Front (Undressed)",
  43313. image: {
  43314. source: "./media/characters/astra/front-undressed.svg",
  43315. extra: 1926/1749,
  43316. bottom: 0/1926
  43317. }
  43318. },
  43319. hand: {
  43320. height: math.unit(1.53, "feet"),
  43321. name: "Hand",
  43322. image: {
  43323. source: "./media/characters/astra/hand.svg"
  43324. }
  43325. },
  43326. paw: {
  43327. height: math.unit(1.53, "feet"),
  43328. name: "Paw",
  43329. image: {
  43330. source: "./media/characters/astra/paw.svg"
  43331. }
  43332. },
  43333. },
  43334. [
  43335. {
  43336. name: "Smallest",
  43337. height: math.unit(20, "feet")
  43338. },
  43339. {
  43340. name: "Normal",
  43341. height: math.unit(1e9, "miles"),
  43342. default: true
  43343. },
  43344. {
  43345. name: "Larger",
  43346. height: math.unit(5, "multiverses")
  43347. },
  43348. {
  43349. name: "Largest",
  43350. height: math.unit(1e9, "multiverses")
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(8, "feet"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/breanna/front.svg",
  43362. extra: 1912/1632,
  43363. bottom: 33/1945
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Smallest",
  43370. height: math.unit(8, "feet")
  43371. },
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(1, "mile"),
  43375. default: true
  43376. },
  43377. {
  43378. name: "Maximum",
  43379. height: math.unit(1500000000000, "lightyears")
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43385. {
  43386. front: {
  43387. height: math.unit(5 + 11/12, "feet"),
  43388. weight: math.unit(155, "lb"),
  43389. name: "Front",
  43390. image: {
  43391. source: "./media/characters/cai/front.svg",
  43392. extra: 1823/1702,
  43393. bottom: 32/1855
  43394. }
  43395. },
  43396. back: {
  43397. height: math.unit(5 + 11/12, "feet"),
  43398. weight: math.unit(155, "lb"),
  43399. name: "Back",
  43400. image: {
  43401. source: "./media/characters/cai/back.svg",
  43402. extra: 1809/1708,
  43403. bottom: 31/1840
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(5 + 11/12, "feet"),
  43411. default: true
  43412. },
  43413. {
  43414. name: "Big",
  43415. height: math.unit(15, "feet")
  43416. },
  43417. {
  43418. name: "Macro",
  43419. height: math.unit(200, "feet")
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(5 + 6/12, "feet"),
  43428. weight: math.unit(160, "lb"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43432. extra: 1227/1174,
  43433. bottom: 37/1264
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Macro",
  43440. height: math.unit(444, "meters"),
  43441. default: true
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(18 + 7/12, "feet"),
  43450. name: "Front",
  43451. image: {
  43452. source: "./media/characters/rex/front.svg",
  43453. extra: 1941/1807,
  43454. bottom: 66/2007
  43455. }
  43456. },
  43457. back: {
  43458. height: math.unit(18 + 7/12, "feet"),
  43459. name: "Back",
  43460. image: {
  43461. source: "./media/characters/rex/back.svg",
  43462. extra: 1937/1822,
  43463. bottom: 42/1979
  43464. }
  43465. },
  43466. boot: {
  43467. height: math.unit(3.45, "feet"),
  43468. name: "Boot",
  43469. image: {
  43470. source: "./media/characters/rex/boot.svg"
  43471. }
  43472. },
  43473. paw: {
  43474. height: math.unit(4.17, "feet"),
  43475. name: "Paw",
  43476. image: {
  43477. source: "./media/characters/rex/paw.svg"
  43478. }
  43479. },
  43480. head: {
  43481. height: math.unit(6.728, "feet"),
  43482. name: "Head",
  43483. image: {
  43484. source: "./media/characters/rex/head.svg"
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Nano",
  43491. height: math.unit(18 + 7/12, "feet")
  43492. },
  43493. {
  43494. name: "Micro",
  43495. height: math.unit(1.5, "megameters")
  43496. },
  43497. {
  43498. name: "Normal",
  43499. height: math.unit(440, "megameters"),
  43500. default: true
  43501. },
  43502. {
  43503. name: "Macro",
  43504. height: math.unit(2.5, "gigameters")
  43505. },
  43506. {
  43507. name: "Gigamacro",
  43508. height: math.unit(2, "galaxies")
  43509. },
  43510. ]
  43511. ))
  43512. characterMakers.push(() => makeCharacter(
  43513. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43514. {
  43515. side: {
  43516. height: math.unit(32, "feet"),
  43517. weight: math.unit(250000, "lb"),
  43518. name: "Side",
  43519. image: {
  43520. source: "./media/characters/silverwing/side.svg",
  43521. extra: 1100/1019,
  43522. bottom: 204/1304
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Normal",
  43529. height: math.unit(32, "feet"),
  43530. default: true
  43531. },
  43532. ]
  43533. ))
  43534. characterMakers.push(() => makeCharacter(
  43535. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43536. {
  43537. front: {
  43538. height: math.unit(6 + 6/12, "feet"),
  43539. weight: math.unit(350, "lb"),
  43540. name: "Front",
  43541. image: {
  43542. source: "./media/characters/tristan-hawthorne/front.svg",
  43543. extra: 1159/1124,
  43544. bottom: 37/1196
  43545. },
  43546. form: "labrador",
  43547. default: true
  43548. },
  43549. skunkFront: {
  43550. height: math.unit(4 + 6/12, "feet"),
  43551. weight: math.unit(120, "lb"),
  43552. name: "Front",
  43553. image: {
  43554. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43555. extra: 1609/1551,
  43556. bottom: 169/1778
  43557. },
  43558. form: "skunk",
  43559. default: true
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Normal",
  43565. height: math.unit(6 + 6/12, "feet"),
  43566. form: "labrador",
  43567. default: true
  43568. },
  43569. {
  43570. name: "Normal",
  43571. height: math.unit(4 + 6/12, "feet"),
  43572. form: "skunk",
  43573. default: true
  43574. },
  43575. ],
  43576. {
  43577. "labrador": {
  43578. name: "Labrador",
  43579. default: true
  43580. },
  43581. "skunk": {
  43582. name: "Skunk"
  43583. }
  43584. }
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(5 + 11/12, "feet"),
  43591. weight: math.unit(190, "lb"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/mizu/front.svg",
  43595. extra: 1988/1788,
  43596. bottom: 14/2002
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Normal",
  43603. height: math.unit(5 + 11/12, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(1.7, "feet"),
  43613. weight: math.unit(50, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/dechroma/front.svg",
  43617. extra: 1095/859,
  43618. bottom: 64/1159
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Normal",
  43625. height: math.unit(1.7, "feet"),
  43626. default: true
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43632. {
  43633. side: {
  43634. height: math.unit(30, "feet"),
  43635. name: "Side",
  43636. image: {
  43637. source: "./media/characters/veluren-thanazel/side.svg",
  43638. extra: 1611/633,
  43639. bottom: 118/1729
  43640. }
  43641. },
  43642. front: {
  43643. height: math.unit(30, "feet"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/veluren-thanazel/front.svg",
  43647. extra: 1486/636,
  43648. bottom: 238/1724
  43649. }
  43650. },
  43651. head: {
  43652. height: math.unit(21.4, "feet"),
  43653. name: "Head",
  43654. image: {
  43655. source: "./media/characters/veluren-thanazel/head.svg"
  43656. }
  43657. },
  43658. genitals: {
  43659. height: math.unit(19.4, "feet"),
  43660. name: "Genitals",
  43661. image: {
  43662. source: "./media/characters/veluren-thanazel/genitals.svg"
  43663. }
  43664. },
  43665. },
  43666. [
  43667. {
  43668. name: "Social",
  43669. height: math.unit(6, "feet")
  43670. },
  43671. {
  43672. name: "Play",
  43673. height: math.unit(12, "feet")
  43674. },
  43675. {
  43676. name: "True",
  43677. height: math.unit(30, "feet"),
  43678. default: true
  43679. },
  43680. ]
  43681. ))
  43682. characterMakers.push(() => makeCharacter(
  43683. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43684. {
  43685. front: {
  43686. height: math.unit(7 + 6/12, "feet"),
  43687. weight: math.unit(500, "kg"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/arcturas/front.svg",
  43691. extra: 1700/1500,
  43692. bottom: 145/1845
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Normal",
  43699. height: math.unit(7 + 6/12, "feet"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43706. {
  43707. side: {
  43708. height: math.unit(6, "feet"),
  43709. weight: math.unit(2, "tons"),
  43710. name: "Side",
  43711. image: {
  43712. source: "./media/characters/vitaen/side.svg",
  43713. extra: 1157/617,
  43714. bottom: 122/1279
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(6, "feet"),
  43722. default: true
  43723. },
  43724. ]
  43725. ))
  43726. characterMakers.push(() => makeCharacter(
  43727. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43728. {
  43729. front: {
  43730. height: math.unit(19, "feet"),
  43731. name: "Front",
  43732. image: {
  43733. source: "./media/characters/fia-dreamweaver/front.svg",
  43734. extra: 1630/1504,
  43735. bottom: 25/1655
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(19, "feet"),
  43743. default: true
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(5 + 4/12, "feet"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/artan/front.svg",
  43755. extra: 1618/1535,
  43756. bottom: 46/1664
  43757. }
  43758. },
  43759. back: {
  43760. height: math.unit(5 + 4/12, "feet"),
  43761. name: "Back",
  43762. image: {
  43763. source: "./media/characters/artan/back.svg",
  43764. extra: 1618/1543,
  43765. bottom: 31/1649
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(5 + 4/12, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43779. {
  43780. side: {
  43781. height: math.unit(182, "cm"),
  43782. weight: math.unit(1000, "lb"),
  43783. name: "Side",
  43784. image: {
  43785. source: "./media/characters/silver-dragon/side.svg",
  43786. extra: 710/287,
  43787. bottom: 88/798
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(182, "cm"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43801. {
  43802. side: {
  43803. height: math.unit(6 + 6/12, "feet"),
  43804. weight: math.unit(1.5, "tons"),
  43805. name: "Side",
  43806. image: {
  43807. source: "./media/characters/zephyr/side.svg",
  43808. extra: 1433/586,
  43809. bottom: 109/1542
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(6 + 6/12, "feet"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43823. {
  43824. side: {
  43825. height: math.unit(1, "feet"),
  43826. name: "Side",
  43827. image: {
  43828. source: "./media/characters/vixye/side.svg",
  43829. extra: 632/541,
  43830. bottom: 0/632
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(1, "feet"),
  43838. default: true
  43839. },
  43840. {
  43841. name: "True",
  43842. height: math.unit(1e15, "multiverses")
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(8 + 2/12, "feet"),
  43851. weight: math.unit(650, "lb"),
  43852. name: "Front",
  43853. image: {
  43854. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43855. extra: 1174/1137,
  43856. bottom: 82/1256
  43857. }
  43858. },
  43859. back: {
  43860. height: math.unit(8 + 2/12, "feet"),
  43861. weight: math.unit(650, "lb"),
  43862. name: "Back",
  43863. image: {
  43864. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43865. extra: 1204/1157,
  43866. bottom: 46/1250
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Wildform",
  43873. height: math.unit(8 + 2/12, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(18, "feet"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/cyphin/front.svg",
  43886. extra: 970/886,
  43887. bottom: 42/1012
  43888. }
  43889. },
  43890. back: {
  43891. height: math.unit(18, "feet"),
  43892. name: "Back",
  43893. image: {
  43894. source: "./media/characters/cyphin/back.svg",
  43895. extra: 1009/894,
  43896. bottom: 24/1033
  43897. }
  43898. },
  43899. head: {
  43900. height: math.unit(5.05, "feet"),
  43901. name: "Head",
  43902. image: {
  43903. source: "./media/characters/cyphin/head.svg"
  43904. }
  43905. },
  43906. tailbud: {
  43907. height: math.unit(5, "feet"),
  43908. name: "Tailbud",
  43909. image: {
  43910. source: "./media/characters/cyphin/tailbud.svg"
  43911. }
  43912. },
  43913. },
  43914. [
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43919. {
  43920. side: {
  43921. height: math.unit(10, "feet"),
  43922. weight: math.unit(6, "tons"),
  43923. name: "Side",
  43924. image: {
  43925. source: "./media/characters/raijin/side.svg",
  43926. extra: 1529/613,
  43927. bottom: 337/1866
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(10, "feet"),
  43935. default: true
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43941. {
  43942. side: {
  43943. height: math.unit(9, "feet"),
  43944. name: "Side",
  43945. image: {
  43946. source: "./media/characters/nilghais/side.svg",
  43947. extra: 1047/744,
  43948. bottom: 91/1138
  43949. }
  43950. },
  43951. head: {
  43952. height: math.unit(3.14, "feet"),
  43953. name: "Head",
  43954. image: {
  43955. source: "./media/characters/nilghais/head.svg"
  43956. }
  43957. },
  43958. mouth: {
  43959. height: math.unit(4.6, "feet"),
  43960. name: "Mouth",
  43961. image: {
  43962. source: "./media/characters/nilghais/mouth.svg"
  43963. }
  43964. },
  43965. wings: {
  43966. height: math.unit(24, "feet"),
  43967. name: "Wings",
  43968. image: {
  43969. source: "./media/characters/nilghais/wings.svg"
  43970. }
  43971. },
  43972. ass: {
  43973. height: math.unit(6.12, "feet"),
  43974. name: "Ass",
  43975. image: {
  43976. source: "./media/characters/nilghais/ass.svg"
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(9, "feet"),
  43984. default: true
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43990. {
  43991. regular: {
  43992. height: math.unit(16 + 2/12, "feet"),
  43993. weight: math.unit(2300, "lb"),
  43994. name: "Regular",
  43995. image: {
  43996. source: "./media/characters/zolgar/regular.svg",
  43997. extra: 1246/1004,
  43998. bottom: 124/1370
  43999. }
  44000. },
  44001. boxers: {
  44002. height: math.unit(16 + 2/12, "feet"),
  44003. weight: math.unit(2300, "lb"),
  44004. name: "Boxers",
  44005. image: {
  44006. source: "./media/characters/zolgar/boxers.svg",
  44007. extra: 1246/1004,
  44008. bottom: 124/1370
  44009. }
  44010. },
  44011. armored: {
  44012. height: math.unit(16 + 2/12, "feet"),
  44013. weight: math.unit(2300, "lb"),
  44014. name: "Armored",
  44015. image: {
  44016. source: "./media/characters/zolgar/armored.svg",
  44017. extra: 1246/1004,
  44018. bottom: 124/1370
  44019. }
  44020. },
  44021. goth: {
  44022. height: math.unit(16 + 2/12, "feet"),
  44023. weight: math.unit(2300, "lb"),
  44024. name: "Goth",
  44025. image: {
  44026. source: "./media/characters/zolgar/goth.svg",
  44027. extra: 1246/1004,
  44028. bottom: 124/1370
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Shrunken Down",
  44035. height: math.unit(9 + 2/12, "feet")
  44036. },
  44037. {
  44038. name: "Normal",
  44039. height: math.unit(16 + 2/12, "feet"),
  44040. default: true
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44046. {
  44047. front: {
  44048. height: math.unit(6, "feet"),
  44049. weight: math.unit(168, "lb"),
  44050. name: "Front",
  44051. image: {
  44052. source: "./media/characters/luca/front.svg",
  44053. extra: 841/667,
  44054. bottom: 102/943
  44055. }
  44056. },
  44057. },
  44058. [
  44059. {
  44060. name: "Normal",
  44061. height: math.unit(6, "feet"),
  44062. default: true
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44068. {
  44069. side: {
  44070. height: math.unit(7 + 3/12, "feet"),
  44071. weight: math.unit(312, "lb"),
  44072. name: "Side",
  44073. image: {
  44074. source: "./media/characters/zezo/side.svg",
  44075. extra: 1192/1067,
  44076. bottom: 63/1255
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(7 + 3/12, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(5 + 5/12, "feet"),
  44093. weight: math.unit(170, "lb"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/mayso/front.svg",
  44097. extra: 1215/1108,
  44098. bottom: 16/1231
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(5 + 5/12, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(4 + 3/12, "feet"),
  44115. weight: math.unit(80, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/hess/front.svg",
  44119. extra: 1200/1123,
  44120. bottom: 16/1216
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(4 + 3/12, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44134. {
  44135. front: {
  44136. height: math.unit(1.9, "meters"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/ashgar/front.svg",
  44140. extra: 1177/1146,
  44141. bottom: 99/1276
  44142. }
  44143. },
  44144. back: {
  44145. height: math.unit(1.9, "meters"),
  44146. name: "Back",
  44147. image: {
  44148. source: "./media/characters/ashgar/back.svg",
  44149. extra: 1201/1183,
  44150. bottom: 53/1254
  44151. }
  44152. },
  44153. feral: {
  44154. height: math.unit(1.4, "meters"),
  44155. name: "Feral",
  44156. image: {
  44157. source: "./media/characters/ashgar/feral.svg",
  44158. extra: 370/345,
  44159. bottom: 45/415
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(1.9, "meters"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44173. {
  44174. regular: {
  44175. height: math.unit(6, "feet"),
  44176. weight: math.unit(220, "lb"),
  44177. name: "Regular",
  44178. image: {
  44179. source: "./media/characters/phillip/regular.svg",
  44180. extra: 1373/1277,
  44181. bottom: 75/1448
  44182. }
  44183. },
  44184. dressed: {
  44185. height: math.unit(6, "feet"),
  44186. weight: math.unit(220, "lb"),
  44187. name: "Dressed",
  44188. image: {
  44189. source: "./media/characters/phillip/dressed.svg",
  44190. extra: 1373/1277,
  44191. bottom: 75/1448
  44192. }
  44193. },
  44194. paw: {
  44195. height: math.unit(1.44, "feet"),
  44196. name: "Paw",
  44197. image: {
  44198. source: "./media/characters/phillip/paw.svg"
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(6, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44212. {
  44213. side: {
  44214. height: math.unit(42, "feet"),
  44215. name: "Side",
  44216. image: {
  44217. source: "./media/characters/uvula/side.svg",
  44218. extra: 683/586,
  44219. bottom: 60/743
  44220. }
  44221. },
  44222. front: {
  44223. height: math.unit(42, "feet"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/uvula/front.svg",
  44227. extra: 705/613,
  44228. bottom: 54/759
  44229. }
  44230. },
  44231. maw: {
  44232. height: math.unit(23.5, "feet"),
  44233. name: "Maw",
  44234. image: {
  44235. source: "./media/characters/uvula/maw.svg"
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Original Size",
  44242. height: math.unit(14, "inches")
  44243. },
  44244. {
  44245. name: "Human Size",
  44246. height: math.unit(6, "feet")
  44247. },
  44248. {
  44249. name: "Big",
  44250. height: math.unit(42, "feet"),
  44251. default: true
  44252. },
  44253. {
  44254. name: "Bigger",
  44255. height: math.unit(100, "feet")
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44261. {
  44262. front: {
  44263. height: math.unit(5 + 11/12, "feet"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/lannah/front.svg",
  44267. extra: 1208/1113,
  44268. bottom: 97/1305
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Normal",
  44275. height: math.unit(5 + 11/12, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44282. {
  44283. front: {
  44284. height: math.unit(6 + 3/12, "feet"),
  44285. weight: math.unit(3.5, "tons"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/emberflame/front.svg",
  44289. extra: 1198/672,
  44290. bottom: 82/1280
  44291. }
  44292. },
  44293. side: {
  44294. height: math.unit(6 + 3/12, "feet"),
  44295. weight: math.unit(3.5, "tons"),
  44296. name: "Side",
  44297. image: {
  44298. source: "./media/characters/emberflame/side.svg",
  44299. extra: 938/527,
  44300. bottom: 56/994
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(6 + 3/12, "feet"),
  44308. default: true
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44314. {
  44315. side: {
  44316. height: math.unit(17.5, "feet"),
  44317. weight: math.unit(35, "tons"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/sophie-ambrose/side.svg",
  44321. extra: 1573/1242,
  44322. bottom: 71/1644
  44323. }
  44324. },
  44325. maw: {
  44326. height: math.unit(7.4, "feet"),
  44327. name: "Maw",
  44328. image: {
  44329. source: "./media/characters/sophie-ambrose/maw.svg"
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(17.5, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(280, "feet"),
  44346. weight: math.unit(550, "tons"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/king-mugi/front.svg",
  44350. extra: 1102/947,
  44351. bottom: 104/1206
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "King Mugi",
  44358. height: math.unit(280, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(64, "meters"),
  44368. name: "Front",
  44369. image: {
  44370. source: "./media/characters/nova-fox/front.svg",
  44371. extra: 1310/1246,
  44372. bottom: 65/1375
  44373. }
  44374. },
  44375. },
  44376. [
  44377. {
  44378. name: "Macro",
  44379. height: math.unit(64, "meters"),
  44380. default: true
  44381. },
  44382. ]
  44383. ))
  44384. characterMakers.push(() => makeCharacter(
  44385. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44386. {
  44387. front: {
  44388. height: math.unit(6 + 3/12, "feet"),
  44389. weight: math.unit(170, "lb"),
  44390. name: "Front",
  44391. image: {
  44392. source: "./media/characters/sam-bat/front.svg",
  44393. extra: 1601/1411,
  44394. bottom: 125/1726
  44395. }
  44396. },
  44397. back: {
  44398. height: math.unit(6 + 3/12, "feet"),
  44399. weight: math.unit(170, "lb"),
  44400. name: "Back",
  44401. image: {
  44402. source: "./media/characters/sam-bat/back.svg",
  44403. extra: 1577/1405,
  44404. bottom: 58/1635
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(6 + 3/12, "feet"),
  44412. default: true
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44418. {
  44419. front: {
  44420. height: math.unit(59, "feet"),
  44421. weight: math.unit(40000, "lb"),
  44422. name: "Front",
  44423. image: {
  44424. source: "./media/characters/inari/front.svg",
  44425. extra: 1884/1350,
  44426. bottom: 95/1979
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Gigantamax",
  44433. height: math.unit(59, "feet"),
  44434. default: true
  44435. },
  44436. ]
  44437. ))
  44438. characterMakers.push(() => makeCharacter(
  44439. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44440. {
  44441. front: {
  44442. height: math.unit(5 + 8/12, "feet"),
  44443. name: "Front",
  44444. image: {
  44445. source: "./media/characters/elizabeth/front.svg",
  44446. extra: 1395/1298,
  44447. bottom: 54/1449
  44448. }
  44449. },
  44450. mouth: {
  44451. height: math.unit(1.97, "feet"),
  44452. name: "Mouth",
  44453. image: {
  44454. source: "./media/characters/elizabeth/mouth.svg"
  44455. }
  44456. },
  44457. foot: {
  44458. height: math.unit(1.17, "feet"),
  44459. name: "Foot",
  44460. image: {
  44461. source: "./media/characters/elizabeth/foot.svg"
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(5 + 8/12, "feet"),
  44469. default: true
  44470. },
  44471. {
  44472. name: "Minimacro",
  44473. height: math.unit(18, "feet")
  44474. },
  44475. {
  44476. name: "Macro",
  44477. height: math.unit(180, "feet")
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44483. {
  44484. front: {
  44485. height: math.unit(5 + 2/12, "feet"),
  44486. name: "Front",
  44487. image: {
  44488. source: "./media/characters/october-gossamer/front.svg",
  44489. extra: 505/454,
  44490. bottom: 7/512
  44491. }
  44492. },
  44493. back: {
  44494. height: math.unit(5 + 2/12, "feet"),
  44495. name: "Back",
  44496. image: {
  44497. source: "./media/characters/october-gossamer/back.svg",
  44498. extra: 501/454,
  44499. bottom: 11/512
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(5 + 2/12, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5, "feet"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/epiglottis/front.svg",
  44519. extra: 923/849,
  44520. bottom: 17/940
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Original Size",
  44527. height: math.unit(10, "inches")
  44528. },
  44529. {
  44530. name: "Human Size",
  44531. height: math.unit(5, "feet"),
  44532. default: true
  44533. },
  44534. {
  44535. name: "Big",
  44536. height: math.unit(25, "feet")
  44537. },
  44538. {
  44539. name: "Bigger",
  44540. height: math.unit(50, "feet")
  44541. },
  44542. {
  44543. name: "oh lawd",
  44544. height: math.unit(75, "feet")
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44550. {
  44551. front: {
  44552. height: math.unit(2 + 4/12, "feet"),
  44553. weight: math.unit(60, "lb"),
  44554. name: "Front",
  44555. image: {
  44556. source: "./media/characters/lerm/front.svg",
  44557. extra: 796/790,
  44558. bottom: 79/875
  44559. }
  44560. },
  44561. },
  44562. [
  44563. {
  44564. name: "Normal",
  44565. height: math.unit(2 + 4/12, "feet"),
  44566. default: true
  44567. },
  44568. ]
  44569. ))
  44570. characterMakers.push(() => makeCharacter(
  44571. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44572. {
  44573. front: {
  44574. height: math.unit(5.5, "feet"),
  44575. weight: math.unit(130, "lb"),
  44576. name: "Front",
  44577. image: {
  44578. source: "./media/characters/xena-nebadon/front.svg",
  44579. extra: 1828/1730,
  44580. bottom: 79/1907
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Tiny Puppy",
  44587. height: math.unit(3, "inches")
  44588. },
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(5.5, "feet"),
  44592. default: true
  44593. },
  44594. {
  44595. name: "Lotta Lady",
  44596. height: math.unit(12, "feet")
  44597. },
  44598. {
  44599. name: "Pretty Big",
  44600. height: math.unit(100, "feet")
  44601. },
  44602. {
  44603. name: "Big",
  44604. height: math.unit(500, "feet")
  44605. },
  44606. {
  44607. name: "Skyscraper Toys",
  44608. height: math.unit(2500, "feet")
  44609. },
  44610. {
  44611. name: "Plane Catcher",
  44612. height: math.unit(8, "miles")
  44613. },
  44614. {
  44615. name: "Planet Toys",
  44616. height: math.unit(15, "earths")
  44617. },
  44618. {
  44619. name: "Stardust",
  44620. height: math.unit(0.25, "galaxies")
  44621. },
  44622. {
  44623. name: "Snacks",
  44624. height: math.unit(70, "universes")
  44625. },
  44626. ]
  44627. ))
  44628. characterMakers.push(() => makeCharacter(
  44629. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44630. {
  44631. front: {
  44632. height: math.unit(1.6, "meters"),
  44633. weight: math.unit(60, "kg"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/bounty/front.svg",
  44637. extra: 1426/1308,
  44638. bottom: 15/1441
  44639. }
  44640. },
  44641. back: {
  44642. height: math.unit(1.6, "meters"),
  44643. weight: math.unit(60, "kg"),
  44644. name: "Back",
  44645. image: {
  44646. source: "./media/characters/bounty/back.svg",
  44647. extra: 1417/1307,
  44648. bottom: 8/1425
  44649. }
  44650. },
  44651. },
  44652. [
  44653. {
  44654. name: "Normal",
  44655. height: math.unit(1.6, "meters"),
  44656. default: true
  44657. },
  44658. {
  44659. name: "Macro",
  44660. height: math.unit(300, "meters")
  44661. },
  44662. ]
  44663. ))
  44664. characterMakers.push(() => makeCharacter(
  44665. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44666. {
  44667. front: {
  44668. height: math.unit(2 + 8/12, "feet"),
  44669. weight: math.unit(15, "lb"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/mochi/front.svg",
  44673. extra: 1022/852,
  44674. bottom: 435/1457
  44675. }
  44676. },
  44677. back: {
  44678. height: math.unit(2 + 8/12, "feet"),
  44679. weight: math.unit(15, "lb"),
  44680. name: "Back",
  44681. image: {
  44682. source: "./media/characters/mochi/back.svg",
  44683. extra: 1335/1119,
  44684. bottom: 39/1374
  44685. }
  44686. },
  44687. bird: {
  44688. height: math.unit(2 + 8/12, "feet"),
  44689. weight: math.unit(15, "lb"),
  44690. name: "Bird",
  44691. image: {
  44692. source: "./media/characters/mochi/bird.svg",
  44693. extra: 1251/1113,
  44694. bottom: 178/1429
  44695. }
  44696. },
  44697. kaiju: {
  44698. height: math.unit(154, "feet"),
  44699. weight: math.unit(1e7, "lb"),
  44700. name: "Kaiju",
  44701. image: {
  44702. source: "./media/characters/mochi/kaiju.svg",
  44703. extra: 460/324,
  44704. bottom: 40/500
  44705. }
  44706. },
  44707. head: {
  44708. height: math.unit(1.21, "feet"),
  44709. name: "Head",
  44710. image: {
  44711. source: "./media/characters/mochi/head.svg"
  44712. }
  44713. },
  44714. alternateTail: {
  44715. height: math.unit(2 + 8/12, "feet"),
  44716. weight: math.unit(45, "lb"),
  44717. name: "Alternate Tail",
  44718. image: {
  44719. source: "./media/characters/mochi/alternate-tail.svg",
  44720. extra: 139/76,
  44721. bottom: 45/184
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Micro",
  44728. height: math.unit(2, "inches")
  44729. },
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(2 + 8/12, "feet"),
  44733. default: true
  44734. },
  44735. {
  44736. name: "Macro",
  44737. height: math.unit(106, "feet")
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44743. {
  44744. front: {
  44745. height: math.unit(5.67, "feet"),
  44746. weight: math.unit(135, "lb"),
  44747. name: "Front",
  44748. image: {
  44749. source: "./media/characters/sarel/front.svg",
  44750. extra: 865/788,
  44751. bottom: 97/962
  44752. }
  44753. },
  44754. back: {
  44755. height: math.unit(5.67, "feet"),
  44756. weight: math.unit(135, "lb"),
  44757. name: "Back",
  44758. image: {
  44759. source: "./media/characters/sarel/back.svg",
  44760. extra: 857/777,
  44761. bottom: 32/889
  44762. }
  44763. },
  44764. chozoan: {
  44765. height: math.unit(5.67, "feet"),
  44766. weight: math.unit(135, "lb"),
  44767. name: "Chozoan",
  44768. image: {
  44769. source: "./media/characters/sarel/chozoan.svg",
  44770. extra: 865/788,
  44771. bottom: 97/962
  44772. }
  44773. },
  44774. current: {
  44775. height: math.unit(5.67, "feet"),
  44776. weight: math.unit(135, "lb"),
  44777. name: "Current",
  44778. image: {
  44779. source: "./media/characters/sarel/current.svg",
  44780. extra: 865/788,
  44781. bottom: 97/962
  44782. }
  44783. },
  44784. head: {
  44785. height: math.unit(1.77, "feet"),
  44786. name: "Head",
  44787. image: {
  44788. source: "./media/characters/sarel/head.svg"
  44789. }
  44790. },
  44791. claws: {
  44792. height: math.unit(1.8, "feet"),
  44793. name: "Claws",
  44794. image: {
  44795. source: "./media/characters/sarel/claws.svg"
  44796. }
  44797. },
  44798. clawsAlt: {
  44799. height: math.unit(1.8, "feet"),
  44800. name: "Claws-alt",
  44801. image: {
  44802. source: "./media/characters/sarel/claws-alt.svg"
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(5.67, "feet"),
  44810. default: true
  44811. },
  44812. ]
  44813. ))
  44814. characterMakers.push(() => makeCharacter(
  44815. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44816. {
  44817. front: {
  44818. height: math.unit(5500, "feet"),
  44819. name: "Front",
  44820. image: {
  44821. source: "./media/characters/alyonia/front.svg",
  44822. extra: 1200/1135,
  44823. bottom: 29/1229
  44824. }
  44825. },
  44826. back: {
  44827. height: math.unit(5500, "feet"),
  44828. name: "Back",
  44829. image: {
  44830. source: "./media/characters/alyonia/back.svg",
  44831. extra: 1205/1138,
  44832. bottom: 10/1215
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Small",
  44839. height: math.unit(10, "feet")
  44840. },
  44841. {
  44842. name: "Macro",
  44843. height: math.unit(500, "feet")
  44844. },
  44845. {
  44846. name: "Mega Macro",
  44847. height: math.unit(5500, "feet"),
  44848. default: true
  44849. },
  44850. {
  44851. name: "Mega Macro+",
  44852. height: math.unit(500000, "feet")
  44853. },
  44854. {
  44855. name: "Giga Macro",
  44856. height: math.unit(3000, "miles")
  44857. },
  44858. {
  44859. name: "Tera Macro",
  44860. height: math.unit(2.8e6, "miles")
  44861. },
  44862. {
  44863. name: "Galactic",
  44864. height: math.unit(120000, "lightyears")
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44870. {
  44871. werewolf: {
  44872. height: math.unit(8, "feet"),
  44873. weight: math.unit(425, "lb"),
  44874. name: "Werewolf",
  44875. image: {
  44876. source: "./media/characters/autumn/werewolf.svg",
  44877. extra: 2154/2031,
  44878. bottom: 160/2314
  44879. }
  44880. },
  44881. human: {
  44882. height: math.unit(5 + 8/12, "feet"),
  44883. weight: math.unit(150, "lb"),
  44884. name: "Human",
  44885. image: {
  44886. source: "./media/characters/autumn/human.svg",
  44887. extra: 1200/1149,
  44888. bottom: 30/1230
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(8, "feet"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(8 + 5/12, "feet"),
  44905. weight: math.unit(825, "lb"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/cobalt-charizard/front.svg",
  44909. extra: 1268/1155,
  44910. bottom: 122/1390
  44911. }
  44912. },
  44913. side: {
  44914. height: math.unit(8 + 5/12, "feet"),
  44915. weight: math.unit(825, "lb"),
  44916. name: "Side",
  44917. image: {
  44918. source: "./media/characters/cobalt-charizard/side.svg",
  44919. extra: 1348/1257,
  44920. bottom: 58/1406
  44921. }
  44922. },
  44923. gMax: {
  44924. height: math.unit(134 + 11/12, "feet"),
  44925. name: "G-Max",
  44926. image: {
  44927. source: "./media/characters/cobalt-charizard/g-max.svg",
  44928. extra: 1835/1541,
  44929. bottom: 151/1986
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Normal",
  44936. height: math.unit(8 + 5/12, "feet"),
  44937. default: true
  44938. },
  44939. ]
  44940. ))
  44941. characterMakers.push(() => makeCharacter(
  44942. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44943. {
  44944. front: {
  44945. height: math.unit(6 + 3/12, "feet"),
  44946. weight: math.unit(210, "lb"),
  44947. name: "Front",
  44948. image: {
  44949. source: "./media/characters/stella/front.svg",
  44950. extra: 3549/3335,
  44951. bottom: 51/3600
  44952. }
  44953. },
  44954. },
  44955. [
  44956. {
  44957. name: "Normal",
  44958. height: math.unit(6 + 3/12, "feet"),
  44959. default: true
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44965. {
  44966. front: {
  44967. height: math.unit(5, "feet"),
  44968. weight: math.unit(90, "lb"),
  44969. name: "Front",
  44970. image: {
  44971. source: "./media/characters/riley-bishop/front.svg",
  44972. extra: 1450/1428,
  44973. bottom: 152/1602
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(5, "feet"),
  44981. default: true
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44987. {
  44988. side: {
  44989. height: math.unit(8 + 2/12, "feet"),
  44990. weight: math.unit(500, "kg"),
  44991. name: "Side",
  44992. image: {
  44993. source: "./media/characters/theo-arcanine/side.svg",
  44994. extra: 1342/1074,
  44995. bottom: 111/1453
  44996. }
  44997. },
  44998. },
  44999. [
  45000. {
  45001. name: "Normal",
  45002. height: math.unit(8 + 2/12, "feet"),
  45003. default: true
  45004. },
  45005. ]
  45006. ))
  45007. characterMakers.push(() => makeCharacter(
  45008. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45009. {
  45010. front: {
  45011. height: math.unit(4, "feet"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/kali/front.svg",
  45015. extra: 1921/1357,
  45016. bottom: 70/1991
  45017. }
  45018. },
  45019. },
  45020. [
  45021. {
  45022. name: "Normal",
  45023. height: math.unit(4, "feet"),
  45024. default: true
  45025. },
  45026. {
  45027. name: "Macro",
  45028. height: math.unit(32, "meters")
  45029. },
  45030. {
  45031. name: "Macro+",
  45032. height: math.unit(150, "meters")
  45033. },
  45034. {
  45035. name: "Megamacro",
  45036. height: math.unit(7500, "meters")
  45037. },
  45038. {
  45039. name: "Megamacro+",
  45040. height: math.unit(80, "kilometers")
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45046. {
  45047. side: {
  45048. height: math.unit(5 + 11/12, "feet"),
  45049. weight: math.unit(236, "lb"),
  45050. name: "Side",
  45051. image: {
  45052. source: "./media/characters/gapp/side.svg",
  45053. extra: 775/340,
  45054. bottom: 58/833
  45055. }
  45056. },
  45057. mouth: {
  45058. height: math.unit(2.98, "feet"),
  45059. name: "Mouth",
  45060. image: {
  45061. source: "./media/characters/gapp/mouth.svg"
  45062. }
  45063. },
  45064. },
  45065. [
  45066. {
  45067. name: "Normal",
  45068. height: math.unit(5 + 1/12, "feet"),
  45069. default: true
  45070. },
  45071. ]
  45072. ))
  45073. characterMakers.push(() => makeCharacter(
  45074. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45075. {
  45076. front: {
  45077. height: math.unit(6, "feet"),
  45078. name: "Front",
  45079. image: {
  45080. source: "./media/characters/persephone/front.svg",
  45081. extra: 1895/1717,
  45082. bottom: 96/1991
  45083. }
  45084. },
  45085. back: {
  45086. height: math.unit(6, "feet"),
  45087. name: "Back",
  45088. image: {
  45089. source: "./media/characters/persephone/back.svg",
  45090. extra: 1868/1679,
  45091. bottom: 26/1894
  45092. }
  45093. },
  45094. casual: {
  45095. height: math.unit(6, "feet"),
  45096. name: "Casual",
  45097. image: {
  45098. source: "./media/characters/persephone/casual.svg",
  45099. extra: 1713/1541,
  45100. bottom: 76/1789
  45101. }
  45102. },
  45103. },
  45104. [
  45105. {
  45106. name: "Human Size",
  45107. height: math.unit(6, "feet")
  45108. },
  45109. {
  45110. name: "Big Steppy",
  45111. height: math.unit(600, "meters"),
  45112. default: true
  45113. },
  45114. {
  45115. name: "Galaxy Brain",
  45116. height: math.unit(1, "zettameter")
  45117. },
  45118. ]
  45119. ))
  45120. characterMakers.push(() => makeCharacter(
  45121. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45122. {
  45123. front: {
  45124. height: math.unit(1.85, "meters"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/riley-foxthing/front.svg",
  45128. extra: 1495/1354,
  45129. bottom: 122/1617
  45130. }
  45131. },
  45132. frontAlt: {
  45133. height: math.unit(1.85, "meters"),
  45134. name: "Front (Alt)",
  45135. image: {
  45136. source: "./media/characters/riley-foxthing/front-alt.svg",
  45137. extra: 1572/1389,
  45138. bottom: 116/1688
  45139. }
  45140. },
  45141. },
  45142. [
  45143. {
  45144. name: "Normal Sized",
  45145. height: math.unit(1.85, "meters"),
  45146. default: true
  45147. },
  45148. {
  45149. name: "Quite Sizable",
  45150. height: math.unit(5, "meters")
  45151. },
  45152. {
  45153. name: "Rather Large",
  45154. height: math.unit(20, "meters")
  45155. },
  45156. {
  45157. name: "Macro",
  45158. height: math.unit(450, "meters")
  45159. },
  45160. {
  45161. name: "Giga",
  45162. height: math.unit(5, "km")
  45163. },
  45164. ]
  45165. ))
  45166. characterMakers.push(() => makeCharacter(
  45167. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45168. {
  45169. front: {
  45170. height: math.unit(6, "feet"),
  45171. weight: math.unit(200, "lb"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/blizzard/front.svg",
  45175. extra: 1136/990,
  45176. bottom: 136/1272
  45177. }
  45178. },
  45179. back: {
  45180. height: math.unit(6, "feet"),
  45181. weight: math.unit(200, "lb"),
  45182. name: "Back",
  45183. image: {
  45184. source: "./media/characters/blizzard/back.svg",
  45185. extra: 1175/1034,
  45186. bottom: 97/1272
  45187. }
  45188. },
  45189. sitting: {
  45190. height: math.unit(3.725, "feet"),
  45191. weight: math.unit(200, "lb"),
  45192. name: "Sitting",
  45193. image: {
  45194. source: "./media/characters/blizzard/sitting.svg",
  45195. extra: 581/485,
  45196. bottom: 90/671
  45197. }
  45198. },
  45199. frontWizard: {
  45200. height: math.unit(7.9, "feet"),
  45201. weight: math.unit(200, "lb"),
  45202. name: "Front (Wizard)",
  45203. image: {
  45204. source: "./media/characters/blizzard/front-wizard.svg"
  45205. }
  45206. },
  45207. backWizard: {
  45208. height: math.unit(7.9, "feet"),
  45209. weight: math.unit(200, "lb"),
  45210. name: "Back (Wizard)",
  45211. image: {
  45212. source: "./media/characters/blizzard/back-wizard.svg"
  45213. }
  45214. },
  45215. frontNsfw: {
  45216. height: math.unit(6, "feet"),
  45217. weight: math.unit(200, "lb"),
  45218. name: "Front (NSFW)",
  45219. image: {
  45220. source: "./media/characters/blizzard/front-nsfw.svg",
  45221. extra: 1136/990,
  45222. bottom: 136/1272
  45223. }
  45224. },
  45225. backNsfw: {
  45226. height: math.unit(6, "feet"),
  45227. weight: math.unit(200, "lb"),
  45228. name: "Back (NSFW)",
  45229. image: {
  45230. source: "./media/characters/blizzard/back-nsfw.svg",
  45231. extra: 1175/1034,
  45232. bottom: 97/1272
  45233. }
  45234. },
  45235. sittingNsfw: {
  45236. height: math.unit(3.725, "feet"),
  45237. weight: math.unit(200, "lb"),
  45238. name: "Sitting (NSFW)",
  45239. image: {
  45240. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45241. extra: 581/485,
  45242. bottom: 90/671
  45243. }
  45244. },
  45245. wizardFrontNsfw: {
  45246. height: math.unit(7.9, "feet"),
  45247. weight: math.unit(200, "lb"),
  45248. name: "Wizard (Front, NSFW)",
  45249. image: {
  45250. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(6, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45264. {
  45265. front: {
  45266. height: math.unit(5 + 2/12, "feet"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/lumi/front.svg",
  45270. extra: 1328/1268,
  45271. bottom: 103/1431
  45272. }
  45273. },
  45274. back: {
  45275. height: math.unit(5 + 2/12, "feet"),
  45276. name: "Back",
  45277. image: {
  45278. source: "./media/characters/lumi/back.svg",
  45279. extra: 1381/1327,
  45280. bottom: 43/1424
  45281. }
  45282. },
  45283. },
  45284. [
  45285. {
  45286. name: "Normal",
  45287. height: math.unit(5 + 2/12, "feet"),
  45288. default: true
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(5 + 9/12, "feet"),
  45297. name: "Front",
  45298. image: {
  45299. source: "./media/characters/aliya-cotton/front.svg",
  45300. extra: 577/564,
  45301. bottom: 29/606
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Normal",
  45308. height: math.unit(5 + 9/12, "feet"),
  45309. default: true
  45310. },
  45311. ]
  45312. ))
  45313. characterMakers.push(() => makeCharacter(
  45314. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45315. {
  45316. front: {
  45317. height: math.unit(2.7, "meters"),
  45318. weight: math.unit(25000, "lb"),
  45319. name: "Front",
  45320. image: {
  45321. source: "./media/characters/noah-luxray/front.svg",
  45322. extra: 1644/825,
  45323. bottom: 339/1983
  45324. }
  45325. },
  45326. side: {
  45327. height: math.unit(2.97, "meters"),
  45328. weight: math.unit(25000, "lb"),
  45329. name: "Side",
  45330. image: {
  45331. source: "./media/characters/noah-luxray/side.svg",
  45332. extra: 1319/650,
  45333. bottom: 163/1482
  45334. }
  45335. },
  45336. dick: {
  45337. height: math.unit(7.4, "feet"),
  45338. weight: math.unit(2500, "lb"),
  45339. name: "Dick",
  45340. image: {
  45341. source: "./media/characters/noah-luxray/dick.svg"
  45342. }
  45343. },
  45344. dickAlt: {
  45345. height: math.unit(10.83, "feet"),
  45346. weight: math.unit(2500, "lb"),
  45347. name: "Dick-alt",
  45348. image: {
  45349. source: "./media/characters/noah-luxray/dick-alt.svg"
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "BIG",
  45356. height: math.unit(2.7, "meters"),
  45357. default: true
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45363. {
  45364. standing: {
  45365. height: math.unit(183, "cm"),
  45366. weight: math.unit(68, "kg"),
  45367. name: "Standing",
  45368. image: {
  45369. source: "./media/characters/arion/standing.svg",
  45370. extra: 1869/1807,
  45371. bottom: 93/1962
  45372. }
  45373. },
  45374. reclining: {
  45375. height: math.unit(70.5, "cm"),
  45376. weight: math.unit(68, "lb"),
  45377. name: "Reclining",
  45378. image: {
  45379. source: "./media/characters/arion/reclining.svg",
  45380. extra: 937/870,
  45381. bottom: 63/1000
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Colossus Size, Low",
  45388. height: math.unit(33, "meters"),
  45389. default: true
  45390. },
  45391. {
  45392. name: "Colossus Size, Mid",
  45393. height: math.unit(52, "meters")
  45394. },
  45395. {
  45396. name: "Colossus Size, High",
  45397. height: math.unit(60, "meters")
  45398. },
  45399. {
  45400. name: "Titan Size, Low",
  45401. height: math.unit(91, "meters"),
  45402. },
  45403. {
  45404. name: "Titan Size, Mid",
  45405. height: math.unit(122, "meters")
  45406. },
  45407. {
  45408. name: "Titan Size, High",
  45409. height: math.unit(162, "meters")
  45410. },
  45411. ]
  45412. ))
  45413. characterMakers.push(() => makeCharacter(
  45414. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45415. {
  45416. front: {
  45417. height: math.unit(53, "meters"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/stellar-marbey/front.svg",
  45421. extra: 1913/1805,
  45422. bottom: 92/2005
  45423. }
  45424. },
  45425. back: {
  45426. height: math.unit(53, "meters"),
  45427. name: "Back",
  45428. image: {
  45429. source: "./media/characters/stellar-marbey/back.svg",
  45430. extra: 1960/1851,
  45431. bottom: 28/1988
  45432. }
  45433. },
  45434. mouth: {
  45435. height: math.unit(3.5, "meters"),
  45436. name: "Mouth",
  45437. image: {
  45438. source: "./media/characters/stellar-marbey/mouth.svg"
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Macro",
  45445. height: math.unit(53, "meters"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(8 + 1/12, "feet"),
  45455. weight: math.unit(233, "lb"),
  45456. name: "Front",
  45457. image: {
  45458. source: "./media/characters/matsu/front.svg",
  45459. extra: 832/772,
  45460. bottom: 40/872
  45461. }
  45462. },
  45463. back: {
  45464. height: math.unit(8 + 1/12, "feet"),
  45465. weight: math.unit(233, "lb"),
  45466. name: "Back",
  45467. image: {
  45468. source: "./media/characters/matsu/back.svg",
  45469. extra: 839/780,
  45470. bottom: 47/886
  45471. }
  45472. },
  45473. },
  45474. [
  45475. {
  45476. name: "Normal",
  45477. height: math.unit(8 + 1/12, "feet"),
  45478. default: true
  45479. },
  45480. ]
  45481. ))
  45482. characterMakers.push(() => makeCharacter(
  45483. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45484. {
  45485. front: {
  45486. height: math.unit(4, "feet"),
  45487. weight: math.unit(148, "lb"),
  45488. name: "Front",
  45489. image: {
  45490. source: "./media/characters/thiz/front.svg",
  45491. extra: 1913/1748,
  45492. bottom: 62/1975
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(4, "feet"),
  45500. default: true
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(7 + 6/12, "feet"),
  45509. weight: math.unit(267, "lb"),
  45510. name: "Front",
  45511. image: {
  45512. source: "./media/characters/marcel/front.svg",
  45513. extra: 1221/1096,
  45514. bottom: 76/1297
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(7 + 6/12, "feet"),
  45522. default: true
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45528. {
  45529. side: {
  45530. height: math.unit(42, "meters"),
  45531. name: "Side",
  45532. image: {
  45533. source: "./media/characters/flake/side.svg",
  45534. extra: 1525/1306,
  45535. bottom: 209/1734
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(42, "meters"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45549. {
  45550. dressed: {
  45551. height: math.unit(6 + 4/12, "feet"),
  45552. weight: math.unit(520, "lb"),
  45553. name: "Dressed",
  45554. image: {
  45555. source: "./media/characters/someonne/dressed.svg",
  45556. extra: 1020/1010,
  45557. bottom: 178/1198
  45558. }
  45559. },
  45560. undressed: {
  45561. height: math.unit(6 + 4/12, "feet"),
  45562. weight: math.unit(520, "lb"),
  45563. name: "Undressed",
  45564. image: {
  45565. source: "./media/characters/someonne/undressed.svg",
  45566. extra: 1019/1014,
  45567. bottom: 169/1188
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(6 + 4/12, "feet"),
  45575. default: true
  45576. },
  45577. ]
  45578. ))
  45579. characterMakers.push(() => makeCharacter(
  45580. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45581. {
  45582. front: {
  45583. height: math.unit(3, "feet"),
  45584. weight: math.unit(30, "lb"),
  45585. name: "Front",
  45586. image: {
  45587. source: "./media/characters/till/front.svg",
  45588. extra: 892/823,
  45589. bottom: 55/947
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(3, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(9 + 8/12, "feet"),
  45606. weight: math.unit(800, "lb"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/sydney-heki/front.svg",
  45610. extra: 1360/1300,
  45611. bottom: 22/1382
  45612. }
  45613. },
  45614. back: {
  45615. height: math.unit(9 + 8/12, "feet"),
  45616. weight: math.unit(800, "lb"),
  45617. name: "Back",
  45618. image: {
  45619. source: "./media/characters/sydney-heki/back.svg",
  45620. extra: 1356/1293,
  45621. bottom: 12/1368
  45622. }
  45623. },
  45624. frontDressed: {
  45625. height: math.unit(9 + 8/12, "feet"),
  45626. weight: math.unit(800, "lb"),
  45627. name: "Front-dressed",
  45628. image: {
  45629. source: "./media/characters/sydney-heki/front-dressed.svg",
  45630. extra: 1360/1300,
  45631. bottom: 22/1382
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Normal",
  45638. height: math.unit(9 + 8/12, "feet"),
  45639. default: true
  45640. },
  45641. {
  45642. name: "Macro",
  45643. height: math.unit(500, "feet")
  45644. },
  45645. {
  45646. name: "Megamacro",
  45647. height: math.unit(3.6, "miles")
  45648. },
  45649. ]
  45650. ))
  45651. characterMakers.push(() => makeCharacter(
  45652. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45653. {
  45654. front: {
  45655. height: math.unit(200, "cm"),
  45656. weight: math.unit(250, "lb"),
  45657. name: "Front",
  45658. image: {
  45659. source: "./media/characters/fowler-karlsson/front.svg",
  45660. extra: 897/845,
  45661. bottom: 123/1020
  45662. }
  45663. },
  45664. back: {
  45665. height: math.unit(200, "cm"),
  45666. weight: math.unit(250, "lb"),
  45667. name: "Back",
  45668. image: {
  45669. source: "./media/characters/fowler-karlsson/back.svg",
  45670. extra: 999/944,
  45671. bottom: 26/1025
  45672. }
  45673. },
  45674. dick: {
  45675. height: math.unit(1.92, "feet"),
  45676. weight: math.unit(150, "lb"),
  45677. name: "Dick",
  45678. image: {
  45679. source: "./media/characters/fowler-karlsson/dick.svg"
  45680. }
  45681. },
  45682. },
  45683. [
  45684. {
  45685. name: "Normal",
  45686. height: math.unit(200, "cm"),
  45687. default: true
  45688. },
  45689. {
  45690. name: "Smaller Macro",
  45691. height: math.unit(90, "m")
  45692. },
  45693. {
  45694. name: "Macro",
  45695. height: math.unit(150, "m")
  45696. },
  45697. {
  45698. name: "Bigger Macro",
  45699. height: math.unit(300, "m")
  45700. },
  45701. ]
  45702. ))
  45703. characterMakers.push(() => makeCharacter(
  45704. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45705. {
  45706. side: {
  45707. height: math.unit(8 + 2/12, "feet"),
  45708. weight: math.unit(1, "tonne"),
  45709. name: "Side",
  45710. image: {
  45711. source: "./media/characters/rylide/side.svg",
  45712. extra: 1318/1034,
  45713. bottom: 106/1424
  45714. }
  45715. },
  45716. sitting: {
  45717. height: math.unit(303, "cm"),
  45718. weight: math.unit(1, "tonne"),
  45719. name: "Sitting",
  45720. image: {
  45721. source: "./media/characters/rylide/sitting.svg",
  45722. extra: 1303/1103,
  45723. bottom: 36/1339
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(8 + 2/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(5 + 10/12, "feet"),
  45740. weight: math.unit(160, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/pudask/front.svg",
  45744. extra: 1616/1590,
  45745. bottom: 161/1777
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Ferret Height",
  45752. height: math.unit(2 + 5/12, "feet")
  45753. },
  45754. {
  45755. name: "Canon Height",
  45756. height: math.unit(5 + 10/12, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(3 + 6/12, "feet"),
  45766. weight: math.unit(60, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/ramita/front.svg",
  45770. extra: 1402/1232,
  45771. bottom: 62/1464
  45772. }
  45773. },
  45774. dressed: {
  45775. height: math.unit(3 + 6/12, "feet"),
  45776. weight: math.unit(60, "lb"),
  45777. name: "Dressed",
  45778. image: {
  45779. source: "./media/characters/ramita/dressed.svg",
  45780. extra: 1534/1249,
  45781. bottom: 50/1584
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(3 + 6/12, "feet"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(8, "feet"),
  45798. name: "Front",
  45799. image: {
  45800. source: "./media/characters/ark/front.svg",
  45801. extra: 772/693,
  45802. bottom: 45/817
  45803. }
  45804. },
  45805. },
  45806. [
  45807. {
  45808. name: "Normal",
  45809. height: math.unit(8, "feet"),
  45810. default: true
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45816. {
  45817. front: {
  45818. height: math.unit(6, "feet"),
  45819. weight: math.unit(250, "lb"),
  45820. volume: math.unit(5/8, "gallons"),
  45821. name: "Front",
  45822. image: {
  45823. source: "./media/characters/ludwig-horn/front.svg",
  45824. extra: 1782/1635,
  45825. bottom: 96/1878
  45826. }
  45827. },
  45828. back: {
  45829. height: math.unit(6, "feet"),
  45830. weight: math.unit(250, "lb"),
  45831. volume: math.unit(5/8, "gallons"),
  45832. name: "Back",
  45833. image: {
  45834. source: "./media/characters/ludwig-horn/back.svg",
  45835. extra: 1874/1729,
  45836. bottom: 27/1901
  45837. }
  45838. },
  45839. dick: {
  45840. height: math.unit(1.05, "feet"),
  45841. weight: math.unit(15, "lb"),
  45842. volume: math.unit(5/8, "gallons"),
  45843. name: "Dick",
  45844. image: {
  45845. source: "./media/characters/ludwig-horn/dick.svg"
  45846. }
  45847. },
  45848. },
  45849. [
  45850. {
  45851. name: "Small",
  45852. height: math.unit(6, "feet")
  45853. },
  45854. {
  45855. name: "Typical",
  45856. height: math.unit(12, "feet"),
  45857. default: true
  45858. },
  45859. {
  45860. name: "Building",
  45861. height: math.unit(80, "feet")
  45862. },
  45863. {
  45864. name: "Town",
  45865. height: math.unit(800, "feet")
  45866. },
  45867. {
  45868. name: "Kingdom",
  45869. height: math.unit(80000, "feet")
  45870. },
  45871. {
  45872. name: "Planet",
  45873. height: math.unit(8000000, "feet")
  45874. },
  45875. {
  45876. name: "Universe",
  45877. height: math.unit(8000000000, "feet")
  45878. },
  45879. {
  45880. name: "Transcended",
  45881. height: math.unit(8e27, "feet")
  45882. },
  45883. ]
  45884. ))
  45885. characterMakers.push(() => makeCharacter(
  45886. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45887. {
  45888. front: {
  45889. height: math.unit(5, "feet"),
  45890. weight: math.unit(50, "kg"),
  45891. name: "Front",
  45892. image: {
  45893. source: "./media/characters/biot-avery/front.svg",
  45894. extra: 1295/1232,
  45895. bottom: 86/1381
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(5, "feet"),
  45903. default: true
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(6, "feet"),
  45912. name: "Front",
  45913. image: {
  45914. source: "./media/characters/kitsune-kiro/front.svg",
  45915. extra: 1270/1158,
  45916. bottom: 42/1312
  45917. }
  45918. },
  45919. frontAlt: {
  45920. height: math.unit(6, "feet"),
  45921. name: "Front-alt",
  45922. image: {
  45923. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45924. extra: 1130/1081,
  45925. bottom: 36/1166
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Smol",
  45932. height: math.unit(3, "feet")
  45933. },
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(6, "feet"),
  45937. default: true
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(6, "feet"),
  45946. weight: math.unit(125, "lb"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/jack-thatcher/front.svg",
  45950. extra: 1474/1370,
  45951. bottom: 26/1500
  45952. }
  45953. },
  45954. back: {
  45955. height: math.unit(6, "feet"),
  45956. weight: math.unit(125, "lb"),
  45957. name: "Back",
  45958. image: {
  45959. source: "./media/characters/jack-thatcher/back.svg",
  45960. extra: 1489/1384,
  45961. bottom: 18/1507
  45962. }
  45963. },
  45964. },
  45965. [
  45966. {
  45967. name: "Normal",
  45968. height: math.unit(6, "feet"),
  45969. default: true
  45970. },
  45971. {
  45972. name: "Macro",
  45973. height: math.unit(75, "feet")
  45974. },
  45975. {
  45976. name: "Macro-er",
  45977. height: math.unit(250, "feet")
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(7, "feet"),
  45986. weight: math.unit(110, "kg"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/max-hyper/front.svg",
  45990. extra: 1969/1881,
  45991. bottom: 49/2018
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Normal",
  45998. height: math.unit(7, "feet"),
  45999. default: true
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(5 + 5/12, "feet"),
  46008. weight: math.unit(160, "lb"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/spook/front.svg",
  46012. extra: 794/791,
  46013. bottom: 54/848
  46014. }
  46015. },
  46016. back: {
  46017. height: math.unit(5 + 5/12, "feet"),
  46018. weight: math.unit(160, "lb"),
  46019. name: "Back",
  46020. image: {
  46021. source: "./media/characters/spook/back.svg",
  46022. extra: 812/798,
  46023. bottom: 32/844
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(5 + 5/12, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46037. {
  46038. front: {
  46039. height: math.unit(18, "feet"),
  46040. name: "Front",
  46041. image: {
  46042. source: "./media/characters/xeaduulix/front.svg",
  46043. extra: 1380/1166,
  46044. bottom: 110/1490
  46045. }
  46046. },
  46047. back: {
  46048. height: math.unit(18, "feet"),
  46049. name: "Back",
  46050. image: {
  46051. source: "./media/characters/xeaduulix/back.svg",
  46052. extra: 1592/1170,
  46053. bottom: 128/1720
  46054. }
  46055. },
  46056. frontNsfw: {
  46057. height: math.unit(18, "feet"),
  46058. name: "Front (NSFW)",
  46059. image: {
  46060. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46061. extra: 1380/1166,
  46062. bottom: 110/1490
  46063. }
  46064. },
  46065. backNsfw: {
  46066. height: math.unit(18, "feet"),
  46067. name: "Back (NSFW)",
  46068. image: {
  46069. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46070. extra: 1592/1170,
  46071. bottom: 128/1720
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Normal",
  46078. height: math.unit(18, "feet"),
  46079. default: true
  46080. },
  46081. ]
  46082. ))
  46083. characterMakers.push(() => makeCharacter(
  46084. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46085. {
  46086. spreadWings: {
  46087. height: math.unit(20, "feet"),
  46088. name: "Spread Wings",
  46089. image: {
  46090. source: "./media/characters/fledge/spread-wings.svg",
  46091. extra: 693/635,
  46092. bottom: 26/719
  46093. }
  46094. },
  46095. front: {
  46096. height: math.unit(20, "feet"),
  46097. name: "Front",
  46098. image: {
  46099. source: "./media/characters/fledge/front.svg",
  46100. extra: 684/637,
  46101. bottom: 18/702
  46102. }
  46103. },
  46104. frontAlt: {
  46105. height: math.unit(20, "feet"),
  46106. name: "Front (Alt)",
  46107. image: {
  46108. source: "./media/characters/fledge/front-alt.svg",
  46109. extra: 708/664,
  46110. bottom: 13/721
  46111. }
  46112. },
  46113. back: {
  46114. height: math.unit(20, "feet"),
  46115. name: "Back",
  46116. image: {
  46117. source: "./media/characters/fledge/back.svg",
  46118. extra: 718/634,
  46119. bottom: 22/740
  46120. }
  46121. },
  46122. head: {
  46123. height: math.unit(5.55, "feet"),
  46124. name: "Head",
  46125. image: {
  46126. source: "./media/characters/fledge/head.svg"
  46127. }
  46128. },
  46129. headAlt: {
  46130. height: math.unit(5.1, "feet"),
  46131. name: "Head (Alt)",
  46132. image: {
  46133. source: "./media/characters/fledge/head-alt.svg"
  46134. }
  46135. },
  46136. },
  46137. [
  46138. {
  46139. name: "Small",
  46140. height: math.unit(6 + 2/12, "feet")
  46141. },
  46142. {
  46143. name: "Big",
  46144. height: math.unit(20, "feet"),
  46145. default: true
  46146. },
  46147. {
  46148. name: "Giant",
  46149. height: math.unit(100, "feet")
  46150. },
  46151. {
  46152. name: "Macro",
  46153. height: math.unit(200, "feet")
  46154. },
  46155. ]
  46156. ))
  46157. characterMakers.push(() => makeCharacter(
  46158. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46159. {
  46160. front: {
  46161. height: math.unit(1, "meter"),
  46162. name: "Front",
  46163. image: {
  46164. source: "./media/characters/atlas-morenai/front.svg",
  46165. extra: 1275/1043,
  46166. bottom: 19/1294
  46167. }
  46168. },
  46169. back: {
  46170. height: math.unit(1, "meter"),
  46171. name: "Back",
  46172. image: {
  46173. source: "./media/characters/atlas-morenai/back.svg",
  46174. extra: 1141/1001,
  46175. bottom: 25/1166
  46176. }
  46177. },
  46178. },
  46179. [
  46180. {
  46181. name: "Normal",
  46182. height: math.unit(1, "meter"),
  46183. default: true
  46184. },
  46185. {
  46186. name: "Magic-Infused",
  46187. height: math.unit(5, "meters")
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(5, "meters"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/cintia/front.svg",
  46199. extra: 1312/1228,
  46200. bottom: 38/1350
  46201. }
  46202. },
  46203. back: {
  46204. height: math.unit(5, "meters"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/cintia/back.svg",
  46208. extra: 1260/1166,
  46209. bottom: 98/1358
  46210. }
  46211. },
  46212. frontDick: {
  46213. height: math.unit(5, "meters"),
  46214. name: "Front (Dick)",
  46215. image: {
  46216. source: "./media/characters/cintia/front-dick.svg",
  46217. extra: 1312/1228,
  46218. bottom: 38/1350
  46219. }
  46220. },
  46221. backDick: {
  46222. height: math.unit(5, "meters"),
  46223. name: "Back (Dick)",
  46224. image: {
  46225. source: "./media/characters/cintia/back-dick.svg",
  46226. extra: 1260/1166,
  46227. bottom: 98/1358
  46228. }
  46229. },
  46230. bust: {
  46231. height: math.unit(1.97, "meters"),
  46232. name: "Bust",
  46233. image: {
  46234. source: "./media/characters/cintia/bust.svg",
  46235. extra: 617/565,
  46236. bottom: 0/617
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Normal",
  46243. height: math.unit(5, "meters"),
  46244. default: true
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46250. {
  46251. side: {
  46252. height: math.unit(100, "feet"),
  46253. name: "Side",
  46254. image: {
  46255. source: "./media/characters/denora/side.svg",
  46256. extra: 875/803,
  46257. bottom: 9/884
  46258. }
  46259. },
  46260. },
  46261. [
  46262. {
  46263. name: "Standard",
  46264. height: math.unit(100, "feet"),
  46265. default: true
  46266. },
  46267. {
  46268. name: "Grand",
  46269. height: math.unit(1000, "feet")
  46270. },
  46271. {
  46272. name: "Conquering",
  46273. height: math.unit(10000, "feet")
  46274. },
  46275. ]
  46276. ))
  46277. characterMakers.push(() => makeCharacter(
  46278. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46279. {
  46280. dressed: {
  46281. height: math.unit(8 + 5/12, "feet"),
  46282. weight: math.unit(700, "lb"),
  46283. name: "Dressed",
  46284. image: {
  46285. source: "./media/characters/kiva/dressed.svg",
  46286. extra: 1102/1055,
  46287. bottom: 60/1162
  46288. }
  46289. },
  46290. nude: {
  46291. height: math.unit(8 + 5/12, "feet"),
  46292. weight: math.unit(700, "lb"),
  46293. name: "Nude",
  46294. image: {
  46295. source: "./media/characters/kiva/nude.svg",
  46296. extra: 1102/1055,
  46297. bottom: 60/1162
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "Base Height",
  46304. height: math.unit(8 + 5/12, "feet"),
  46305. default: true
  46306. },
  46307. {
  46308. name: "Macro",
  46309. height: math.unit(100, "feet")
  46310. },
  46311. {
  46312. name: "Max",
  46313. height: math.unit(3280, "feet")
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46319. {
  46320. front: {
  46321. height: math.unit(6 + 8/12, "feet"),
  46322. weight: math.unit(250, "lb"),
  46323. name: "Front",
  46324. image: {
  46325. source: "./media/characters/ztragon/front.svg",
  46326. extra: 1825/1684,
  46327. bottom: 98/1923
  46328. }
  46329. },
  46330. },
  46331. [
  46332. {
  46333. name: "Normal",
  46334. height: math.unit(6 + 8/12, "feet"),
  46335. default: true
  46336. },
  46337. {
  46338. name: "Macro",
  46339. height: math.unit(80, "feet")
  46340. },
  46341. ]
  46342. ))
  46343. characterMakers.push(() => makeCharacter(
  46344. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46345. {
  46346. front: {
  46347. height: math.unit(10.4, "feet"),
  46348. weight: math.unit(2, "tons"),
  46349. name: "Front",
  46350. image: {
  46351. source: "./media/characters/yesenia/front.svg",
  46352. extra: 1479/1474,
  46353. bottom: 233/1712
  46354. }
  46355. },
  46356. },
  46357. [
  46358. {
  46359. name: "Normal",
  46360. height: math.unit(10.4, "feet"),
  46361. default: true
  46362. },
  46363. ]
  46364. ))
  46365. characterMakers.push(() => makeCharacter(
  46366. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46367. {
  46368. normal: {
  46369. height: math.unit(6 + 1/12, "feet"),
  46370. weight: math.unit(180, "lb"),
  46371. name: "Normal",
  46372. image: {
  46373. source: "./media/characters/leanne-lycheborne/normal.svg",
  46374. extra: 1748/1660,
  46375. bottom: 98/1846
  46376. }
  46377. },
  46378. were: {
  46379. height: math.unit(12, "feet"),
  46380. weight: math.unit(1600, "lb"),
  46381. name: "Were",
  46382. image: {
  46383. source: "./media/characters/leanne-lycheborne/were.svg",
  46384. extra: 1485/1432,
  46385. bottom: 66/1551
  46386. }
  46387. },
  46388. },
  46389. [
  46390. {
  46391. name: "Normal",
  46392. height: math.unit(6 + 1/12, "feet"),
  46393. default: true
  46394. },
  46395. ]
  46396. ))
  46397. characterMakers.push(() => makeCharacter(
  46398. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46399. {
  46400. side: {
  46401. height: math.unit(13, "feet"),
  46402. name: "Side",
  46403. image: {
  46404. source: "./media/characters/kira-tyler/side.svg",
  46405. extra: 693/393,
  46406. bottom: 58/751
  46407. }
  46408. },
  46409. },
  46410. [
  46411. {
  46412. name: "Normal",
  46413. height: math.unit(13, "feet"),
  46414. default: true
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46420. {
  46421. front: {
  46422. height: math.unit(10.3, "feet"),
  46423. weight: math.unit(150, "lb"),
  46424. name: "Front",
  46425. image: {
  46426. source: "./media/characters/blaze/front.svg",
  46427. extra: 1378/1286,
  46428. bottom: 172/1550
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(10.3, "feet"),
  46436. default: true
  46437. },
  46438. ]
  46439. ))
  46440. characterMakers.push(() => makeCharacter(
  46441. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46442. {
  46443. side: {
  46444. height: math.unit(2, "meters"),
  46445. weight: math.unit(400, "kg"),
  46446. name: "Side",
  46447. image: {
  46448. source: "./media/characters/anu/side.svg",
  46449. extra: 506/394,
  46450. bottom: 18/524
  46451. }
  46452. },
  46453. },
  46454. [
  46455. {
  46456. name: "Humanoid",
  46457. height: math.unit(2, "meters")
  46458. },
  46459. {
  46460. name: "Normal",
  46461. height: math.unit(5, "meters"),
  46462. default: true
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46468. {
  46469. front: {
  46470. height: math.unit(5 + 5/12, "feet"),
  46471. weight: math.unit(170, "lb"),
  46472. name: "Front",
  46473. image: {
  46474. source: "./media/characters/synx-the-lynx/front.svg",
  46475. extra: 1893/1745,
  46476. bottom: 17/1910
  46477. }
  46478. },
  46479. side: {
  46480. height: math.unit(5 + 5/12, "feet"),
  46481. weight: math.unit(170, "lb"),
  46482. name: "Side",
  46483. image: {
  46484. source: "./media/characters/synx-the-lynx/side.svg",
  46485. extra: 1884/1740,
  46486. bottom: 39/1923
  46487. }
  46488. },
  46489. back: {
  46490. height: math.unit(5 + 5/12, "feet"),
  46491. weight: math.unit(170, "lb"),
  46492. name: "Back",
  46493. image: {
  46494. source: "./media/characters/synx-the-lynx/back.svg",
  46495. extra: 1903/1755,
  46496. bottom: 14/1917
  46497. }
  46498. },
  46499. },
  46500. [
  46501. {
  46502. name: "Normal",
  46503. height: math.unit(5 + 5/12, "feet"),
  46504. default: true
  46505. },
  46506. ]
  46507. ))
  46508. characterMakers.push(() => makeCharacter(
  46509. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46510. {
  46511. back: {
  46512. height: math.unit(15, "feet"),
  46513. name: "Back",
  46514. image: {
  46515. source: "./media/characters/nadezda-fex/back.svg",
  46516. extra: 1695/1481,
  46517. bottom: 25/1720
  46518. }
  46519. },
  46520. },
  46521. [
  46522. {
  46523. name: "Normal",
  46524. height: math.unit(15, "feet"),
  46525. default: true
  46526. },
  46527. {
  46528. name: "Macro",
  46529. height: math.unit(2.5, "miles")
  46530. },
  46531. {
  46532. name: "Goddess",
  46533. height: math.unit(2, "multiverses")
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46539. {
  46540. front: {
  46541. height: math.unit(216, "cm"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/lev/front.svg",
  46545. extra: 1728/1670,
  46546. bottom: 82/1810
  46547. }
  46548. },
  46549. back: {
  46550. height: math.unit(216, "cm"),
  46551. name: "Back",
  46552. image: {
  46553. source: "./media/characters/lev/back.svg",
  46554. extra: 1738/1675,
  46555. bottom: 24/1762
  46556. }
  46557. },
  46558. dressed: {
  46559. height: math.unit(216, "cm"),
  46560. name: "Dressed",
  46561. image: {
  46562. source: "./media/characters/lev/dressed.svg",
  46563. extra: 1397/1351,
  46564. bottom: 73/1470
  46565. }
  46566. },
  46567. head: {
  46568. height: math.unit(0.51, "meter"),
  46569. name: "Head",
  46570. image: {
  46571. source: "./media/characters/lev/head.svg"
  46572. }
  46573. },
  46574. },
  46575. [
  46576. {
  46577. name: "Normal",
  46578. height: math.unit(216, "cm"),
  46579. default: true
  46580. },
  46581. {
  46582. name: "Relatively Macro",
  46583. height: math.unit(80, "meters")
  46584. },
  46585. {
  46586. name: "Megamacro",
  46587. height: math.unit(21600, "meters")
  46588. },
  46589. {
  46590. name: "Megamacro+",
  46591. height: math.unit(64800, "meters")
  46592. },
  46593. ]
  46594. ))
  46595. characterMakers.push(() => makeCharacter(
  46596. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46597. {
  46598. front: {
  46599. height: math.unit(2, "meters"),
  46600. weight: math.unit(80, "kg"),
  46601. name: "Front",
  46602. image: {
  46603. source: "./media/characters/moka/front.svg",
  46604. extra: 1337/1255,
  46605. bottom: 58/1395
  46606. }
  46607. },
  46608. },
  46609. [
  46610. {
  46611. name: "Micro",
  46612. height: math.unit(15, "cm")
  46613. },
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(2, "meters"),
  46617. default: true
  46618. },
  46619. {
  46620. name: "Macro",
  46621. height: math.unit(20, "meters"),
  46622. },
  46623. ]
  46624. ))
  46625. characterMakers.push(() => makeCharacter(
  46626. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46627. {
  46628. front: {
  46629. height: math.unit(9, "feet"),
  46630. weight: math.unit(240, "lb"),
  46631. name: "Front",
  46632. image: {
  46633. source: "./media/characters/kuzco/front.svg",
  46634. extra: 1593/1487,
  46635. bottom: 32/1625
  46636. }
  46637. },
  46638. side: {
  46639. height: math.unit(9, "feet"),
  46640. weight: math.unit(240, "lb"),
  46641. name: "Side",
  46642. image: {
  46643. source: "./media/characters/kuzco/side.svg",
  46644. extra: 1575/1485,
  46645. bottom: 30/1605
  46646. }
  46647. },
  46648. back: {
  46649. height: math.unit(9, "feet"),
  46650. weight: math.unit(240, "lb"),
  46651. name: "Back",
  46652. image: {
  46653. source: "./media/characters/kuzco/back.svg",
  46654. extra: 1603/1514,
  46655. bottom: 14/1617
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Normal",
  46662. height: math.unit(9, "feet"),
  46663. default: true
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46669. {
  46670. side: {
  46671. height: math.unit(2, "meters"),
  46672. weight: math.unit(300, "kg"),
  46673. name: "Side",
  46674. image: {
  46675. source: "./media/characters/ceruleus/side.svg",
  46676. extra: 1068/974,
  46677. bottom: 126/1194
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(16, "meters"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(9, "feet"),
  46694. weight: math.unit(500, "kg"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/acouya/front.svg",
  46698. extra: 1660/1473,
  46699. bottom: 28/1688
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(9, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46713. {
  46714. front: {
  46715. height: math.unit(5 + 6/12, "feet"),
  46716. weight: math.unit(195, "lb"),
  46717. name: "Front",
  46718. image: {
  46719. source: "./media/characters/vant/front.svg",
  46720. extra: 1396/1320,
  46721. bottom: 20/1416
  46722. }
  46723. },
  46724. back: {
  46725. height: math.unit(5 + 6/12, "feet"),
  46726. weight: math.unit(195, "lb"),
  46727. name: "Back",
  46728. image: {
  46729. source: "./media/characters/vant/back.svg",
  46730. extra: 1396/1320,
  46731. bottom: 20/1416
  46732. }
  46733. },
  46734. maw: {
  46735. height: math.unit(0.75, "feet"),
  46736. name: "Maw",
  46737. image: {
  46738. source: "./media/characters/vant/maw.svg"
  46739. }
  46740. },
  46741. paw: {
  46742. height: math.unit(1.07, "feet"),
  46743. name: "Paw",
  46744. image: {
  46745. source: "./media/characters/vant/paw.svg"
  46746. }
  46747. },
  46748. },
  46749. [
  46750. {
  46751. name: "Micro",
  46752. height: math.unit(0.25, "inches")
  46753. },
  46754. {
  46755. name: "Normal",
  46756. height: math.unit(5 + 6/12, "feet"),
  46757. default: true
  46758. },
  46759. {
  46760. name: "Macro",
  46761. height: math.unit(75, "feet")
  46762. },
  46763. ]
  46764. ))
  46765. characterMakers.push(() => makeCharacter(
  46766. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46767. {
  46768. front: {
  46769. height: math.unit(30, "meters"),
  46770. weight: math.unit(363, "tons"),
  46771. name: "Front",
  46772. image: {
  46773. source: "./media/characters/ahra/front.svg",
  46774. extra: 1914/1814,
  46775. bottom: 46/1960
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Macro",
  46782. height: math.unit(30, "meters"),
  46783. default: true
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46789. {
  46790. undressed: {
  46791. height: math.unit(2, "m"),
  46792. weight: math.unit(250, "kg"),
  46793. name: "Undressed",
  46794. image: {
  46795. source: "./media/characters/coriander/undressed.svg",
  46796. extra: 1757/1606,
  46797. bottom: 107/1864
  46798. }
  46799. },
  46800. dressed: {
  46801. height: math.unit(2, "m"),
  46802. weight: math.unit(250, "kg"),
  46803. name: "Dressed",
  46804. image: {
  46805. source: "./media/characters/coriander/dressed.svg",
  46806. extra: 1757/1606,
  46807. bottom: 107/1864
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Normal",
  46814. height: math.unit(4, "meters"),
  46815. default: true
  46816. },
  46817. {
  46818. name: "XL",
  46819. height: math.unit(6, "meters")
  46820. },
  46821. {
  46822. name: "XXL",
  46823. height: math.unit(8, "meters")
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46829. {
  46830. front: {
  46831. height: math.unit(6, "feet"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/syrinx/front.svg",
  46835. extra: 1557/1259,
  46836. bottom: 171/1728
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(6 + 3/12, "feet"),
  46844. default: true
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(11 + 6/12, "feet"),
  46853. weight: math.unit(1.5, "tons"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/bor/front.svg",
  46857. extra: 1189/1109,
  46858. bottom: 170/1359
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(11 + 6/12, "feet"),
  46866. default: true
  46867. },
  46868. {
  46869. name: "Macro",
  46870. height: math.unit(32 + 9/12, "feet")
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46876. {
  46877. anthro: {
  46878. height: math.unit(9, "feet"),
  46879. weight: math.unit(2076, "lb"),
  46880. name: "Anthro",
  46881. image: {
  46882. source: "./media/characters/abacus/anthro.svg",
  46883. extra: 1540/1494,
  46884. bottom: 233/1773
  46885. }
  46886. },
  46887. pigeon: {
  46888. height: math.unit(1, "feet"),
  46889. name: "Pigeon",
  46890. image: {
  46891. source: "./media/characters/abacus/pigeon.svg",
  46892. extra: 528/525,
  46893. bottom: 46/574
  46894. }
  46895. },
  46896. },
  46897. [
  46898. {
  46899. name: "Normal",
  46900. height: math.unit(9, "feet"),
  46901. default: true
  46902. },
  46903. ]
  46904. ))
  46905. characterMakers.push(() => makeCharacter(
  46906. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46907. {
  46908. side: {
  46909. height: math.unit(6, "feet"),
  46910. name: "Side",
  46911. image: {
  46912. source: "./media/characters/delkhan/side.svg",
  46913. extra: 1884/1786,
  46914. bottom: 308/2192
  46915. }
  46916. },
  46917. head: {
  46918. height: math.unit(3.38, "feet"),
  46919. name: "Head",
  46920. image: {
  46921. source: "./media/characters/delkhan/head.svg"
  46922. }
  46923. },
  46924. },
  46925. [
  46926. {
  46927. name: "Normal",
  46928. height: math.unit(72, "feet"),
  46929. default: true
  46930. },
  46931. {
  46932. name: "Giant",
  46933. height: math.unit(172, "feet")
  46934. },
  46935. ]
  46936. ))
  46937. characterMakers.push(() => makeCharacter(
  46938. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46939. {
  46940. standing: {
  46941. height: math.unit(6, "feet"),
  46942. name: "Standing",
  46943. image: {
  46944. source: "./media/characters/euchidat/standing.svg",
  46945. extra: 1612/1553,
  46946. bottom: 116/1728
  46947. }
  46948. },
  46949. leaning: {
  46950. height: math.unit(6, "feet"),
  46951. name: "Leaning",
  46952. image: {
  46953. source: "./media/characters/euchidat/leaning.svg",
  46954. extra: 1719/1674,
  46955. bottom: 27/1746
  46956. }
  46957. },
  46958. },
  46959. [
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(175, "feet"),
  46963. default: true
  46964. },
  46965. {
  46966. name: "Megamacro",
  46967. height: math.unit(190, "miles")
  46968. },
  46969. {
  46970. name: "Gigamacro",
  46971. height: math.unit(190000, "miles")
  46972. },
  46973. ]
  46974. ))
  46975. characterMakers.push(() => makeCharacter(
  46976. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46977. {
  46978. front: {
  46979. height: math.unit(6, "feet"),
  46980. weight: math.unit(150, "lb"),
  46981. name: "Front",
  46982. image: {
  46983. source: "./media/characters/rebecca-stack/front.svg",
  46984. extra: 1256/1201,
  46985. bottom: 18/1274
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(5 + 8/12, "feet"),
  46993. default: true
  46994. },
  46995. {
  46996. name: "Demolitionist",
  46997. height: math.unit(200, "feet")
  46998. },
  46999. {
  47000. name: "Out of Control",
  47001. height: math.unit(2, "miles")
  47002. },
  47003. {
  47004. name: "Giga",
  47005. height: math.unit(7200, "miles")
  47006. },
  47007. ]
  47008. ))
  47009. characterMakers.push(() => makeCharacter(
  47010. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47011. {
  47012. front: {
  47013. height: math.unit(6, "feet"),
  47014. weight: math.unit(150, "lb"),
  47015. name: "Front",
  47016. image: {
  47017. source: "./media/characters/jenny-cartwright/front.svg",
  47018. extra: 1384/1376,
  47019. bottom: 58/1442
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(6 + 7/12, "feet"),
  47027. default: true
  47028. },
  47029. {
  47030. name: "Librarian",
  47031. height: math.unit(55, "feet")
  47032. },
  47033. {
  47034. name: "Sightseer",
  47035. height: math.unit(50, "miles")
  47036. },
  47037. {
  47038. name: "Giga",
  47039. height: math.unit(30000, "miles")
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47045. {
  47046. nude: {
  47047. height: math.unit(8, "feet"),
  47048. weight: math.unit(225, "lb"),
  47049. name: "Nude",
  47050. image: {
  47051. source: "./media/characters/marvy/nude.svg",
  47052. extra: 1900/1683,
  47053. bottom: 89/1989
  47054. }
  47055. },
  47056. dressed: {
  47057. height: math.unit(8, "feet"),
  47058. weight: math.unit(225, "lb"),
  47059. name: "Dressed",
  47060. image: {
  47061. source: "./media/characters/marvy/dressed.svg",
  47062. extra: 1900/1683,
  47063. bottom: 89/1989
  47064. }
  47065. },
  47066. head: {
  47067. height: math.unit(2.85, "feet"),
  47068. name: "Head",
  47069. image: {
  47070. source: "./media/characters/marvy/head.svg"
  47071. }
  47072. },
  47073. },
  47074. [
  47075. {
  47076. name: "Normal",
  47077. height: math.unit(8, "feet"),
  47078. default: true
  47079. },
  47080. ]
  47081. ))
  47082. characterMakers.push(() => makeCharacter(
  47083. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47084. {
  47085. front: {
  47086. height: math.unit(8, "feet"),
  47087. weight: math.unit(250, "lb"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/leah/front.svg",
  47091. extra: 1257/1149,
  47092. bottom: 109/1366
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(8, "feet"),
  47100. default: true
  47101. },
  47102. {
  47103. name: "Minimacro",
  47104. height: math.unit(40, "feet")
  47105. },
  47106. {
  47107. name: "Macro",
  47108. height: math.unit(124, "feet")
  47109. },
  47110. {
  47111. name: "Megamacro",
  47112. height: math.unit(850, "feet")
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47118. {
  47119. side: {
  47120. height: math.unit(13 + 6/12, "feet"),
  47121. weight: math.unit(3200, "lb"),
  47122. name: "Side",
  47123. image: {
  47124. source: "./media/characters/alvir/side.svg",
  47125. extra: 896/589,
  47126. bottom: 26/922
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(13 + 6/12, "feet"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(5 + 4/12, "feet"),
  47143. weight: math.unit(236, "lb"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/zaina-khalil/front.svg",
  47147. extra: 1533/1485,
  47148. bottom: 94/1627
  47149. }
  47150. },
  47151. side: {
  47152. height: math.unit(5 + 4/12, "feet"),
  47153. weight: math.unit(236, "lb"),
  47154. name: "Side",
  47155. image: {
  47156. source: "./media/characters/zaina-khalil/side.svg",
  47157. extra: 1537/1498,
  47158. bottom: 66/1603
  47159. }
  47160. },
  47161. back: {
  47162. height: math.unit(5 + 4/12, "feet"),
  47163. weight: math.unit(236, "lb"),
  47164. name: "Back",
  47165. image: {
  47166. source: "./media/characters/zaina-khalil/back.svg",
  47167. extra: 1546/1494,
  47168. bottom: 89/1635
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Normal",
  47175. height: math.unit(5 + 4/12, "feet"),
  47176. default: true
  47177. },
  47178. ]
  47179. ))
  47180. characterMakers.push(() => makeCharacter(
  47181. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47182. {
  47183. side: {
  47184. height: math.unit(12, "feet"),
  47185. weight: math.unit(4000, "lb"),
  47186. name: "Side",
  47187. image: {
  47188. source: "./media/characters/terry/side.svg",
  47189. extra: 1518/1439,
  47190. bottom: 149/1667
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(12, "feet"),
  47198. default: true
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47204. {
  47205. front: {
  47206. height: math.unit(12, "feet"),
  47207. weight: math.unit(1500, "lb"),
  47208. name: "Front",
  47209. image: {
  47210. source: "./media/characters/kahea/front.svg",
  47211. extra: 1722/1617,
  47212. bottom: 179/1901
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(12, "feet"),
  47220. default: true
  47221. },
  47222. ]
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47226. {
  47227. demonFront: {
  47228. height: math.unit(36, "feet"),
  47229. name: "Front",
  47230. image: {
  47231. source: "./media/characters/alex-xuria/demon-front.svg",
  47232. extra: 1705/1673,
  47233. bottom: 198/1903
  47234. },
  47235. form: "demon",
  47236. default: true
  47237. },
  47238. demonBack: {
  47239. height: math.unit(36, "feet"),
  47240. name: "Back",
  47241. image: {
  47242. source: "./media/characters/alex-xuria/demon-back.svg",
  47243. extra: 1725/1693,
  47244. bottom: 70/1795
  47245. },
  47246. form: "demon"
  47247. },
  47248. demonHead: {
  47249. height: math.unit(2.14, "meters"),
  47250. name: "Head",
  47251. image: {
  47252. source: "./media/characters/alex-xuria/demon-head.svg"
  47253. },
  47254. form: "demon"
  47255. },
  47256. demonHand: {
  47257. height: math.unit(1.61, "meters"),
  47258. name: "Hand",
  47259. image: {
  47260. source: "./media/characters/alex-xuria/demon-hand.svg"
  47261. },
  47262. form: "demon"
  47263. },
  47264. demonPaw: {
  47265. height: math.unit(1.35, "meters"),
  47266. name: "Paw",
  47267. image: {
  47268. source: "./media/characters/alex-xuria/demon-paw.svg"
  47269. },
  47270. form: "demon"
  47271. },
  47272. demonFoot: {
  47273. height: math.unit(2.2, "meters"),
  47274. name: "Foot",
  47275. image: {
  47276. source: "./media/characters/alex-xuria/demon-foot.svg"
  47277. },
  47278. form: "demon"
  47279. },
  47280. demonCock: {
  47281. height: math.unit(1.74, "meters"),
  47282. name: "Cock",
  47283. image: {
  47284. source: "./media/characters/alex-xuria/demon-cock.svg"
  47285. },
  47286. form: "demon"
  47287. },
  47288. demonTailClosed: {
  47289. height: math.unit(1.47, "meters"),
  47290. name: "Tail (Closed)",
  47291. image: {
  47292. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47293. },
  47294. form: "demon"
  47295. },
  47296. demonTailOpen: {
  47297. height: math.unit(2.85, "meters"),
  47298. name: "Tail (Open)",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47301. },
  47302. form: "demon"
  47303. },
  47304. incubusFront: {
  47305. height: math.unit(12, "feet"),
  47306. name: "Front",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/incubus-front.svg",
  47309. extra: 1754/1677,
  47310. bottom: 125/1879
  47311. },
  47312. form: "incubus",
  47313. default: true
  47314. },
  47315. incubusBack: {
  47316. height: math.unit(12, "feet"),
  47317. name: "Back",
  47318. image: {
  47319. source: "./media/characters/alex-xuria/incubus-back.svg",
  47320. extra: 1702/1647,
  47321. bottom: 30/1732
  47322. },
  47323. form: "incubus"
  47324. },
  47325. incubusHead: {
  47326. height: math.unit(3.45, "feet"),
  47327. name: "Head",
  47328. image: {
  47329. source: "./media/characters/alex-xuria/incubus-head.svg"
  47330. },
  47331. form: "incubus"
  47332. },
  47333. rabbitFront: {
  47334. height: math.unit(6, "feet"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47338. extra: 1369/1349,
  47339. bottom: 45/1414
  47340. },
  47341. form: "rabbit",
  47342. default: true
  47343. },
  47344. rabbitSide: {
  47345. height: math.unit(6, "feet"),
  47346. name: "Side",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47349. extra: 1370/1356,
  47350. bottom: 37/1407
  47351. },
  47352. form: "rabbit"
  47353. },
  47354. rabbitBack: {
  47355. height: math.unit(6, "feet"),
  47356. name: "Back",
  47357. image: {
  47358. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47359. extra: 1375/1358,
  47360. bottom: 43/1418
  47361. },
  47362. form: "rabbit"
  47363. },
  47364. },
  47365. [
  47366. {
  47367. name: "Normal",
  47368. height: math.unit(6, "feet"),
  47369. default: true,
  47370. form: "rabbit"
  47371. },
  47372. {
  47373. name: "Incubus",
  47374. height: math.unit(12, "feet"),
  47375. default: true,
  47376. form: "incubus"
  47377. },
  47378. {
  47379. name: "Demon",
  47380. height: math.unit(36, "feet"),
  47381. default: true,
  47382. form: "demon"
  47383. }
  47384. ],
  47385. {
  47386. "demon": {
  47387. name: "Demon",
  47388. default: true
  47389. },
  47390. "incubus": {
  47391. name: "Incubus",
  47392. },
  47393. "rabbit": {
  47394. name: "Rabbit"
  47395. }
  47396. }
  47397. ))
  47398. characterMakers.push(() => makeCharacter(
  47399. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47400. {
  47401. front: {
  47402. height: math.unit(7 + 5/12, "feet"),
  47403. weight: math.unit(510, "lb"),
  47404. name: "Front",
  47405. image: {
  47406. source: "./media/characters/syrup/front.svg",
  47407. extra: 932/916,
  47408. bottom: 26/958
  47409. }
  47410. },
  47411. },
  47412. [
  47413. {
  47414. name: "Normal",
  47415. height: math.unit(7 + 5/12, "feet"),
  47416. default: true
  47417. },
  47418. {
  47419. name: "Big",
  47420. height: math.unit(50, "feet")
  47421. },
  47422. {
  47423. name: "Macro",
  47424. height: math.unit(300, "feet")
  47425. },
  47426. {
  47427. name: "Megamacro",
  47428. height: math.unit(1, "mile")
  47429. },
  47430. ]
  47431. ))
  47432. characterMakers.push(() => makeCharacter(
  47433. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47434. {
  47435. front: {
  47436. height: math.unit(6 + 9/12, "feet"),
  47437. name: "Front",
  47438. image: {
  47439. source: "./media/characters/zeimne/front.svg",
  47440. extra: 1969/1806,
  47441. bottom: 53/2022
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(6 + 9/12, "feet"),
  47449. default: true
  47450. },
  47451. {
  47452. name: "Giant",
  47453. height: math.unit(550, "feet")
  47454. },
  47455. {
  47456. name: "Mega",
  47457. height: math.unit(3, "miles")
  47458. },
  47459. {
  47460. name: "Giga",
  47461. height: math.unit(250, "miles")
  47462. },
  47463. {
  47464. name: "Tera",
  47465. height: math.unit(1, "AU")
  47466. },
  47467. ]
  47468. ))
  47469. characterMakers.push(() => makeCharacter(
  47470. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47471. {
  47472. front: {
  47473. height: math.unit(5 + 2/12, "feet"),
  47474. name: "Front",
  47475. image: {
  47476. source: "./media/characters/grar/front.svg",
  47477. extra: 1331/1119,
  47478. bottom: 60/1391
  47479. }
  47480. },
  47481. back: {
  47482. height: math.unit(5 + 2/12, "feet"),
  47483. name: "Back",
  47484. image: {
  47485. source: "./media/characters/grar/back.svg",
  47486. extra: 1385/1169,
  47487. bottom: 23/1408
  47488. }
  47489. },
  47490. },
  47491. [
  47492. {
  47493. name: "Normal",
  47494. height: math.unit(5 + 2/12, "feet"),
  47495. default: true
  47496. },
  47497. ]
  47498. ))
  47499. characterMakers.push(() => makeCharacter(
  47500. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47501. {
  47502. front: {
  47503. height: math.unit(13 + 7/12, "feet"),
  47504. weight: math.unit(2200, "lb"),
  47505. name: "Front",
  47506. image: {
  47507. source: "./media/characters/endraya/front.svg",
  47508. extra: 1289/1215,
  47509. bottom: 50/1339
  47510. }
  47511. },
  47512. nude: {
  47513. height: math.unit(13 + 7/12, "feet"),
  47514. weight: math.unit(2200, "lb"),
  47515. name: "Nude",
  47516. image: {
  47517. source: "./media/characters/endraya/nude.svg",
  47518. extra: 1247/1171,
  47519. bottom: 40/1287
  47520. }
  47521. },
  47522. head: {
  47523. height: math.unit(2.6, "feet"),
  47524. name: "Head",
  47525. image: {
  47526. source: "./media/characters/endraya/head.svg"
  47527. }
  47528. },
  47529. slit: {
  47530. height: math.unit(3.4, "feet"),
  47531. name: "Slit",
  47532. image: {
  47533. source: "./media/characters/endraya/slit.svg"
  47534. }
  47535. },
  47536. },
  47537. [
  47538. {
  47539. name: "Normal",
  47540. height: math.unit(13 + 7/12, "feet"),
  47541. default: true
  47542. },
  47543. {
  47544. name: "Macro",
  47545. height: math.unit(200, "feet")
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(1.81, "meters"),
  47554. weight: math.unit(69, "kg"),
  47555. name: "Front",
  47556. image: {
  47557. source: "./media/characters/rodryana/front.svg",
  47558. extra: 2002/1921,
  47559. bottom: 53/2055
  47560. }
  47561. },
  47562. back: {
  47563. height: math.unit(1.81, "meters"),
  47564. weight: math.unit(69, "kg"),
  47565. name: "Back",
  47566. image: {
  47567. source: "./media/characters/rodryana/back.svg",
  47568. extra: 1993/1926,
  47569. bottom: 48/2041
  47570. }
  47571. },
  47572. maw: {
  47573. height: math.unit(0.19769417475, "meters"),
  47574. name: "Maw",
  47575. image: {
  47576. source: "./media/characters/rodryana/maw.svg"
  47577. }
  47578. },
  47579. slit: {
  47580. height: math.unit(0.31631067961, "meters"),
  47581. name: "Slit",
  47582. image: {
  47583. source: "./media/characters/rodryana/slit.svg"
  47584. }
  47585. },
  47586. },
  47587. [
  47588. {
  47589. name: "Normal",
  47590. height: math.unit(1.81, "meters")
  47591. },
  47592. {
  47593. name: "Mini Macro",
  47594. height: math.unit(181, "meters")
  47595. },
  47596. {
  47597. name: "Macro",
  47598. height: math.unit(452, "meters"),
  47599. default: true
  47600. },
  47601. {
  47602. name: "Mega Macro",
  47603. height: math.unit(1.375, "km")
  47604. },
  47605. {
  47606. name: "Giga Macro",
  47607. height: math.unit(13.575, "km")
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(6, "feet"),
  47616. weight: math.unit(1000, "lb"),
  47617. name: "Front",
  47618. image: {
  47619. source: "./media/characters/asaya/front.svg",
  47620. extra: 1460/1200,
  47621. bottom: 71/1531
  47622. }
  47623. },
  47624. },
  47625. [
  47626. {
  47627. name: "Normal",
  47628. height: math.unit(8, "km"),
  47629. default: true
  47630. },
  47631. ]
  47632. ))
  47633. characterMakers.push(() => makeCharacter(
  47634. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47635. {
  47636. front: {
  47637. height: math.unit(3.5, "meters"),
  47638. name: "Front",
  47639. image: {
  47640. source: "./media/characters/sarzu-and-israz/front.svg",
  47641. extra: 1570/1558,
  47642. bottom: 150/1720
  47643. },
  47644. },
  47645. back: {
  47646. height: math.unit(3.5, "meters"),
  47647. name: "Back",
  47648. image: {
  47649. source: "./media/characters/sarzu-and-israz/back.svg",
  47650. extra: 1523/1509,
  47651. bottom: 132/1655
  47652. },
  47653. },
  47654. frontFemale: {
  47655. height: math.unit(3.5, "meters"),
  47656. name: "Front (Female)",
  47657. image: {
  47658. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47659. extra: 1570/1558,
  47660. bottom: 150/1720
  47661. },
  47662. },
  47663. frontHerm: {
  47664. height: math.unit(3.5, "meters"),
  47665. name: "Front (Herm)",
  47666. image: {
  47667. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47668. extra: 1570/1558,
  47669. bottom: 150/1720
  47670. },
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(3.5, "meters"),
  47677. default: true,
  47678. },
  47679. {
  47680. name: "Macro",
  47681. height: math.unit(65.5, "meters"),
  47682. },
  47683. ],
  47684. ))
  47685. characterMakers.push(() => makeCharacter(
  47686. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47687. {
  47688. front: {
  47689. height: math.unit(6, "feet"),
  47690. weight: math.unit(250, "lb"),
  47691. name: "Front",
  47692. image: {
  47693. source: "./media/characters/zenimma/front.svg",
  47694. extra: 1346/1320,
  47695. bottom: 58/1404
  47696. }
  47697. },
  47698. back: {
  47699. height: math.unit(6, "feet"),
  47700. weight: math.unit(250, "lb"),
  47701. name: "Back",
  47702. image: {
  47703. source: "./media/characters/zenimma/back.svg",
  47704. extra: 1324/1308,
  47705. bottom: 44/1368
  47706. }
  47707. },
  47708. dick: {
  47709. height: math.unit(1.44, "feet"),
  47710. name: "Dick",
  47711. image: {
  47712. source: "./media/characters/zenimma/dick.svg"
  47713. }
  47714. },
  47715. },
  47716. [
  47717. {
  47718. name: "Canon Height",
  47719. height: math.unit(66, "miles"),
  47720. default: true
  47721. },
  47722. ]
  47723. ))
  47724. characterMakers.push(() => makeCharacter(
  47725. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47726. {
  47727. nude: {
  47728. height: math.unit(6, "feet"),
  47729. weight: math.unit(150, "lb"),
  47730. name: "Nude",
  47731. image: {
  47732. source: "./media/characters/shavon/nude.svg",
  47733. extra: 1242/1096,
  47734. bottom: 98/1340
  47735. }
  47736. },
  47737. dressed: {
  47738. height: math.unit(6, "feet"),
  47739. weight: math.unit(150, "lb"),
  47740. name: "Dressed",
  47741. image: {
  47742. source: "./media/characters/shavon/dressed.svg",
  47743. extra: 1242/1096,
  47744. bottom: 98/1340
  47745. }
  47746. },
  47747. },
  47748. [
  47749. {
  47750. name: "Macro",
  47751. height: math.unit(255, "feet"),
  47752. default: true
  47753. },
  47754. ]
  47755. ))
  47756. characterMakers.push(() => makeCharacter(
  47757. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47758. {
  47759. front: {
  47760. height: math.unit(6, "feet"),
  47761. name: "Front",
  47762. image: {
  47763. source: "./media/characters/steph/front.svg",
  47764. extra: 1430/1330,
  47765. bottom: 54/1484
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Normal",
  47772. height: math.unit(6, "feet"),
  47773. default: true
  47774. },
  47775. ]
  47776. ))
  47777. characterMakers.push(() => makeCharacter(
  47778. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47779. {
  47780. front: {
  47781. height: math.unit(9, "feet"),
  47782. weight: math.unit(400, "lb"),
  47783. name: "Front",
  47784. image: {
  47785. source: "./media/characters/kil'aman/front.svg",
  47786. extra: 1210/1159,
  47787. bottom: 109/1319
  47788. }
  47789. },
  47790. head: {
  47791. height: math.unit(2.14, "feet"),
  47792. name: "Head",
  47793. image: {
  47794. source: "./media/characters/kil'aman/head.svg"
  47795. }
  47796. },
  47797. maw: {
  47798. height: math.unit(1.21, "feet"),
  47799. name: "Maw",
  47800. image: {
  47801. source: "./media/characters/kil'aman/maw.svg"
  47802. }
  47803. },
  47804. foot: {
  47805. height: math.unit(1.7, "feet"),
  47806. name: "Foot",
  47807. image: {
  47808. source: "./media/characters/kil'aman/foot.svg"
  47809. }
  47810. },
  47811. dick: {
  47812. height: math.unit(2.1, "feet"),
  47813. name: "Dick",
  47814. image: {
  47815. source: "./media/characters/kil'aman/dick.svg"
  47816. }
  47817. },
  47818. },
  47819. [
  47820. {
  47821. name: "Normal",
  47822. height: math.unit(9, "feet")
  47823. },
  47824. {
  47825. name: "Canon Height",
  47826. height: math.unit(10, "miles"),
  47827. default: true
  47828. },
  47829. {
  47830. name: "Maximum",
  47831. height: math.unit(6e9, "miles")
  47832. },
  47833. ]
  47834. ))
  47835. characterMakers.push(() => makeCharacter(
  47836. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47837. {
  47838. front: {
  47839. height: math.unit(90, "feet"),
  47840. weight: math.unit(675000, "lb"),
  47841. name: "Front",
  47842. image: {
  47843. source: "./media/characters/qadan/front.svg",
  47844. extra: 1012/1004,
  47845. bottom: 78/1090
  47846. }
  47847. },
  47848. back: {
  47849. height: math.unit(90, "feet"),
  47850. weight: math.unit(675000, "lb"),
  47851. name: "Back",
  47852. image: {
  47853. source: "./media/characters/qadan/back.svg",
  47854. extra: 1042/1031,
  47855. bottom: 55/1097
  47856. }
  47857. },
  47858. armored: {
  47859. height: math.unit(90, "feet"),
  47860. weight: math.unit(675000, "lb"),
  47861. name: "Armored",
  47862. image: {
  47863. source: "./media/characters/qadan/armored.svg",
  47864. extra: 1047/1037,
  47865. bottom: 48/1095
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(90, "feet"),
  47873. default: true
  47874. },
  47875. ]
  47876. ))
  47877. characterMakers.push(() => makeCharacter(
  47878. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47879. {
  47880. front: {
  47881. height: math.unit(6, "feet"),
  47882. weight: math.unit(225, "lb"),
  47883. name: "Front",
  47884. image: {
  47885. source: "./media/characters/brooke/front.svg",
  47886. extra: 1050/1010,
  47887. bottom: 66/1116
  47888. }
  47889. },
  47890. back: {
  47891. height: math.unit(6, "feet"),
  47892. weight: math.unit(225, "lb"),
  47893. name: "Back",
  47894. image: {
  47895. source: "./media/characters/brooke/back.svg",
  47896. extra: 1053/1013,
  47897. bottom: 41/1094
  47898. }
  47899. },
  47900. dressed: {
  47901. height: math.unit(6, "feet"),
  47902. weight: math.unit(225, "lb"),
  47903. name: "Dressed",
  47904. image: {
  47905. source: "./media/characters/brooke/dressed.svg",
  47906. extra: 1050/1010,
  47907. bottom: 66/1116
  47908. }
  47909. },
  47910. },
  47911. [
  47912. {
  47913. name: "Canon Height",
  47914. height: math.unit(500, "miles"),
  47915. default: true
  47916. },
  47917. ]
  47918. ))
  47919. characterMakers.push(() => makeCharacter(
  47920. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47921. {
  47922. front: {
  47923. height: math.unit(6 + 2/12, "feet"),
  47924. weight: math.unit(210, "lb"),
  47925. name: "Front",
  47926. image: {
  47927. source: "./media/characters/wubs/front.svg",
  47928. extra: 1345/1325,
  47929. bottom: 70/1415
  47930. }
  47931. },
  47932. back: {
  47933. height: math.unit(6 + 2/12, "feet"),
  47934. weight: math.unit(210, "lb"),
  47935. name: "Back",
  47936. image: {
  47937. source: "./media/characters/wubs/back.svg",
  47938. extra: 1296/1275,
  47939. bottom: 58/1354
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(6 + 2/12, "feet"),
  47947. default: true
  47948. },
  47949. {
  47950. name: "Macro",
  47951. height: math.unit(1000, "feet")
  47952. },
  47953. {
  47954. name: "Megamacro",
  47955. height: math.unit(1, "mile")
  47956. },
  47957. ]
  47958. ))
  47959. characterMakers.push(() => makeCharacter(
  47960. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47961. {
  47962. front: {
  47963. height: math.unit(4, "feet"),
  47964. weight: math.unit(120, "lb"),
  47965. name: "Front",
  47966. image: {
  47967. source: "./media/characters/blue/front.svg",
  47968. extra: 1636/1525,
  47969. bottom: 43/1679
  47970. }
  47971. },
  47972. back: {
  47973. height: math.unit(4, "feet"),
  47974. weight: math.unit(120, "lb"),
  47975. name: "Back",
  47976. image: {
  47977. source: "./media/characters/blue/back.svg",
  47978. extra: 1660/1560,
  47979. bottom: 57/1717
  47980. }
  47981. },
  47982. paws: {
  47983. height: math.unit(0.826, "feet"),
  47984. name: "Paws",
  47985. image: {
  47986. source: "./media/characters/blue/paws.svg"
  47987. }
  47988. },
  47989. },
  47990. [
  47991. {
  47992. name: "Micro",
  47993. height: math.unit(3, "inches")
  47994. },
  47995. {
  47996. name: "Normal",
  47997. height: math.unit(4, "feet"),
  47998. default: true
  47999. },
  48000. {
  48001. name: "Femenine Form",
  48002. height: math.unit(14, "feet")
  48003. },
  48004. {
  48005. name: "Werebat Form",
  48006. height: math.unit(18, "feet")
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48012. {
  48013. female: {
  48014. height: math.unit(7 + 4/12, "feet"),
  48015. weight: math.unit(243, "lb"),
  48016. name: "Female",
  48017. image: {
  48018. source: "./media/characters/kaya/female.svg",
  48019. extra: 975/898,
  48020. bottom: 34/1009
  48021. }
  48022. },
  48023. herm: {
  48024. height: math.unit(7 + 4/12, "feet"),
  48025. weight: math.unit(243, "lb"),
  48026. name: "Herm",
  48027. image: {
  48028. source: "./media/characters/kaya/herm.svg",
  48029. extra: 975/898,
  48030. bottom: 34/1009
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(7 + 4/12, "feet"),
  48038. default: true
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48044. {
  48045. female: {
  48046. height: math.unit(9 + 4/12, "feet"),
  48047. weight: math.unit(398, "lb"),
  48048. name: "Female",
  48049. image: {
  48050. source: "./media/characters/kassandra/female.svg",
  48051. extra: 908/839,
  48052. bottom: 61/969
  48053. }
  48054. },
  48055. intersex: {
  48056. height: math.unit(9 + 4/12, "feet"),
  48057. weight: math.unit(398, "lb"),
  48058. name: "Intersex",
  48059. image: {
  48060. source: "./media/characters/kassandra/intersex.svg",
  48061. extra: 908/839,
  48062. bottom: 61/969
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Normal",
  48069. height: math.unit(9 + 4/12, "feet"),
  48070. default: true
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48076. {
  48077. front: {
  48078. height: math.unit(3, "meters"),
  48079. name: "Front",
  48080. image: {
  48081. source: "./media/characters/amy/front.svg",
  48082. extra: 1380/1343,
  48083. bottom: 70/1450
  48084. }
  48085. },
  48086. back: {
  48087. height: math.unit(3, "meters"),
  48088. name: "Back",
  48089. image: {
  48090. source: "./media/characters/amy/back.svg",
  48091. extra: 1380/1347,
  48092. bottom: 66/1446
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(3, "meters"),
  48100. default: true
  48101. },
  48102. ]
  48103. ))
  48104. characterMakers.push(() => makeCharacter(
  48105. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48106. {
  48107. side: {
  48108. height: math.unit(47, "cm"),
  48109. weight: math.unit(10.8, "kg"),
  48110. name: "Side",
  48111. image: {
  48112. source: "./media/characters/alphaschakal/side.svg",
  48113. extra: 1058/568,
  48114. bottom: 62/1120
  48115. }
  48116. },
  48117. back: {
  48118. height: math.unit(78, "cm"),
  48119. weight: math.unit(10.8, "kg"),
  48120. name: "Back",
  48121. image: {
  48122. source: "./media/characters/alphaschakal/back.svg",
  48123. extra: 1102/942,
  48124. bottom: 185/1287
  48125. }
  48126. },
  48127. head: {
  48128. height: math.unit(28, "cm"),
  48129. name: "Head",
  48130. image: {
  48131. source: "./media/characters/alphaschakal/head.svg",
  48132. extra: 696/508,
  48133. bottom: 0/696
  48134. }
  48135. },
  48136. paw: {
  48137. height: math.unit(16, "cm"),
  48138. name: "Paw",
  48139. image: {
  48140. source: "./media/characters/alphaschakal/paw.svg"
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(47, "cm"),
  48148. default: true
  48149. },
  48150. {
  48151. name: "Macro",
  48152. height: math.unit(340, "cm")
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(36, "earths"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/ecobyss/front.svg",
  48164. extra: 1282/1215,
  48165. bottom: 11/1293
  48166. }
  48167. },
  48168. back: {
  48169. height: math.unit(36, "earths"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/ecobyss/back.svg",
  48173. extra: 1291/1222,
  48174. bottom: 8/1299
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(36, "earths"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48188. {
  48189. front: {
  48190. height: math.unit(12, "feet"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/vasuk/front.svg",
  48194. extra: 1326/1207,
  48195. bottom: 64/1390
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(12, "feet"),
  48203. default: true
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48209. {
  48210. side: {
  48211. height: math.unit(100, "feet"),
  48212. name: "Side",
  48213. image: {
  48214. source: "./media/characters/linneaus/side.svg",
  48215. extra: 987/807,
  48216. bottom: 47/1034
  48217. }
  48218. },
  48219. },
  48220. [
  48221. {
  48222. name: "Macro",
  48223. height: math.unit(100, "feet"),
  48224. default: true
  48225. },
  48226. ]
  48227. ))
  48228. characterMakers.push(() => makeCharacter(
  48229. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48230. {
  48231. front: {
  48232. height: math.unit(8, "feet"),
  48233. weight: math.unit(1200, "lb"),
  48234. name: "Front",
  48235. image: {
  48236. source: "./media/characters/nyterious-daligdig/front.svg",
  48237. extra: 1284/1094,
  48238. bottom: 84/1368
  48239. }
  48240. },
  48241. back: {
  48242. height: math.unit(8, "feet"),
  48243. weight: math.unit(1200, "lb"),
  48244. name: "Back",
  48245. image: {
  48246. source: "./media/characters/nyterious-daligdig/back.svg",
  48247. extra: 1301/1121,
  48248. bottom: 129/1430
  48249. }
  48250. },
  48251. mouth: {
  48252. height: math.unit(1.464, "feet"),
  48253. name: "Mouth",
  48254. image: {
  48255. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Small",
  48262. height: math.unit(8, "feet"),
  48263. default: true
  48264. },
  48265. {
  48266. name: "Normal",
  48267. height: math.unit(15, "feet")
  48268. },
  48269. {
  48270. name: "Macro",
  48271. height: math.unit(90, "feet")
  48272. },
  48273. ]
  48274. ))
  48275. characterMakers.push(() => makeCharacter(
  48276. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48277. {
  48278. front: {
  48279. height: math.unit(7 + 4/12, "feet"),
  48280. weight: math.unit(252, "lb"),
  48281. name: "Front",
  48282. image: {
  48283. source: "./media/characters/bandel/front.svg",
  48284. extra: 1946/1775,
  48285. bottom: 26/1972
  48286. }
  48287. },
  48288. back: {
  48289. height: math.unit(7 + 4/12, "feet"),
  48290. weight: math.unit(252, "lb"),
  48291. name: "Back",
  48292. image: {
  48293. source: "./media/characters/bandel/back.svg",
  48294. extra: 1940/1770,
  48295. bottom: 25/1965
  48296. }
  48297. },
  48298. maw: {
  48299. height: math.unit(2.15, "feet"),
  48300. name: "Maw",
  48301. image: {
  48302. source: "./media/characters/bandel/maw.svg"
  48303. }
  48304. },
  48305. stomach: {
  48306. height: math.unit(1.95, "feet"),
  48307. name: "Stomach",
  48308. image: {
  48309. source: "./media/characters/bandel/stomach.svg"
  48310. }
  48311. },
  48312. },
  48313. [
  48314. {
  48315. name: "Normal",
  48316. height: math.unit(7 + 4/12, "feet"),
  48317. default: true
  48318. },
  48319. ]
  48320. ))
  48321. characterMakers.push(() => makeCharacter(
  48322. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48323. {
  48324. front: {
  48325. height: math.unit(10 + 5/12, "feet"),
  48326. weight: math.unit(773.5, "kg"),
  48327. name: "Front",
  48328. image: {
  48329. source: "./media/characters/zed/front.svg",
  48330. extra: 987/941,
  48331. bottom: 52/1039
  48332. }
  48333. },
  48334. },
  48335. [
  48336. {
  48337. name: "Short",
  48338. height: math.unit(5 + 4/12, "feet")
  48339. },
  48340. {
  48341. name: "Average",
  48342. height: math.unit(10 + 5/12, "feet"),
  48343. default: true
  48344. },
  48345. {
  48346. name: "Mini-Macro",
  48347. height: math.unit(24 + 9/12, "feet")
  48348. },
  48349. {
  48350. name: "Macro",
  48351. height: math.unit(249, "feet")
  48352. },
  48353. {
  48354. name: "Mega-Macro",
  48355. height: math.unit(12490, "feet")
  48356. },
  48357. {
  48358. name: "Giga-Macro",
  48359. height: math.unit(24.9, "miles")
  48360. },
  48361. {
  48362. name: "Tera-Macro",
  48363. height: math.unit(24900, "miles")
  48364. },
  48365. {
  48366. name: "Cosmic Scale",
  48367. height: math.unit(38.9, "lightyears")
  48368. },
  48369. {
  48370. name: "Universal Scale",
  48371. height: math.unit(138e12, "lightyears")
  48372. },
  48373. ]
  48374. ))
  48375. characterMakers.push(() => makeCharacter(
  48376. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48377. {
  48378. front: {
  48379. height: math.unit(1561, "inches"),
  48380. name: "Front",
  48381. image: {
  48382. source: "./media/characters/ivan/front.svg",
  48383. extra: 1126/1071,
  48384. bottom: 26/1152
  48385. }
  48386. },
  48387. back: {
  48388. height: math.unit(1561, "inches"),
  48389. name: "Back",
  48390. image: {
  48391. source: "./media/characters/ivan/back.svg",
  48392. extra: 1134/1079,
  48393. bottom: 30/1164
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Normal",
  48400. height: math.unit(1561, "inches"),
  48401. default: true
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48407. {
  48408. front: {
  48409. height: math.unit(5 + 7/12, "feet"),
  48410. weight: math.unit(150, "lb"),
  48411. name: "Front",
  48412. image: {
  48413. source: "./media/characters/robin-arctic-hare/front.svg",
  48414. extra: 1148/974,
  48415. bottom: 20/1168
  48416. }
  48417. },
  48418. },
  48419. [
  48420. {
  48421. name: "Normal",
  48422. height: math.unit(5 + 7/12, "feet"),
  48423. default: true
  48424. },
  48425. ]
  48426. ))
  48427. characterMakers.push(() => makeCharacter(
  48428. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48429. {
  48430. side: {
  48431. height: math.unit(5, "feet"),
  48432. name: "Side",
  48433. image: {
  48434. source: "./media/characters/birch/side.svg",
  48435. extra: 985/796,
  48436. bottom: 111/1096
  48437. }
  48438. },
  48439. },
  48440. [
  48441. {
  48442. name: "Normal",
  48443. height: math.unit(5, "feet"),
  48444. default: true
  48445. },
  48446. ]
  48447. ))
  48448. characterMakers.push(() => makeCharacter(
  48449. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48450. {
  48451. front: {
  48452. height: math.unit(4, "feet"),
  48453. name: "Front",
  48454. image: {
  48455. source: "./media/characters/rasp/front.svg",
  48456. extra: 561/478,
  48457. bottom: 74/635
  48458. }
  48459. },
  48460. },
  48461. [
  48462. {
  48463. name: "Normal",
  48464. height: math.unit(4, "feet"),
  48465. default: true
  48466. },
  48467. ]
  48468. ))
  48469. characterMakers.push(() => makeCharacter(
  48470. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48471. {
  48472. front: {
  48473. height: math.unit(4 + 6/12, "feet"),
  48474. name: "Front",
  48475. image: {
  48476. source: "./media/characters/agatha/front.svg",
  48477. extra: 947/933,
  48478. bottom: 42/989
  48479. }
  48480. },
  48481. back: {
  48482. height: math.unit(4 + 6/12, "feet"),
  48483. name: "Back",
  48484. image: {
  48485. source: "./media/characters/agatha/back.svg",
  48486. extra: 935/922,
  48487. bottom: 48/983
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(4 + 6 /12, "feet"),
  48495. default: true
  48496. },
  48497. {
  48498. name: "Max Size",
  48499. height: math.unit(500, "feet")
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48505. {
  48506. side: {
  48507. height: math.unit(30, "feet"),
  48508. name: "Side",
  48509. image: {
  48510. source: "./media/characters/roggy/side.svg",
  48511. extra: 909/643,
  48512. bottom: 63/972
  48513. }
  48514. },
  48515. lounging: {
  48516. height: math.unit(20, "feet"),
  48517. name: "Lounging",
  48518. image: {
  48519. source: "./media/characters/roggy/lounging.svg",
  48520. extra: 643/479,
  48521. bottom: 145/788
  48522. }
  48523. },
  48524. handpaw: {
  48525. height: math.unit(13.1, "feet"),
  48526. name: "Handpaw",
  48527. image: {
  48528. source: "./media/characters/roggy/handpaw.svg"
  48529. }
  48530. },
  48531. footpaw: {
  48532. height: math.unit(15.8, "feet"),
  48533. name: "Footpaw",
  48534. image: {
  48535. source: "./media/characters/roggy/footpaw.svg"
  48536. }
  48537. },
  48538. },
  48539. [
  48540. {
  48541. name: "Menacing",
  48542. height: math.unit(30, "feet"),
  48543. default: true
  48544. },
  48545. ]
  48546. ))
  48547. characterMakers.push(() => makeCharacter(
  48548. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48549. {
  48550. front: {
  48551. height: math.unit(5 + 7/12, "feet"),
  48552. weight: math.unit(135, "lb"),
  48553. name: "Front",
  48554. image: {
  48555. source: "./media/characters/naomi/front.svg",
  48556. extra: 1209/1154,
  48557. bottom: 129/1338
  48558. }
  48559. },
  48560. back: {
  48561. height: math.unit(5 + 7/12, "feet"),
  48562. weight: math.unit(135, "lb"),
  48563. name: "Back",
  48564. image: {
  48565. source: "./media/characters/naomi/back.svg",
  48566. extra: 1252/1190,
  48567. bottom: 23/1275
  48568. }
  48569. },
  48570. },
  48571. [
  48572. {
  48573. name: "Normal",
  48574. height: math.unit(5 + 7 /12, "feet"),
  48575. default: true
  48576. },
  48577. ]
  48578. ))
  48579. characterMakers.push(() => makeCharacter(
  48580. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48581. {
  48582. side: {
  48583. height: math.unit(35, "meters"),
  48584. name: "Side",
  48585. image: {
  48586. source: "./media/characters/kimpi/side.svg",
  48587. extra: 419/382,
  48588. bottom: 63/482
  48589. }
  48590. },
  48591. hand: {
  48592. height: math.unit(8.96, "meters"),
  48593. name: "Hand",
  48594. image: {
  48595. source: "./media/characters/kimpi/hand.svg"
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Normal",
  48602. height: math.unit(35, "meters"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(4 + 4/12, "feet"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/pepper-purrloin/front.svg",
  48615. extra: 1141/1024,
  48616. bottom: 21/1162
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(4 + 4/12, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48630. {
  48631. front: {
  48632. height: math.unit(6 + 2/12, "feet"),
  48633. name: "Front",
  48634. image: {
  48635. source: "./media/characters/raphael/front.svg",
  48636. extra: 1101/962,
  48637. bottom: 59/1160
  48638. }
  48639. },
  48640. },
  48641. [
  48642. {
  48643. name: "Normal",
  48644. height: math.unit(6 + 2/12, "feet"),
  48645. default: true
  48646. },
  48647. ]
  48648. ))
  48649. characterMakers.push(() => makeCharacter(
  48650. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48651. {
  48652. front: {
  48653. height: math.unit(6, "feet"),
  48654. weight: math.unit(150, "lb"),
  48655. name: "Front",
  48656. image: {
  48657. source: "./media/characters/victor-williams/front.svg",
  48658. extra: 1894/1825,
  48659. bottom: 67/1961
  48660. }
  48661. },
  48662. },
  48663. [
  48664. {
  48665. name: "Normal",
  48666. height: math.unit(6, "feet"),
  48667. default: true
  48668. },
  48669. ]
  48670. ))
  48671. characterMakers.push(() => makeCharacter(
  48672. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48673. {
  48674. front: {
  48675. height: math.unit(5 + 8/12, "feet"),
  48676. weight: math.unit(150, "lb"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/rachel/front.svg",
  48680. extra: 1902/1787,
  48681. bottom: 46/1948
  48682. }
  48683. },
  48684. },
  48685. [
  48686. {
  48687. name: "Base Height",
  48688. height: math.unit(5 + 8/12, "feet"),
  48689. default: true
  48690. },
  48691. {
  48692. name: "Macro",
  48693. height: math.unit(200, "feet")
  48694. },
  48695. {
  48696. name: "Mega Macro",
  48697. height: math.unit(1, "mile")
  48698. },
  48699. {
  48700. name: "Giga Macro",
  48701. height: math.unit(1500, "miles")
  48702. },
  48703. {
  48704. name: "Tera Macro",
  48705. height: math.unit(8000, "miles")
  48706. },
  48707. {
  48708. name: "Tera Macro+",
  48709. height: math.unit(2e5, "miles")
  48710. },
  48711. ]
  48712. ))
  48713. characterMakers.push(() => makeCharacter(
  48714. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48715. {
  48716. front: {
  48717. height: math.unit(6.5, "feet"),
  48718. name: "Front",
  48719. image: {
  48720. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48721. extra: 860/819,
  48722. bottom: 307/1167
  48723. }
  48724. },
  48725. back: {
  48726. height: math.unit(6.5, "feet"),
  48727. name: "Back",
  48728. image: {
  48729. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48730. extra: 880/837,
  48731. bottom: 395/1275
  48732. }
  48733. },
  48734. sleeping: {
  48735. height: math.unit(2.79, "feet"),
  48736. name: "Sleeping",
  48737. image: {
  48738. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48739. extra: 465/383,
  48740. bottom: 263/728
  48741. }
  48742. },
  48743. maw: {
  48744. height: math.unit(2.52, "feet"),
  48745. name: "Maw",
  48746. image: {
  48747. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48748. }
  48749. },
  48750. },
  48751. [
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(6.5, "feet"),
  48755. default: true
  48756. },
  48757. ]
  48758. ))
  48759. characterMakers.push(() => makeCharacter(
  48760. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48761. {
  48762. front: {
  48763. height: math.unit(5, "feet"),
  48764. name: "Front",
  48765. image: {
  48766. source: "./media/characters/nova-nerium/front.svg",
  48767. extra: 1548/1392,
  48768. bottom: 374/1922
  48769. }
  48770. },
  48771. back: {
  48772. height: math.unit(5, "feet"),
  48773. name: "Back",
  48774. image: {
  48775. source: "./media/characters/nova-nerium/back.svg",
  48776. extra: 1658/1468,
  48777. bottom: 257/1915
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(5, "feet"),
  48785. default: true
  48786. },
  48787. ]
  48788. ))
  48789. characterMakers.push(() => makeCharacter(
  48790. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48791. {
  48792. front: {
  48793. height: math.unit(5 + 4/12, "feet"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/ashe-pyriph/front.svg",
  48797. extra: 1935/1747,
  48798. bottom: 60/1995
  48799. }
  48800. },
  48801. },
  48802. [
  48803. {
  48804. name: "Normal",
  48805. height: math.unit(5 + 4/12, "feet"),
  48806. default: true
  48807. },
  48808. ]
  48809. ))
  48810. characterMakers.push(() => makeCharacter(
  48811. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48812. {
  48813. front: {
  48814. height: math.unit(8.7, "feet"),
  48815. name: "Front",
  48816. image: {
  48817. source: "./media/characters/flicker-wisp/front.svg",
  48818. extra: 1835/1613,
  48819. bottom: 449/2284
  48820. }
  48821. },
  48822. side: {
  48823. height: math.unit(8.7, "feet"),
  48824. name: "Side",
  48825. image: {
  48826. source: "./media/characters/flicker-wisp/side.svg",
  48827. extra: 1841/1642,
  48828. bottom: 336/2177
  48829. },
  48830. default: true
  48831. },
  48832. maw: {
  48833. height: math.unit(3.35, "feet"),
  48834. name: "Maw",
  48835. image: {
  48836. source: "./media/characters/flicker-wisp/maw.svg",
  48837. extra: 2338/1506,
  48838. bottom: 0/2338
  48839. }
  48840. },
  48841. ovipositor: {
  48842. height: math.unit(4.95, "feet"),
  48843. name: "Ovipositor",
  48844. image: {
  48845. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48846. }
  48847. },
  48848. egg: {
  48849. height: math.unit(0.385, "feet"),
  48850. weight: math.unit(2, "lb"),
  48851. name: "Egg",
  48852. image: {
  48853. source: "./media/characters/flicker-wisp/egg.svg"
  48854. }
  48855. },
  48856. },
  48857. [
  48858. {
  48859. name: "Normal",
  48860. height: math.unit(8.7, "feet"),
  48861. default: true
  48862. },
  48863. ]
  48864. ))
  48865. characterMakers.push(() => makeCharacter(
  48866. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48867. {
  48868. side: {
  48869. height: math.unit(11, "feet"),
  48870. name: "Side",
  48871. image: {
  48872. source: "./media/characters/faefnul/side.svg",
  48873. extra: 1100/1007,
  48874. bottom: 0/1100
  48875. }
  48876. },
  48877. },
  48878. [
  48879. {
  48880. name: "Normal",
  48881. height: math.unit(11, "feet"),
  48882. default: true
  48883. },
  48884. ]
  48885. ))
  48886. characterMakers.push(() => makeCharacter(
  48887. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48888. {
  48889. front: {
  48890. height: math.unit(6 + 2/12, "feet"),
  48891. name: "Front",
  48892. image: {
  48893. source: "./media/characters/shady/front.svg",
  48894. extra: 502/461,
  48895. bottom: 9/511
  48896. }
  48897. },
  48898. kneeling: {
  48899. height: math.unit(4.6, "feet"),
  48900. name: "Kneeling",
  48901. image: {
  48902. source: "./media/characters/shady/kneeling.svg",
  48903. extra: 1328/1219,
  48904. bottom: 117/1445
  48905. }
  48906. },
  48907. maw: {
  48908. height: math.unit(2, "feet"),
  48909. name: "Maw",
  48910. image: {
  48911. source: "./media/characters/shady/maw.svg"
  48912. }
  48913. },
  48914. },
  48915. [
  48916. {
  48917. name: "Nano",
  48918. height: math.unit(1, "mm")
  48919. },
  48920. {
  48921. name: "Micro",
  48922. height: math.unit(12, "mm")
  48923. },
  48924. {
  48925. name: "Tiny",
  48926. height: math.unit(3, "inches")
  48927. },
  48928. {
  48929. name: "Normal",
  48930. height: math.unit(6 + 2/12, "feet"),
  48931. default: true
  48932. },
  48933. {
  48934. name: "Big",
  48935. height: math.unit(15, "feet")
  48936. },
  48937. {
  48938. name: "Macro",
  48939. height: math.unit(150, "feet")
  48940. },
  48941. {
  48942. name: "Titanic",
  48943. height: math.unit(500, "feet")
  48944. },
  48945. ]
  48946. ))
  48947. characterMakers.push(() => makeCharacter(
  48948. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48949. {
  48950. front: {
  48951. height: math.unit(12, "feet"),
  48952. name: "Front",
  48953. image: {
  48954. source: "./media/characters/fenrir/front.svg",
  48955. extra: 968/875,
  48956. bottom: 22/990
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Big",
  48963. height: math.unit(12, "feet"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(5 + 4/12, "feet"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/makar/front.svg",
  48976. extra: 1181/1112,
  48977. bottom: 78/1259
  48978. }
  48979. },
  48980. },
  48981. [
  48982. {
  48983. name: "Normal",
  48984. height: math.unit(5 + 4/12, "feet"),
  48985. default: true
  48986. },
  48987. ]
  48988. ))
  48989. characterMakers.push(() => makeCharacter(
  48990. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48991. {
  48992. front: {
  48993. height: math.unit(5 + 7/12, "feet"),
  48994. name: "Front",
  48995. image: {
  48996. source: "./media/characters/callow/front.svg",
  48997. extra: 1482/1304,
  48998. bottom: 23/1505
  48999. }
  49000. },
  49001. back: {
  49002. height: math.unit(5 + 7/12, "feet"),
  49003. name: "Back",
  49004. image: {
  49005. source: "./media/characters/callow/back.svg",
  49006. extra: 1484/1296,
  49007. bottom: 25/1509
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Micro",
  49014. height: math.unit(3, "inches"),
  49015. default: true
  49016. },
  49017. {
  49018. name: "Normal",
  49019. height: math.unit(5 + 7/12, "feet")
  49020. },
  49021. ]
  49022. ))
  49023. characterMakers.push(() => makeCharacter(
  49024. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49025. {
  49026. front: {
  49027. height: math.unit(6 + 2/12, "feet"),
  49028. name: "Front",
  49029. image: {
  49030. source: "./media/characters/natel/front.svg",
  49031. extra: 1833/1692,
  49032. bottom: 166/1999
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(6 + 2/12, "feet"),
  49040. default: true
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49046. {
  49047. front: {
  49048. height: math.unit(1.75, "meters"),
  49049. name: "Front",
  49050. image: {
  49051. source: "./media/characters/misu/front.svg",
  49052. extra: 1690/1558,
  49053. bottom: 234/1924
  49054. }
  49055. },
  49056. back: {
  49057. height: math.unit(1.75, "meters"),
  49058. name: "Back",
  49059. image: {
  49060. source: "./media/characters/misu/back.svg",
  49061. extra: 1762/1618,
  49062. bottom: 146/1908
  49063. }
  49064. },
  49065. frontNude: {
  49066. height: math.unit(1.75, "meters"),
  49067. name: "Front (Nude)",
  49068. image: {
  49069. source: "./media/characters/misu/front-nude.svg",
  49070. extra: 1690/1558,
  49071. bottom: 234/1924
  49072. }
  49073. },
  49074. backNude: {
  49075. height: math.unit(1.75, "meters"),
  49076. name: "Back (Nude)",
  49077. image: {
  49078. source: "./media/characters/misu/back-nude.svg",
  49079. extra: 1762/1618,
  49080. bottom: 146/1908
  49081. }
  49082. },
  49083. frontErect: {
  49084. height: math.unit(1.75, "meters"),
  49085. name: "Front (Erect)",
  49086. image: {
  49087. source: "./media/characters/misu/front-erect.svg",
  49088. extra: 1690/1558,
  49089. bottom: 234/1924
  49090. }
  49091. },
  49092. maw: {
  49093. height: math.unit(0.47, "meters"),
  49094. name: "Maw",
  49095. image: {
  49096. source: "./media/characters/misu/maw.svg"
  49097. }
  49098. },
  49099. head: {
  49100. height: math.unit(0.35, "meters"),
  49101. name: "Head",
  49102. image: {
  49103. source: "./media/characters/misu/head.svg"
  49104. }
  49105. },
  49106. rear: {
  49107. height: math.unit(0.47, "meters"),
  49108. name: "Rear",
  49109. image: {
  49110. source: "./media/characters/misu/rear.svg"
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Normal",
  49117. height: math.unit(1.75, "meters")
  49118. },
  49119. {
  49120. name: "Not good for the people",
  49121. height: math.unit(42, "meters")
  49122. },
  49123. {
  49124. name: "Not good for the neighborhood",
  49125. height: math.unit(135, "meters")
  49126. },
  49127. {
  49128. name: "Bit bigger problem",
  49129. height: math.unit(380, "meters"),
  49130. default: true
  49131. },
  49132. {
  49133. name: "Not good for the city",
  49134. height: math.unit(1.5, "km")
  49135. },
  49136. {
  49137. name: "Not good for the county",
  49138. height: math.unit(5.5, "km")
  49139. },
  49140. {
  49141. name: "Not good for the state",
  49142. height: math.unit(25, "km")
  49143. },
  49144. {
  49145. name: "Not good for the country",
  49146. height: math.unit(125, "km")
  49147. },
  49148. {
  49149. name: "Not good for the continent",
  49150. height: math.unit(2100, "km")
  49151. },
  49152. {
  49153. name: "Not good for the planet",
  49154. height: math.unit(35000, "km")
  49155. },
  49156. {
  49157. name: "Just no",
  49158. height: math.unit(8.5e18, "km")
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49164. {
  49165. front: {
  49166. height: math.unit(6.5, "feet"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/poppy/front.svg",
  49170. extra: 1878/1812,
  49171. bottom: 43/1921
  49172. }
  49173. },
  49174. feet: {
  49175. height: math.unit(1.06, "feet"),
  49176. name: "Feet",
  49177. image: {
  49178. source: "./media/characters/poppy/feet.svg",
  49179. extra: 1083/1083,
  49180. bottom: 87/1170
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Human",
  49187. height: math.unit(6.5, "feet")
  49188. },
  49189. {
  49190. name: "Default",
  49191. height: math.unit(300, "feet"),
  49192. default: true
  49193. },
  49194. {
  49195. name: "Huge",
  49196. height: math.unit(850, "feet")
  49197. },
  49198. {
  49199. name: "Mega",
  49200. height: math.unit(8000, "feet")
  49201. },
  49202. {
  49203. name: "Giga",
  49204. height: math.unit(300, "miles")
  49205. },
  49206. ]
  49207. ))
  49208. characterMakers.push(() => makeCharacter(
  49209. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49210. {
  49211. bipedal: {
  49212. height: math.unit(7, "feet"),
  49213. name: "Bipedal",
  49214. image: {
  49215. source: "./media/characters/zener/bipedal.svg",
  49216. extra: 874/805,
  49217. bottom: 109/983
  49218. }
  49219. },
  49220. quadrupedal: {
  49221. height: math.unit(4.64, "feet"),
  49222. name: "Quadrupedal",
  49223. image: {
  49224. source: "./media/characters/zener/quadrupedal.svg",
  49225. extra: 638/507,
  49226. bottom: 190/828
  49227. }
  49228. },
  49229. cock: {
  49230. height: math.unit(18, "inches"),
  49231. name: "Cock",
  49232. image: {
  49233. source: "./media/characters/zener/cock.svg"
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Normal",
  49240. height: math.unit(7, "feet"),
  49241. default: true
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49247. {
  49248. nude: {
  49249. height: math.unit(5 + 6/12, "feet"),
  49250. name: "Nude",
  49251. image: {
  49252. source: "./media/characters/charlie-dog/nude.svg",
  49253. extra: 768/734,
  49254. bottom: 26/794
  49255. }
  49256. },
  49257. dressed: {
  49258. height: math.unit(5 + 6/12, "feet"),
  49259. name: "Dressed",
  49260. image: {
  49261. source: "./media/characters/charlie-dog/dressed.svg",
  49262. extra: 768/734,
  49263. bottom: 26/794
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Normal",
  49270. height: math.unit(5 + 6/12, "feet"),
  49271. default: true
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(6 + 4/12, "feet"),
  49280. name: "Front",
  49281. image: {
  49282. source: "./media/characters/ir'istrasz/front.svg",
  49283. extra: 1014/977,
  49284. bottom: 65/1079
  49285. }
  49286. },
  49287. back: {
  49288. height: math.unit(6 + 4/12, "feet"),
  49289. name: "Back",
  49290. image: {
  49291. source: "./media/characters/ir'istrasz/back.svg",
  49292. extra: 1024/992,
  49293. bottom: 34/1058
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(6 + 4/12, "feet"),
  49301. default: true
  49302. },
  49303. ]
  49304. ))
  49305. characterMakers.push(() => makeCharacter(
  49306. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49307. {
  49308. front: {
  49309. height: math.unit(5 + 8/12, "feet"),
  49310. name: "Front",
  49311. image: {
  49312. source: "./media/characters/dee-ditto/front.svg",
  49313. extra: 1874/1785,
  49314. bottom: 68/1942
  49315. }
  49316. },
  49317. back: {
  49318. height: math.unit(5 + 8/12, "feet"),
  49319. name: "Back",
  49320. image: {
  49321. source: "./media/characters/dee-ditto/back.svg",
  49322. extra: 1870/1783,
  49323. bottom: 77/1947
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(5 + 8/12, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49337. {
  49338. front: {
  49339. height: math.unit(7 + 6/12, "feet"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/fey/front.svg",
  49343. extra: 995/979,
  49344. bottom: 30/1025
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(7 + 6/12, "feet"),
  49349. name: "Back",
  49350. image: {
  49351. source: "./media/characters/fey/back.svg",
  49352. extra: 1079/1008,
  49353. bottom: 5/1084
  49354. }
  49355. },
  49356. dressed: {
  49357. height: math.unit(7 + 6/12, "feet"),
  49358. name: "Dressed",
  49359. image: {
  49360. source: "./media/characters/fey/dressed.svg",
  49361. extra: 995/979,
  49362. bottom: 30/1025
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(7 + 6/12, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49376. {
  49377. standing: {
  49378. height: math.unit(17, "feet"),
  49379. name: "Standing",
  49380. image: {
  49381. source: "./media/characters/aster/standing.svg",
  49382. extra: 1798/1598,
  49383. bottom: 117/1915
  49384. }
  49385. },
  49386. },
  49387. [
  49388. {
  49389. name: "Normal",
  49390. height: math.unit(17, "feet"),
  49391. default: true
  49392. },
  49393. {
  49394. name: "Homewrecker",
  49395. height: math.unit(95, "feet")
  49396. },
  49397. {
  49398. name: "Planet Devourer",
  49399. height: math.unit(1008000, "miles")
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49405. {
  49406. front: {
  49407. height: math.unit(6 + 5/12, "feet"),
  49408. weight: math.unit(265, "lb"),
  49409. name: "Front",
  49410. image: {
  49411. source: "./media/characters/devon-childs/front.svg",
  49412. extra: 1795/1721,
  49413. bottom: 41/1836
  49414. }
  49415. },
  49416. side: {
  49417. height: math.unit(6 + 5/12, "feet"),
  49418. weight: math.unit(265, "lb"),
  49419. name: "Side",
  49420. image: {
  49421. source: "./media/characters/devon-childs/side.svg",
  49422. extra: 1812/1738,
  49423. bottom: 30/1842
  49424. }
  49425. },
  49426. back: {
  49427. height: math.unit(6 + 5/12, "feet"),
  49428. weight: math.unit(265, "lb"),
  49429. name: "Back",
  49430. image: {
  49431. source: "./media/characters/devon-childs/back.svg",
  49432. extra: 1808/1735,
  49433. bottom: 23/1831
  49434. }
  49435. },
  49436. hand: {
  49437. height: math.unit(1.464, "feet"),
  49438. name: "Hand",
  49439. image: {
  49440. source: "./media/characters/devon-childs/hand.svg"
  49441. }
  49442. },
  49443. foot: {
  49444. height: math.unit(1.6, "feet"),
  49445. name: "Foot",
  49446. image: {
  49447. source: "./media/characters/devon-childs/foot.svg"
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Micro",
  49454. height: math.unit(7, "cm")
  49455. },
  49456. {
  49457. name: "Normal",
  49458. height: math.unit(6 + 5/12, "feet"),
  49459. default: true
  49460. },
  49461. {
  49462. name: "Macro",
  49463. height: math.unit(154, "feet")
  49464. },
  49465. ]
  49466. ))
  49467. characterMakers.push(() => makeCharacter(
  49468. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49469. {
  49470. front: {
  49471. height: math.unit(6, "feet"),
  49472. weight: math.unit(180, "lb"),
  49473. name: "Front",
  49474. image: {
  49475. source: "./media/characters/lydemox-vir/front.svg",
  49476. extra: 1632/1435,
  49477. bottom: 58/1690
  49478. }
  49479. },
  49480. frontSFW: {
  49481. height: math.unit(6, "feet"),
  49482. weight: math.unit(180, "lb"),
  49483. name: "Front (SFW)",
  49484. image: {
  49485. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49486. extra: 1632/1435,
  49487. bottom: 58/1690
  49488. }
  49489. },
  49490. back: {
  49491. height: math.unit(6, "feet"),
  49492. weight: math.unit(180, "lb"),
  49493. name: "Back",
  49494. image: {
  49495. source: "./media/characters/lydemox-vir/back.svg",
  49496. extra: 1593/1408,
  49497. bottom: 31/1624
  49498. }
  49499. },
  49500. paw: {
  49501. height: math.unit(1.85, "feet"),
  49502. name: "Paw",
  49503. image: {
  49504. source: "./media/characters/lydemox-vir/paw.svg"
  49505. }
  49506. },
  49507. dick: {
  49508. height: math.unit(1.8, "feet"),
  49509. name: "Dick",
  49510. image: {
  49511. source: "./media/characters/lydemox-vir/dick.svg"
  49512. }
  49513. },
  49514. },
  49515. [
  49516. {
  49517. name: "Macro",
  49518. height: math.unit(100, "feet"),
  49519. default: true
  49520. },
  49521. {
  49522. name: "Teramacro",
  49523. height: math.unit(1, "earth")
  49524. },
  49525. {
  49526. name: "Planetary",
  49527. height: math.unit(20, "earths")
  49528. },
  49529. ]
  49530. ))
  49531. characterMakers.push(() => makeCharacter(
  49532. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49533. {
  49534. front: {
  49535. height: math.unit(15 + 8/12, "feet"),
  49536. weight: math.unit(1237, "kg"),
  49537. name: "Front",
  49538. image: {
  49539. source: "./media/characters/mia/front.svg",
  49540. extra: 1573/1446,
  49541. bottom: 58/1631
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Small",
  49548. height: math.unit(9 + 5/12, "feet")
  49549. },
  49550. {
  49551. name: "Normal",
  49552. height: math.unit(15 + 8/12, "feet"),
  49553. default: true
  49554. },
  49555. ]
  49556. ))
  49557. characterMakers.push(() => makeCharacter(
  49558. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49559. {
  49560. front: {
  49561. height: math.unit(10 + 6/12, "feet"),
  49562. weight: math.unit(1.3, "tons"),
  49563. name: "Front",
  49564. image: {
  49565. source: "./media/characters/mr-graves/front.svg",
  49566. extra: 1779/1695,
  49567. bottom: 198/1977
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(10 + 6 /12, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49581. {
  49582. dressedFront: {
  49583. height: math.unit(5 + 8/12, "feet"),
  49584. weight: math.unit(125, "lb"),
  49585. name: "Dressed (Front)",
  49586. image: {
  49587. source: "./media/characters/jess/dressed-front.svg",
  49588. extra: 1176/1152,
  49589. bottom: 42/1218
  49590. }
  49591. },
  49592. dressedSide: {
  49593. height: math.unit(5 + 8/12, "feet"),
  49594. weight: math.unit(125, "lb"),
  49595. name: "Dressed (Side)",
  49596. image: {
  49597. source: "./media/characters/jess/dressed-side.svg",
  49598. extra: 1204/1190,
  49599. bottom: 6/1210
  49600. }
  49601. },
  49602. nudeFront: {
  49603. height: math.unit(5 + 8/12, "feet"),
  49604. weight: math.unit(125, "lb"),
  49605. name: "Nude (Front)",
  49606. image: {
  49607. source: "./media/characters/jess/nude-front.svg",
  49608. extra: 1176/1152,
  49609. bottom: 42/1218
  49610. }
  49611. },
  49612. nudeSide: {
  49613. height: math.unit(5 + 8/12, "feet"),
  49614. weight: math.unit(125, "lb"),
  49615. name: "Nude (Side)",
  49616. image: {
  49617. source: "./media/characters/jess/nude-side.svg",
  49618. extra: 1204/1190,
  49619. bottom: 6/1210
  49620. }
  49621. },
  49622. organsFront: {
  49623. height: math.unit(2.83799342105, "feet"),
  49624. name: "Organs (Front)",
  49625. image: {
  49626. source: "./media/characters/jess/organs-front.svg"
  49627. }
  49628. },
  49629. organsSide: {
  49630. height: math.unit(2.64225290474, "feet"),
  49631. name: "Organs (Side)",
  49632. image: {
  49633. source: "./media/characters/jess/organs-side.svg"
  49634. }
  49635. },
  49636. digestiveTractFront: {
  49637. height: math.unit(2.8106580871, "feet"),
  49638. name: "Digestive Tract (Front)",
  49639. image: {
  49640. source: "./media/characters/jess/digestive-tract-front.svg"
  49641. }
  49642. },
  49643. digestiveTractSide: {
  49644. height: math.unit(2.54365045014, "feet"),
  49645. name: "Digestive Tract (Side)",
  49646. image: {
  49647. source: "./media/characters/jess/digestive-tract-side.svg"
  49648. }
  49649. },
  49650. respiratorySystemFront: {
  49651. height: math.unit(1.11196233456, "feet"),
  49652. name: "Respiratory System (Front)",
  49653. image: {
  49654. source: "./media/characters/jess/respiratory-system-front.svg"
  49655. }
  49656. },
  49657. respiratorySystemSide: {
  49658. height: math.unit(0.89327966297, "feet"),
  49659. name: "Respiratory System (Side)",
  49660. image: {
  49661. source: "./media/characters/jess/respiratory-system-side.svg"
  49662. }
  49663. },
  49664. urinaryTractFront: {
  49665. height: math.unit(1.16126356186, "feet"),
  49666. name: "Urinary Tract (Front)",
  49667. image: {
  49668. source: "./media/characters/jess/urinary-tract-front.svg"
  49669. }
  49670. },
  49671. urinaryTractSide: {
  49672. height: math.unit(1.20910039627, "feet"),
  49673. name: "Urinary Tract (Side)",
  49674. image: {
  49675. source: "./media/characters/jess/urinary-tract-side.svg"
  49676. }
  49677. },
  49678. reproductiveOrgansFront: {
  49679. height: math.unit(0.48422591566, "feet"),
  49680. name: "Reproductive Organs (Front)",
  49681. image: {
  49682. source: "./media/characters/jess/reproductive-organs-front.svg"
  49683. }
  49684. },
  49685. reproductiveOrgansSide: {
  49686. height: math.unit(0.61553314481, "feet"),
  49687. name: "Reproductive Organs (Side)",
  49688. image: {
  49689. source: "./media/characters/jess/reproductive-organs-side.svg"
  49690. }
  49691. },
  49692. breastsFront: {
  49693. height: math.unit(0.47690395121, "feet"),
  49694. name: "Breasts (Front)",
  49695. image: {
  49696. source: "./media/characters/jess/breasts-front.svg"
  49697. }
  49698. },
  49699. breastsSide: {
  49700. height: math.unit(0.30556998307, "feet"),
  49701. name: "Breasts (Side)",
  49702. image: {
  49703. source: "./media/characters/jess/breasts-side.svg"
  49704. }
  49705. },
  49706. heartFront: {
  49707. height: math.unit(0.53011022622, "feet"),
  49708. name: "Heart (Front)",
  49709. image: {
  49710. source: "./media/characters/jess/heart-front.svg"
  49711. }
  49712. },
  49713. heartSide: {
  49714. height: math.unit(0.51790695213, "feet"),
  49715. name: "Heart (Side)",
  49716. image: {
  49717. source: "./media/characters/jess/heart-side.svg"
  49718. }
  49719. },
  49720. earsAndNoseFront: {
  49721. height: math.unit(0.29385483995, "feet"),
  49722. name: "Ears and Nose (Front)",
  49723. image: {
  49724. source: "./media/characters/jess/ears-and-nose-front.svg"
  49725. }
  49726. },
  49727. earsAndNoseSide: {
  49728. height: math.unit(0.18109658741, "feet"),
  49729. name: "Ears and Nose (Side)",
  49730. image: {
  49731. source: "./media/characters/jess/ears-and-nose-side.svg"
  49732. }
  49733. },
  49734. },
  49735. [
  49736. {
  49737. name: "Normal",
  49738. height: math.unit(5 + 8/12, "feet"),
  49739. default: true
  49740. },
  49741. ]
  49742. ))
  49743. characterMakers.push(() => makeCharacter(
  49744. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49745. {
  49746. front: {
  49747. height: math.unit(6, "feet"),
  49748. weight: math.unit(6.64467e-7, "grams"),
  49749. name: "Front",
  49750. image: {
  49751. source: "./media/characters/wimpering/front.svg",
  49752. extra: 597/587,
  49753. bottom: 34/631
  49754. }
  49755. },
  49756. },
  49757. [
  49758. {
  49759. name: "Micro",
  49760. height: math.unit(0.4, "mm"),
  49761. default: true
  49762. },
  49763. ]
  49764. ))
  49765. characterMakers.push(() => makeCharacter(
  49766. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49767. {
  49768. front: {
  49769. height: math.unit(5 + 2/12, "feet"),
  49770. weight: math.unit(110, "lb"),
  49771. name: "Front",
  49772. image: {
  49773. source: "./media/characters/keltre/front.svg",
  49774. extra: 1099/1057,
  49775. bottom: 22/1121
  49776. }
  49777. },
  49778. back: {
  49779. height: math.unit(5 + 2/12, "feet"),
  49780. weight: math.unit(110, "lb"),
  49781. name: "Back",
  49782. image: {
  49783. source: "./media/characters/keltre/back.svg",
  49784. extra: 1095/1053,
  49785. bottom: 17/1112
  49786. }
  49787. },
  49788. dressed: {
  49789. height: math.unit(5 + 2/12, "feet"),
  49790. weight: math.unit(110, "lb"),
  49791. name: "Dressed",
  49792. image: {
  49793. source: "./media/characters/keltre/dressed.svg",
  49794. extra: 1099/1057,
  49795. bottom: 22/1121
  49796. }
  49797. },
  49798. winter: {
  49799. height: math.unit(5 + 2/12, "feet"),
  49800. weight: math.unit(110, "lb"),
  49801. name: "Winter",
  49802. image: {
  49803. source: "./media/characters/keltre/winter.svg",
  49804. extra: 1099/1057,
  49805. bottom: 22/1121
  49806. }
  49807. },
  49808. head: {
  49809. height: math.unit(1.61 * 0.86, "feet"),
  49810. name: "Head",
  49811. image: {
  49812. source: "./media/characters/keltre/head.svg",
  49813. extra: 534/421,
  49814. bottom: 0/534
  49815. }
  49816. },
  49817. hand: {
  49818. height: math.unit(1.3 * 0.86, "feet"),
  49819. name: "Hand",
  49820. image: {
  49821. source: "./media/characters/keltre/hand.svg"
  49822. }
  49823. },
  49824. foot: {
  49825. height: math.unit(1.8 * 0.86, "feet"),
  49826. name: "Foot",
  49827. image: {
  49828. source: "./media/characters/keltre/foot.svg"
  49829. }
  49830. },
  49831. },
  49832. [
  49833. {
  49834. name: "Fine",
  49835. height: math.unit(1, "inch")
  49836. },
  49837. {
  49838. name: "Dimnutive",
  49839. height: math.unit(4, "inches")
  49840. },
  49841. {
  49842. name: "Tiny",
  49843. height: math.unit(1, "foot")
  49844. },
  49845. {
  49846. name: "Small",
  49847. height: math.unit(3, "feet")
  49848. },
  49849. {
  49850. name: "Normal",
  49851. height: math.unit(5 + 2/12, "feet"),
  49852. default: true
  49853. },
  49854. ]
  49855. ))
  49856. characterMakers.push(() => makeCharacter(
  49857. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49858. {
  49859. front: {
  49860. height: math.unit(6 + 2/12, "feet"),
  49861. name: "Front",
  49862. image: {
  49863. source: "./media/characters/nox/front.svg",
  49864. extra: 1917/1830,
  49865. bottom: 74/1991
  49866. }
  49867. },
  49868. back: {
  49869. height: math.unit(6 + 2/12, "feet"),
  49870. name: "Back",
  49871. image: {
  49872. source: "./media/characters/nox/back.svg",
  49873. extra: 1896/1815,
  49874. bottom: 21/1917
  49875. }
  49876. },
  49877. head: {
  49878. height: math.unit(1.1, "feet"),
  49879. name: "Head",
  49880. image: {
  49881. source: "./media/characters/nox/head.svg",
  49882. extra: 874/704,
  49883. bottom: 0/874
  49884. }
  49885. },
  49886. tattoo: {
  49887. height: math.unit(0.729, "feet"),
  49888. name: "Tattoo",
  49889. image: {
  49890. source: "./media/characters/nox/tattoo.svg"
  49891. }
  49892. },
  49893. },
  49894. [
  49895. {
  49896. name: "Normal",
  49897. height: math.unit(6 + 2/12, "feet")
  49898. },
  49899. {
  49900. name: "Gigamacro",
  49901. height: math.unit(2, "earths"),
  49902. default: true
  49903. },
  49904. {
  49905. name: "Cosmic",
  49906. height: math.unit(867, "yottameters")
  49907. },
  49908. ]
  49909. ))
  49910. characterMakers.push(() => makeCharacter(
  49911. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49912. {
  49913. front: {
  49914. height: math.unit(6, "feet"),
  49915. weight: math.unit(150, "lb"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/caspian/front.svg",
  49919. extra: 1443/1359,
  49920. bottom: 0/1443
  49921. }
  49922. },
  49923. back: {
  49924. height: math.unit(6, "feet"),
  49925. weight: math.unit(150, "lb"),
  49926. name: "Back",
  49927. image: {
  49928. source: "./media/characters/caspian/back.svg",
  49929. extra: 1379/1309,
  49930. bottom: 0/1379
  49931. }
  49932. },
  49933. head: {
  49934. height: math.unit(0.9, "feet"),
  49935. name: "Head",
  49936. image: {
  49937. source: "./media/characters/caspian/head.svg",
  49938. extra: 692/492,
  49939. bottom: 0/692
  49940. }
  49941. },
  49942. headAlt: {
  49943. height: math.unit(0.95, "feet"),
  49944. name: "Head (Alt)",
  49945. image: {
  49946. source: "./media/characters/caspian/head-alt.svg",
  49947. extra: 668/508,
  49948. bottom: 0/668
  49949. }
  49950. },
  49951. hand: {
  49952. height: math.unit(0.8, "feet"),
  49953. name: "Hand",
  49954. image: {
  49955. source: "./media/characters/caspian/hand.svg"
  49956. }
  49957. },
  49958. paw: {
  49959. height: math.unit(0.95, "feet"),
  49960. name: "Paw",
  49961. image: {
  49962. source: "./media/characters/caspian/paw.svg"
  49963. }
  49964. },
  49965. },
  49966. [
  49967. {
  49968. name: "Normal",
  49969. height: math.unit(162, "feet"),
  49970. default: true
  49971. },
  49972. ]
  49973. ))
  49974. characterMakers.push(() => makeCharacter(
  49975. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49976. {
  49977. front: {
  49978. height: math.unit(6, "feet"),
  49979. name: "Front",
  49980. image: {
  49981. source: "./media/characters/myra-aisling/front.svg",
  49982. extra: 1268/1166,
  49983. bottom: 73/1341
  49984. }
  49985. },
  49986. back: {
  49987. height: math.unit(6, "feet"),
  49988. name: "Back",
  49989. image: {
  49990. source: "./media/characters/myra-aisling/back.svg",
  49991. extra: 1249/1149,
  49992. bottom: 79/1328
  49993. }
  49994. },
  49995. dressed: {
  49996. height: math.unit(6, "feet"),
  49997. name: "Dressed",
  49998. image: {
  49999. source: "./media/characters/myra-aisling/dressed.svg",
  50000. extra: 1290/1189,
  50001. bottom: 47/1337
  50002. }
  50003. },
  50004. hand: {
  50005. height: math.unit(1.1, "feet"),
  50006. name: "Hand",
  50007. image: {
  50008. source: "./media/characters/myra-aisling/hand.svg"
  50009. }
  50010. },
  50011. paw: {
  50012. height: math.unit(1.23, "feet"),
  50013. name: "Paw",
  50014. image: {
  50015. source: "./media/characters/myra-aisling/paw.svg"
  50016. }
  50017. },
  50018. },
  50019. [
  50020. {
  50021. name: "Normal",
  50022. height: math.unit(160, "feet"),
  50023. default: true
  50024. },
  50025. ]
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50029. {
  50030. front: {
  50031. height: math.unit(6, "feet"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/tenley-sidero/front.svg",
  50035. extra: 1365/1276,
  50036. bottom: 47/1412
  50037. }
  50038. },
  50039. back: {
  50040. height: math.unit(6, "feet"),
  50041. name: "Back",
  50042. image: {
  50043. source: "./media/characters/tenley-sidero/back.svg",
  50044. extra: 1383/1283,
  50045. bottom: 35/1418
  50046. }
  50047. },
  50048. dressed: {
  50049. height: math.unit(6, "feet"),
  50050. name: "Dressed",
  50051. image: {
  50052. source: "./media/characters/tenley-sidero/dressed.svg",
  50053. extra: 1364/1275,
  50054. bottom: 42/1406
  50055. }
  50056. },
  50057. head: {
  50058. height: math.unit(1.47, "feet"),
  50059. name: "Head",
  50060. image: {
  50061. source: "./media/characters/tenley-sidero/head.svg",
  50062. extra: 610/490,
  50063. bottom: 0/610
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Normal",
  50070. height: math.unit(154, "feet"),
  50071. default: true
  50072. },
  50073. ]
  50074. ))
  50075. characterMakers.push(() => makeCharacter(
  50076. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50077. {
  50078. front: {
  50079. height: math.unit(5, "inches"),
  50080. name: "Front",
  50081. image: {
  50082. source: "./media/characters/mallory/front.svg",
  50083. extra: 1919/1678,
  50084. bottom: 29/1948
  50085. }
  50086. },
  50087. hand: {
  50088. height: math.unit(0.73, "inches"),
  50089. name: "Hand",
  50090. image: {
  50091. source: "./media/characters/mallory/hand.svg"
  50092. }
  50093. },
  50094. paw: {
  50095. height: math.unit(0.68, "inches"),
  50096. name: "Paw",
  50097. image: {
  50098. source: "./media/characters/mallory/paw.svg"
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Small",
  50105. height: math.unit(5, "inches"),
  50106. default: true
  50107. },
  50108. ]
  50109. ))
  50110. characterMakers.push(() => makeCharacter(
  50111. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50112. {
  50113. naked: {
  50114. height: math.unit(6, "feet"),
  50115. name: "Naked",
  50116. image: {
  50117. source: "./media/characters/mab/naked.svg",
  50118. extra: 1855/1757,
  50119. bottom: 208/2063
  50120. }
  50121. },
  50122. outside: {
  50123. height: math.unit(6, "feet"),
  50124. name: "Outside",
  50125. image: {
  50126. source: "./media/characters/mab/outside.svg",
  50127. extra: 1855/1757,
  50128. bottom: 208/2063
  50129. }
  50130. },
  50131. party: {
  50132. height: math.unit(6, "feet"),
  50133. name: "Party",
  50134. image: {
  50135. source: "./media/characters/mab/party.svg",
  50136. extra: 1855/1757,
  50137. bottom: 208/2063
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Normal",
  50144. height: math.unit(165, "feet"),
  50145. default: true
  50146. },
  50147. ]
  50148. ))
  50149. characterMakers.push(() => makeCharacter(
  50150. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50151. {
  50152. feral: {
  50153. height: math.unit(12, "feet"),
  50154. weight: math.unit(20000, "lb"),
  50155. name: "Side",
  50156. image: {
  50157. source: "./media/characters/winter/feral.svg",
  50158. extra: 1286/943,
  50159. bottom: 112/1398
  50160. },
  50161. form: "feral",
  50162. default: true
  50163. },
  50164. feralNsfw: {
  50165. height: math.unit(12, "feet"),
  50166. weight: math.unit(20000, "lb"),
  50167. name: "Side (NSFW)",
  50168. image: {
  50169. source: "./media/characters/winter/feral-nsfw.svg",
  50170. extra: 1286/943,
  50171. bottom: 112/1398
  50172. },
  50173. form: "feral"
  50174. },
  50175. dick: {
  50176. height: math.unit(3.79, "feet"),
  50177. name: "Dick",
  50178. image: {
  50179. source: "./media/characters/winter/dick.svg"
  50180. },
  50181. form: "feral"
  50182. },
  50183. anthro: {
  50184. height: math.unit(12, "feet"),
  50185. weight: math.unit(10, "tons"),
  50186. name: "Anthro",
  50187. image: {
  50188. source: "./media/characters/winter/anthro.svg",
  50189. extra: 1701/1553,
  50190. bottom: 64/1765
  50191. },
  50192. form: "anthro",
  50193. default: true
  50194. },
  50195. },
  50196. [
  50197. {
  50198. name: "Big",
  50199. height: math.unit(12, "feet"),
  50200. default: true,
  50201. form: "feral"
  50202. },
  50203. {
  50204. name: "Big",
  50205. height: math.unit(12, "feet"),
  50206. default: true,
  50207. form: "anthro"
  50208. },
  50209. ],
  50210. {
  50211. "feral": {
  50212. name: "Feral",
  50213. default: true
  50214. },
  50215. "anthro": {
  50216. name: "Anthro"
  50217. }
  50218. }
  50219. ))
  50220. characterMakers.push(() => makeCharacter(
  50221. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50222. {
  50223. front: {
  50224. height: math.unit(4.1, "inches"),
  50225. name: "Front",
  50226. image: {
  50227. source: "./media/characters/alto/front.svg",
  50228. extra: 736/627,
  50229. bottom: 90/826
  50230. }
  50231. },
  50232. },
  50233. [
  50234. {
  50235. name: "Normal",
  50236. height: math.unit(4.1, "inches"),
  50237. default: true
  50238. },
  50239. ]
  50240. ))
  50241. characterMakers.push(() => makeCharacter(
  50242. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50243. {
  50244. sitting: {
  50245. height: math.unit(3, "feet"),
  50246. name: "Sitting",
  50247. image: {
  50248. source: "./media/characters/ratstrid-v/sitting.svg",
  50249. extra: 355/310,
  50250. bottom: 136/491
  50251. }
  50252. },
  50253. },
  50254. [
  50255. {
  50256. name: "Normal",
  50257. height: math.unit(3, "feet"),
  50258. default: true
  50259. },
  50260. ]
  50261. ))
  50262. characterMakers.push(() => makeCharacter(
  50263. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50264. {
  50265. back: {
  50266. height: math.unit(6, "feet"),
  50267. weight: math.unit(450, "lb"),
  50268. name: "Back",
  50269. image: {
  50270. source: "./media/characters/siz/back.svg",
  50271. extra: 1449/1274,
  50272. bottom: 13/1462
  50273. }
  50274. },
  50275. },
  50276. [
  50277. {
  50278. name: "Smallest",
  50279. height: math.unit(18 + 3/12, "feet")
  50280. },
  50281. {
  50282. name: "Modest",
  50283. height: math.unit(56 + 8/12, "feet"),
  50284. default: true
  50285. },
  50286. {
  50287. name: "Largest",
  50288. height: math.unit(3590, "feet")
  50289. },
  50290. ]
  50291. ))
  50292. characterMakers.push(() => makeCharacter(
  50293. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50294. {
  50295. front: {
  50296. height: math.unit(5 + 9/12, "feet"),
  50297. weight: math.unit(150, "lb"),
  50298. name: "Front",
  50299. image: {
  50300. source: "./media/characters/ven/front.svg",
  50301. extra: 1372/1320,
  50302. bottom: 73/1445
  50303. }
  50304. },
  50305. side: {
  50306. height: math.unit(5 + 9/12, "feet"),
  50307. weight: math.unit(1150, "lb"),
  50308. name: "Side",
  50309. image: {
  50310. source: "./media/characters/ven/side.svg",
  50311. extra: 1119/1070,
  50312. bottom: 42/1161
  50313. },
  50314. default: true
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Normal",
  50320. height: math.unit(5 + 9/12, "feet"),
  50321. default: true
  50322. },
  50323. ]
  50324. ))
  50325. characterMakers.push(() => makeCharacter(
  50326. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50327. {
  50328. front: {
  50329. height: math.unit(12, "feet"),
  50330. weight: math.unit(1000, "kg"),
  50331. name: "Front",
  50332. image: {
  50333. source: "./media/characters/maple/front.svg",
  50334. extra: 1193/1081,
  50335. bottom: 22/1215
  50336. }
  50337. },
  50338. },
  50339. [
  50340. {
  50341. name: "Compressed",
  50342. height: math.unit(7, "feet")
  50343. },
  50344. {
  50345. name: "Normal",
  50346. height: math.unit(12, "feet"),
  50347. default: true
  50348. },
  50349. ]
  50350. ))
  50351. characterMakers.push(() => makeCharacter(
  50352. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50353. {
  50354. front: {
  50355. height: math.unit(9, "feet"),
  50356. weight: math.unit(1500, "lb"),
  50357. name: "Front",
  50358. image: {
  50359. source: "./media/characters/nora/front.svg",
  50360. extra: 1348/1286,
  50361. bottom: 218/1566
  50362. }
  50363. },
  50364. erect: {
  50365. height: math.unit(9, "feet"),
  50366. weight: math.unit(11500, "lb"),
  50367. name: "Erect",
  50368. image: {
  50369. source: "./media/characters/nora/erect.svg",
  50370. extra: 1488/1433,
  50371. bottom: 133/1621
  50372. }
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(9, "feet"),
  50379. default: true
  50380. },
  50381. ]
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(25, "feet"),
  50388. weight: math.unit(27500, "lb"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/north-caudin/front.svg",
  50392. extra: 1184/1082,
  50393. bottom: 23/1207
  50394. }
  50395. },
  50396. },
  50397. [
  50398. {
  50399. name: "Compressed",
  50400. height: math.unit(10, "feet")
  50401. },
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(25, "feet"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50411. {
  50412. front: {
  50413. height: math.unit(9, "feet"),
  50414. weight: math.unit(1250, "lb"),
  50415. name: "Front",
  50416. image: {
  50417. source: "./media/characters/merrian/front.svg",
  50418. extra: 2393/2304,
  50419. bottom: 40/2433
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Normal",
  50426. height: math.unit(9, "feet"),
  50427. default: true
  50428. },
  50429. ]
  50430. ))
  50431. characterMakers.push(() => makeCharacter(
  50432. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50433. {
  50434. front: {
  50435. height: math.unit(9, "feet"),
  50436. weight: math.unit(1000, "lb"),
  50437. name: "Front",
  50438. image: {
  50439. source: "./media/characters/hazel/front.svg",
  50440. extra: 2351/2298,
  50441. bottom: 38/2389
  50442. }
  50443. },
  50444. },
  50445. [
  50446. {
  50447. name: "Normal",
  50448. height: math.unit(9, "feet"),
  50449. default: true
  50450. },
  50451. ]
  50452. ))
  50453. characterMakers.push(() => makeCharacter(
  50454. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50455. {
  50456. front: {
  50457. height: math.unit(13, "feet"),
  50458. weight: math.unit(3200, "lb"),
  50459. name: "Front",
  50460. image: {
  50461. source: "./media/characters/emma/front.svg",
  50462. extra: 2263/2029,
  50463. bottom: 68/2331
  50464. }
  50465. },
  50466. },
  50467. [
  50468. {
  50469. name: "Normal",
  50470. height: math.unit(13, "feet"),
  50471. default: true
  50472. },
  50473. ]
  50474. ))
  50475. characterMakers.push(() => makeCharacter(
  50476. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50477. {
  50478. front: {
  50479. height: math.unit(11 + 9/12, "feet"),
  50480. weight: math.unit(2500, "lb"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/ilumina/front.svg",
  50484. extra: 2248/2209,
  50485. bottom: 164/2412
  50486. }
  50487. },
  50488. },
  50489. [
  50490. {
  50491. name: "Normal",
  50492. height: math.unit(11 + 9/12, "feet"),
  50493. default: true
  50494. },
  50495. ]
  50496. ))
  50497. characterMakers.push(() => makeCharacter(
  50498. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50499. {
  50500. front: {
  50501. height: math.unit(8 + 10/12, "feet"),
  50502. weight: math.unit(1350, "lb"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/moonshine/front.svg",
  50506. extra: 2395/2288,
  50507. bottom: 40/2435
  50508. }
  50509. },
  50510. },
  50511. [
  50512. {
  50513. name: "Normal",
  50514. height: math.unit(8 + 10/12, "feet"),
  50515. default: true
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50521. {
  50522. front: {
  50523. height: math.unit(14, "feet"),
  50524. weight: math.unit(3400, "lb"),
  50525. name: "Front",
  50526. image: {
  50527. source: "./media/characters/aletia/front.svg",
  50528. extra: 1185/1052,
  50529. bottom: 21/1206
  50530. }
  50531. },
  50532. },
  50533. [
  50534. {
  50535. name: "Compressed",
  50536. height: math.unit(8, "feet")
  50537. },
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(14, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50547. {
  50548. front: {
  50549. height: math.unit(17, "feet"),
  50550. weight: math.unit(6500, "lb"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/deidra/front.svg",
  50554. extra: 1201/1081,
  50555. bottom: 16/1217
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Compressed",
  50562. height: math.unit(9 + 6/12, "feet")
  50563. },
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(17, "feet"),
  50567. default: true
  50568. },
  50569. ]
  50570. ))
  50571. characterMakers.push(() => makeCharacter(
  50572. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50573. {
  50574. front: {
  50575. height: math.unit(7 + 4/12, "feet"),
  50576. weight: math.unit(280, "lb"),
  50577. name: "Front",
  50578. image: {
  50579. source: "./media/characters/freki-yrmori/front.svg",
  50580. extra: 1286/1182,
  50581. bottom: 29/1315
  50582. }
  50583. },
  50584. maw: {
  50585. height: math.unit(0.9, "feet"),
  50586. name: "Maw",
  50587. image: {
  50588. source: "./media/characters/freki-yrmori/maw.svg"
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(7 + 4/12, "feet"),
  50596. default: true
  50597. },
  50598. {
  50599. name: "Macro",
  50600. height: math.unit(38.5, "meters")
  50601. },
  50602. ]
  50603. ))
  50604. characterMakers.push(() => makeCharacter(
  50605. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50606. {
  50607. side: {
  50608. height: math.unit(47.2, "meters"),
  50609. weight: math.unit(10000, "tons"),
  50610. name: "Side",
  50611. image: {
  50612. source: "./media/characters/aetherios/side.svg",
  50613. extra: 2363/642,
  50614. bottom: 221/2584
  50615. }
  50616. },
  50617. top: {
  50618. height: math.unit(240, "meters"),
  50619. weight: math.unit(10000, "tons"),
  50620. name: "Top",
  50621. image: {
  50622. source: "./media/characters/aetherios/top.svg"
  50623. }
  50624. },
  50625. bottom: {
  50626. height: math.unit(240, "meters"),
  50627. weight: math.unit(10000, "tons"),
  50628. name: "Bottom",
  50629. image: {
  50630. source: "./media/characters/aetherios/bottom.svg"
  50631. }
  50632. },
  50633. head: {
  50634. height: math.unit(38.6, "meters"),
  50635. name: "Head",
  50636. image: {
  50637. source: "./media/characters/aetherios/head.svg",
  50638. extra: 1335/1112,
  50639. bottom: 0/1335
  50640. }
  50641. },
  50642. front: {
  50643. height: math.unit(29, "meters"),
  50644. name: "Front",
  50645. image: {
  50646. source: "./media/characters/aetherios/front.svg",
  50647. extra: 1266/953,
  50648. bottom: 158/1424
  50649. }
  50650. },
  50651. maw: {
  50652. height: math.unit(16.37, "meters"),
  50653. name: "Maw",
  50654. image: {
  50655. source: "./media/characters/aetherios/maw.svg",
  50656. extra: 748/637,
  50657. bottom: 0/748
  50658. },
  50659. extraAttributes: {
  50660. preyCapacity: {
  50661. name: "Capacity",
  50662. power: 3,
  50663. type: "volume",
  50664. base: math.unit(1000, "people")
  50665. },
  50666. tongueSize: {
  50667. name: "Tongue Size",
  50668. power: 2,
  50669. type: "area",
  50670. base: math.unit(21, "m^2")
  50671. }
  50672. }
  50673. },
  50674. forepaw: {
  50675. height: math.unit(18, "meters"),
  50676. name: "Forepaw",
  50677. image: {
  50678. source: "./media/characters/aetherios/forepaw.svg"
  50679. }
  50680. },
  50681. hindpaw: {
  50682. height: math.unit(23, "meters"),
  50683. name: "Hindpaw",
  50684. image: {
  50685. source: "./media/characters/aetherios/hindpaw.svg"
  50686. }
  50687. },
  50688. genitals: {
  50689. height: math.unit(42, "meters"),
  50690. name: "Genitals",
  50691. image: {
  50692. source: "./media/characters/aetherios/genitals.svg"
  50693. }
  50694. },
  50695. },
  50696. [
  50697. {
  50698. name: "Normal",
  50699. height: math.unit(47.2, "meters"),
  50700. default: true
  50701. },
  50702. {
  50703. name: "Macro",
  50704. height: math.unit(160, "meters")
  50705. },
  50706. {
  50707. name: "Mega",
  50708. height: math.unit(1.87, "km")
  50709. },
  50710. {
  50711. name: "Giga",
  50712. height: math.unit(40000, "km")
  50713. },
  50714. {
  50715. name: "Stellar",
  50716. height: math.unit(158000000, "km")
  50717. },
  50718. {
  50719. name: "Cosmic",
  50720. height: math.unit(9.46e12, "km")
  50721. },
  50722. ]
  50723. ))
  50724. characterMakers.push(() => makeCharacter(
  50725. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50726. {
  50727. front: {
  50728. height: math.unit(5 + 4/12, "feet"),
  50729. weight: math.unit(80, "lb"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/mizu-gieeg/front.svg",
  50733. extra: 850/709,
  50734. bottom: 52/902
  50735. }
  50736. },
  50737. back: {
  50738. height: math.unit(5 + 4/12, "feet"),
  50739. weight: math.unit(80, "lb"),
  50740. name: "Back",
  50741. image: {
  50742. source: "./media/characters/mizu-gieeg/back.svg",
  50743. extra: 882/745,
  50744. bottom: 25/907
  50745. }
  50746. },
  50747. },
  50748. [
  50749. {
  50750. name: "Normal",
  50751. height: math.unit(5 + 4/12, "feet"),
  50752. default: true
  50753. },
  50754. ]
  50755. ))
  50756. characterMakers.push(() => makeCharacter(
  50757. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50758. {
  50759. front: {
  50760. height: math.unit(6, "feet"),
  50761. name: "Front",
  50762. image: {
  50763. source: "./media/characters/roselle-st-papier/front.svg",
  50764. extra: 1430/1280,
  50765. bottom: 37/1467
  50766. }
  50767. },
  50768. back: {
  50769. height: math.unit(6, "feet"),
  50770. name: "Back",
  50771. image: {
  50772. source: "./media/characters/roselle-st-papier/back.svg",
  50773. extra: 1491/1296,
  50774. bottom: 23/1514
  50775. }
  50776. },
  50777. ear: {
  50778. height: math.unit(1.26, "feet"),
  50779. name: "Ear",
  50780. image: {
  50781. source: "./media/characters/roselle-st-papier/ear.svg"
  50782. }
  50783. },
  50784. },
  50785. [
  50786. {
  50787. name: "Normal",
  50788. height: math.unit(150, "feet"),
  50789. default: true
  50790. },
  50791. ]
  50792. ))
  50793. characterMakers.push(() => makeCharacter(
  50794. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50795. {
  50796. front: {
  50797. height: math.unit(1, "inches"),
  50798. name: "Front",
  50799. image: {
  50800. source: "./media/characters/valargent/front.svg",
  50801. extra: 1825/1694,
  50802. bottom: 62/1887
  50803. }
  50804. },
  50805. back: {
  50806. height: math.unit(1, "inches"),
  50807. name: "Back",
  50808. image: {
  50809. source: "./media/characters/valargent/back.svg",
  50810. extra: 1775/1682,
  50811. bottom: 88/1863
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Micro",
  50818. height: math.unit(1, "inch"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50825. {
  50826. front: {
  50827. height: math.unit(3.4, "meters"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/zarina/front.svg",
  50831. extra: 1733/1425,
  50832. bottom: 93/1826
  50833. }
  50834. },
  50835. squatting: {
  50836. height: math.unit(2.14, "meters"),
  50837. name: "Squatting",
  50838. image: {
  50839. source: "./media/characters/zarina/squatting.svg",
  50840. extra: 1073/788,
  50841. bottom: 63/1136
  50842. }
  50843. },
  50844. back: {
  50845. height: math.unit(2.14, "meters"),
  50846. name: "Back",
  50847. image: {
  50848. source: "./media/characters/zarina/back.svg",
  50849. extra: 1128/885,
  50850. bottom: 0/1128
  50851. }
  50852. },
  50853. },
  50854. [
  50855. {
  50856. name: "Normal",
  50857. height: math.unit(3.4, "meters"),
  50858. default: true
  50859. },
  50860. {
  50861. name: "Big",
  50862. height: math.unit(5, "meters")
  50863. },
  50864. {
  50865. name: "Macro",
  50866. height: math.unit(110, "meters")
  50867. },
  50868. ]
  50869. ))
  50870. characterMakers.push(() => makeCharacter(
  50871. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50872. {
  50873. front: {
  50874. height: math.unit(7, "feet"),
  50875. name: "Front",
  50876. image: {
  50877. source: "./media/characters/ventus-astro-fox/front.svg",
  50878. extra: 1792/1623,
  50879. bottom: 28/1820
  50880. }
  50881. },
  50882. back: {
  50883. height: math.unit(7, "feet"),
  50884. name: "Back",
  50885. image: {
  50886. source: "./media/characters/ventus-astro-fox/back.svg",
  50887. extra: 1789/1620,
  50888. bottom: 31/1820
  50889. }
  50890. },
  50891. outfit: {
  50892. height: math.unit(7, "feet"),
  50893. name: "Outfit",
  50894. image: {
  50895. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50896. extra: 1054/925,
  50897. bottom: 15/1069
  50898. }
  50899. },
  50900. head: {
  50901. height: math.unit(1.12, "feet"),
  50902. name: "Head",
  50903. image: {
  50904. source: "./media/characters/ventus-astro-fox/head.svg",
  50905. extra: 866/504,
  50906. bottom: 0/866
  50907. }
  50908. },
  50909. hand: {
  50910. height: math.unit(1, "feet"),
  50911. name: "Hand",
  50912. image: {
  50913. source: "./media/characters/ventus-astro-fox/hand.svg"
  50914. }
  50915. },
  50916. paw: {
  50917. height: math.unit(1.5, "feet"),
  50918. name: "Paw",
  50919. image: {
  50920. source: "./media/characters/ventus-astro-fox/paw.svg"
  50921. }
  50922. },
  50923. },
  50924. [
  50925. {
  50926. name: "Normal",
  50927. height: math.unit(7, "feet"),
  50928. default: true
  50929. },
  50930. {
  50931. name: "Macro",
  50932. height: math.unit(200, "feet")
  50933. },
  50934. {
  50935. name: "Cosmic",
  50936. height: math.unit(3, "universes")
  50937. },
  50938. ]
  50939. ))
  50940. characterMakers.push(() => makeCharacter(
  50941. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50942. {
  50943. front: {
  50944. height: math.unit(3, "meters"),
  50945. weight: math.unit(7000, "lb"),
  50946. name: "Front",
  50947. image: {
  50948. source: "./media/characters/core-t/front.svg",
  50949. extra: 5729/4941,
  50950. bottom: 1129/6858
  50951. }
  50952. },
  50953. },
  50954. [
  50955. {
  50956. name: "Big",
  50957. height: math.unit(3, "meters"),
  50958. default: true
  50959. },
  50960. ]
  50961. ))
  50962. characterMakers.push(() => makeCharacter(
  50963. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50964. {
  50965. normal: {
  50966. height: math.unit(6 + 6/12, "feet"),
  50967. weight: math.unit(275, "lb"),
  50968. name: "Front",
  50969. image: {
  50970. source: "./media/characters/cadbunny/normal.svg",
  50971. extra: 1129/947,
  50972. bottom: 93/1222
  50973. },
  50974. default: true,
  50975. form: "normal"
  50976. },
  50977. gigantamax: {
  50978. height: math.unit(26, "feet"),
  50979. weight: math.unit(16000, "lb"),
  50980. name: "Front",
  50981. image: {
  50982. source: "./media/characters/cadbunny/gigantamax.svg",
  50983. extra: 1133/944,
  50984. bottom: 90/1223
  50985. },
  50986. default: true,
  50987. form: "gigantamax"
  50988. },
  50989. },
  50990. [
  50991. {
  50992. name: "Normal",
  50993. height: math.unit(6 + 6/12, "feet"),
  50994. default: true,
  50995. form: "normal"
  50996. },
  50997. {
  50998. name: "Small",
  50999. height: math.unit(26, "feet"),
  51000. default: true,
  51001. form: "gigantamax"
  51002. },
  51003. {
  51004. name: "Large",
  51005. height: math.unit(78, "feet"),
  51006. form: "gigantamax"
  51007. },
  51008. ],
  51009. {
  51010. "normal": {
  51011. name: "Normal",
  51012. default: true
  51013. },
  51014. "gigantamax": {
  51015. name: "Gigantamax"
  51016. }
  51017. }
  51018. ))
  51019. characterMakers.push(() => makeCharacter(
  51020. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51021. {
  51022. anthroFront: {
  51023. height: math.unit(8, "feet"),
  51024. weight: math.unit(300, "lb"),
  51025. name: "Front",
  51026. image: {
  51027. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51028. extra: 1272/1176,
  51029. bottom: 53/1325
  51030. },
  51031. form: "anthro",
  51032. default: true
  51033. },
  51034. feralSide: {
  51035. height: math.unit(4, "feet"),
  51036. weight: math.unit(250, "lb"),
  51037. name: "Side",
  51038. image: {
  51039. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51040. extra: 731/621,
  51041. bottom: 0/731
  51042. },
  51043. form: "feral",
  51044. default: true
  51045. },
  51046. },
  51047. [
  51048. {
  51049. name: "Regular",
  51050. height: math.unit(8, "feet"),
  51051. form: "anthro"
  51052. },
  51053. {
  51054. name: "Macro",
  51055. height: math.unit(250, "feet"),
  51056. form: "anthro",
  51057. default: true
  51058. },
  51059. {
  51060. name: "Regular",
  51061. height: math.unit(4, "feet"),
  51062. form: "feral"
  51063. },
  51064. {
  51065. name: "Macro",
  51066. height: math.unit(125, "feet"),
  51067. form: "feral",
  51068. default: true
  51069. },
  51070. ],
  51071. {
  51072. "anthro": {
  51073. name: "Anthro",
  51074. default: true
  51075. },
  51076. "feral": {
  51077. name: "Feral",
  51078. },
  51079. }
  51080. ))
  51081. characterMakers.push(() => makeCharacter(
  51082. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51083. {
  51084. front: {
  51085. height: math.unit(11 + 10/12, "feet"),
  51086. weight: math.unit(1587, "kg"),
  51087. name: "Front",
  51088. image: {
  51089. source: "./media/characters/maple-javira-dragon/front.svg",
  51090. extra: 1136/744,
  51091. bottom: 73/1209
  51092. }
  51093. },
  51094. side: {
  51095. height: math.unit(11 + 10/12, "feet"),
  51096. weight: math.unit(1587, "kg"),
  51097. name: "Side",
  51098. image: {
  51099. source: "./media/characters/maple-javira-dragon/side.svg",
  51100. extra: 712/505,
  51101. bottom: 17/729
  51102. }
  51103. },
  51104. head: {
  51105. height: math.unit(8.05, "feet"),
  51106. name: "Head",
  51107. image: {
  51108. source: "./media/characters/maple-javira-dragon/head.svg",
  51109. extra: 1420/1344,
  51110. bottom: 0/1420
  51111. }
  51112. },
  51113. },
  51114. [
  51115. {
  51116. name: "Normal",
  51117. height: math.unit(11 + 10/12, "feet"),
  51118. default: true
  51119. },
  51120. ]
  51121. ))
  51122. characterMakers.push(() => makeCharacter(
  51123. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51124. {
  51125. front: {
  51126. height: math.unit(117, "cm"),
  51127. weight: math.unit(50, "kg"),
  51128. name: "Front",
  51129. image: {
  51130. source: "./media/characters/sonia-wyverntail/front.svg",
  51131. extra: 708/592,
  51132. bottom: 25/733
  51133. }
  51134. },
  51135. },
  51136. [
  51137. {
  51138. name: "Normal",
  51139. height: math.unit(117, "cm"),
  51140. default: true
  51141. },
  51142. ]
  51143. ))
  51144. characterMakers.push(() => makeCharacter(
  51145. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51146. {
  51147. front: {
  51148. height: math.unit(6 + 5/12, "feet"),
  51149. name: "Front",
  51150. image: {
  51151. source: "./media/characters/micah/front.svg",
  51152. extra: 1758/1546,
  51153. bottom: 214/1972
  51154. }
  51155. },
  51156. },
  51157. [
  51158. {
  51159. name: "Normal",
  51160. height: math.unit(6 + 5/12, "feet"),
  51161. default: true
  51162. },
  51163. ]
  51164. ))
  51165. characterMakers.push(() => makeCharacter(
  51166. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51167. {
  51168. front: {
  51169. height: math.unit(5 + 10/12, "feet"),
  51170. weight: math.unit(220, "lb"),
  51171. name: "Front",
  51172. image: {
  51173. source: "./media/characters/zarya/front.svg",
  51174. extra: 593/572,
  51175. bottom: 50/643
  51176. }
  51177. },
  51178. back: {
  51179. height: math.unit(5 + 10/12, "feet"),
  51180. weight: math.unit(220, "lb"),
  51181. name: "Back",
  51182. image: {
  51183. source: "./media/characters/zarya/back.svg",
  51184. extra: 603/582,
  51185. bottom: 38/641
  51186. }
  51187. },
  51188. },
  51189. [
  51190. {
  51191. name: "Normal",
  51192. height: math.unit(5 + 10/12, "feet"),
  51193. default: true
  51194. },
  51195. ]
  51196. ))
  51197. characterMakers.push(() => makeCharacter(
  51198. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51199. {
  51200. front: {
  51201. height: math.unit(7.5, "feet"),
  51202. name: "Front",
  51203. image: {
  51204. source: "./media/characters/sven-hatisson/front.svg",
  51205. extra: 917/857,
  51206. bottom: 42/959
  51207. }
  51208. },
  51209. back: {
  51210. height: math.unit(7.5, "feet"),
  51211. name: "Back",
  51212. image: {
  51213. source: "./media/characters/sven-hatisson/back.svg",
  51214. extra: 903/856,
  51215. bottom: 15/918
  51216. }
  51217. },
  51218. },
  51219. [
  51220. {
  51221. name: "Base Height",
  51222. height: math.unit(7.5, "feet")
  51223. },
  51224. {
  51225. name: "Usual Height",
  51226. height: math.unit(13.5, "feet"),
  51227. default: true
  51228. },
  51229. {
  51230. name: "Smaller Macro",
  51231. height: math.unit(85, "feet")
  51232. },
  51233. {
  51234. name: "Moderate Macro",
  51235. height: math.unit(320, "feet")
  51236. },
  51237. {
  51238. name: "Large Macro",
  51239. height: math.unit(1000, "feet")
  51240. },
  51241. {
  51242. name: "Largest Size",
  51243. height: math.unit(2, "miles")
  51244. },
  51245. ]
  51246. ))
  51247. characterMakers.push(() => makeCharacter(
  51248. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51249. {
  51250. side: {
  51251. height: math.unit(1.8, "meters"),
  51252. weight: math.unit(275, "kg"),
  51253. name: "Side",
  51254. image: {
  51255. source: "./media/characters/terra/side.svg",
  51256. extra: 1273/1147,
  51257. bottom: 0/1273
  51258. }
  51259. },
  51260. },
  51261. [
  51262. {
  51263. name: "Normal",
  51264. height: math.unit(16.2, "meters"),
  51265. default: true
  51266. },
  51267. ]
  51268. ))
  51269. characterMakers.push(() => makeCharacter(
  51270. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51271. {
  51272. borzoiFront: {
  51273. height: math.unit(6 + 9/12, "feet"),
  51274. name: "Front",
  51275. image: {
  51276. source: "./media/characters/rae/borzoi-front.svg",
  51277. extra: 1161/1098,
  51278. bottom: 31/1192
  51279. },
  51280. form: "borzoi",
  51281. default: true
  51282. },
  51283. werewolfFront: {
  51284. height: math.unit(8 + 7/12, "feet"),
  51285. name: "Front",
  51286. image: {
  51287. source: "./media/characters/rae/werewolf-front.svg",
  51288. extra: 1411/1334,
  51289. bottom: 127/1538
  51290. },
  51291. form: "werewolf",
  51292. default: true
  51293. },
  51294. },
  51295. [
  51296. {
  51297. name: "Normal",
  51298. height: math.unit(6 + 9/12, "feet"),
  51299. default: true,
  51300. form: "borzoi"
  51301. },
  51302. {
  51303. name: "Normal",
  51304. height: math.unit(8 + 7/12, "feet"),
  51305. default: true,
  51306. form: "werewolf"
  51307. },
  51308. ],
  51309. {
  51310. "borzoi": {
  51311. name: "Borzoi",
  51312. default: true
  51313. },
  51314. "werewolf": {
  51315. name: "Werewolf",
  51316. },
  51317. }
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51321. {
  51322. front: {
  51323. height: math.unit(8 + 7/12, "feet"),
  51324. weight: math.unit(482, "lb"),
  51325. name: "Front",
  51326. image: {
  51327. source: "./media/characters/kit/front.svg",
  51328. extra: 1247/1103,
  51329. bottom: 41/1288
  51330. }
  51331. },
  51332. back: {
  51333. height: math.unit(8 + 7/12, "feet"),
  51334. weight: math.unit(482, "lb"),
  51335. name: "Back",
  51336. image: {
  51337. source: "./media/characters/kit/back.svg",
  51338. extra: 1252/1123,
  51339. bottom: 21/1273
  51340. }
  51341. },
  51342. paw: {
  51343. height: math.unit(1.46, "feet"),
  51344. name: "Paw",
  51345. image: {
  51346. source: "./media/characters/kit/paw.svg"
  51347. }
  51348. },
  51349. },
  51350. [
  51351. {
  51352. name: "Normal",
  51353. height: math.unit(2.61, "meters"),
  51354. default: true
  51355. },
  51356. {
  51357. name: "\"Tall\"",
  51358. height: math.unit(8.21, "meters")
  51359. },
  51360. {
  51361. name: "Tall",
  51362. height: math.unit(19.6, "meters")
  51363. },
  51364. {
  51365. name: "Very Tall",
  51366. height: math.unit(57.91, "meters")
  51367. },
  51368. {
  51369. name: "Semi-Macro",
  51370. height: math.unit(138.64, "meters")
  51371. },
  51372. {
  51373. name: "Macro",
  51374. height: math.unit(831.99, "meters")
  51375. },
  51376. {
  51377. name: "EX-Macro",
  51378. height: math.unit(96451121, "meters")
  51379. },
  51380. {
  51381. name: "S1-Omnipotent",
  51382. height: math.unit(4.42074e+9, "meters")
  51383. },
  51384. {
  51385. name: "S2-Omnipotent",
  51386. height: math.unit(9.42074e+17, "meters")
  51387. },
  51388. {
  51389. name: "Omnipotent",
  51390. height: math.unit(4.23112e+24, "meters")
  51391. },
  51392. {
  51393. name: "Hypergod",
  51394. height: math.unit(5.05176e+27, "meters")
  51395. },
  51396. {
  51397. name: "Hypergod-EX",
  51398. height: math.unit(9.45532e+49, "meters")
  51399. },
  51400. {
  51401. name: "Hypergod-SP",
  51402. height: math.unit(9.45532e+195, "meters")
  51403. },
  51404. ]
  51405. ))
  51406. characterMakers.push(() => makeCharacter(
  51407. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51408. {
  51409. side: {
  51410. height: math.unit(0.6, "meters"),
  51411. weight: math.unit(24, "kg"),
  51412. name: "Side",
  51413. image: {
  51414. source: "./media/characters/celeste/side.svg",
  51415. extra: 810/517,
  51416. bottom: 53/863
  51417. }
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Velociraptor",
  51423. height: math.unit(0.6, "meters"),
  51424. default: true
  51425. },
  51426. {
  51427. name: "Utahraptor",
  51428. height: math.unit(1.8, "meters")
  51429. },
  51430. {
  51431. name: "Gallimimus",
  51432. height: math.unit(4.0, "meters")
  51433. },
  51434. {
  51435. name: "Large",
  51436. height: math.unit(20, "meters")
  51437. },
  51438. {
  51439. name: "Planetary",
  51440. height: math.unit(50, "megameters")
  51441. },
  51442. {
  51443. name: "Stellar",
  51444. height: math.unit(1.5, "gigameters")
  51445. },
  51446. {
  51447. name: "Galactic",
  51448. height: math.unit(100, "exameters")
  51449. },
  51450. ]
  51451. ))
  51452. characterMakers.push(() => makeCharacter(
  51453. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51454. {
  51455. front: {
  51456. height: math.unit(6, "feet"),
  51457. weight: math.unit(210, "lb"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/glacia/front.svg",
  51461. extra: 958/901,
  51462. bottom: 45/1003
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Macro",
  51469. height: math.unit(1000, "meters"),
  51470. default: true
  51471. },
  51472. ]
  51473. ))
  51474. characterMakers.push(() => makeCharacter(
  51475. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51476. {
  51477. front: {
  51478. height: math.unit(4, "meters"),
  51479. name: "Front",
  51480. image: {
  51481. source: "./media/characters/giri/front.svg",
  51482. extra: 966/894,
  51483. bottom: 21/987
  51484. }
  51485. },
  51486. },
  51487. [
  51488. {
  51489. name: "Normal",
  51490. height: math.unit(4, "meters"),
  51491. default: true
  51492. },
  51493. ]
  51494. ))
  51495. characterMakers.push(() => makeCharacter(
  51496. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51497. {
  51498. back: {
  51499. height: math.unit(4, "feet"),
  51500. weight: math.unit(37, "lb"),
  51501. name: "Back",
  51502. image: {
  51503. source: "./media/characters/tin/back.svg",
  51504. extra: 845/780,
  51505. bottom: 28/873
  51506. }
  51507. },
  51508. },
  51509. [
  51510. {
  51511. name: "Normal",
  51512. height: math.unit(4, "feet"),
  51513. default: true
  51514. },
  51515. ]
  51516. ))
  51517. characterMakers.push(() => makeCharacter(
  51518. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51519. {
  51520. front: {
  51521. height: math.unit(25, "feet"),
  51522. name: "Front",
  51523. image: {
  51524. source: "./media/characters/cadenza-vivace/front.svg",
  51525. extra: 1842/1578,
  51526. bottom: 30/1872
  51527. }
  51528. },
  51529. },
  51530. [
  51531. {
  51532. name: "Macro",
  51533. height: math.unit(25, "feet"),
  51534. default: true
  51535. },
  51536. ]
  51537. ))
  51538. characterMakers.push(() => makeCharacter(
  51539. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51540. {
  51541. front: {
  51542. height: math.unit(10, "feet"),
  51543. weight: math.unit(625, "kg"),
  51544. name: "Front",
  51545. image: {
  51546. source: "./media/characters/zain/front.svg",
  51547. extra: 1682/1498,
  51548. bottom: 223/1905
  51549. }
  51550. },
  51551. back: {
  51552. height: math.unit(10, "feet"),
  51553. weight: math.unit(625, "kg"),
  51554. name: "Back",
  51555. image: {
  51556. source: "./media/characters/zain/back.svg",
  51557. extra: 1814/1657,
  51558. bottom: 152/1966
  51559. }
  51560. },
  51561. head: {
  51562. height: math.unit(10, "feet"),
  51563. weight: math.unit(625, "kg"),
  51564. name: "Head",
  51565. image: {
  51566. source: "./media/characters/zain/head.svg",
  51567. extra: 1059/762,
  51568. bottom: 0/1059
  51569. }
  51570. },
  51571. },
  51572. [
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(10, "feet"),
  51576. default: true
  51577. },
  51578. ]
  51579. ))
  51580. characterMakers.push(() => makeCharacter(
  51581. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51582. {
  51583. front: {
  51584. height: math.unit(6 + 5/12, "feet"),
  51585. weight: math.unit(750, "lb"),
  51586. name: "Front",
  51587. image: {
  51588. source: "./media/characters/ruchex/front.svg",
  51589. extra: 877/820,
  51590. bottom: 17/894
  51591. },
  51592. extraAttributes: {
  51593. "width": {
  51594. name: "Width",
  51595. power: 1,
  51596. type: "length",
  51597. base: math.unit(4.757, "feet")
  51598. },
  51599. }
  51600. },
  51601. },
  51602. [
  51603. {
  51604. name: "Normal",
  51605. height: math.unit(6 + 5/12, "feet"),
  51606. default: true
  51607. },
  51608. ]
  51609. ))
  51610. characterMakers.push(() => makeCharacter(
  51611. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51612. {
  51613. dressedFront: {
  51614. height: math.unit(191, "cm"),
  51615. weight: math.unit(80, "kg"),
  51616. name: "Front",
  51617. image: {
  51618. source: "./media/characters/buster/dressed-front.svg",
  51619. extra: 1022/973,
  51620. bottom: 69/1091
  51621. }
  51622. },
  51623. dressedBack: {
  51624. height: math.unit(191, "cm"),
  51625. weight: math.unit(80, "kg"),
  51626. name: "Back",
  51627. image: {
  51628. source: "./media/characters/buster/dressed-back.svg",
  51629. extra: 1018/970,
  51630. bottom: 55/1073
  51631. }
  51632. },
  51633. nudeFront: {
  51634. height: math.unit(191, "cm"),
  51635. weight: math.unit(80, "kg"),
  51636. name: "Front (Nude)",
  51637. image: {
  51638. source: "./media/characters/buster/nude-front.svg",
  51639. extra: 1022/973,
  51640. bottom: 69/1091
  51641. }
  51642. },
  51643. nudeBack: {
  51644. height: math.unit(191, "cm"),
  51645. weight: math.unit(80, "kg"),
  51646. name: "Back (Nude)",
  51647. image: {
  51648. source: "./media/characters/buster/nude-back.svg",
  51649. extra: 1018/970,
  51650. bottom: 55/1073
  51651. }
  51652. },
  51653. dick: {
  51654. height: math.unit(2.59, "feet"),
  51655. name: "Dick",
  51656. image: {
  51657. source: "./media/characters/buster/dick.svg"
  51658. }
  51659. },
  51660. ass: {
  51661. height: math.unit(1.2, "feet"),
  51662. name: "Ass",
  51663. image: {
  51664. source: "./media/characters/buster/ass.svg"
  51665. }
  51666. },
  51667. },
  51668. [
  51669. {
  51670. name: "Normal",
  51671. height: math.unit(191, "cm"),
  51672. default: true
  51673. },
  51674. ]
  51675. ))
  51676. characterMakers.push(() => makeCharacter(
  51677. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51678. {
  51679. side: {
  51680. height: math.unit(8.1, "feet"),
  51681. weight: math.unit(3500, "lb"),
  51682. name: "Side",
  51683. image: {
  51684. source: "./media/characters/sonya/side.svg",
  51685. extra: 1730/1317,
  51686. bottom: 86/1816
  51687. }
  51688. },
  51689. },
  51690. [
  51691. {
  51692. name: "Normal",
  51693. height: math.unit(8.1, "feet"),
  51694. default: true
  51695. },
  51696. ]
  51697. ))
  51698. characterMakers.push(() => makeCharacter(
  51699. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51700. {
  51701. front: {
  51702. height: math.unit(6, "feet"),
  51703. weight: math.unit(150, "lb"),
  51704. name: "Front",
  51705. image: {
  51706. source: "./media/characters/cadence-andrysiak/front.svg",
  51707. extra: 1164/1121,
  51708. bottom: 60/1224
  51709. }
  51710. },
  51711. back: {
  51712. height: math.unit(6, "feet"),
  51713. weight: math.unit(150, "lb"),
  51714. name: "Back",
  51715. image: {
  51716. source: "./media/characters/cadence-andrysiak/back.svg",
  51717. extra: 1200/1165,
  51718. bottom: 9/1209
  51719. }
  51720. },
  51721. dressed: {
  51722. height: math.unit(6, "feet"),
  51723. weight: math.unit(150, "lb"),
  51724. name: "Dressed",
  51725. image: {
  51726. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51727. extra: 1164/1121,
  51728. bottom: 60/1224
  51729. }
  51730. },
  51731. },
  51732. [
  51733. {
  51734. name: "Micro",
  51735. height: math.unit(1, "mm")
  51736. },
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(6, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51746. {
  51747. front: {
  51748. height: math.unit(60, "inches"),
  51749. weight: math.unit(16, "lb"),
  51750. preyCapacity: math.unit(80, "liters"),
  51751. name: "Front",
  51752. image: {
  51753. source: "./media/characters/penny-lynx/front.svg",
  51754. extra: 1959/1769,
  51755. bottom: 49/2008
  51756. }
  51757. },
  51758. },
  51759. [
  51760. {
  51761. name: "Nokia",
  51762. height: math.unit(2, "inches")
  51763. },
  51764. {
  51765. name: "Desktop",
  51766. height: math.unit(24, "inches")
  51767. },
  51768. {
  51769. name: "TV",
  51770. height: math.unit(60, "inches")
  51771. },
  51772. {
  51773. name: "Jumbotron",
  51774. height: math.unit(12, "feet")
  51775. },
  51776. {
  51777. name: "Billboard",
  51778. height: math.unit(48, "feet"),
  51779. default: true
  51780. },
  51781. {
  51782. name: "IMAX",
  51783. height: math.unit(96, "feet")
  51784. },
  51785. {
  51786. name: "SINGULARITY",
  51787. height: math.unit(864938, "miles")
  51788. },
  51789. ]
  51790. ))
  51791. characterMakers.push(() => makeCharacter(
  51792. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51793. {
  51794. front: {
  51795. height: math.unit(5 + 4/12, "feet"),
  51796. weight: math.unit(230, "lb"),
  51797. name: "Front",
  51798. image: {
  51799. source: "./media/characters/sukebe/front.svg",
  51800. extra: 2130/2038,
  51801. bottom: 90/2220
  51802. }
  51803. },
  51804. back: {
  51805. height: math.unit(3.48, "feet"),
  51806. weight: math.unit(230, "lb"),
  51807. name: "Back",
  51808. image: {
  51809. source: "./media/characters/sukebe/back.svg",
  51810. extra: 1670/1604,
  51811. bottom: 0/1670
  51812. }
  51813. },
  51814. },
  51815. [
  51816. {
  51817. name: "Normal",
  51818. height: math.unit(5 + 4/12, "feet"),
  51819. default: true
  51820. },
  51821. ]
  51822. ))
  51823. characterMakers.push(() => makeCharacter(
  51824. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51825. {
  51826. front: {
  51827. height: math.unit(6, "feet"),
  51828. name: "Front",
  51829. image: {
  51830. source: "./media/characters/nylla/front.svg",
  51831. extra: 1868/1699,
  51832. bottom: 97/1965
  51833. }
  51834. },
  51835. back: {
  51836. height: math.unit(6, "feet"),
  51837. name: "Back",
  51838. image: {
  51839. source: "./media/characters/nylla/back.svg",
  51840. extra: 1889/1712,
  51841. bottom: 93/1982
  51842. }
  51843. },
  51844. frontNsfw: {
  51845. height: math.unit(6, "feet"),
  51846. name: "Front (NSFW)",
  51847. image: {
  51848. source: "./media/characters/nylla/front-nsfw.svg",
  51849. extra: 1868/1699,
  51850. bottom: 97/1965
  51851. },
  51852. extraAttributes: {
  51853. "dickLength": {
  51854. name: "Dick Length",
  51855. power: 1,
  51856. type: "length",
  51857. base: math.unit(1.4, "feet")
  51858. },
  51859. "cumVolume": {
  51860. name: "Cum Volume",
  51861. power: 3,
  51862. type: "volume",
  51863. base: math.unit(100, "mL")
  51864. },
  51865. }
  51866. },
  51867. backNsfw: {
  51868. height: math.unit(6, "feet"),
  51869. name: "Back (NSFW)",
  51870. image: {
  51871. source: "./media/characters/nylla/back-nsfw.svg",
  51872. extra: 1889/1712,
  51873. bottom: 93/1982
  51874. }
  51875. },
  51876. maw: {
  51877. height: math.unit(2.10, "feet"),
  51878. name: "Maw",
  51879. image: {
  51880. source: "./media/characters/nylla/maw.svg"
  51881. }
  51882. },
  51883. paws: {
  51884. height: math.unit(2.06, "feet"),
  51885. name: "Paws",
  51886. image: {
  51887. source: "./media/characters/nylla/paws.svg"
  51888. }
  51889. },
  51890. muzzle: {
  51891. height: math.unit(0.61, "feet"),
  51892. name: "Muzzle",
  51893. image: {
  51894. source: "./media/characters/nylla/muzzle.svg"
  51895. }
  51896. },
  51897. sheath: {
  51898. height: math.unit(1.305, "feet"),
  51899. name: "Sheath",
  51900. image: {
  51901. source: "./media/characters/nylla/sheath.svg"
  51902. }
  51903. },
  51904. },
  51905. [
  51906. {
  51907. name: "Micro",
  51908. height: math.unit(7.5, "inches")
  51909. },
  51910. {
  51911. name: "Normal",
  51912. height: math.unit(7, "feet"),
  51913. default: true
  51914. },
  51915. {
  51916. name: "Macro",
  51917. height: math.unit(60, "feet")
  51918. },
  51919. {
  51920. name: "Mega",
  51921. height: math.unit(200, "feet")
  51922. },
  51923. ]
  51924. ))
  51925. characterMakers.push(() => makeCharacter(
  51926. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51927. {
  51928. front: {
  51929. height: math.unit(10, "feet"),
  51930. weight: math.unit(2300, "lb"),
  51931. name: "Front",
  51932. image: {
  51933. source: "./media/characters/hunt3r/front.svg",
  51934. extra: 1909/1742,
  51935. bottom: 46/1955
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(10, "feet"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51949. {
  51950. dressed: {
  51951. height: math.unit(11, "feet"),
  51952. weight: math.unit(18500, "lb"),
  51953. preyCapacity: math.unit(9, "people"),
  51954. name: "Dressed",
  51955. image: {
  51956. source: "./media/characters/cylphis/dressed.svg",
  51957. extra: 1028/1003,
  51958. bottom: 75/1103
  51959. },
  51960. },
  51961. undressed: {
  51962. height: math.unit(11, "feet"),
  51963. weight: math.unit(18500, "lb"),
  51964. preyCapacity: math.unit(9, "people"),
  51965. name: "Undressed",
  51966. image: {
  51967. source: "./media/characters/cylphis/undressed.svg",
  51968. extra: 1028/1003,
  51969. bottom: 75/1103
  51970. }
  51971. },
  51972. full: {
  51973. height: math.unit(11, "feet"),
  51974. weight: math.unit(18500 + 150*9, "lb"),
  51975. preyCapacity: math.unit(9, "people"),
  51976. name: "Full",
  51977. image: {
  51978. source: "./media/characters/cylphis/full.svg",
  51979. extra: 1028/1003,
  51980. bottom: 75/1103
  51981. }
  51982. },
  51983. },
  51984. [
  51985. {
  51986. name: "Small",
  51987. height: math.unit(8, "feet")
  51988. },
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(11, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(2 + 7/12, "feet"),
  52001. name: "Front",
  52002. image: {
  52003. source: "./media/characters/orishan/front.svg",
  52004. extra: 1058/1023,
  52005. bottom: 23/1081
  52006. }
  52007. },
  52008. back: {
  52009. height: math.unit(2 + 7/12, "feet"),
  52010. name: "Back",
  52011. image: {
  52012. source: "./media/characters/orishan/back.svg",
  52013. extra: 1058/1023,
  52014. bottom: 23/1081
  52015. }
  52016. },
  52017. },
  52018. [
  52019. {
  52020. name: "Micro",
  52021. height: math.unit(2, "cm")
  52022. },
  52023. {
  52024. name: "Normal",
  52025. height: math.unit(2 + 7/12, "feet"),
  52026. default: true
  52027. },
  52028. ]
  52029. ))
  52030. characterMakers.push(() => makeCharacter(
  52031. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52032. {
  52033. front: {
  52034. height: math.unit(3, "meters"),
  52035. weight: math.unit(508, "kg"),
  52036. name: "Front",
  52037. image: {
  52038. source: "./media/characters/seranis/front.svg",
  52039. extra: 1478/1454,
  52040. bottom: 41/1519
  52041. }
  52042. },
  52043. },
  52044. [
  52045. {
  52046. name: "Normal",
  52047. height: math.unit(3, "meters"),
  52048. default: true
  52049. },
  52050. {
  52051. name: "Macro",
  52052. height: math.unit(108, "meters")
  52053. },
  52054. {
  52055. name: "Megamacro",
  52056. height: math.unit(1250, "meters")
  52057. },
  52058. ]
  52059. ))
  52060. characterMakers.push(() => makeCharacter(
  52061. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52062. {
  52063. undressed: {
  52064. height: math.unit(5 + 3/12, "feet"),
  52065. name: "Undressed",
  52066. image: {
  52067. source: "./media/characters/ankou/undressed.svg",
  52068. extra: 1301/1213,
  52069. bottom: 87/1388
  52070. }
  52071. },
  52072. dressed: {
  52073. height: math.unit(5 + 3/12, "feet"),
  52074. name: "Dressed",
  52075. image: {
  52076. source: "./media/characters/ankou/dressed.svg",
  52077. extra: 1301/1213,
  52078. bottom: 87/1388
  52079. }
  52080. },
  52081. head: {
  52082. height: math.unit(1.61, "feet"),
  52083. name: "Head",
  52084. image: {
  52085. source: "./media/characters/ankou/head.svg"
  52086. }
  52087. },
  52088. },
  52089. [
  52090. {
  52091. name: "Normal",
  52092. height: math.unit(5 + 3/12, "feet"),
  52093. default: true
  52094. },
  52095. ]
  52096. ))
  52097. characterMakers.push(() => makeCharacter(
  52098. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52099. {
  52100. side: {
  52101. height: math.unit(6 + 3/12, "feet"),
  52102. weight: math.unit(200, "kg"),
  52103. name: "Side",
  52104. image: {
  52105. source: "./media/characters/juniper-skunktaur/side.svg",
  52106. extra: 1574/1229,
  52107. bottom: 38/1612
  52108. }
  52109. },
  52110. front: {
  52111. height: math.unit(6 + 3/12, "feet"),
  52112. weight: math.unit(200, "kg"),
  52113. name: "Front",
  52114. image: {
  52115. source: "./media/characters/juniper-skunktaur/front.svg",
  52116. extra: 1337/1278,
  52117. bottom: 22/1359
  52118. }
  52119. },
  52120. back: {
  52121. height: math.unit(6 + 3/12, "feet"),
  52122. weight: math.unit(200, "kg"),
  52123. name: "Back",
  52124. image: {
  52125. source: "./media/characters/juniper-skunktaur/back.svg",
  52126. extra: 1618/1273,
  52127. bottom: 13/1631
  52128. }
  52129. },
  52130. top: {
  52131. height: math.unit(2.62, "feet"),
  52132. weight: math.unit(200, "kg"),
  52133. name: "Top",
  52134. image: {
  52135. source: "./media/characters/juniper-skunktaur/top.svg"
  52136. }
  52137. },
  52138. },
  52139. [
  52140. {
  52141. name: "Normal",
  52142. height: math.unit(6 + 3/12, "feet"),
  52143. default: true
  52144. },
  52145. ]
  52146. ))
  52147. characterMakers.push(() => makeCharacter(
  52148. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52149. {
  52150. front: {
  52151. height: math.unit(20.5, "feet"),
  52152. name: "Front",
  52153. image: {
  52154. source: "./media/characters/rei/front.svg",
  52155. extra: 1349/1195,
  52156. bottom: 31/1380
  52157. }
  52158. },
  52159. back: {
  52160. height: math.unit(20.5, "feet"),
  52161. name: "Back",
  52162. image: {
  52163. source: "./media/characters/rei/back.svg",
  52164. extra: 1358/1204,
  52165. bottom: 22/1380
  52166. }
  52167. },
  52168. pawsDigi: {
  52169. height: math.unit(3.45, "feet"),
  52170. name: "Paws (Digi)",
  52171. image: {
  52172. source: "./media/characters/rei/paws-digi.svg"
  52173. }
  52174. },
  52175. pawsPlanti: {
  52176. height: math.unit(3.45, "feet"),
  52177. name: "Paws (Planti)",
  52178. image: {
  52179. source: "./media/characters/rei/paws-planti.svg"
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Normal",
  52186. height: math.unit(20.5, "feet"),
  52187. default: true
  52188. },
  52189. ]
  52190. ))
  52191. characterMakers.push(() => makeCharacter(
  52192. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52193. {
  52194. front: {
  52195. height: math.unit(5 + 11/12, "feet"),
  52196. name: "Front",
  52197. image: {
  52198. source: "./media/characters/carina/front.svg",
  52199. extra: 1720/1449,
  52200. bottom: 14/1734
  52201. }
  52202. },
  52203. back: {
  52204. height: math.unit(5 + 11/12, "feet"),
  52205. name: "Back",
  52206. image: {
  52207. source: "./media/characters/carina/back.svg",
  52208. extra: 1493/1445,
  52209. bottom: 17/1510
  52210. }
  52211. },
  52212. paw: {
  52213. height: math.unit(0.92, "feet"),
  52214. name: "Paw",
  52215. image: {
  52216. source: "./media/characters/carina/paw.svg"
  52217. }
  52218. },
  52219. },
  52220. [
  52221. {
  52222. name: "Normal",
  52223. height: math.unit(5 + 11/12, "feet"),
  52224. default: true
  52225. },
  52226. ]
  52227. ))
  52228. characterMakers.push(() => makeCharacter(
  52229. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52230. {
  52231. front: {
  52232. height: math.unit(4.88, "meters"),
  52233. name: "Front",
  52234. image: {
  52235. source: "./media/characters/maya/front.svg",
  52236. extra: 1222/1145,
  52237. bottom: 57/1279
  52238. }
  52239. },
  52240. },
  52241. [
  52242. {
  52243. name: "Normal",
  52244. height: math.unit(4.88, "meters"),
  52245. default: true
  52246. },
  52247. {
  52248. name: "Macro",
  52249. height: math.unit(38.1, "meters")
  52250. },
  52251. {
  52252. name: "Macro+",
  52253. height: math.unit(152.4, "meters")
  52254. },
  52255. {
  52256. name: "Macro++",
  52257. height: math.unit(16.09, "km")
  52258. },
  52259. {
  52260. name: "Mega-macro",
  52261. height: math.unit(700, "megameters")
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52267. {
  52268. front: {
  52269. height: math.unit(6 + 2/12, "feet"),
  52270. weight: math.unit(500, "lb"),
  52271. preyCapacity: math.unit(4, "people"),
  52272. name: "Front",
  52273. image: {
  52274. source: "./media/characters/yepir/front.svg"
  52275. }
  52276. },
  52277. side: {
  52278. height: math.unit(6 + 2/12, "feet"),
  52279. weight: math.unit(500, "lb"),
  52280. preyCapacity: math.unit(4, "people"),
  52281. name: "Side",
  52282. image: {
  52283. source: "./media/characters/yepir/side.svg"
  52284. }
  52285. },
  52286. paw: {
  52287. height: math.unit(1.05, "feet"),
  52288. name: "Paw",
  52289. image: {
  52290. source: "./media/characters/yepir/paw.svg"
  52291. }
  52292. },
  52293. },
  52294. [
  52295. {
  52296. name: "Normal",
  52297. height: math.unit(6 + 2/12, "feet"),
  52298. default: true
  52299. },
  52300. ]
  52301. ))
  52302. characterMakers.push(() => makeCharacter(
  52303. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52304. {
  52305. front: {
  52306. height: math.unit(5 + 4/12, "feet"),
  52307. name: "Front",
  52308. image: {
  52309. source: "./media/characters/russec/front.svg",
  52310. extra: 1926/1626,
  52311. bottom: 72/1998
  52312. }
  52313. },
  52314. back: {
  52315. height: math.unit(5 + 4/12, "feet"),
  52316. name: "Back",
  52317. image: {
  52318. source: "./media/characters/russec/back.svg",
  52319. extra: 1910/1591,
  52320. bottom: 48/1958
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Small",
  52327. height: math.unit(5 + 4/12, "feet")
  52328. },
  52329. {
  52330. name: "Normal",
  52331. height: math.unit(72, "feet"),
  52332. default: true
  52333. },
  52334. ]
  52335. ))
  52336. characterMakers.push(() => makeCharacter(
  52337. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52338. {
  52339. side: {
  52340. height: math.unit(12, "feet"),
  52341. name: "Side",
  52342. image: {
  52343. source: "./media/characters/cianus/side.svg",
  52344. extra: 808/526,
  52345. bottom: 61/869
  52346. }
  52347. },
  52348. },
  52349. [
  52350. {
  52351. name: "Normal",
  52352. height: math.unit(12, "feet"),
  52353. default: true
  52354. },
  52355. ]
  52356. ))
  52357. characterMakers.push(() => makeCharacter(
  52358. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52359. {
  52360. front: {
  52361. height: math.unit(9 + 6/12, "feet"),
  52362. weight: math.unit(300, "lb"),
  52363. name: "Front",
  52364. image: {
  52365. source: "./media/characters/ahab/front.svg",
  52366. extra: 1897/1868,
  52367. bottom: 121/2018
  52368. }
  52369. },
  52370. frontNsfw: {
  52371. height: math.unit(9 + 6/12, "feet"),
  52372. weight: math.unit(300, "lb"),
  52373. name: "Front-nsfw",
  52374. image: {
  52375. source: "./media/characters/ahab/front-nsfw.svg",
  52376. extra: 1897/1868,
  52377. bottom: 121/2018
  52378. }
  52379. },
  52380. },
  52381. [
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(9 + 6/12, "feet")
  52385. },
  52386. {
  52387. name: "Macro",
  52388. height: math.unit(657, "feet"),
  52389. default: true
  52390. },
  52391. ]
  52392. ))
  52393. characterMakers.push(() => makeCharacter(
  52394. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52395. {
  52396. front: {
  52397. height: math.unit(2.69, "meters"),
  52398. weight: math.unit(132, "kg"),
  52399. name: "Front",
  52400. image: {
  52401. source: "./media/characters/aarkus/front.svg",
  52402. extra: 1400/1231,
  52403. bottom: 34/1434
  52404. }
  52405. },
  52406. back: {
  52407. height: math.unit(2.69, "meters"),
  52408. weight: math.unit(132, "kg"),
  52409. name: "Back",
  52410. image: {
  52411. source: "./media/characters/aarkus/back.svg",
  52412. extra: 1381/1218,
  52413. bottom: 30/1411
  52414. }
  52415. },
  52416. frontNsfw: {
  52417. height: math.unit(2.69, "meters"),
  52418. weight: math.unit(132, "kg"),
  52419. name: "Front (NSFW)",
  52420. image: {
  52421. source: "./media/characters/aarkus/front-nsfw.svg",
  52422. extra: 1400/1231,
  52423. bottom: 34/1434
  52424. }
  52425. },
  52426. foot: {
  52427. height: math.unit(1.45, "feet"),
  52428. name: "Foot",
  52429. image: {
  52430. source: "./media/characters/aarkus/foot.svg"
  52431. }
  52432. },
  52433. head: {
  52434. height: math.unit(2.85, "feet"),
  52435. name: "Head",
  52436. image: {
  52437. source: "./media/characters/aarkus/head.svg"
  52438. }
  52439. },
  52440. headAlt: {
  52441. height: math.unit(3.07, "feet"),
  52442. name: "Head (Alt)",
  52443. image: {
  52444. source: "./media/characters/aarkus/head-alt.svg"
  52445. }
  52446. },
  52447. mouth: {
  52448. height: math.unit(1.25, "feet"),
  52449. name: "Mouth",
  52450. image: {
  52451. source: "./media/characters/aarkus/mouth.svg"
  52452. }
  52453. },
  52454. dick: {
  52455. height: math.unit(1.77, "feet"),
  52456. name: "Dick",
  52457. image: {
  52458. source: "./media/characters/aarkus/dick.svg"
  52459. }
  52460. },
  52461. },
  52462. [
  52463. {
  52464. name: "Normal",
  52465. height: math.unit(2.69, "meters"),
  52466. default: true
  52467. },
  52468. {
  52469. name: "Macro",
  52470. height: math.unit(269, "meters")
  52471. },
  52472. {
  52473. name: "Macro+",
  52474. height: math.unit(672.5, "meters")
  52475. },
  52476. {
  52477. name: "Megamacro",
  52478. height: math.unit(2.017, "km")
  52479. },
  52480. ]
  52481. ))
  52482. characterMakers.push(() => makeCharacter(
  52483. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52484. {
  52485. front: {
  52486. height: math.unit(23.47, "cm"),
  52487. weight: math.unit(600, "grams"),
  52488. name: "Front",
  52489. image: {
  52490. source: "./media/characters/diode/front.svg",
  52491. extra: 1778/1396,
  52492. bottom: 95/1873
  52493. }
  52494. },
  52495. side: {
  52496. height: math.unit(23.47, "cm"),
  52497. weight: math.unit(600, "grams"),
  52498. name: "Side",
  52499. image: {
  52500. source: "./media/characters/diode/side.svg",
  52501. extra: 1831/1404,
  52502. bottom: 86/1917
  52503. }
  52504. },
  52505. wings: {
  52506. height: math.unit(0.683, "feet"),
  52507. name: "Wings",
  52508. image: {
  52509. source: "./media/characters/diode/wings.svg"
  52510. }
  52511. },
  52512. },
  52513. [
  52514. {
  52515. name: "Normal",
  52516. height: math.unit(23.47, "cm"),
  52517. default: true
  52518. },
  52519. ]
  52520. ))
  52521. characterMakers.push(() => makeCharacter(
  52522. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52523. {
  52524. front: {
  52525. height: math.unit(6 + 3/12, "feet"),
  52526. weight: math.unit(250, "lb"),
  52527. name: "Front",
  52528. image: {
  52529. source: "./media/characters/reika/front.svg",
  52530. extra: 1120/1078,
  52531. bottom: 86/1206
  52532. }
  52533. },
  52534. },
  52535. [
  52536. {
  52537. name: "Normal",
  52538. height: math.unit(6 + 3/12, "feet"),
  52539. default: true
  52540. },
  52541. ]
  52542. ))
  52543. characterMakers.push(() => makeCharacter(
  52544. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52545. {
  52546. front: {
  52547. height: math.unit(16 + 8/12, "feet"),
  52548. weight: math.unit(9000, "lb"),
  52549. name: "Front",
  52550. image: {
  52551. source: "./media/characters/lokuto-takama/front.svg",
  52552. extra: 1774/1632,
  52553. bottom: 147/1921
  52554. },
  52555. extraAttributes: {
  52556. "bustWidth": {
  52557. name: "Bust Width",
  52558. power: 1,
  52559. type: "length",
  52560. base: math.unit(2.4, "meters")
  52561. },
  52562. "breastWeight": {
  52563. name: "Breast Weight",
  52564. power: 3,
  52565. type: "mass",
  52566. base: math.unit(1000, "kg")
  52567. },
  52568. }
  52569. },
  52570. },
  52571. [
  52572. {
  52573. name: "Normal",
  52574. height: math.unit(16 + 8/12, "feet"),
  52575. default: true
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52581. {
  52582. front: {
  52583. height: math.unit(10, "cm"),
  52584. weight: math.unit(850, "grams"),
  52585. name: "Front",
  52586. image: {
  52587. source: "./media/characters/owak-bone/front.svg",
  52588. extra: 1965/1801,
  52589. bottom: 31/1996
  52590. }
  52591. },
  52592. },
  52593. [
  52594. {
  52595. name: "Normal",
  52596. height: math.unit(10, "cm"),
  52597. default: true
  52598. },
  52599. ]
  52600. ))
  52601. characterMakers.push(() => makeCharacter(
  52602. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52603. {
  52604. front: {
  52605. height: math.unit(2 + 6/12, "feet"),
  52606. weight: math.unit(9, "lb"),
  52607. name: "Front",
  52608. image: {
  52609. source: "./media/characters/muffin/front.svg",
  52610. extra: 1220/1195,
  52611. bottom: 84/1304
  52612. }
  52613. },
  52614. },
  52615. [
  52616. {
  52617. name: "Normal",
  52618. height: math.unit(2 + 6/12, "feet"),
  52619. default: true
  52620. },
  52621. ]
  52622. ))
  52623. characterMakers.push(() => makeCharacter(
  52624. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52625. {
  52626. front: {
  52627. height: math.unit(7, "feet"),
  52628. name: "Front",
  52629. image: {
  52630. source: "./media/characters/chimera/front.svg",
  52631. extra: 1752/1614,
  52632. bottom: 68/1820
  52633. }
  52634. },
  52635. },
  52636. [
  52637. {
  52638. name: "Normal",
  52639. height: math.unit(7, "feet")
  52640. },
  52641. {
  52642. name: "Gigamacro",
  52643. height: math.unit(2.9, "gigameters"),
  52644. default: true
  52645. },
  52646. {
  52647. name: "Universal",
  52648. height: math.unit(1.56e26, "yottameters")
  52649. },
  52650. ]
  52651. ))
  52652. characterMakers.push(() => makeCharacter(
  52653. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52654. {
  52655. front: {
  52656. height: math.unit(3, "feet"),
  52657. weight: math.unit(20, "lb"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/kit-fennec-fox/front.svg",
  52661. extra: 1027/932,
  52662. bottom: 16/1043
  52663. }
  52664. },
  52665. back: {
  52666. height: math.unit(3, "feet"),
  52667. weight: math.unit(20, "lb"),
  52668. name: "Back",
  52669. image: {
  52670. source: "./media/characters/kit-fennec-fox/back.svg",
  52671. extra: 1027/932,
  52672. bottom: 16/1043
  52673. }
  52674. },
  52675. },
  52676. [
  52677. {
  52678. name: "Normal",
  52679. height: math.unit(3, "feet"),
  52680. default: true
  52681. },
  52682. ]
  52683. ))
  52684. characterMakers.push(() => makeCharacter(
  52685. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52686. {
  52687. front: {
  52688. height: math.unit(167, "cm"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/blue-otter/front.svg",
  52692. extra: 1951/1920,
  52693. bottom: 31/1982
  52694. }
  52695. },
  52696. },
  52697. [
  52698. {
  52699. name: "Otter-Sized",
  52700. height: math.unit(100, "cm")
  52701. },
  52702. {
  52703. name: "Normal",
  52704. height: math.unit(167, "cm"),
  52705. default: true
  52706. },
  52707. ]
  52708. ))
  52709. characterMakers.push(() => makeCharacter(
  52710. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52711. {
  52712. front: {
  52713. height: math.unit(4 + 4/12, "feet"),
  52714. name: "Front",
  52715. image: {
  52716. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52717. extra: 1072/1067,
  52718. bottom: 117/1189
  52719. }
  52720. },
  52721. back: {
  52722. height: math.unit(4 + 4/12, "feet"),
  52723. name: "Back",
  52724. image: {
  52725. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52726. extra: 1135/1129,
  52727. bottom: 57/1192
  52728. }
  52729. },
  52730. head: {
  52731. height: math.unit(1.77, "feet"),
  52732. name: "Head",
  52733. image: {
  52734. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52735. }
  52736. },
  52737. },
  52738. [
  52739. {
  52740. name: "Normal",
  52741. height: math.unit(4 + 4/12, "feet"),
  52742. default: true
  52743. },
  52744. ]
  52745. ))
  52746. characterMakers.push(() => makeCharacter(
  52747. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52748. {
  52749. front: {
  52750. height: math.unit(2, "inches"),
  52751. name: "Front",
  52752. image: {
  52753. source: "./media/characters/carley-hartford/front.svg",
  52754. extra: 1035/988,
  52755. bottom: 23/1058
  52756. }
  52757. },
  52758. back: {
  52759. height: math.unit(2, "inches"),
  52760. name: "Back",
  52761. image: {
  52762. source: "./media/characters/carley-hartford/back.svg",
  52763. extra: 1035/988,
  52764. bottom: 23/1058
  52765. }
  52766. },
  52767. dressed: {
  52768. height: math.unit(2, "inches"),
  52769. name: "Dressed",
  52770. image: {
  52771. source: "./media/characters/carley-hartford/dressed.svg",
  52772. extra: 651/620,
  52773. bottom: 0/651
  52774. }
  52775. },
  52776. },
  52777. [
  52778. {
  52779. name: "Micro",
  52780. height: math.unit(2, "inches"),
  52781. default: true
  52782. },
  52783. {
  52784. name: "Macro",
  52785. height: math.unit(6 + 3/12, "feet")
  52786. },
  52787. ]
  52788. ))
  52789. characterMakers.push(() => makeCharacter(
  52790. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52791. {
  52792. front: {
  52793. height: math.unit(2 + 3/12, "feet"),
  52794. weight: math.unit(15 + 7/16, "lb"),
  52795. name: "Front",
  52796. image: {
  52797. source: "./media/characters/duke/front.svg",
  52798. extra: 910/815,
  52799. bottom: 30/940
  52800. }
  52801. },
  52802. },
  52803. [
  52804. {
  52805. name: "Normal",
  52806. height: math.unit(2 + 3/12, "feet"),
  52807. default: true
  52808. },
  52809. ]
  52810. ))
  52811. characterMakers.push(() => makeCharacter(
  52812. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52813. {
  52814. front: {
  52815. height: math.unit(5 + 4/12, "feet"),
  52816. weight: math.unit(156, "lb"),
  52817. name: "Front",
  52818. image: {
  52819. source: "./media/characters/dein/front.svg",
  52820. extra: 855/815,
  52821. bottom: 48/903
  52822. }
  52823. },
  52824. side: {
  52825. height: math.unit(5 + 4/12, "feet"),
  52826. weight: math.unit(156, "lb"),
  52827. name: "side",
  52828. image: {
  52829. source: "./media/characters/dein/side.svg",
  52830. extra: 846/803,
  52831. bottom: 25/871
  52832. }
  52833. },
  52834. maw: {
  52835. height: math.unit(1.45, "feet"),
  52836. name: "Maw",
  52837. image: {
  52838. source: "./media/characters/dein/maw.svg"
  52839. }
  52840. },
  52841. },
  52842. [
  52843. {
  52844. name: "Ferret Sized",
  52845. height: math.unit(2 + 5/12, "feet")
  52846. },
  52847. {
  52848. name: "Normal",
  52849. height: math.unit(5 + 4/12, "feet"),
  52850. default: true
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52856. {
  52857. front: {
  52858. height: math.unit(84 + 8/12, "feet"),
  52859. weight: math.unit(942180, "lb"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/daurine-arima/front.svg",
  52863. extra: 1989/1782,
  52864. bottom: 37/2026
  52865. }
  52866. },
  52867. side: {
  52868. height: math.unit(84 + 8/12, "feet"),
  52869. weight: math.unit(942180, "lb"),
  52870. name: "Side",
  52871. image: {
  52872. source: "./media/characters/daurine-arima/side.svg",
  52873. extra: 1997/1790,
  52874. bottom: 21/2018
  52875. }
  52876. },
  52877. back: {
  52878. height: math.unit(84 + 8/12, "feet"),
  52879. weight: math.unit(942180, "lb"),
  52880. name: "Back",
  52881. image: {
  52882. source: "./media/characters/daurine-arima/back.svg",
  52883. extra: 1992/1800,
  52884. bottom: 12/2004
  52885. }
  52886. },
  52887. head: {
  52888. height: math.unit(15.5, "feet"),
  52889. name: "Head",
  52890. image: {
  52891. source: "./media/characters/daurine-arima/head.svg"
  52892. }
  52893. },
  52894. headAlt: {
  52895. height: math.unit(19.19, "feet"),
  52896. name: "Head (Alt)",
  52897. image: {
  52898. source: "./media/characters/daurine-arima/head-alt.svg"
  52899. }
  52900. },
  52901. },
  52902. [
  52903. {
  52904. name: "Minimum height",
  52905. height: math.unit(8 + 10/12, "feet")
  52906. },
  52907. {
  52908. name: "Comfort height",
  52909. height: math.unit(19 + 6 /12, "feet")
  52910. },
  52911. {
  52912. name: "\"Normal\" height",
  52913. height: math.unit(28 + 10/12, "feet")
  52914. },
  52915. {
  52916. name: "Base height",
  52917. height: math.unit(84 + 8/12, "feet"),
  52918. default: true
  52919. },
  52920. {
  52921. name: "Mini-macro",
  52922. height: math.unit(2360, "feet")
  52923. },
  52924. {
  52925. name: "Macro",
  52926. height: math.unit(10, "miles")
  52927. },
  52928. {
  52929. name: "Goddess",
  52930. height: math.unit(9.99e40, "yottameters")
  52931. },
  52932. ]
  52933. ))
  52934. characterMakers.push(() => makeCharacter(
  52935. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52936. {
  52937. front: {
  52938. height: math.unit(2.3, "meters"),
  52939. name: "Front",
  52940. image: {
  52941. source: "./media/characters/cilenomon/front.svg",
  52942. extra: 1963/1778,
  52943. bottom: 54/2017
  52944. }
  52945. },
  52946. },
  52947. [
  52948. {
  52949. name: "Normal",
  52950. height: math.unit(2.3, "meters"),
  52951. default: true
  52952. },
  52953. {
  52954. name: "Big",
  52955. height: math.unit(5, "meters")
  52956. },
  52957. {
  52958. name: "Macro",
  52959. height: math.unit(30, "meters")
  52960. },
  52961. {
  52962. name: "True",
  52963. height: math.unit(1, "universe")
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(5, "feet"),
  52972. name: "Front",
  52973. image: {
  52974. source: "./media/characters/sen-mink/front.svg",
  52975. extra: 1727/1675,
  52976. bottom: 35/1762
  52977. }
  52978. },
  52979. },
  52980. [
  52981. {
  52982. name: "Normal",
  52983. height: math.unit(5, "feet"),
  52984. default: true
  52985. },
  52986. ]
  52987. ))
  52988. characterMakers.push(() => makeCharacter(
  52989. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52990. {
  52991. front: {
  52992. height: math.unit(5.42999, "feet"),
  52993. weight: math.unit(100, "lb"),
  52994. name: "Front",
  52995. image: {
  52996. source: "./media/characters/ophois/front.svg",
  52997. extra: 1429/1286,
  52998. bottom: 60/1489
  52999. }
  53000. },
  53001. },
  53002. [
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(5.42999, "feet"),
  53006. default: true
  53007. },
  53008. ]
  53009. ))
  53010. characterMakers.push(() => makeCharacter(
  53011. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53012. {
  53013. front: {
  53014. height: math.unit(2, "meters"),
  53015. name: "Front",
  53016. image: {
  53017. source: "./media/characters/riley/front.svg",
  53018. extra: 1779/1754,
  53019. bottom: 139/1918
  53020. }
  53021. },
  53022. },
  53023. [
  53024. {
  53025. name: "Normal",
  53026. height: math.unit(2, "meters"),
  53027. default: true
  53028. },
  53029. ]
  53030. ))
  53031. characterMakers.push(() => makeCharacter(
  53032. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53033. {
  53034. front: {
  53035. height: math.unit(6 + 2/12, "feet"),
  53036. weight: math.unit(195, "lb"),
  53037. preyCapacity: math.unit(6, "people"),
  53038. name: "Front",
  53039. image: {
  53040. source: "./media/characters/shuken-flash/front.svg",
  53041. extra: 1905/1739,
  53042. bottom: 65/1970
  53043. }
  53044. },
  53045. back: {
  53046. height: math.unit(6 + 2/12, "feet"),
  53047. weight: math.unit(195, "lb"),
  53048. preyCapacity: math.unit(6, "people"),
  53049. name: "Back",
  53050. image: {
  53051. source: "./media/characters/shuken-flash/back.svg",
  53052. extra: 1912/1751,
  53053. bottom: 13/1925
  53054. }
  53055. },
  53056. },
  53057. [
  53058. {
  53059. name: "Normal",
  53060. height: math.unit(6 + 2/12, "feet"),
  53061. default: true
  53062. },
  53063. ]
  53064. ))
  53065. characterMakers.push(() => makeCharacter(
  53066. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53067. {
  53068. front: {
  53069. height: math.unit(5 + 9/12, "feet"),
  53070. weight: math.unit(150, "lb"),
  53071. name: "Front",
  53072. image: {
  53073. source: "./media/characters/plat/front.svg",
  53074. extra: 1816/1703,
  53075. bottom: 43/1859
  53076. }
  53077. },
  53078. side: {
  53079. height: math.unit(5 + 9/12, "feet"),
  53080. weight: math.unit(300, "lb"),
  53081. name: "Side",
  53082. image: {
  53083. source: "./media/characters/plat/side.svg",
  53084. extra: 1824/1699,
  53085. bottom: 18/1842
  53086. }
  53087. },
  53088. },
  53089. [
  53090. {
  53091. name: "Normal",
  53092. height: math.unit(5 + 9/12, "feet"),
  53093. default: true
  53094. },
  53095. ]
  53096. ))
  53097. characterMakers.push(() => makeCharacter(
  53098. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53099. {
  53100. front: {
  53101. height: math.unit(9, "feet"),
  53102. weight: math.unit(1800, "lb"),
  53103. name: "Front",
  53104. image: {
  53105. source: "./media/characters/elaine/front.svg",
  53106. extra: 1833/1354,
  53107. bottom: 25/1858
  53108. }
  53109. },
  53110. back: {
  53111. height: math.unit(8.8, "feet"),
  53112. weight: math.unit(1800, "lb"),
  53113. name: "Back",
  53114. image: {
  53115. source: "./media/characters/elaine/back.svg",
  53116. extra: 1641/1233,
  53117. bottom: 53/1694
  53118. }
  53119. },
  53120. },
  53121. [
  53122. {
  53123. name: "Normal",
  53124. height: math.unit(9, "feet"),
  53125. default: true
  53126. },
  53127. ]
  53128. ))
  53129. characterMakers.push(() => makeCharacter(
  53130. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53131. {
  53132. front: {
  53133. height: math.unit(17 + 9/12, "feet"),
  53134. weight: math.unit(8000, "lb"),
  53135. name: "Front",
  53136. image: {
  53137. source: "./media/characters/vera-raven/front.svg",
  53138. extra: 1457/1412,
  53139. bottom: 121/1578
  53140. }
  53141. },
  53142. side: {
  53143. height: math.unit(17 + 9/12, "feet"),
  53144. weight: math.unit(8000, "lb"),
  53145. name: "Side",
  53146. image: {
  53147. source: "./media/characters/vera-raven/side.svg",
  53148. extra: 1510/1464,
  53149. bottom: 54/1564
  53150. }
  53151. },
  53152. },
  53153. [
  53154. {
  53155. name: "Normal",
  53156. height: math.unit(17 + 9/12, "feet"),
  53157. default: true
  53158. },
  53159. ]
  53160. ))
  53161. characterMakers.push(() => makeCharacter(
  53162. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53163. {
  53164. dressed: {
  53165. height: math.unit(6 + 9/12, "feet"),
  53166. name: "Dressed",
  53167. image: {
  53168. source: "./media/characters/nakisha/dressed.svg",
  53169. extra: 1909/1757,
  53170. bottom: 48/1957
  53171. }
  53172. },
  53173. nude: {
  53174. height: math.unit(6 + 9/12, "feet"),
  53175. name: "Nude",
  53176. image: {
  53177. source: "./media/characters/nakisha/nude.svg",
  53178. extra: 1917/1765,
  53179. bottom: 34/1951
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Normal",
  53186. height: math.unit(6 + 9/12, "feet"),
  53187. default: true
  53188. },
  53189. ]
  53190. ))
  53191. characterMakers.push(() => makeCharacter(
  53192. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53193. {
  53194. front: {
  53195. height: math.unit(87, "meters"),
  53196. name: "Front",
  53197. image: {
  53198. source: "./media/characters/serafin/front.svg",
  53199. extra: 1919/1776,
  53200. bottom: 65/1984
  53201. }
  53202. },
  53203. },
  53204. [
  53205. {
  53206. name: "Normal",
  53207. height: math.unit(87, "meters"),
  53208. default: true
  53209. },
  53210. ]
  53211. ))
  53212. characterMakers.push(() => makeCharacter(
  53213. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53214. {
  53215. front: {
  53216. height: math.unit(6, "feet"),
  53217. weight: math.unit(200, "lb"),
  53218. name: "Front",
  53219. image: {
  53220. source: "./media/characters/poptart/front.svg",
  53221. extra: 615/583,
  53222. bottom: 23/638
  53223. }
  53224. },
  53225. back: {
  53226. height: math.unit(6, "feet"),
  53227. weight: math.unit(200, "lb"),
  53228. name: "Back",
  53229. image: {
  53230. source: "./media/characters/poptart/back.svg",
  53231. extra: 617/584,
  53232. bottom: 22/639
  53233. }
  53234. },
  53235. frontNsfw: {
  53236. height: math.unit(6, "feet"),
  53237. weight: math.unit(200, "lb"),
  53238. name: "Front (NSFW)",
  53239. image: {
  53240. source: "./media/characters/poptart/front-nsfw.svg",
  53241. extra: 615/583,
  53242. bottom: 23/638
  53243. }
  53244. },
  53245. backNsfw: {
  53246. height: math.unit(6, "feet"),
  53247. weight: math.unit(200, "lb"),
  53248. name: "Back (NSFW)",
  53249. image: {
  53250. source: "./media/characters/poptart/back-nsfw.svg",
  53251. extra: 617/584,
  53252. bottom: 22/639
  53253. }
  53254. },
  53255. hand: {
  53256. height: math.unit(1.14, "feet"),
  53257. name: "Hand",
  53258. image: {
  53259. source: "./media/characters/poptart/hand.svg"
  53260. }
  53261. },
  53262. foot: {
  53263. height: math.unit(1.5, "feet"),
  53264. name: "Foot",
  53265. image: {
  53266. source: "./media/characters/poptart/foot.svg"
  53267. }
  53268. },
  53269. },
  53270. [
  53271. {
  53272. name: "Normal",
  53273. height: math.unit(6, "feet"),
  53274. default: true
  53275. },
  53276. {
  53277. name: "Grande",
  53278. height: math.unit(350, "feet")
  53279. },
  53280. {
  53281. name: "Massif",
  53282. height: math.unit(967, "feet")
  53283. },
  53284. ]
  53285. ))
  53286. characterMakers.push(() => makeCharacter(
  53287. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53288. {
  53289. hyenaSide: {
  53290. height: math.unit(120, "cm"),
  53291. weight: math.unit(120, "lb"),
  53292. name: "Side",
  53293. image: {
  53294. source: "./media/characters/trance/hyena-side.svg",
  53295. extra: 998/904,
  53296. bottom: 76/1074
  53297. }
  53298. },
  53299. },
  53300. [
  53301. {
  53302. name: "Normal",
  53303. height: math.unit(120, "cm"),
  53304. default: true
  53305. },
  53306. {
  53307. name: "Dire",
  53308. height: math.unit(230, "cm")
  53309. },
  53310. {
  53311. name: "Macro",
  53312. height: math.unit(37, "feet")
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53318. {
  53319. front: {
  53320. height: math.unit(6 + 3/12, "feet"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/michael-berretta/front.svg",
  53324. extra: 515/494,
  53325. bottom: 20/535
  53326. }
  53327. },
  53328. back: {
  53329. height: math.unit(6 + 3/12, "feet"),
  53330. name: "Back",
  53331. image: {
  53332. source: "./media/characters/michael-berretta/back.svg",
  53333. extra: 520/497,
  53334. bottom: 21/541
  53335. }
  53336. },
  53337. frontNsfw: {
  53338. height: math.unit(6 + 3/12, "feet"),
  53339. name: "Front (NSFW)",
  53340. image: {
  53341. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53342. extra: 515/494,
  53343. bottom: 20/535
  53344. }
  53345. },
  53346. dick: {
  53347. height: math.unit(1, "feet"),
  53348. name: "Dick",
  53349. image: {
  53350. source: "./media/characters/michael-berretta/dick.svg"
  53351. }
  53352. },
  53353. },
  53354. [
  53355. {
  53356. name: "Normal",
  53357. height: math.unit(6 + 3/12, "feet"),
  53358. default: true
  53359. },
  53360. {
  53361. name: "Big",
  53362. height: math.unit(12, "feet")
  53363. },
  53364. {
  53365. name: "Macro",
  53366. height: math.unit(187.5, "feet")
  53367. },
  53368. ]
  53369. ))
  53370. characterMakers.push(() => makeCharacter(
  53371. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53372. {
  53373. front: {
  53374. height: math.unit(9 + 9/12, "feet"),
  53375. weight: math.unit(1244, "lb"),
  53376. name: "Front",
  53377. image: {
  53378. source: "./media/characters/stella-edgecomb/front.svg",
  53379. extra: 1835/1706,
  53380. bottom: 49/1884
  53381. }
  53382. },
  53383. pen: {
  53384. height: math.unit(0.95, "feet"),
  53385. name: "Pen",
  53386. image: {
  53387. source: "./media/characters/stella-edgecomb/pen.svg"
  53388. }
  53389. },
  53390. },
  53391. [
  53392. {
  53393. name: "Cozy Bear",
  53394. height: math.unit(0.5, "inches")
  53395. },
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(9 + 9/12, "feet"),
  53399. default: true
  53400. },
  53401. {
  53402. name: "Giga Bear",
  53403. height: math.unit(1, "mile")
  53404. },
  53405. {
  53406. name: "Great Bear",
  53407. height: math.unit(53, "miles")
  53408. },
  53409. {
  53410. name: "Goddess Bear",
  53411. height: math.unit(40000, "miles")
  53412. },
  53413. {
  53414. name: "Sun Bear",
  53415. height: math.unit(900000, "miles")
  53416. },
  53417. ]
  53418. ))
  53419. characterMakers.push(() => makeCharacter(
  53420. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53421. {
  53422. anthroFront: {
  53423. height: math.unit(556, "cm"),
  53424. weight: math.unit(2650, "kg"),
  53425. preyCapacity: math.unit(3, "people"),
  53426. name: "Front",
  53427. image: {
  53428. source: "./media/characters/ash´iika/front.svg",
  53429. extra: 710/673,
  53430. bottom: 15/725
  53431. },
  53432. form: "anthro",
  53433. default: true
  53434. },
  53435. anthroSide: {
  53436. height: math.unit(556, "cm"),
  53437. weight: math.unit(2650, "kg"),
  53438. preyCapacity: math.unit(3, "people"),
  53439. name: "Side",
  53440. image: {
  53441. source: "./media/characters/ash´iika/side.svg",
  53442. extra: 696/676,
  53443. bottom: 13/709
  53444. },
  53445. form: "anthro"
  53446. },
  53447. anthroDressed: {
  53448. height: math.unit(556, "cm"),
  53449. weight: math.unit(2650, "kg"),
  53450. preyCapacity: math.unit(3, "people"),
  53451. name: "Dressed",
  53452. image: {
  53453. source: "./media/characters/ash´iika/dressed.svg",
  53454. extra: 710/673,
  53455. bottom: 15/725
  53456. },
  53457. form: "anthro"
  53458. },
  53459. anthroHead: {
  53460. height: math.unit(3.5, "feet"),
  53461. name: "Head",
  53462. image: {
  53463. source: "./media/characters/ash´iika/head.svg",
  53464. extra: 348/291,
  53465. bottom: 45/393
  53466. },
  53467. form: "anthro"
  53468. },
  53469. feralSide: {
  53470. height: math.unit(870, "cm"),
  53471. weight: math.unit(17500, "kg"),
  53472. preyCapacity: math.unit(15, "people"),
  53473. name: "Side",
  53474. image: {
  53475. source: "./media/characters/ash´iika/feral.svg",
  53476. extra: 595/199,
  53477. bottom: 7/602
  53478. },
  53479. form: "feral",
  53480. default: true,
  53481. },
  53482. },
  53483. [
  53484. {
  53485. name: "Normal",
  53486. height: math.unit(556, "cm"),
  53487. default: true,
  53488. form: "anthro"
  53489. },
  53490. {
  53491. name: "Macro",
  53492. height: math.unit(88, "meters"),
  53493. form: "anthro"
  53494. },
  53495. {
  53496. name: "Normal",
  53497. height: math.unit(870, "cm"),
  53498. default: true,
  53499. form: "feral"
  53500. },
  53501. {
  53502. name: "Large",
  53503. height: math.unit(25, "meters"),
  53504. form: "feral"
  53505. },
  53506. ],
  53507. {
  53508. "anthro": {
  53509. name: "Anthro",
  53510. default: true
  53511. },
  53512. "feral": {
  53513. name: "Feral",
  53514. },
  53515. }
  53516. ))
  53517. characterMakers.push(() => makeCharacter(
  53518. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53519. {
  53520. front: {
  53521. height: math.unit(10, "feet"),
  53522. weight: math.unit(800, "lb"),
  53523. name: "Front",
  53524. image: {
  53525. source: "./media/characters/yen/front.svg",
  53526. extra: 443/411,
  53527. bottom: 6/449
  53528. }
  53529. },
  53530. sleeping: {
  53531. height: math.unit(10, "feet"),
  53532. weight: math.unit(800, "lb"),
  53533. name: "Sleeping",
  53534. image: {
  53535. source: "./media/characters/yen/sleeping.svg",
  53536. extra: 470/422,
  53537. bottom: 0/470
  53538. }
  53539. },
  53540. head: {
  53541. height: math.unit(2.2, "feet"),
  53542. name: "Head",
  53543. image: {
  53544. source: "./media/characters/yen/head.svg"
  53545. }
  53546. },
  53547. headAlt: {
  53548. height: math.unit(2.1, "feet"),
  53549. name: "Head (Alt)",
  53550. image: {
  53551. source: "./media/characters/yen/head-alt.svg"
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "Normal",
  53558. height: math.unit(10, "feet"),
  53559. default: true
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(12, "feet"),
  53568. name: "Front",
  53569. image: {
  53570. source: "./media/characters/citra/front.svg",
  53571. extra: 1950/1710,
  53572. bottom: 47/1997
  53573. }
  53574. },
  53575. },
  53576. [
  53577. {
  53578. name: "Normal",
  53579. height: math.unit(12, "feet"),
  53580. default: true
  53581. },
  53582. ]
  53583. ))
  53584. characterMakers.push(() => makeCharacter(
  53585. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53586. {
  53587. side: {
  53588. height: math.unit(7 + 10/12, "feet"),
  53589. name: "Side",
  53590. image: {
  53591. source: "./media/characters/sholstim/side.svg",
  53592. extra: 786/682,
  53593. bottom: 40/826
  53594. }
  53595. },
  53596. },
  53597. [
  53598. {
  53599. name: "Normal",
  53600. height: math.unit(7 + 10/12, "feet"),
  53601. default: true
  53602. },
  53603. ]
  53604. ))
  53605. characterMakers.push(() => makeCharacter(
  53606. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53607. {
  53608. front: {
  53609. height: math.unit(3.10, "meters"),
  53610. name: "Front",
  53611. image: {
  53612. source: "./media/characters/aggyn/front.svg",
  53613. extra: 1188/963,
  53614. bottom: 24/1212
  53615. }
  53616. },
  53617. },
  53618. [
  53619. {
  53620. name: "Normal",
  53621. height: math.unit(3.10, "meters"),
  53622. default: true
  53623. },
  53624. ]
  53625. ))
  53626. characterMakers.push(() => makeCharacter(
  53627. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53628. {
  53629. front: {
  53630. height: math.unit(7 + 5/12, "feet"),
  53631. weight: math.unit(687, "lb"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/alsandair-hergenroether/front.svg",
  53635. extra: 1251/1186,
  53636. bottom: 75/1326
  53637. }
  53638. },
  53639. back: {
  53640. height: math.unit(7 + 5/12, "feet"),
  53641. weight: math.unit(687, "lb"),
  53642. name: "Back",
  53643. image: {
  53644. source: "./media/characters/alsandair-hergenroether/back.svg",
  53645. extra: 1290/1229,
  53646. bottom: 17/1307
  53647. }
  53648. },
  53649. },
  53650. [
  53651. {
  53652. name: "Max Compression",
  53653. height: math.unit(7 + 5/12, "feet"),
  53654. default: true
  53655. },
  53656. {
  53657. name: "\"Normal\"",
  53658. height: math.unit(2, "universes")
  53659. },
  53660. ]
  53661. ))
  53662. characterMakers.push(() => makeCharacter(
  53663. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53664. {
  53665. front: {
  53666. height: math.unit(4 + 1/12, "feet"),
  53667. weight: math.unit(92, "lb"),
  53668. name: "Front",
  53669. image: {
  53670. source: "./media/characters/ie/front.svg",
  53671. extra: 1585/1352,
  53672. bottom: 91/1676
  53673. }
  53674. },
  53675. },
  53676. [
  53677. {
  53678. name: "Normal",
  53679. height: math.unit(4 + 1/12, "feet"),
  53680. default: true
  53681. },
  53682. ]
  53683. ))
  53684. characterMakers.push(() => makeCharacter(
  53685. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53686. {
  53687. anthro: {
  53688. height: math.unit(6, "feet"),
  53689. weight: math.unit(150, "lb"),
  53690. name: "Front",
  53691. image: {
  53692. source: "./media/characters/willow/anthro.svg",
  53693. extra: 1073/986,
  53694. bottom: 34/1107
  53695. },
  53696. form: "anthro",
  53697. default: true
  53698. },
  53699. taur: {
  53700. height: math.unit(6, "feet"),
  53701. weight: math.unit(150, "lb"),
  53702. name: "Side",
  53703. image: {
  53704. source: "./media/characters/willow/taur.svg",
  53705. extra: 647/512,
  53706. bottom: 136/783
  53707. },
  53708. form: "taur",
  53709. default: true
  53710. },
  53711. },
  53712. [
  53713. {
  53714. name: "Humanoid",
  53715. height: math.unit(2.7, "meters"),
  53716. form: "anthro"
  53717. },
  53718. {
  53719. name: "Normal",
  53720. height: math.unit(9, "meters"),
  53721. form: "anthro",
  53722. default: true
  53723. },
  53724. {
  53725. name: "Humanoid",
  53726. height: math.unit(2.1, "meters"),
  53727. form: "taur"
  53728. },
  53729. {
  53730. name: "Normal",
  53731. height: math.unit(7, "meters"),
  53732. form: "taur",
  53733. default: true
  53734. },
  53735. ],
  53736. {
  53737. "anthro": {
  53738. name: "Anthro",
  53739. default: true
  53740. },
  53741. "taur": {
  53742. name: "Taur",
  53743. },
  53744. }
  53745. ))
  53746. characterMakers.push(() => makeCharacter(
  53747. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53748. {
  53749. front: {
  53750. height: math.unit(2 + 5/12, "feet"),
  53751. name: "Front",
  53752. image: {
  53753. source: "./media/characters/kyan/front.svg",
  53754. extra: 460/334,
  53755. bottom: 23/483
  53756. },
  53757. extraAttributes: {
  53758. "toeLength": {
  53759. name: "Toe Length",
  53760. power: 1,
  53761. type: "length",
  53762. base: math.unit(7, "cm")
  53763. },
  53764. "toeclawLength": {
  53765. name: "Toeclaw Length",
  53766. power: 1,
  53767. type: "length",
  53768. base: math.unit(4.7, "cm")
  53769. },
  53770. "earHeight": {
  53771. name: "Ear Height",
  53772. power: 1,
  53773. type: "length",
  53774. base: math.unit(14.1, "cm")
  53775. },
  53776. }
  53777. },
  53778. paws: {
  53779. height: math.unit(0.45, "feet"),
  53780. name: "Paws",
  53781. image: {
  53782. source: "./media/characters/kyan/paws.svg",
  53783. extra: 581/581,
  53784. bottom: 114/695
  53785. }
  53786. },
  53787. },
  53788. [
  53789. {
  53790. name: "Normal",
  53791. height: math.unit(2 + 5/12, "feet"),
  53792. default: true
  53793. },
  53794. ]
  53795. ))
  53796. characterMakers.push(() => makeCharacter(
  53797. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53798. {
  53799. front: {
  53800. height: math.unit(2 + 2/3, "feet"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/xazzon/front.svg",
  53804. extra: 1109/984,
  53805. bottom: 42/1151
  53806. }
  53807. },
  53808. back: {
  53809. height: math.unit(2 + 2/3, "feet"),
  53810. name: "Back",
  53811. image: {
  53812. source: "./media/characters/xazzon/back.svg",
  53813. extra: 1095/971,
  53814. bottom: 23/1118
  53815. }
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Normal",
  53821. height: math.unit(2 + 2/3, "feet"),
  53822. default: true
  53823. },
  53824. ]
  53825. ))
  53826. characterMakers.push(() => makeCharacter(
  53827. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53828. {
  53829. dressed: {
  53830. height: math.unit(5 + 7/12, "feet"),
  53831. weight: math.unit(173, "lb"),
  53832. name: "Dressed",
  53833. image: {
  53834. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53835. extra: 3262/2862,
  53836. bottom: 188/3450
  53837. }
  53838. },
  53839. undressed: {
  53840. height: math.unit(5 + 7/12, "feet"),
  53841. weight: math.unit(173, "lb"),
  53842. name: "Undressed",
  53843. image: {
  53844. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53845. extra: 3262/2862,
  53846. bottom: 188/3450
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "The void",
  53853. height: math.unit(7.29193e-34, "angstroms")
  53854. },
  53855. {
  53856. name: "Uh-Oh.",
  53857. height: math.unit(5.734e-7, "angstroms")
  53858. },
  53859. {
  53860. name: "Pico",
  53861. height: math.unit(0.876, "angstroms")
  53862. },
  53863. {
  53864. name: "Nano",
  53865. height: math.unit(0.000134200, "mm")
  53866. },
  53867. {
  53868. name: "Micro",
  53869. height: math.unit(0.0673020, "mm")
  53870. },
  53871. {
  53872. name: "Tiny",
  53873. height: math.unit(2.4, "mm")
  53874. },
  53875. {
  53876. name: "Actual Normal",
  53877. height: math.unit(3, "inches"),
  53878. default: true
  53879. },
  53880. {
  53881. name: "Normal",
  53882. height: math.unit(5 + 8/12, "feet")
  53883. },
  53884. {
  53885. name: "Giant",
  53886. height: math.unit(12, "feet")
  53887. },
  53888. {
  53889. name: "City Ruler",
  53890. height: math.unit(270, "meters")
  53891. },
  53892. {
  53893. name: "Giga",
  53894. height: math.unit(1117.6, "km")
  53895. },
  53896. {
  53897. name: "All-Powerful Queen",
  53898. height: math.unit(70.8, "gigameters")
  53899. },
  53900. {
  53901. name: "'Goddess'",
  53902. height: math.unit(600, "yottameters")
  53903. },
  53904. {
  53905. name: "Biggest!",
  53906. height: math.unit(4.23e5, "yottameters")
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(8, "feet"),
  53915. weight: math.unit(300, "lb"),
  53916. name: "Front",
  53917. image: {
  53918. source: "./media/characters/khyla-shadowsong/front.svg",
  53919. extra: 861/798,
  53920. bottom: 32/893
  53921. }
  53922. },
  53923. side: {
  53924. height: math.unit(8, "feet"),
  53925. weight: math.unit(300, "lb"),
  53926. name: "Side",
  53927. image: {
  53928. source: "./media/characters/khyla-shadowsong/side.svg",
  53929. extra: 790/750,
  53930. bottom: 87/877
  53931. }
  53932. },
  53933. back: {
  53934. height: math.unit(8, "feet"),
  53935. weight: math.unit(300, "lb"),
  53936. name: "Back",
  53937. image: {
  53938. source: "./media/characters/khyla-shadowsong/back.svg",
  53939. extra: 855/808,
  53940. bottom: 14/869
  53941. }
  53942. },
  53943. head: {
  53944. height: math.unit(2.7, "feet"),
  53945. name: "Head",
  53946. image: {
  53947. source: "./media/characters/khyla-shadowsong/head.svg"
  53948. }
  53949. },
  53950. },
  53951. [
  53952. {
  53953. name: "Micro",
  53954. height: math.unit(6, "inches")
  53955. },
  53956. {
  53957. name: "Normal",
  53958. height: math.unit(8, "feet"),
  53959. default: true
  53960. },
  53961. ]
  53962. ))
  53963. characterMakers.push(() => makeCharacter(
  53964. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53965. {
  53966. hyperFront: {
  53967. height: math.unit(9 + 4/12, "feet"),
  53968. weight: math.unit(2000, "lb"),
  53969. name: "Front",
  53970. image: {
  53971. source: "./media/characters/tiden/hyper-front.svg",
  53972. extra: 400/382,
  53973. bottom: 6/406
  53974. },
  53975. form: "hyper",
  53976. },
  53977. regularFront: {
  53978. height: math.unit(7 + 10/12, "feet"),
  53979. weight: math.unit(470, "lb"),
  53980. name: "Front",
  53981. image: {
  53982. source: "./media/characters/tiden/regular-front.svg",
  53983. extra: 468/442,
  53984. bottom: 6/474
  53985. },
  53986. form: "regular",
  53987. },
  53988. },
  53989. [
  53990. {
  53991. name: "Normal",
  53992. height: math.unit(9 + 4/12, "feet"),
  53993. default: true,
  53994. form: "hyper"
  53995. },
  53996. {
  53997. name: "Normal",
  53998. height: math.unit(7 + 10/12, "feet"),
  53999. default: true,
  54000. form: "regular"
  54001. },
  54002. ],
  54003. {
  54004. "hyper": {
  54005. name: "Hyper",
  54006. default: true
  54007. },
  54008. "regular": {
  54009. name: "Regular",
  54010. },
  54011. }
  54012. ))
  54013. characterMakers.push(() => makeCharacter(
  54014. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54015. {
  54016. side: {
  54017. height: math.unit(6, "feet"),
  54018. weight: math.unit(150, "lb"),
  54019. name: "Side",
  54020. image: {
  54021. source: "./media/characters/jason-crowe/side.svg",
  54022. extra: 1771/766,
  54023. bottom: 219/1990
  54024. }
  54025. },
  54026. },
  54027. [
  54028. {
  54029. name: "Pocket Gryphon",
  54030. height: math.unit(6, "cm")
  54031. },
  54032. {
  54033. name: "Raven",
  54034. height: math.unit(60, "cm")
  54035. },
  54036. {
  54037. name: "Normal",
  54038. height: math.unit(1, "meter"),
  54039. default: true
  54040. },
  54041. ]
  54042. ))
  54043. characterMakers.push(() => makeCharacter(
  54044. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54045. {
  54046. front: {
  54047. height: math.unit(9 + 6/12, "feet"),
  54048. weight: math.unit(1100, "lb"),
  54049. name: "Front",
  54050. image: {
  54051. source: "./media/characters/django/front.svg",
  54052. extra: 1231/1136,
  54053. bottom: 34/1265
  54054. }
  54055. },
  54056. side: {
  54057. height: math.unit(9 + 6/12, "feet"),
  54058. weight: math.unit(1100, "lb"),
  54059. name: "Side",
  54060. image: {
  54061. source: "./media/characters/django/side.svg",
  54062. extra: 1267/1174,
  54063. bottom: 9/1276
  54064. }
  54065. },
  54066. },
  54067. [
  54068. {
  54069. name: "Normal",
  54070. height: math.unit(9 + 6/12, "feet"),
  54071. default: true
  54072. },
  54073. {
  54074. name: "Macro 1",
  54075. height: math.unit(50, "feet")
  54076. },
  54077. {
  54078. name: "Macro 2",
  54079. height: math.unit(500, "feet")
  54080. },
  54081. {
  54082. name: "Mega Macro",
  54083. height: math.unit(5300, "feet")
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54089. {
  54090. frontSfw: {
  54091. height: math.unit(120, "cm"),
  54092. weight: math.unit(15, "kg"),
  54093. name: "Front (SFW)",
  54094. image: {
  54095. source: "./media/characters/eri/front-sfw.svg",
  54096. extra: 1014/939,
  54097. bottom: 37/1051
  54098. },
  54099. form: "moth",
  54100. },
  54101. frontNsfw: {
  54102. height: math.unit(120, "cm"),
  54103. weight: math.unit(15, "kg"),
  54104. name: "Front (NSFW)",
  54105. image: {
  54106. source: "./media/characters/eri/front-nsfw.svg",
  54107. extra: 1014/939,
  54108. bottom: 37/1051
  54109. },
  54110. form: "moth",
  54111. default: true
  54112. },
  54113. egg: {
  54114. height: math.unit(10, "cm"),
  54115. name: "Egg",
  54116. image: {
  54117. source: "./media/characters/eri/egg.svg"
  54118. },
  54119. form: "egg",
  54120. default: true
  54121. },
  54122. },
  54123. [
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(120, "cm"),
  54127. default: true,
  54128. form: "moth"
  54129. },
  54130. {
  54131. name: "Normal",
  54132. height: math.unit(10, "cm"),
  54133. default: true,
  54134. form: "egg"
  54135. },
  54136. ],
  54137. {
  54138. "moth": {
  54139. name: "Moth",
  54140. default: true
  54141. },
  54142. "egg": {
  54143. name: "Egg",
  54144. },
  54145. }
  54146. ))
  54147. characterMakers.push(() => makeCharacter(
  54148. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54149. {
  54150. front: {
  54151. height: math.unit(200, "feet"),
  54152. name: "Front",
  54153. image: {
  54154. source: "./media/characters/bishop-dowser/front.svg",
  54155. extra: 933/868,
  54156. bottom: 106/1039
  54157. }
  54158. },
  54159. },
  54160. [
  54161. {
  54162. name: "Giant",
  54163. height: math.unit(200, "feet"),
  54164. default: true
  54165. },
  54166. ]
  54167. ))
  54168. characterMakers.push(() => makeCharacter(
  54169. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54170. {
  54171. front: {
  54172. height: math.unit(2, "meters"),
  54173. preyCapacity: math.unit(3, "people"),
  54174. name: "Front",
  54175. image: {
  54176. source: "./media/characters/fryra/front.svg",
  54177. extra: 1025/948,
  54178. bottom: 30/1055
  54179. },
  54180. extraAttributes: {
  54181. "breastVolume": {
  54182. name: "Breast Volume",
  54183. power: 3,
  54184. type: "volume",
  54185. base: math.unit(8, "liters")
  54186. },
  54187. }
  54188. },
  54189. back: {
  54190. height: math.unit(2, "meters"),
  54191. preyCapacity: math.unit(3, "people"),
  54192. name: "Back",
  54193. image: {
  54194. source: "./media/characters/fryra/back.svg",
  54195. extra: 993/938,
  54196. bottom: 38/1031
  54197. },
  54198. extraAttributes: {
  54199. "breastVolume": {
  54200. name: "Breast Volume",
  54201. power: 3,
  54202. type: "volume",
  54203. base: math.unit(8, "liters")
  54204. },
  54205. }
  54206. },
  54207. head: {
  54208. height: math.unit(1.33, "feet"),
  54209. name: "Head",
  54210. image: {
  54211. source: "./media/characters/fryra/head.svg"
  54212. }
  54213. },
  54214. maw: {
  54215. height: math.unit(0.56, "feet"),
  54216. name: "Maw",
  54217. image: {
  54218. source: "./media/characters/fryra/maw.svg"
  54219. }
  54220. },
  54221. },
  54222. [
  54223. {
  54224. name: "Micro",
  54225. height: math.unit(5, "cm")
  54226. },
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(2, "meters"),
  54230. default: true
  54231. },
  54232. {
  54233. name: "Small Macro",
  54234. height: math.unit(8, "meters")
  54235. },
  54236. {
  54237. name: "Macro",
  54238. height: math.unit(50, "meters")
  54239. },
  54240. {
  54241. name: "Megamacro",
  54242. height: math.unit(1, "km")
  54243. },
  54244. {
  54245. name: "Planetary",
  54246. height: math.unit(300000, "km")
  54247. },
  54248. {
  54249. name: "Universal",
  54250. height: math.unit(250, "lightyears")
  54251. },
  54252. {
  54253. name: "Fabric of Reality",
  54254. height: math.unit(1000, "multiverses")
  54255. },
  54256. ]
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54260. {
  54261. frontDressed: {
  54262. height: math.unit(6 + 2/12, "feet"),
  54263. name: "Front (Dressed)",
  54264. image: {
  54265. source: "./media/characters/fiera/front-dressed.svg",
  54266. extra: 1883/1793,
  54267. bottom: 70/1953
  54268. }
  54269. },
  54270. backDressed: {
  54271. height: math.unit(6 + 2/12, "feet"),
  54272. name: "Back (Dressed)",
  54273. image: {
  54274. source: "./media/characters/fiera/back-dressed.svg",
  54275. extra: 1847/1780,
  54276. bottom: 70/1917
  54277. }
  54278. },
  54279. frontNude: {
  54280. height: math.unit(6 + 2/12, "feet"),
  54281. name: "Front (Nude)",
  54282. image: {
  54283. source: "./media/characters/fiera/front-nude.svg",
  54284. extra: 1875/1785,
  54285. bottom: 66/1941
  54286. }
  54287. },
  54288. backNude: {
  54289. height: math.unit(6 + 2/12, "feet"),
  54290. name: "Back (Nude)",
  54291. image: {
  54292. source: "./media/characters/fiera/back-nude.svg",
  54293. extra: 1855/1788,
  54294. bottom: 44/1899
  54295. }
  54296. },
  54297. maw: {
  54298. height: math.unit(1.3, "feet"),
  54299. name: "Maw",
  54300. image: {
  54301. source: "./media/characters/fiera/maw.svg"
  54302. }
  54303. },
  54304. paw: {
  54305. height: math.unit(1, "feet"),
  54306. name: "Paw",
  54307. image: {
  54308. source: "./media/characters/fiera/paw.svg"
  54309. }
  54310. },
  54311. shoe: {
  54312. height: math.unit(1.05, "feet"),
  54313. name: "Shoe",
  54314. image: {
  54315. source: "./media/characters/fiera/shoe.svg"
  54316. }
  54317. },
  54318. },
  54319. [
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(6 + 2/12, "feet"),
  54323. default: true
  54324. },
  54325. {
  54326. name: "Size Difference",
  54327. height: math.unit(13, "feet")
  54328. },
  54329. {
  54330. name: "Macro",
  54331. height: math.unit(60, "feet")
  54332. },
  54333. {
  54334. name: "Mega Macro",
  54335. height: math.unit(200, "feet")
  54336. },
  54337. ]
  54338. ))
  54339. characterMakers.push(() => makeCharacter(
  54340. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54341. {
  54342. back: {
  54343. height: math.unit(6, "feet"),
  54344. name: "Back",
  54345. image: {
  54346. source: "./media/characters/flare/back.svg",
  54347. extra: 1883/1765,
  54348. bottom: 32/1915
  54349. }
  54350. },
  54351. },
  54352. [
  54353. {
  54354. name: "Normal",
  54355. height: math.unit(6 + 2/12, "feet"),
  54356. default: true
  54357. },
  54358. {
  54359. name: "Size Difference",
  54360. height: math.unit(13, "feet")
  54361. },
  54362. {
  54363. name: "Macro",
  54364. height: math.unit(60, "feet")
  54365. },
  54366. {
  54367. name: "Macro 2",
  54368. height: math.unit(100, "feet")
  54369. },
  54370. {
  54371. name: "Mega Macro",
  54372. height: math.unit(200, "feet")
  54373. },
  54374. ]
  54375. ))
  54376. characterMakers.push(() => makeCharacter(
  54377. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54378. {
  54379. front: {
  54380. height: math.unit(2.2, "m"),
  54381. weight: math.unit(300, "kg"),
  54382. name: "Front",
  54383. image: {
  54384. source: "./media/characters/hanna/front.svg",
  54385. extra: 1696/1502,
  54386. bottom: 206/1902
  54387. }
  54388. },
  54389. },
  54390. [
  54391. {
  54392. name: "Humanoid",
  54393. height: math.unit(2.2, "meters")
  54394. },
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(4.8, "meters"),
  54398. default: true
  54399. },
  54400. ]
  54401. ))
  54402. characterMakers.push(() => makeCharacter(
  54403. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54404. {
  54405. front: {
  54406. height: math.unit(2.8, "meters"),
  54407. name: "Front",
  54408. image: {
  54409. source: "./media/characters/argo/front.svg",
  54410. extra: 731/518,
  54411. bottom: 84/815
  54412. }
  54413. },
  54414. },
  54415. [
  54416. {
  54417. name: "Normal",
  54418. height: math.unit(3, "meters"),
  54419. default: true
  54420. },
  54421. ]
  54422. ))
  54423. characterMakers.push(() => makeCharacter(
  54424. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54425. {
  54426. side: {
  54427. height: math.unit(3.8, "meters"),
  54428. name: "Side",
  54429. image: {
  54430. source: "./media/characters/sybil/side.svg",
  54431. extra: 382/361,
  54432. bottom: 25/407
  54433. }
  54434. },
  54435. },
  54436. [
  54437. {
  54438. name: "Normal",
  54439. height: math.unit(3.8, "meters"),
  54440. default: true
  54441. },
  54442. ]
  54443. ))
  54444. characterMakers.push(() => makeCharacter(
  54445. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54446. {
  54447. side: {
  54448. height: math.unit(6, "meters"),
  54449. name: "Side",
  54450. image: {
  54451. source: "./media/characters/plum/side.svg",
  54452. extra: 858/755,
  54453. bottom: 45/903
  54454. },
  54455. form: "taur",
  54456. default: true
  54457. },
  54458. back: {
  54459. height: math.unit(6.3, "meters"),
  54460. name: "Back",
  54461. image: {
  54462. source: "./media/characters/plum/back.svg",
  54463. extra: 887/813,
  54464. bottom: 32/919
  54465. },
  54466. form: "taur",
  54467. },
  54468. feral: {
  54469. height: math.unit(5.5, "meter"),
  54470. name: "Front",
  54471. image: {
  54472. source: "./media/characters/plum/feral.svg",
  54473. extra: 568/403,
  54474. bottom: 51/619
  54475. },
  54476. form: "feral",
  54477. default: true
  54478. },
  54479. head: {
  54480. height: math.unit(1.46, "meter"),
  54481. name: "Head",
  54482. image: {
  54483. source: "./media/characters/plum/head.svg"
  54484. },
  54485. form: "taur"
  54486. },
  54487. tailTop: {
  54488. height: math.unit(5.6, "meter"),
  54489. name: "Tail (Top)",
  54490. image: {
  54491. source: "./media/characters/plum/tail-top.svg"
  54492. },
  54493. form: "taur",
  54494. },
  54495. tailBottom: {
  54496. height: math.unit(5.6, "meter"),
  54497. name: "Tail (Bottom)",
  54498. image: {
  54499. source: "./media/characters/plum/tail-bottom.svg"
  54500. },
  54501. form: "taur",
  54502. },
  54503. feralHead: {
  54504. height: math.unit(2.56549521, "meter"),
  54505. name: "Head",
  54506. image: {
  54507. source: "./media/characters/plum/head.svg"
  54508. },
  54509. form: "feral"
  54510. },
  54511. feralTailTop: {
  54512. height: math.unit(5.44728435, "meter"),
  54513. name: "Tail (Top)",
  54514. image: {
  54515. source: "./media/characters/plum/tail-top.svg"
  54516. },
  54517. form: "feral",
  54518. },
  54519. feralTailBottom: {
  54520. height: math.unit(5.44728435, "meter"),
  54521. name: "Tail (Bottom)",
  54522. image: {
  54523. source: "./media/characters/plum/tail-bottom.svg"
  54524. },
  54525. form: "feral",
  54526. },
  54527. },
  54528. [
  54529. {
  54530. name: "Normal",
  54531. height: math.unit(6, "meters"),
  54532. default: true,
  54533. form: "taur"
  54534. },
  54535. {
  54536. name: "Normal",
  54537. height: math.unit(5.5, "meters"),
  54538. default: true,
  54539. form: "feral"
  54540. },
  54541. ],
  54542. {
  54543. "taur": {
  54544. name: "Taur",
  54545. default: true
  54546. },
  54547. "feral": {
  54548. name: "Feral",
  54549. },
  54550. }
  54551. ))
  54552. characterMakers.push(() => makeCharacter(
  54553. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54554. {
  54555. front: {
  54556. height: math.unit(6, "feet"),
  54557. weight: math.unit(115, "lb"),
  54558. name: "Front",
  54559. image: {
  54560. source: "./media/characters/celeste-kitsune/front.svg",
  54561. extra: 393/366,
  54562. bottom: 7/400
  54563. }
  54564. },
  54565. side: {
  54566. height: math.unit(6, "feet"),
  54567. weight: math.unit(115, "lb"),
  54568. name: "Side",
  54569. image: {
  54570. source: "./media/characters/celeste-kitsune/side.svg",
  54571. extra: 818/765,
  54572. bottom: 40/858
  54573. }
  54574. },
  54575. },
  54576. [
  54577. {
  54578. name: "Megamacro",
  54579. height: math.unit(1500, "miles"),
  54580. default: true
  54581. },
  54582. ]
  54583. ))
  54584. characterMakers.push(() => makeCharacter(
  54585. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54586. {
  54587. front: {
  54588. height: math.unit(8, "meters"),
  54589. name: "Front",
  54590. image: {
  54591. source: "./media/characters/io/front.svg",
  54592. extra: 865/722,
  54593. bottom: 58/923
  54594. }
  54595. },
  54596. back: {
  54597. height: math.unit(8, "meters"),
  54598. name: "Back",
  54599. image: {
  54600. source: "./media/characters/io/back.svg",
  54601. extra: 920/776,
  54602. bottom: 42/962
  54603. }
  54604. },
  54605. head: {
  54606. height: math.unit(5.09, "meters"),
  54607. name: "Head",
  54608. image: {
  54609. source: "./media/characters/io/head.svg"
  54610. }
  54611. },
  54612. hand: {
  54613. height: math.unit(1.6, "meters"),
  54614. name: "Hand",
  54615. image: {
  54616. source: "./media/characters/io/hand.svg"
  54617. }
  54618. },
  54619. foot: {
  54620. height: math.unit(2.4, "meters"),
  54621. name: "Foot",
  54622. image: {
  54623. source: "./media/characters/io/foot.svg"
  54624. }
  54625. },
  54626. },
  54627. [
  54628. {
  54629. name: "Normal",
  54630. height: math.unit(8, "meters"),
  54631. default: true
  54632. },
  54633. ]
  54634. ))
  54635. characterMakers.push(() => makeCharacter(
  54636. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54637. {
  54638. side: {
  54639. height: math.unit(6 + 3/12, "feet"),
  54640. weight: math.unit(225, "lb"),
  54641. name: "Side",
  54642. image: {
  54643. source: "./media/characters/silas/side.svg",
  54644. extra: 703/653,
  54645. bottom: 23/726
  54646. },
  54647. extraAttributes: {
  54648. "pawLength": {
  54649. name: "Paw Length",
  54650. power: 1,
  54651. type: "length",
  54652. base: math.unit(12, "inches")
  54653. },
  54654. "pawWidth": {
  54655. name: "Paw Width",
  54656. power: 1,
  54657. type: "length",
  54658. base: math.unit(4.5, "inches")
  54659. },
  54660. "pawArea": {
  54661. name: "Paw Area",
  54662. power: 2,
  54663. type: "area",
  54664. base: math.unit(12 * 4.5, "inches^2")
  54665. },
  54666. }
  54667. },
  54668. },
  54669. [
  54670. {
  54671. name: "Normal",
  54672. height: math.unit(6 + 3/12, "feet"),
  54673. default: true
  54674. },
  54675. ]
  54676. ))
  54677. characterMakers.push(() => makeCharacter(
  54678. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54679. {
  54680. back: {
  54681. height: math.unit(1.6, "meters"),
  54682. weight: math.unit(150, "lb"),
  54683. name: "Back",
  54684. image: {
  54685. source: "./media/characters/zari/back.svg",
  54686. extra: 424/411,
  54687. bottom: 32/456
  54688. },
  54689. extraAttributes: {
  54690. "bladderCapacity": {
  54691. name: "Bladder Size",
  54692. power: 3,
  54693. type: "volume",
  54694. base: math.unit(500, "mL")
  54695. },
  54696. "bladderFlow": {
  54697. name: "Flow Rate",
  54698. power: 3,
  54699. type: "volume",
  54700. base: math.unit(25, "mL")
  54701. },
  54702. }
  54703. },
  54704. },
  54705. [
  54706. {
  54707. name: "Normal",
  54708. height: math.unit(1.6, "meters"),
  54709. default: true
  54710. },
  54711. ]
  54712. ))
  54713. characterMakers.push(() => makeCharacter(
  54714. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54715. {
  54716. front: {
  54717. height: math.unit(25, "feet"),
  54718. weight: math.unit(5, "tons"),
  54719. name: "Front",
  54720. image: {
  54721. source: "./media/characters/charlie-human/front.svg",
  54722. extra: 1870/1740,
  54723. bottom: 102/1972
  54724. },
  54725. extraAttributes: {
  54726. "dickLength": {
  54727. name: "Dick Length",
  54728. power: 1,
  54729. type: "length",
  54730. base: math.unit(9, "feet")
  54731. },
  54732. }
  54733. },
  54734. back: {
  54735. height: math.unit(25, "feet"),
  54736. weight: math.unit(5, "tons"),
  54737. name: "Back",
  54738. image: {
  54739. source: "./media/characters/charlie-human/back.svg",
  54740. extra: 1858/1733,
  54741. bottom: 105/1963
  54742. },
  54743. extraAttributes: {
  54744. "dickLength": {
  54745. name: "Dick Length",
  54746. power: 1,
  54747. type: "length",
  54748. base: math.unit(9, "feet")
  54749. },
  54750. }
  54751. },
  54752. },
  54753. [
  54754. {
  54755. name: "\"Normal\"",
  54756. height: math.unit(6 + 4/12, "feet")
  54757. },
  54758. {
  54759. name: "Big",
  54760. height: math.unit(25, "feet"),
  54761. default: true
  54762. },
  54763. ]
  54764. ))
  54765. characterMakers.push(() => makeCharacter(
  54766. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54767. {
  54768. front: {
  54769. height: math.unit(6 + 4/12, "feet"),
  54770. weight: math.unit(320, "lb"),
  54771. name: "Front",
  54772. image: {
  54773. source: "./media/characters/ookitsu/front.svg",
  54774. extra: 1160/976,
  54775. bottom: 38/1198
  54776. }
  54777. },
  54778. frontNsfw: {
  54779. height: math.unit(6 + 4/12, "feet"),
  54780. weight: math.unit(320, "lb"),
  54781. name: "Front (NSFW)",
  54782. image: {
  54783. source: "./media/characters/ookitsu/front-nsfw.svg",
  54784. extra: 1160/976,
  54785. bottom: 38/1198
  54786. }
  54787. },
  54788. back: {
  54789. height: math.unit(6 + 4/12, "feet"),
  54790. weight: math.unit(320, "lb"),
  54791. name: "Back",
  54792. image: {
  54793. source: "./media/characters/ookitsu/back.svg",
  54794. extra: 1030/975,
  54795. bottom: 70/1100
  54796. }
  54797. },
  54798. head: {
  54799. height: math.unit(1.79, "feet"),
  54800. name: "Head",
  54801. image: {
  54802. source: "./media/characters/ookitsu/head.svg"
  54803. }
  54804. },
  54805. hand: {
  54806. height: math.unit(0.92, "feet"),
  54807. name: "Hand",
  54808. image: {
  54809. source: "./media/characters/ookitsu/hand.svg"
  54810. }
  54811. },
  54812. tails: {
  54813. height: math.unit(3.3, "feet"),
  54814. name: "Tails",
  54815. image: {
  54816. source: "./media/characters/ookitsu/tails.svg"
  54817. }
  54818. },
  54819. dick: {
  54820. height: math.unit(1.10833, "feet"),
  54821. name: "Dick",
  54822. image: {
  54823. source: "./media/characters/ookitsu/dick.svg"
  54824. }
  54825. },
  54826. },
  54827. [
  54828. {
  54829. name: "Normal",
  54830. height: math.unit(6 + 4/12, "feet"),
  54831. default: true
  54832. },
  54833. {
  54834. name: "Macro",
  54835. height: math.unit(30, "feet")
  54836. },
  54837. ]
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54841. {
  54842. anthroFront: {
  54843. height: math.unit(6, "feet"),
  54844. weight: math.unit(250, "lb"),
  54845. name: "Front",
  54846. image: {
  54847. source: "./media/characters/jhusky/anthro-front.svg",
  54848. extra: 474/439,
  54849. bottom: 7/481
  54850. },
  54851. form: "anthro",
  54852. default: true
  54853. },
  54854. taurSideSfw: {
  54855. height: math.unit(6 + 4/12, "feet"),
  54856. weight: math.unit(500, "lb"),
  54857. name: "Side (SFW)",
  54858. image: {
  54859. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54860. extra: 1741/1629,
  54861. bottom: 196/1937
  54862. },
  54863. form: "taur",
  54864. default: true
  54865. },
  54866. taurSideNsfw: {
  54867. height: math.unit(6 + 4/12, "feet"),
  54868. weight: math.unit(500, "lb"),
  54869. name: "Taur (NSFW)",
  54870. image: {
  54871. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54872. extra: 1741/1629,
  54873. bottom: 196/1937
  54874. },
  54875. form: "taur",
  54876. },
  54877. },
  54878. [
  54879. {
  54880. name: "Huge",
  54881. height: math.unit(500, "feet"),
  54882. form: "anthro"
  54883. },
  54884. {
  54885. name: "Macro",
  54886. height: math.unit(1000, "feet"),
  54887. default: true,
  54888. form: "anthro"
  54889. },
  54890. {
  54891. name: "Megamacro",
  54892. height: math.unit(10000, "feet"),
  54893. form: "anthro"
  54894. },
  54895. {
  54896. name: "Huge",
  54897. height: math.unit(528, "feet"),
  54898. form: "taur"
  54899. },
  54900. {
  54901. name: "Macro",
  54902. height: math.unit(1056, "feet"),
  54903. default: true,
  54904. form: "taur"
  54905. },
  54906. {
  54907. name: "Megamacro",
  54908. height: math.unit(10556, "feet"),
  54909. form: "taur"
  54910. },
  54911. ],
  54912. {
  54913. "anthro": {
  54914. name: "Anthro",
  54915. default: true
  54916. },
  54917. "taur": {
  54918. name: "Taur",
  54919. },
  54920. }
  54921. ))
  54922. characterMakers.push(() => makeCharacter(
  54923. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54924. {
  54925. front: {
  54926. height: math.unit(8, "feet"),
  54927. weight: math.unit(500, "lb"),
  54928. name: "Front",
  54929. image: {
  54930. source: "./media/characters/armail/front.svg",
  54931. extra: 1753/1669,
  54932. bottom: 155/1908
  54933. }
  54934. },
  54935. back: {
  54936. height: math.unit(8, "feet"),
  54937. weight: math.unit(500, "lb"),
  54938. name: "Back",
  54939. image: {
  54940. source: "./media/characters/armail/back.svg",
  54941. extra: 1872/1803,
  54942. bottom: 63/1935
  54943. }
  54944. },
  54945. },
  54946. [
  54947. {
  54948. name: "Micro",
  54949. height: math.unit(0.25, "feet")
  54950. },
  54951. {
  54952. name: "Normal",
  54953. height: math.unit(8, "feet"),
  54954. default: true
  54955. },
  54956. {
  54957. name: "Mini-macro",
  54958. height: math.unit(30, "feet")
  54959. },
  54960. {
  54961. name: "Macro",
  54962. height: math.unit(400, "feet")
  54963. },
  54964. {
  54965. name: "Mega-macro",
  54966. height: math.unit(6000, "feet")
  54967. },
  54968. ]
  54969. ))
  54970. characterMakers.push(() => makeCharacter(
  54971. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54972. {
  54973. front: {
  54974. height: math.unit(6 + 7/12, "feet"),
  54975. weight: math.unit(210, "lb"),
  54976. name: "Front",
  54977. image: {
  54978. source: "./media/characters/wilfred-t-buxton/front.svg",
  54979. extra: 1068/882,
  54980. bottom: 28/1096
  54981. }
  54982. },
  54983. },
  54984. [
  54985. {
  54986. name: "Normal",
  54987. height: math.unit(6 + 7/12, "feet"),
  54988. default: true
  54989. },
  54990. ]
  54991. ))
  54992. characterMakers.push(() => makeCharacter(
  54993. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54994. {
  54995. front: {
  54996. height: math.unit(5 + 2/12, "feet"),
  54997. weight: math.unit(120, "lb"),
  54998. name: "Front",
  54999. image: {
  55000. source: "./media/characters/leighton-marrow/front.svg",
  55001. extra: 441/409,
  55002. bottom: 37/478
  55003. }
  55004. },
  55005. },
  55006. [
  55007. {
  55008. name: "Normal",
  55009. height: math.unit(5 + 2/12, "feet"),
  55010. default: true
  55011. },
  55012. ]
  55013. ))
  55014. characterMakers.push(() => makeCharacter(
  55015. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55016. {
  55017. front: {
  55018. height: math.unit(4, "meters"),
  55019. weight: math.unit(1200, "kg"),
  55020. name: "Front",
  55021. image: {
  55022. source: "./media/characters/licos/front.svg",
  55023. extra: 1727/1604,
  55024. bottom: 101/1828
  55025. }
  55026. },
  55027. },
  55028. [
  55029. {
  55030. name: "Normal",
  55031. height: math.unit(4, "meters"),
  55032. default: true
  55033. },
  55034. ]
  55035. ))
  55036. characterMakers.push(() => makeCharacter(
  55037. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55038. {
  55039. front: {
  55040. height: math.unit(10 + 3/12, "feet"),
  55041. name: "Front",
  55042. image: {
  55043. source: "./media/characters/theo-monkey/front.svg",
  55044. extra: 1735/1658,
  55045. bottom: 73/1808
  55046. }
  55047. },
  55048. back: {
  55049. height: math.unit(10 + 3/12, "feet"),
  55050. name: "Back",
  55051. image: {
  55052. source: "./media/characters/theo-monkey/back.svg",
  55053. extra: 1742/1664,
  55054. bottom: 33/1775
  55055. }
  55056. },
  55057. head: {
  55058. height: math.unit(2.29, "feet"),
  55059. name: "Head",
  55060. image: {
  55061. source: "./media/characters/theo-monkey/head.svg"
  55062. }
  55063. },
  55064. handPalm: {
  55065. height: math.unit(1.73, "feet"),
  55066. name: "Hand (Palm)",
  55067. image: {
  55068. source: "./media/characters/theo-monkey/hand-palm.svg"
  55069. }
  55070. },
  55071. handBack: {
  55072. height: math.unit(1.63, "feet"),
  55073. name: "Hand (Back)",
  55074. image: {
  55075. source: "./media/characters/theo-monkey/hand-back.svg"
  55076. }
  55077. },
  55078. footSole: {
  55079. height: math.unit(2.15, "feet"),
  55080. name: "Foot (Sole)",
  55081. image: {
  55082. source: "./media/characters/theo-monkey/foot-sole.svg"
  55083. }
  55084. },
  55085. footSide: {
  55086. height: math.unit(1.6, "feet"),
  55087. name: "Foot (Side)",
  55088. image: {
  55089. source: "./media/characters/theo-monkey/foot-side.svg"
  55090. }
  55091. },
  55092. },
  55093. [
  55094. {
  55095. name: "Normal",
  55096. height: math.unit(10 + 3/12, "feet"),
  55097. default: true
  55098. },
  55099. ]
  55100. ))
  55101. characterMakers.push(() => makeCharacter(
  55102. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55103. {
  55104. front: {
  55105. height: math.unit(11, "feet"),
  55106. weight: math.unit(3000, "lb"),
  55107. preyCapacity: math.unit(10, "people"),
  55108. name: "Front",
  55109. image: {
  55110. source: "./media/characters/brook/front.svg",
  55111. extra: 909/835,
  55112. bottom: 108/1017
  55113. }
  55114. },
  55115. back: {
  55116. height: math.unit(11, "feet"),
  55117. weight: math.unit(3000, "lb"),
  55118. preyCapacity: math.unit(10, "people"),
  55119. name: "Back",
  55120. image: {
  55121. source: "./media/characters/brook/back.svg",
  55122. extra: 976/916,
  55123. bottom: 34/1010
  55124. }
  55125. },
  55126. backAlt: {
  55127. height: math.unit(11, "feet"),
  55128. weight: math.unit(3000, "lb"),
  55129. preyCapacity: math.unit(10, "people"),
  55130. name: "Back (Alt)",
  55131. image: {
  55132. source: "./media/characters/brook/back-alt.svg",
  55133. extra: 1283/1213,
  55134. bottom: 35/1318
  55135. }
  55136. },
  55137. bust: {
  55138. height: math.unit(9.0859030837, "feet"),
  55139. weight: math.unit(3000, "lb"),
  55140. preyCapacity: math.unit(10, "people"),
  55141. name: "Bust",
  55142. image: {
  55143. source: "./media/characters/brook/bust.svg",
  55144. extra: 2043/1923,
  55145. bottom: 0/2043
  55146. }
  55147. },
  55148. },
  55149. [
  55150. {
  55151. name: "Small",
  55152. height: math.unit(11, "feet"),
  55153. default: true
  55154. },
  55155. {
  55156. name: "Towering",
  55157. height: math.unit(5, "km")
  55158. },
  55159. {
  55160. name: "Enormous",
  55161. height: math.unit(25, "earths")
  55162. },
  55163. ]
  55164. ))
  55165. characterMakers.push(() => makeCharacter(
  55166. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55167. {
  55168. front: {
  55169. height: math.unit(4, "feet"),
  55170. weight: math.unit(150, "lb"),
  55171. name: "Front",
  55172. image: {
  55173. source: "./media/characters/squishi/front.svg",
  55174. extra: 1428/1271,
  55175. bottom: 30/1458
  55176. },
  55177. extraAttributes: {
  55178. "pawSize": {
  55179. name: "Paw Size",
  55180. power: 1,
  55181. type: "length",
  55182. base: math.unit(14, "ShoeSizeMensUS"),
  55183. defaultUnit: "ShoeSizeMensUS"
  55184. },
  55185. }
  55186. },
  55187. side: {
  55188. height: math.unit(4, "feet"),
  55189. weight: math.unit(150, "lb"),
  55190. name: "Side",
  55191. image: {
  55192. source: "./media/characters/squishi/side.svg",
  55193. extra: 1428/1271,
  55194. bottom: 30/1458
  55195. },
  55196. extraAttributes: {
  55197. "pawSize": {
  55198. name: "Paw Size",
  55199. power: 1,
  55200. type: "length",
  55201. base: math.unit(14, "ShoeSizeMensUS"),
  55202. defaultUnit: "ShoeSizeMensUS"
  55203. },
  55204. }
  55205. },
  55206. back: {
  55207. height: math.unit(4, "feet"),
  55208. weight: math.unit(150, "lb"),
  55209. name: "Back",
  55210. image: {
  55211. source: "./media/characters/squishi/back.svg",
  55212. extra: 1428/1271,
  55213. bottom: 30/1458
  55214. },
  55215. extraAttributes: {
  55216. "pawSize": {
  55217. name: "Paw Size",
  55218. power: 1,
  55219. type: "length",
  55220. base: math.unit(14, "ShoeSizeMensUS"),
  55221. defaultUnit: "ShoeSizeMensUS"
  55222. },
  55223. }
  55224. },
  55225. },
  55226. [
  55227. {
  55228. name: "Normal",
  55229. height: math.unit(4, "feet"),
  55230. default: true
  55231. },
  55232. ]
  55233. ))
  55234. characterMakers.push(() => makeCharacter(
  55235. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55236. {
  55237. front: {
  55238. height: math.unit(7 + 8/12, "feet"),
  55239. weight: math.unit(333, "lb"),
  55240. name: "Front",
  55241. image: {
  55242. source: "./media/characters/vincent-vasroc/front.svg",
  55243. extra: 1962/1860,
  55244. bottom: 41/2003
  55245. }
  55246. },
  55247. back: {
  55248. height: math.unit(7 + 8/12, "feet"),
  55249. weight: math.unit(333, "lb"),
  55250. name: "Back",
  55251. image: {
  55252. source: "./media/characters/vincent-vasroc/back.svg",
  55253. extra: 1952/1815,
  55254. bottom: 33/1985
  55255. }
  55256. },
  55257. paw: {
  55258. height: math.unit(1.24, "feet"),
  55259. name: "Paw",
  55260. image: {
  55261. source: "./media/characters/vincent-vasroc/paw.svg"
  55262. }
  55263. },
  55264. ear: {
  55265. height: math.unit(0.75, "feet"),
  55266. name: "Ear",
  55267. image: {
  55268. source: "./media/characters/vincent-vasroc/ear.svg"
  55269. }
  55270. },
  55271. },
  55272. [
  55273. {
  55274. name: "Nano",
  55275. height: math.unit(92, "micrometers")
  55276. },
  55277. {
  55278. name: "Normal",
  55279. height: math.unit(7 + 8/12, "feet"),
  55280. default: true
  55281. },
  55282. ]
  55283. ))
  55284. characterMakers.push(() => makeCharacter(
  55285. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55286. {
  55287. frontNsfw: {
  55288. height: math.unit(40, "feet"),
  55289. weight: math.unit(58, "tons"),
  55290. name: "Front (NSFW)",
  55291. image: {
  55292. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55293. extra: 1265/965,
  55294. bottom: 155/1420
  55295. }
  55296. },
  55297. frontSfw: {
  55298. height: math.unit(40, "feet"),
  55299. weight: math.unit(58, "tons"),
  55300. name: "Front (SFW)",
  55301. image: {
  55302. source: "./media/characters/ru-kahn/front-sfw.svg",
  55303. extra: 1265/965,
  55304. bottom: 80/1345
  55305. }
  55306. },
  55307. },
  55308. [
  55309. {
  55310. name: "Small",
  55311. height: math.unit(4, "feet")
  55312. },
  55313. {
  55314. name: "Normal",
  55315. height: math.unit(40, "feet"),
  55316. default: true
  55317. },
  55318. {
  55319. name: "Macro",
  55320. height: math.unit(400, "feet")
  55321. },
  55322. ]
  55323. ))
  55324. characterMakers.push(() => makeCharacter(
  55325. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55326. {
  55327. frontNude: {
  55328. height: math.unit(6 + 5/12, "feet"),
  55329. name: "Front (Nude)",
  55330. image: {
  55331. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55332. extra: 1369/1366,
  55333. bottom: 68/1437
  55334. }
  55335. },
  55336. frontDressed: {
  55337. height: math.unit(6 + 5/12, "feet"),
  55338. name: "Front (Dressed)",
  55339. image: {
  55340. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55341. extra: 1369/1366,
  55342. bottom: 68/1437
  55343. }
  55344. },
  55345. },
  55346. [
  55347. {
  55348. name: "Normal",
  55349. height: math.unit(6 + 5/12, "feet"),
  55350. default: true
  55351. },
  55352. {
  55353. name: "Maximum",
  55354. height: math.unit(1930, "feet")
  55355. },
  55356. ]
  55357. ))
  55358. //characters
  55359. function makeCharacters() {
  55360. const results = [];
  55361. characterMakers.forEach(character => {
  55362. results.push(character());
  55363. });
  55364. return results;
  55365. }