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

56489 строки
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. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. "obstagoon": {
  2107. name: "Obstagoon",
  2108. parents: ["zigzagoon"]
  2109. },
  2110. "thomsons-gazelle": {
  2111. name: "Thomsons Gazelle",
  2112. parents: ["gazelle"]
  2113. },
  2114. "gazelle": {
  2115. name: "Gazelle",
  2116. parents: ["antelope"]
  2117. },
  2118. "monkey": {
  2119. name: "Monkey",
  2120. parents: ["mammal"]
  2121. },
  2122. "serval": {
  2123. name: "Serval",
  2124. parents: ["cat"]
  2125. },
  2126. }
  2127. //species
  2128. function getSpeciesInfo(speciesList) {
  2129. let result = new Set();
  2130. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2131. result.add(entry)
  2132. });
  2133. return Array.from(result);
  2134. };
  2135. function getSpeciesInfoHelper(species) {
  2136. if (!speciesData[species]) {
  2137. console.warn(species + " doesn't exist");
  2138. return [];
  2139. }
  2140. if (speciesData[species].parents) {
  2141. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2142. } else {
  2143. return [species];
  2144. }
  2145. }
  2146. characterMakers.push(() => makeCharacter(
  2147. {
  2148. name: "Fen",
  2149. species: ["crux"],
  2150. description: {
  2151. title: "Bio",
  2152. text: "Very furry. Sheds on everything."
  2153. },
  2154. tags: [
  2155. "anthro",
  2156. "goo"
  2157. ]
  2158. },
  2159. {
  2160. front: {
  2161. height: math.unit(12, "feet"),
  2162. weight: math.unit(2400, "lb"),
  2163. preyCapacity: math.unit(1, "people"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/fen/front.svg",
  2167. extra: 1804/1562,
  2168. bottom: 205/2009
  2169. },
  2170. extraAttributes: {
  2171. pawSize: {
  2172. name: "Paw Size",
  2173. power: 2,
  2174. type: "area",
  2175. base: math.unit(0.35, "m^2")
  2176. }
  2177. }
  2178. },
  2179. diving: {
  2180. height: math.unit(4.9, "meters"),
  2181. weight: math.unit(2400, "lb"),
  2182. name: "Diving",
  2183. image: {
  2184. source: "./media/characters/fen/diving.svg"
  2185. }
  2186. },
  2187. sleeby: {
  2188. height: math.unit(3.45, "meters"),
  2189. weight: math.unit(2400, "lb"),
  2190. name: "Sleeby",
  2191. image: {
  2192. source: "./media/characters/fen/sleeby.svg"
  2193. }
  2194. },
  2195. goo: {
  2196. height: math.unit(12, "feet"),
  2197. weight: math.unit(3600, "lb"),
  2198. volume: math.unit(1000, "liters"),
  2199. preyCapacity: math.unit(6, "people"),
  2200. name: "Goo",
  2201. image: {
  2202. source: "./media/characters/fen/goo.svg",
  2203. extra: 1307/1071,
  2204. bottom: 134/1441
  2205. }
  2206. },
  2207. gooNsfw: {
  2208. height: math.unit(12, "feet"),
  2209. weight: math.unit(3750, "lb"),
  2210. volume: math.unit(1000, "liters"),
  2211. preyCapacity: math.unit(6, "people"),
  2212. name: "Goo (NSFW)",
  2213. image: {
  2214. source: "./media/characters/fen/goo-nsfw.svg",
  2215. extra: 1875/1734,
  2216. bottom: 122/1997
  2217. }
  2218. },
  2219. maw: {
  2220. height: math.unit(5.03, "feet"),
  2221. name: "Maw",
  2222. image: {
  2223. source: "./media/characters/fen/maw.svg"
  2224. }
  2225. },
  2226. gooCeiling: {
  2227. height: math.unit(6.6, "feet"),
  2228. weight: math.unit(3000, "lb"),
  2229. volume: math.unit(1000, "liters"),
  2230. preyCapacity: math.unit(6, "people"),
  2231. name: "Goo (Ceiling)",
  2232. image: {
  2233. source: "./media/characters/fen/goo-ceiling.svg"
  2234. }
  2235. },
  2236. paw: {
  2237. height: math.unit(3.77, "feet"),
  2238. name: "Paw",
  2239. image: {
  2240. source: "./media/characters/fen/paw.svg"
  2241. },
  2242. extraAttributes: {
  2243. "toeSize": {
  2244. name: "Toe Size",
  2245. power: 2,
  2246. type: "area",
  2247. base: math.unit(0.02875, "m^2")
  2248. },
  2249. "pawSize": {
  2250. name: "Paw Size",
  2251. power: 2,
  2252. type: "area",
  2253. base: math.unit(0.378, "m^2")
  2254. },
  2255. }
  2256. },
  2257. tail: {
  2258. height: math.unit(12.1, "feet"),
  2259. name: "Tail",
  2260. image: {
  2261. source: "./media/characters/fen/tail.svg"
  2262. }
  2263. },
  2264. tailFull: {
  2265. height: math.unit(12.1, "feet"),
  2266. name: "Full Tail",
  2267. image: {
  2268. source: "./media/characters/fen/tail-full.svg"
  2269. }
  2270. },
  2271. back: {
  2272. height: math.unit(12, "feet"),
  2273. weight: math.unit(2400, "lb"),
  2274. name: "Back",
  2275. image: {
  2276. source: "./media/characters/fen/back.svg",
  2277. },
  2278. info: {
  2279. description: {
  2280. mode: "append",
  2281. text: "\n\nHe is not currently looking at you."
  2282. }
  2283. }
  2284. },
  2285. full: {
  2286. height: math.unit(1.85, "meter"),
  2287. weight: math.unit(3200, "lb"),
  2288. name: "Full",
  2289. image: {
  2290. source: "./media/characters/fen/full.svg",
  2291. extra: 1133/859,
  2292. bottom: 145/1278
  2293. },
  2294. info: {
  2295. description: {
  2296. mode: "append",
  2297. text: "\n\nMunch."
  2298. }
  2299. }
  2300. },
  2301. gooLounging: {
  2302. height: math.unit(4.53, "feet"),
  2303. weight: math.unit(3000, "lb"),
  2304. preyCapacity: math.unit(6, "people"),
  2305. name: "Goo (Lounging)",
  2306. image: {
  2307. source: "./media/characters/fen/goo-lounging.svg",
  2308. bottom: 116 / 613
  2309. }
  2310. },
  2311. lounging: {
  2312. height: math.unit(10.52, "feet"),
  2313. weight: math.unit(2400, "lb"),
  2314. name: "Lounging",
  2315. image: {
  2316. source: "./media/characters/fen/lounging.svg"
  2317. }
  2318. },
  2319. },
  2320. [
  2321. {
  2322. name: "Small",
  2323. height: math.unit(2.2428, "meter")
  2324. },
  2325. {
  2326. name: "Normal",
  2327. height: math.unit(12, "feet"),
  2328. default: true,
  2329. },
  2330. {
  2331. name: "Big",
  2332. height: math.unit(20, "feet")
  2333. },
  2334. {
  2335. name: "Minimacro",
  2336. height: math.unit(40, "feet"),
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nTOO DAMN BIG"
  2341. }
  2342. }
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(100, "feet"),
  2347. info: {
  2348. description: {
  2349. mode: "append",
  2350. text: "\n\nTOO DAMN BIG"
  2351. }
  2352. }
  2353. },
  2354. {
  2355. name: "Megamacro",
  2356. height: math.unit(2, "miles")
  2357. },
  2358. {
  2359. name: "Gigamacro",
  2360. height: math.unit(10, "earths")
  2361. },
  2362. ]
  2363. ))
  2364. characterMakers.push(() => makeCharacter(
  2365. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2366. {
  2367. front: {
  2368. height: math.unit(183, "cm"),
  2369. weight: math.unit(80, "kg"),
  2370. name: "Front",
  2371. image: {
  2372. source: "./media/characters/sofia-fluttertail/front.svg",
  2373. bottom: 0.01,
  2374. extra: 2154 / 2081
  2375. }
  2376. },
  2377. frontAlt: {
  2378. height: math.unit(183, "cm"),
  2379. weight: math.unit(80, "kg"),
  2380. name: "Front (alt)",
  2381. image: {
  2382. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2383. }
  2384. },
  2385. back: {
  2386. height: math.unit(183, "cm"),
  2387. weight: math.unit(80, "kg"),
  2388. name: "Back",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/back.svg"
  2391. }
  2392. },
  2393. kneeling: {
  2394. height: math.unit(125, "cm"),
  2395. weight: math.unit(80, "kg"),
  2396. name: "Kneeling",
  2397. image: {
  2398. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2399. extra: 1033 / 977,
  2400. bottom: 23.7 / 1057
  2401. }
  2402. },
  2403. maw: {
  2404. height: math.unit(183 / 5, "cm"),
  2405. name: "Maw",
  2406. image: {
  2407. source: "./media/characters/sofia-fluttertail/maw.svg"
  2408. }
  2409. },
  2410. mawcloseup: {
  2411. height: math.unit(183 / 5 * 0.41, "cm"),
  2412. name: "Maw (Closeup)",
  2413. image: {
  2414. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2415. }
  2416. },
  2417. paws: {
  2418. height: math.unit(1.17, "feet"),
  2419. name: "Paws",
  2420. image: {
  2421. source: "./media/characters/sofia-fluttertail/paws.svg",
  2422. extra: 851 / 851,
  2423. bottom: 17 / 868
  2424. }
  2425. },
  2426. },
  2427. [
  2428. {
  2429. name: "Normal",
  2430. height: math.unit(1.83, "meter")
  2431. },
  2432. {
  2433. name: "Size Thief",
  2434. height: math.unit(18, "feet")
  2435. },
  2436. {
  2437. name: "50 Foot Collie",
  2438. height: math.unit(50, "feet")
  2439. },
  2440. {
  2441. name: "Macro",
  2442. height: math.unit(96, "feet"),
  2443. default: true
  2444. },
  2445. {
  2446. name: "Megamerger",
  2447. height: math.unit(650, "feet")
  2448. },
  2449. ]
  2450. ))
  2451. characterMakers.push(() => makeCharacter(
  2452. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2453. {
  2454. front: {
  2455. height: math.unit(7, "feet"),
  2456. weight: math.unit(100, "kg"),
  2457. name: "Front",
  2458. image: {
  2459. source: "./media/characters/march/front.svg",
  2460. extra: 1992/1851,
  2461. bottom: 39/2031
  2462. }
  2463. },
  2464. foot: {
  2465. height: math.unit(0.9, "feet"),
  2466. name: "Foot",
  2467. image: {
  2468. source: "./media/characters/march/foot.svg"
  2469. }
  2470. },
  2471. },
  2472. [
  2473. {
  2474. name: "Normal",
  2475. height: math.unit(7.9, "feet")
  2476. },
  2477. {
  2478. name: "Macro",
  2479. height: math.unit(220, "meters")
  2480. },
  2481. {
  2482. name: "Megamacro",
  2483. height: math.unit(2.98, "km"),
  2484. default: true
  2485. },
  2486. {
  2487. name: "Gigamacro",
  2488. height: math.unit(15963, "km")
  2489. },
  2490. {
  2491. name: "Teramacro",
  2492. height: math.unit(2980000000, "km")
  2493. },
  2494. {
  2495. name: "Examacro",
  2496. height: math.unit(250, "parsecs")
  2497. },
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2502. {
  2503. front: {
  2504. height: math.unit(6, "feet"),
  2505. weight: math.unit(60, "kg"),
  2506. name: "Front",
  2507. image: {
  2508. source: "./media/characters/noir/front.svg",
  2509. extra: 1,
  2510. bottom: 0.032
  2511. }
  2512. },
  2513. },
  2514. [
  2515. {
  2516. name: "Normal",
  2517. height: math.unit(6.6, "feet")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(500, "feet")
  2522. },
  2523. {
  2524. name: "Megamacro",
  2525. height: math.unit(2.5, "km"),
  2526. default: true
  2527. },
  2528. {
  2529. name: "Gigamacro",
  2530. height: math.unit(22500, "km")
  2531. },
  2532. {
  2533. name: "Teramacro",
  2534. height: math.unit(2500000000, "km")
  2535. },
  2536. {
  2537. name: "Examacro",
  2538. height: math.unit(200, "parsecs")
  2539. },
  2540. ]
  2541. ))
  2542. characterMakers.push(() => makeCharacter(
  2543. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2544. {
  2545. front: {
  2546. height: math.unit(7, "feet"),
  2547. weight: math.unit(100, "kg"),
  2548. name: "Front",
  2549. image: {
  2550. source: "./media/characters/okuri/front.svg",
  2551. extra: 739/665,
  2552. bottom: 39/778
  2553. }
  2554. },
  2555. back: {
  2556. height: math.unit(7, "feet"),
  2557. weight: math.unit(100, "kg"),
  2558. name: "Back",
  2559. image: {
  2560. source: "./media/characters/okuri/back.svg",
  2561. extra: 734/653,
  2562. bottom: 13/747
  2563. }
  2564. },
  2565. sitting: {
  2566. height: math.unit(2.95, "feet"),
  2567. weight: math.unit(100, "kg"),
  2568. name: "Sitting",
  2569. image: {
  2570. source: "./media/characters/okuri/sitting.svg",
  2571. extra: 370/318,
  2572. bottom: 99/469
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Smallest",
  2579. height: math.unit(5 + 2/12, "feet")
  2580. },
  2581. {
  2582. name: "Smaller",
  2583. height: math.unit(300, "feet")
  2584. },
  2585. {
  2586. name: "Small",
  2587. height: math.unit(1000, "feet")
  2588. },
  2589. {
  2590. name: "Macro",
  2591. height: math.unit(1, "mile")
  2592. },
  2593. {
  2594. name: "Mega Macro (Small)",
  2595. height: math.unit(20, "km")
  2596. },
  2597. {
  2598. name: "Mega Macro (Large)",
  2599. height: math.unit(600, "km")
  2600. },
  2601. {
  2602. name: "Giga Macro",
  2603. height: math.unit(10000, "km")
  2604. },
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(577560, "km"),
  2608. default: true
  2609. },
  2610. {
  2611. name: "Large",
  2612. height: math.unit(4, "galaxies")
  2613. },
  2614. {
  2615. name: "Largest",
  2616. height: math.unit(15, "multiverses")
  2617. },
  2618. ]
  2619. ))
  2620. characterMakers.push(() => makeCharacter(
  2621. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2622. {
  2623. front: {
  2624. height: math.unit(7, "feet"),
  2625. weight: math.unit(100, "kg"),
  2626. name: "Front",
  2627. image: {
  2628. source: "./media/characters/manny/front.svg",
  2629. extra: 1,
  2630. bottom: 0.06
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(7, "feet"),
  2635. weight: math.unit(100, "kg"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/manny/back.svg",
  2639. extra: 1,
  2640. bottom: 0.014
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(7, "feet"),
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(78, "feet"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Macro+",
  2656. height: math.unit(300, "meters")
  2657. },
  2658. {
  2659. name: "Macro++",
  2660. height: math.unit(2400, "meters")
  2661. },
  2662. {
  2663. name: "Megamacro",
  2664. height: math.unit(5167, "meters")
  2665. },
  2666. {
  2667. name: "Gigamacro",
  2668. height: math.unit(41769, "miles")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(7, "feet"),
  2677. weight: math.unit(100, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/adake/front-1.svg"
  2681. }
  2682. },
  2683. frontAlt: {
  2684. height: math.unit(7, "feet"),
  2685. weight: math.unit(100, "kg"),
  2686. name: "Front (Alt)",
  2687. image: {
  2688. source: "./media/characters/adake/front-2.svg",
  2689. extra: 1,
  2690. bottom: 0.01
  2691. }
  2692. },
  2693. back: {
  2694. height: math.unit(7, "feet"),
  2695. weight: math.unit(100, "kg"),
  2696. name: "Back",
  2697. image: {
  2698. source: "./media/characters/adake/back.svg",
  2699. }
  2700. },
  2701. kneel: {
  2702. height: math.unit(5.385, "feet"),
  2703. weight: math.unit(100, "kg"),
  2704. name: "Kneeling",
  2705. image: {
  2706. source: "./media/characters/adake/kneel.svg",
  2707. bottom: 0.052
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(7, "feet"),
  2715. },
  2716. {
  2717. name: "Macro",
  2718. height: math.unit(78, "feet"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Macro+",
  2723. height: math.unit(300, "meters")
  2724. },
  2725. {
  2726. name: "Macro++",
  2727. height: math.unit(2400, "meters")
  2728. },
  2729. {
  2730. name: "Megamacro",
  2731. height: math.unit(5167, "meters")
  2732. },
  2733. {
  2734. name: "Gigamacro",
  2735. height: math.unit(41769, "miles")
  2736. },
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(1.65, "meters"),
  2744. weight: math.unit(50, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/elijah/front.svg",
  2748. extra: 858 / 830,
  2749. bottom: 95.5 / 953.8559
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(1.65, "meters"),
  2754. weight: math.unit(50, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/elijah/back.svg",
  2758. extra: 895 / 850,
  2759. bottom: 5.3 / 897.956
  2760. }
  2761. },
  2762. frontNsfw: {
  2763. height: math.unit(1.65, "meters"),
  2764. weight: math.unit(50, "kg"),
  2765. name: "Front (NSFW)",
  2766. image: {
  2767. source: "./media/characters/elijah/front-nsfw.svg",
  2768. extra: 858 / 830,
  2769. bottom: 95.5 / 953.8559
  2770. }
  2771. },
  2772. backNsfw: {
  2773. height: math.unit(1.65, "meters"),
  2774. weight: math.unit(50, "kg"),
  2775. name: "Back (NSFW)",
  2776. image: {
  2777. source: "./media/characters/elijah/back-nsfw.svg",
  2778. extra: 895 / 850,
  2779. bottom: 5.3 / 897.956
  2780. }
  2781. },
  2782. dick: {
  2783. height: math.unit(1, "feet"),
  2784. name: "Dick",
  2785. image: {
  2786. source: "./media/characters/elijah/dick.svg"
  2787. }
  2788. },
  2789. beakOpen: {
  2790. height: math.unit(1.25, "feet"),
  2791. name: "Beak (Open)",
  2792. image: {
  2793. source: "./media/characters/elijah/beak-open.svg"
  2794. }
  2795. },
  2796. beakShut: {
  2797. height: math.unit(1.25, "feet"),
  2798. name: "Beak (Shut)",
  2799. image: {
  2800. source: "./media/characters/elijah/beak-shut.svg"
  2801. }
  2802. },
  2803. footFlexing: {
  2804. height: math.unit(1.61, "feet"),
  2805. name: "Foot (Flexing)",
  2806. image: {
  2807. source: "./media/characters/elijah/foot-flexing.svg"
  2808. }
  2809. },
  2810. footStepping: {
  2811. height: math.unit(1.44, "feet"),
  2812. name: "Foot (Stepping)",
  2813. image: {
  2814. source: "./media/characters/elijah/foot-stepping.svg"
  2815. }
  2816. },
  2817. plantigradeLeg: {
  2818. height: math.unit(2.34, "feet"),
  2819. name: "Plantigrade Leg",
  2820. image: {
  2821. source: "./media/characters/elijah/plantigrade-leg.svg"
  2822. }
  2823. },
  2824. plantigradeFootLeft: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Plantigrade Foot (Left)",
  2827. image: {
  2828. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2829. }
  2830. },
  2831. plantigradeFootRight: {
  2832. height: math.unit(0.9, "feet"),
  2833. name: "Plantigrade Foot (Right)",
  2834. image: {
  2835. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Normal",
  2842. height: math.unit(1.65, "meters")
  2843. },
  2844. {
  2845. name: "Macro",
  2846. height: math.unit(55, "meters"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro+",
  2851. height: math.unit(105, "meters")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(7 + 2/12, "feet"),
  2860. weight: math.unit(320, "kg"),
  2861. preyCapacity: math.unit(0.276549935, "people"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/rai/front.svg",
  2865. extra: 1802/1696,
  2866. bottom: 68/1870
  2867. },
  2868. form: "anthro",
  2869. default: true
  2870. },
  2871. frontDressed: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Front (Dressed)",
  2876. image: {
  2877. source: "./media/characters/rai/front-dressed.svg",
  2878. extra: 1802/1696,
  2879. bottom: 68/1870
  2880. },
  2881. form: "anthro"
  2882. },
  2883. side: {
  2884. height: math.unit(7 + 2/12, "feet"),
  2885. weight: math.unit(320, "kg"),
  2886. preyCapacity: math.unit(0.276549935, "people"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/rai/side.svg",
  2890. extra: 1789/1710,
  2891. bottom: 115/1904
  2892. },
  2893. form: "anthro"
  2894. },
  2895. back: {
  2896. height: math.unit(7 + 2/12, "feet"),
  2897. weight: math.unit(320, "kg"),
  2898. preyCapacity: math.unit(0.276549935, "people"),
  2899. name: "Back",
  2900. image: {
  2901. source: "./media/characters/rai/back.svg",
  2902. extra: 1770/1707,
  2903. bottom: 28/1798
  2904. },
  2905. form: "anthro"
  2906. },
  2907. feral: {
  2908. height: math.unit(9.5, "feet"),
  2909. weight: math.unit(640, "kg"),
  2910. preyCapacity: math.unit(4, "people"),
  2911. name: "Feral",
  2912. image: {
  2913. source: "./media/characters/rai/feral.svg",
  2914. extra: 945/553,
  2915. bottom: 176/1121
  2916. },
  2917. form: "feral",
  2918. default: true
  2919. },
  2920. dragon: {
  2921. height: math.unit(23, "feet"),
  2922. weight: math.unit(50000, "lb"),
  2923. name: "Dragon",
  2924. image: {
  2925. source: "./media/characters/rai/dragon.svg",
  2926. extra: 2498 / 2030,
  2927. bottom: 85.2 / 2584
  2928. },
  2929. form: "dragon",
  2930. default: true
  2931. },
  2932. maw: {
  2933. height: math.unit(1.69, "feet"),
  2934. name: "Maw",
  2935. image: {
  2936. source: "./media/characters/rai/maw.svg"
  2937. },
  2938. form: "anthro"
  2939. },
  2940. },
  2941. [
  2942. {
  2943. name: "Normal",
  2944. height: math.unit(7 + 2/12, "feet"),
  2945. form: "anthro"
  2946. },
  2947. {
  2948. name: "Big",
  2949. height: math.unit(11, "feet"),
  2950. form: "anthro"
  2951. },
  2952. {
  2953. name: "Minimacro",
  2954. height: math.unit(77, "feet"),
  2955. form: "anthro"
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(302, "feet"),
  2960. default: true,
  2961. form: "anthro"
  2962. },
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(9.5, "feet"),
  2966. form: "feral",
  2967. default: true
  2968. },
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(23, "feet"),
  2972. form: "dragon",
  2973. default: true
  2974. }
  2975. ],
  2976. {
  2977. "anthro": {
  2978. name: "Anthro",
  2979. default: true
  2980. },
  2981. "feral": {
  2982. name: "Feral",
  2983. },
  2984. "dragon": {
  2985. name: "Dragon",
  2986. },
  2987. }
  2988. ))
  2989. characterMakers.push(() => makeCharacter(
  2990. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2991. {
  2992. frontDressed: {
  2993. height: math.unit(216, "feet"),
  2994. weight: math.unit(7000000, "lb"),
  2995. preyCapacity: math.unit(1321, "people"),
  2996. name: "Front (Dressed)",
  2997. image: {
  2998. source: "./media/characters/jazzy/front-dressed.svg",
  2999. extra: 2738 / 2651,
  3000. bottom: 41.8 / 2786
  3001. }
  3002. },
  3003. backDressed: {
  3004. height: math.unit(216, "feet"),
  3005. weight: math.unit(7000000, "lb"),
  3006. preyCapacity: math.unit(1321, "people"),
  3007. name: "Back (Dressed)",
  3008. image: {
  3009. source: "./media/characters/jazzy/back-dressed.svg",
  3010. extra: 2775 / 2673,
  3011. bottom: 36.8 / 2817
  3012. }
  3013. },
  3014. front: {
  3015. height: math.unit(216, "feet"),
  3016. weight: math.unit(7000000, "lb"),
  3017. preyCapacity: math.unit(1321, "people"),
  3018. name: "Front",
  3019. image: {
  3020. source: "./media/characters/jazzy/front.svg",
  3021. extra: 2738 / 2651,
  3022. bottom: 41.8 / 2786
  3023. }
  3024. },
  3025. back: {
  3026. height: math.unit(216, "feet"),
  3027. weight: math.unit(7000000, "lb"),
  3028. preyCapacity: math.unit(1321, "people"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/jazzy/back.svg",
  3032. extra: 2775 / 2673,
  3033. bottom: 36.8 / 2817
  3034. }
  3035. },
  3036. maw: {
  3037. height: math.unit(20, "feet"),
  3038. name: "Maw",
  3039. image: {
  3040. source: "./media/characters/jazzy/maw.svg"
  3041. }
  3042. },
  3043. paws: {
  3044. height: math.unit(27.5, "feet"),
  3045. name: "Paws",
  3046. image: {
  3047. source: "./media/characters/jazzy/paws.svg"
  3048. }
  3049. },
  3050. eye: {
  3051. height: math.unit(4.4, "feet"),
  3052. name: "Eye",
  3053. image: {
  3054. source: "./media/characters/jazzy/eye.svg"
  3055. }
  3056. },
  3057. droneOffense: {
  3058. height: math.unit(9.5, "inches"),
  3059. name: "Drone (Offense)",
  3060. image: {
  3061. source: "./media/characters/jazzy/drone-offense.svg"
  3062. }
  3063. },
  3064. droneRecon: {
  3065. height: math.unit(9.5, "inches"),
  3066. name: "Drone (Recon)",
  3067. image: {
  3068. source: "./media/characters/jazzy/drone-recon.svg"
  3069. }
  3070. },
  3071. droneDefense: {
  3072. height: math.unit(9.5, "inches"),
  3073. name: "Drone (Defense)",
  3074. image: {
  3075. source: "./media/characters/jazzy/drone-defense.svg"
  3076. }
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(216, "feet"),
  3083. default: true
  3084. },
  3085. ]
  3086. ))
  3087. characterMakers.push(() => makeCharacter(
  3088. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3089. {
  3090. front: {
  3091. height: math.unit(9 + 6/12, "feet"),
  3092. weight: math.unit(700, "lb"),
  3093. name: "Front",
  3094. image: {
  3095. source: "./media/characters/flamm/front.svg",
  3096. extra: 1751/1632,
  3097. bottom: 46/1797
  3098. }
  3099. },
  3100. buff: {
  3101. height: math.unit(9 + 6/12, "feet"),
  3102. weight: math.unit(950, "lb"),
  3103. name: "Buff",
  3104. image: {
  3105. source: "./media/characters/flamm/buff.svg",
  3106. extra: 3018/2874,
  3107. bottom: 221/3239
  3108. }
  3109. },
  3110. },
  3111. [
  3112. {
  3113. name: "Normal",
  3114. height: math.unit(9.5, "feet")
  3115. },
  3116. {
  3117. name: "Macro",
  3118. height: math.unit(200, "feet"),
  3119. default: true
  3120. },
  3121. ]
  3122. ))
  3123. characterMakers.push(() => makeCharacter(
  3124. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3125. {
  3126. front: {
  3127. height: math.unit(5 + 3/12, "feet"),
  3128. weight: math.unit(60, "kg"),
  3129. name: "Front",
  3130. image: {
  3131. source: "./media/characters/zephiro/front.svg",
  3132. extra: 1873/1761,
  3133. bottom: 147/2020
  3134. }
  3135. },
  3136. side: {
  3137. height: math.unit(5 + 3/12, "feet"),
  3138. weight: math.unit(60, "kg"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/zephiro/side.svg",
  3142. extra: 1929/1827,
  3143. bottom: 65/1994
  3144. }
  3145. },
  3146. back: {
  3147. height: math.unit(5 + 3/12, "feet"),
  3148. weight: math.unit(60, "kg"),
  3149. name: "Back",
  3150. image: {
  3151. source: "./media/characters/zephiro/back.svg",
  3152. extra: 1926/1816,
  3153. bottom: 41/1967
  3154. }
  3155. },
  3156. hand: {
  3157. height: math.unit(0.68, "feet"),
  3158. name: "Hand",
  3159. image: {
  3160. source: "./media/characters/zephiro/hand.svg"
  3161. }
  3162. },
  3163. paw: {
  3164. height: math.unit(1, "feet"),
  3165. name: "Paw",
  3166. image: {
  3167. source: "./media/characters/zephiro/paw.svg"
  3168. }
  3169. },
  3170. beans: {
  3171. height: math.unit(0.93, "feet"),
  3172. name: "Beans",
  3173. image: {
  3174. source: "./media/characters/zephiro/beans.svg"
  3175. }
  3176. },
  3177. },
  3178. [
  3179. {
  3180. name: "Micro",
  3181. height: math.unit(3, "inches")
  3182. },
  3183. {
  3184. name: "Normal",
  3185. height: math.unit(5 + 3 / 12, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(118, "feet")
  3191. },
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(5, "feet"),
  3199. weight: math.unit(90, "kg"),
  3200. preyCapacity: math.unit(14, "people"),
  3201. name: "Front",
  3202. image: {
  3203. source: "./media/characters/fory/front.svg",
  3204. extra: 2862 / 2674,
  3205. bottom: 180 / 3043.8
  3206. },
  3207. form: "weaselbun",
  3208. default: true,
  3209. extraAttributes: {
  3210. "pawSize": {
  3211. name: "Paw Size",
  3212. power: 2,
  3213. type: "area",
  3214. base: math.unit(0.1596, "m^2")
  3215. },
  3216. "pawLength": {
  3217. name: "Paw Length",
  3218. power: 1,
  3219. type: "length",
  3220. base: math.unit(0.7, "m")
  3221. }
  3222. }
  3223. },
  3224. back: {
  3225. height: math.unit(5, "feet"),
  3226. weight: math.unit(90, "kg"),
  3227. preyCapacity: math.unit(14, "people"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/fory/back.svg",
  3231. extra: 1790/1672,
  3232. bottom: 84/1874
  3233. },
  3234. form: "weaselbun",
  3235. extraAttributes: {
  3236. "pawSize": {
  3237. name: "Paw Size",
  3238. power: 2,
  3239. type: "area",
  3240. base: math.unit(0.1596, "m^2")
  3241. },
  3242. "pawLength": {
  3243. name: "Paw Length",
  3244. power: 1,
  3245. type: "length",
  3246. base: math.unit(0.7, "m")
  3247. }
  3248. }
  3249. },
  3250. paw: {
  3251. height: math.unit(2.14, "feet"),
  3252. name: "Paw",
  3253. image: {
  3254. source: "./media/characters/fory/paw.svg"
  3255. },
  3256. form: "weaselbun",
  3257. extraAttributes: {
  3258. "pawSize": {
  3259. name: "Paw Size",
  3260. power: 2,
  3261. type: "area",
  3262. base: math.unit(0.1596, "m^2")
  3263. },
  3264. "pawLength": {
  3265. name: "Paw Length",
  3266. power: 1,
  3267. type: "length",
  3268. base: math.unit(0.48, "m")
  3269. }
  3270. }
  3271. },
  3272. bunBack: {
  3273. height: math.unit(3, "feet"),
  3274. weight: math.unit(20, "kg"),
  3275. preyCapacity: math.unit(3, "people"),
  3276. name: "Back",
  3277. image: {
  3278. source: "./media/characters/fory/bun-back.svg",
  3279. extra: 1749/1564,
  3280. bottom: 246/1995
  3281. },
  3282. form: "bun",
  3283. default: true,
  3284. extraAttributes: {
  3285. "pawSize": {
  3286. name: "Paw Size",
  3287. power: 2,
  3288. type: "area",
  3289. base: math.unit(0.072, "m^2")
  3290. },
  3291. "pawLength": {
  3292. name: "Paw Length",
  3293. power: 1,
  3294. type: "length",
  3295. base: math.unit(0.45, "m")
  3296. }
  3297. }
  3298. },
  3299. },
  3300. [
  3301. {
  3302. name: "Normal",
  3303. height: math.unit(5, "feet"),
  3304. form: "weaselbun"
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(50, "feet"),
  3309. default: true,
  3310. form: "weaselbun"
  3311. },
  3312. {
  3313. name: "Megamacro",
  3314. height: math.unit(10, "miles"),
  3315. form: "weaselbun"
  3316. },
  3317. {
  3318. name: "Gigamacro",
  3319. height: math.unit(5, "earths"),
  3320. form: "weaselbun"
  3321. },
  3322. {
  3323. name: "Normal",
  3324. height: math.unit(3, "feet"),
  3325. default: true,
  3326. form: "bun"
  3327. },
  3328. {
  3329. name: "Fun-Size",
  3330. height: math.unit(12, "feet"),
  3331. form: "bun"
  3332. },
  3333. {
  3334. name: "Macro",
  3335. height: math.unit(100, "feet"),
  3336. form: "bun"
  3337. },
  3338. {
  3339. name: "Planetary",
  3340. height: math.unit(3, "earths"),
  3341. form: "bun"
  3342. },
  3343. ],
  3344. {
  3345. "weaselbun": {
  3346. name: "Weaselbun",
  3347. default: true
  3348. },
  3349. "bun": {
  3350. name: "Bun",
  3351. },
  3352. }
  3353. ))
  3354. characterMakers.push(() => makeCharacter(
  3355. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3356. {
  3357. front: {
  3358. height: math.unit(7, "feet"),
  3359. weight: math.unit(90, "kg"),
  3360. name: "Front",
  3361. image: {
  3362. source: "./media/characters/kurrikage/front.svg",
  3363. extra: 1845/1733,
  3364. bottom: 119/1964
  3365. }
  3366. },
  3367. back: {
  3368. height: math.unit(7, "feet"),
  3369. weight: math.unit(90, "kg"),
  3370. name: "Back",
  3371. image: {
  3372. source: "./media/characters/kurrikage/back.svg",
  3373. extra: 1790/1677,
  3374. bottom: 61/1851
  3375. }
  3376. },
  3377. dressed: {
  3378. height: math.unit(7, "feet"),
  3379. weight: math.unit(90, "kg"),
  3380. name: "Dressed",
  3381. image: {
  3382. source: "./media/characters/kurrikage/dressed.svg",
  3383. extra: 1845/1733,
  3384. bottom: 119/1964
  3385. }
  3386. },
  3387. foot: {
  3388. height: math.unit(1.5, "feet"),
  3389. name: "Foot",
  3390. image: {
  3391. source: "./media/characters/kurrikage/foot.svg"
  3392. }
  3393. },
  3394. staff: {
  3395. height: math.unit(6.7, "feet"),
  3396. name: "Staff",
  3397. image: {
  3398. source: "./media/characters/kurrikage/staff.svg"
  3399. }
  3400. },
  3401. peek: {
  3402. height: math.unit(1.05, "feet"),
  3403. name: "Peeking",
  3404. image: {
  3405. source: "./media/characters/kurrikage/peek.svg",
  3406. bottom: 0.08
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(12, "feet"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Big",
  3418. height: math.unit(20, "feet")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(500, "feet")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(20, "miles")
  3427. },
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(6, "feet"),
  3435. weight: math.unit(75, "kg"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/shingo/front.svg",
  3439. extra: 1900/1825,
  3440. bottom: 82/1982
  3441. }
  3442. },
  3443. side: {
  3444. height: math.unit(6, "feet"),
  3445. weight: math.unit(75, "kg"),
  3446. name: "Side",
  3447. image: {
  3448. source: "./media/characters/shingo/side.svg",
  3449. extra: 1930/1865,
  3450. bottom: 16/1946
  3451. }
  3452. },
  3453. back: {
  3454. height: math.unit(6, "feet"),
  3455. weight: math.unit(75, "kg"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/shingo/back.svg",
  3459. extra: 1922/1852,
  3460. bottom: 16/1938
  3461. }
  3462. },
  3463. frontDressed: {
  3464. height: math.unit(6, "feet"),
  3465. weight: math.unit(150, "lb"),
  3466. name: "Front-dressed",
  3467. image: {
  3468. source: "./media/characters/shingo/front-dressed.svg",
  3469. extra: 1900/1825,
  3470. bottom: 82/1982
  3471. }
  3472. },
  3473. paw: {
  3474. height: math.unit(1.29, "feet"),
  3475. name: "Paw",
  3476. image: {
  3477. source: "./media/characters/shingo/paw.svg"
  3478. }
  3479. },
  3480. hand: {
  3481. height: math.unit(1.07, "feet"),
  3482. name: "Hand",
  3483. image: {
  3484. source: "./media/characters/shingo/hand.svg"
  3485. }
  3486. },
  3487. frontAlt: {
  3488. height: math.unit(6, "feet"),
  3489. weight: math.unit(75, "kg"),
  3490. name: "Front (Alt)",
  3491. image: {
  3492. source: "./media/characters/shingo/front-alt.svg",
  3493. extra: 3511 / 3338,
  3494. bottom: 0.005
  3495. }
  3496. },
  3497. frontAlt2: {
  3498. height: math.unit(6, "feet"),
  3499. weight: math.unit(75, "kg"),
  3500. name: "Front (Alt 2)",
  3501. image: {
  3502. source: "./media/characters/shingo/front-alt-2.svg",
  3503. extra: 706/681,
  3504. bottom: 11/717
  3505. }
  3506. },
  3507. pawAlt: {
  3508. height: math.unit(1, "feet"),
  3509. name: "Paw (Alt)",
  3510. image: {
  3511. source: "./media/characters/shingo/paw-alt.svg"
  3512. }
  3513. },
  3514. },
  3515. [
  3516. {
  3517. name: "Micro",
  3518. height: math.unit(4, "inches")
  3519. },
  3520. {
  3521. name: "Normal",
  3522. height: math.unit(6, "feet"),
  3523. default: true
  3524. },
  3525. {
  3526. name: "Macro",
  3527. height: math.unit(108, "feet")
  3528. },
  3529. {
  3530. name: "Macro+",
  3531. height: math.unit(1500, "feet")
  3532. },
  3533. ]
  3534. ))
  3535. characterMakers.push(() => makeCharacter(
  3536. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3537. {
  3538. side: {
  3539. height: math.unit(6, "feet"),
  3540. weight: math.unit(75, "kg"),
  3541. name: "Side",
  3542. image: {
  3543. source: "./media/characters/aigey/side.svg"
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(200, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Megamacro",
  3555. height: math.unit(100, "miles")
  3556. },
  3557. ]
  3558. )
  3559. )
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(5 + 5 / 12, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/natasha/front.svg",
  3569. extra: 859 / 824,
  3570. bottom: 23 / 879.6
  3571. }
  3572. },
  3573. frontNsfw: {
  3574. height: math.unit(5 + 5 / 12, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Front (NSFW)",
  3577. image: {
  3578. source: "./media/characters/natasha/front-nsfw.svg",
  3579. extra: 859 / 824,
  3580. bottom: 23 / 879.6
  3581. }
  3582. },
  3583. frontErect: {
  3584. height: math.unit(5 + 5 / 12, "feet"),
  3585. weight: math.unit(75, "kg"),
  3586. name: "Front (Erect)",
  3587. image: {
  3588. source: "./media/characters/natasha/front-erect.svg",
  3589. extra: 859 / 824,
  3590. bottom: 23 / 879.6
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(5 + 5 / 12, "feet"),
  3595. weight: math.unit(75, "kg"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/natasha/back.svg",
  3599. extra: 887.9 / 852.6,
  3600. bottom: 9.7 / 896.4
  3601. }
  3602. },
  3603. backAlt: {
  3604. height: math.unit(5 + 5 / 12, "feet"),
  3605. weight: math.unit(75, "kg"),
  3606. name: "Back (Alt)",
  3607. image: {
  3608. source: "./media/characters/natasha/back-alt.svg",
  3609. extra: 1236.7 / 1192,
  3610. bottom: 22.3 / 1258.2
  3611. }
  3612. },
  3613. dick: {
  3614. height: math.unit(1.772, "feet"),
  3615. name: "Dick",
  3616. image: {
  3617. source: "./media/characters/natasha/dick.svg"
  3618. }
  3619. },
  3620. paw: {
  3621. height: math.unit(0.250, "meters"),
  3622. name: "Paw",
  3623. image: {
  3624. source: "./media/characters/natasha/paw.svg"
  3625. },
  3626. extraAttributes: {
  3627. "toeSize": {
  3628. name: "Toe Size",
  3629. power: 2,
  3630. type: "area",
  3631. base: math.unit(0.0024, "m^2")
  3632. },
  3633. "padSize": {
  3634. name: "Pad Size",
  3635. power: 2,
  3636. type: "area",
  3637. base: math.unit(0.00889, "m^2")
  3638. },
  3639. "pawSize": {
  3640. name: "Paw Size",
  3641. power: 2,
  3642. type: "area",
  3643. base: math.unit(0.023667, "m^2")
  3644. },
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Shortstack",
  3651. height: math.unit(3, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(5 + 5 / 12, "feet")
  3657. },
  3658. {
  3659. name: "Large",
  3660. height: math.unit(12, "feet")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(100, "feet")
  3665. },
  3666. {
  3667. name: "Macro+",
  3668. height: math.unit(260, "feet")
  3669. },
  3670. {
  3671. name: "Macro++",
  3672. height: math.unit(1, "mile")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(75, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/malik/front.svg",
  3685. extra: 1750/1561,
  3686. bottom: 80/1830
  3687. },
  3688. extraAttributes: {
  3689. "toeSize": {
  3690. name: "Toe Size",
  3691. power: 2,
  3692. type: "area",
  3693. base: math.unit(0.0159, "m^2")
  3694. },
  3695. "pawSize": {
  3696. name: "Paw Size",
  3697. power: 2,
  3698. type: "area",
  3699. base: math.unit(0.09834, "m^2")
  3700. },
  3701. }
  3702. },
  3703. side: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Side",
  3707. image: {
  3708. source: "./media/characters/malik/side.svg",
  3709. extra: 1802/1685,
  3710. bottom: 42/1844
  3711. },
  3712. extraAttributes: {
  3713. "toeSize": {
  3714. name: "Toe Size",
  3715. power: 2,
  3716. type: "area",
  3717. base: math.unit(0.0159, "m^2")
  3718. },
  3719. "pawSize": {
  3720. name: "Paw Size",
  3721. power: 2,
  3722. type: "area",
  3723. base: math.unit(0.09834, "m^2")
  3724. },
  3725. }
  3726. },
  3727. back: {
  3728. height: math.unit(6, "feet"),
  3729. weight: math.unit(75, "kg"),
  3730. name: "Back",
  3731. image: {
  3732. source: "./media/characters/malik/back.svg",
  3733. extra: 1803/1607,
  3734. bottom: 33/1836
  3735. },
  3736. extraAttributes: {
  3737. "toeSize": {
  3738. name: "Toe Size",
  3739. power: 2,
  3740. type: "area",
  3741. base: math.unit(0.0159, "m^2")
  3742. },
  3743. "pawSize": {
  3744. name: "Paw Size",
  3745. power: 2,
  3746. type: "area",
  3747. base: math.unit(0.09834, "m^2")
  3748. },
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(156, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Macro+",
  3760. height: math.unit(1188, "feet")
  3761. },
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/sefer/front.svg",
  3773. extra: 848 / 659,
  3774. bottom: 28.3 / 876.442
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/sefer/back.svg",
  3783. extra: 864 / 695,
  3784. bottom: 10 / 871
  3785. }
  3786. },
  3787. frontDressed: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Dressed",
  3791. image: {
  3792. source: "./media/characters/sefer/dressed.svg",
  3793. extra: 839 / 653,
  3794. bottom: 37.6 / 878
  3795. }
  3796. },
  3797. },
  3798. [
  3799. {
  3800. name: "Normal",
  3801. height: math.unit(6, "feet"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "Big",
  3806. height: math.unit(8, "meters")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3812. {
  3813. body: {
  3814. height: math.unit(2.2428, "meter"),
  3815. weight: math.unit(124.738, "kg"),
  3816. name: "Body",
  3817. image: {
  3818. extra: 1225 / 1050,
  3819. source: "./media/characters/north/front.svg"
  3820. }
  3821. }
  3822. },
  3823. [
  3824. {
  3825. name: "Micro",
  3826. height: math.unit(4, "inches")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(63, "meters")
  3831. },
  3832. {
  3833. name: "Megamacro",
  3834. height: math.unit(101, "miles"),
  3835. default: true
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3841. {
  3842. angled: {
  3843. height: math.unit(4, "meter"),
  3844. weight: math.unit(150, "kg"),
  3845. name: "Angled",
  3846. image: {
  3847. source: "./media/characters/talan/angled-sfw.svg",
  3848. bottom: 29 / 3734
  3849. }
  3850. },
  3851. angledNsfw: {
  3852. height: math.unit(4, "meter"),
  3853. weight: math.unit(150, "kg"),
  3854. name: "Angled (NSFW)",
  3855. image: {
  3856. source: "./media/characters/talan/angled-nsfw.svg",
  3857. bottom: 29 / 3734
  3858. }
  3859. },
  3860. frontNsfw: {
  3861. height: math.unit(4, "meter"),
  3862. weight: math.unit(150, "kg"),
  3863. name: "Front (NSFW)",
  3864. image: {
  3865. source: "./media/characters/talan/front-nsfw.svg",
  3866. bottom: 29 / 3734
  3867. }
  3868. },
  3869. sideNsfw: {
  3870. height: math.unit(4, "meter"),
  3871. weight: math.unit(150, "kg"),
  3872. name: "Side (NSFW)",
  3873. image: {
  3874. source: "./media/characters/talan/side-nsfw.svg",
  3875. bottom: 29 / 3734
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(4, "meter"),
  3880. weight: math.unit(150, "kg"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/talan/back.svg"
  3884. }
  3885. },
  3886. dickBottom: {
  3887. height: math.unit(0.621, "meter"),
  3888. name: "Dick (Bottom)",
  3889. image: {
  3890. source: "./media/characters/talan/dick-bottom.svg"
  3891. }
  3892. },
  3893. dickTop: {
  3894. height: math.unit(0.621, "meter"),
  3895. name: "Dick (Top)",
  3896. image: {
  3897. source: "./media/characters/talan/dick-top.svg"
  3898. }
  3899. },
  3900. dickSide: {
  3901. height: math.unit(0.305, "meter"),
  3902. name: "Dick (Side)",
  3903. image: {
  3904. source: "./media/characters/talan/dick-side.svg"
  3905. }
  3906. },
  3907. dickFront: {
  3908. height: math.unit(0.305, "meter"),
  3909. name: "Dick (Front)",
  3910. image: {
  3911. source: "./media/characters/talan/dick-front.svg"
  3912. }
  3913. },
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(4, "meters")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(100, "meters")
  3923. },
  3924. {
  3925. name: "Megamacro",
  3926. height: math.unit(2, "miles"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Gigamacro",
  3931. height: math.unit(5000, "miles")
  3932. },
  3933. {
  3934. name: "Teramacro",
  3935. height: math.unit(100, "parsecs")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(90, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/gael'rathus/front.svg"
  3948. }
  3949. },
  3950. frontAlt: {
  3951. height: math.unit(2, "meter"),
  3952. weight: math.unit(90, "kg"),
  3953. name: "Front (alt)",
  3954. image: {
  3955. source: "./media/characters/gael'rathus/front-alt.svg"
  3956. }
  3957. },
  3958. frontAlt2: {
  3959. height: math.unit(2, "meter"),
  3960. weight: math.unit(90, "kg"),
  3961. name: "Front (alt 2)",
  3962. image: {
  3963. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3964. }
  3965. }
  3966. },
  3967. [
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(9, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Large",
  3975. height: math.unit(25, "feet")
  3976. },
  3977. {
  3978. name: "Macro",
  3979. height: math.unit(0.25, "miles")
  3980. },
  3981. {
  3982. name: "Megamacro",
  3983. height: math.unit(10, "miles")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3989. {
  3990. side: {
  3991. height: math.unit(2, "meter"),
  3992. weight: math.unit(140, "kg"),
  3993. name: "Side",
  3994. image: {
  3995. source: "./media/characters/sosha/side.svg",
  3996. extra: 1170/1006,
  3997. bottom: 94/1264
  3998. }
  3999. },
  4000. maw: {
  4001. height: math.unit(2.87, "feet"),
  4002. name: "Maw",
  4003. image: {
  4004. source: "./media/characters/sosha/maw.svg",
  4005. extra: 966/865,
  4006. bottom: 0/966
  4007. }
  4008. },
  4009. cooch: {
  4010. height: math.unit(5.6, "feet"),
  4011. name: "Cooch",
  4012. image: {
  4013. source: "./media/characters/sosha/cooch.svg"
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(12, "feet"),
  4021. default: true
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4027. {
  4028. side: {
  4029. height: math.unit(5 + 5 / 12, "feet"),
  4030. weight: math.unit(170, "kg"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/runnola/side.svg",
  4034. extra: 741 / 448,
  4035. bottom: 0.05
  4036. }
  4037. },
  4038. },
  4039. [
  4040. {
  4041. name: "Small",
  4042. height: math.unit(3, "feet")
  4043. },
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(5 + 5 / 12, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Big",
  4051. height: math.unit(10, "feet")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(50, "kg"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/kurribird/front.svg",
  4064. bottom: 0.015
  4065. }
  4066. },
  4067. frontAlt: {
  4068. height: math.unit(1.5, "meter"),
  4069. weight: math.unit(50, "kg"),
  4070. name: "Front (Alt)",
  4071. image: {
  4072. source: "./media/characters/kurribird/front-alt.svg",
  4073. extra: 1.45
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(7, "feet")
  4081. },
  4082. {
  4083. name: "Big",
  4084. height: math.unit(12, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(1500, "feet")
  4090. },
  4091. {
  4092. name: "Megamacro",
  4093. height: math.unit(2, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(80, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/elbial/front.svg",
  4106. extra: 1643 / 1556,
  4107. bottom: 60.2 / 1696
  4108. }
  4109. },
  4110. side: {
  4111. height: math.unit(2, "meter"),
  4112. weight: math.unit(80, "kg"),
  4113. name: "Side",
  4114. image: {
  4115. source: "./media/characters/elbial/side.svg",
  4116. extra: 1601/1528,
  4117. bottom: 97/1698
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(2, "meter"),
  4122. weight: math.unit(80, "kg"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/elbial/back.svg",
  4126. extra: 1653/1569,
  4127. bottom: 20/1673
  4128. }
  4129. },
  4130. frontDressed: {
  4131. height: math.unit(2, "meter"),
  4132. weight: math.unit(80, "kg"),
  4133. name: "Front (Dressed)",
  4134. image: {
  4135. source: "./media/characters/elbial/front-dressed.svg",
  4136. extra: 1638/1569,
  4137. bottom: 70/1708
  4138. }
  4139. },
  4140. genitals: {
  4141. height: math.unit(2 / 3.367, "meter"),
  4142. name: "Genitals",
  4143. image: {
  4144. source: "./media/characters/elbial/genitals.svg"
  4145. }
  4146. },
  4147. },
  4148. [
  4149. {
  4150. name: "Large",
  4151. height: math.unit(100, "feet")
  4152. },
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(500, "feet"),
  4156. default: true
  4157. },
  4158. {
  4159. name: "Megamacro",
  4160. height: math.unit(10, "miles")
  4161. },
  4162. {
  4163. name: "Gigamacro",
  4164. height: math.unit(25000, "miles")
  4165. },
  4166. {
  4167. name: "Full-Size",
  4168. height: math.unit(8000000, "gigaparsecs")
  4169. }
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(2, "meter"),
  4177. weight: math.unit(60, "kg"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/noah/front.svg"
  4181. }
  4182. },
  4183. talons: {
  4184. height: math.unit(0.315, "meter"),
  4185. name: "Talons",
  4186. image: {
  4187. source: "./media/characters/noah/talons.svg"
  4188. }
  4189. }
  4190. },
  4191. [
  4192. {
  4193. name: "Large",
  4194. height: math.unit(50, "feet")
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(750, "feet"),
  4199. default: true
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(50, "miles")
  4204. },
  4205. {
  4206. name: "Gigamacro",
  4207. height: math.unit(100000, "miles")
  4208. },
  4209. {
  4210. name: "Full-Size",
  4211. height: math.unit(3000000000, "miles")
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(80, "kg"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/natalya/front.svg"
  4224. }
  4225. },
  4226. back: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(80, "kg"),
  4229. name: "Back",
  4230. image: {
  4231. source: "./media/characters/natalya/back.svg"
  4232. }
  4233. }
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(150, "feet"),
  4239. default: true
  4240. },
  4241. {
  4242. name: "Megamacro",
  4243. height: math.unit(5, "miles")
  4244. },
  4245. {
  4246. name: "Full-Size",
  4247. height: math.unit(600, "kiloparsecs")
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(50, "kg"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/erestrebah/front.svg",
  4260. extra: 1262/1162,
  4261. bottom: 96/1358
  4262. }
  4263. },
  4264. back: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(50, "kg"),
  4267. name: "Back",
  4268. image: {
  4269. source: "./media/characters/erestrebah/back.svg",
  4270. extra: 1257/1139,
  4271. bottom: 13/1270
  4272. }
  4273. },
  4274. wing: {
  4275. height: math.unit(2, "meter"),
  4276. weight: math.unit(50, "kg"),
  4277. name: "Wing",
  4278. image: {
  4279. source: "./media/characters/erestrebah/wing.svg",
  4280. extra: 1262/1162,
  4281. bottom: 96/1358
  4282. }
  4283. },
  4284. mouth: {
  4285. height: math.unit(0.39, "feet"),
  4286. name: "Mouth",
  4287. image: {
  4288. source: "./media/characters/erestrebah/mouth.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(10, "feet")
  4296. },
  4297. {
  4298. name: "Large",
  4299. height: math.unit(50, "feet"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(300, "feet")
  4305. },
  4306. {
  4307. name: "Macro+",
  4308. height: math.unit(750, "feet")
  4309. },
  4310. {
  4311. name: "Megamacro",
  4312. height: math.unit(3, "miles")
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4318. {
  4319. front: {
  4320. height: math.unit(2, "meter"),
  4321. weight: math.unit(80, "kg"),
  4322. name: "Front",
  4323. image: {
  4324. source: "./media/characters/jennifer/front.svg",
  4325. bottom: 0.11,
  4326. extra: 1.16
  4327. }
  4328. },
  4329. frontAlt: {
  4330. height: math.unit(2, "meter"),
  4331. weight: math.unit(80, "kg"),
  4332. name: "Front (Alt)",
  4333. image: {
  4334. source: "./media/characters/jennifer/front-alt.svg"
  4335. }
  4336. }
  4337. },
  4338. [
  4339. {
  4340. name: "Canon Height",
  4341. height: math.unit(120, "feet"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Macro+",
  4346. height: math.unit(300, "feet")
  4347. },
  4348. {
  4349. name: "Megamacro",
  4350. height: math.unit(20000, "feet")
  4351. }
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meter"),
  4359. weight: math.unit(50, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/kalista/front.svg",
  4363. extra: 1314/1145,
  4364. bottom: 101/1415
  4365. }
  4366. },
  4367. back: {
  4368. height: math.unit(2, "meter"),
  4369. weight: math.unit(50, "kg"),
  4370. name: "Back",
  4371. image: {
  4372. source: "./media/characters/kalista/back.svg",
  4373. extra: 1366 / 1156,
  4374. bottom: 33.9 / 1362.78
  4375. }
  4376. }
  4377. },
  4378. [
  4379. {
  4380. name: "Uncomfortably Small",
  4381. height: math.unit(10, "feet")
  4382. },
  4383. {
  4384. name: "Small",
  4385. height: math.unit(30, "feet")
  4386. },
  4387. {
  4388. name: "Macro",
  4389. height: math.unit(100, "feet"),
  4390. default: true
  4391. },
  4392. {
  4393. name: "Macro+",
  4394. height: math.unit(2000, "feet")
  4395. },
  4396. {
  4397. name: "True Form",
  4398. height: math.unit(8924, "miles")
  4399. }
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4404. {
  4405. front: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(120, "kg"),
  4408. name: "Front",
  4409. image: {
  4410. source: "./media/characters/ggv/front.svg"
  4411. }
  4412. },
  4413. side: {
  4414. height: math.unit(2, "meter"),
  4415. weight: math.unit(120, "kg"),
  4416. name: "Side",
  4417. image: {
  4418. source: "./media/characters/ggv/side.svg"
  4419. }
  4420. }
  4421. },
  4422. [
  4423. {
  4424. name: "Extremely Puny",
  4425. height: math.unit(9 + 5 / 12, "feet")
  4426. },
  4427. {
  4428. name: "Horribly Small",
  4429. height: math.unit(47.7, "miles"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Reasonably Sized",
  4434. height: math.unit(25000, "parsecs")
  4435. },
  4436. {
  4437. name: "Slightly Uncompressed",
  4438. height: math.unit(7.77e31, "parsecs")
  4439. },
  4440. {
  4441. name: "Omniversal",
  4442. height: math.unit(1e300, "meters")
  4443. },
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4448. {
  4449. front: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(75, "lb"),
  4452. name: "Front",
  4453. image: {
  4454. source: "./media/characters/napalm/front.svg"
  4455. }
  4456. },
  4457. back: {
  4458. height: math.unit(2, "meter"),
  4459. weight: math.unit(75, "lb"),
  4460. name: "Back",
  4461. image: {
  4462. source: "./media/characters/napalm/back.svg"
  4463. }
  4464. }
  4465. },
  4466. [
  4467. {
  4468. name: "Standard",
  4469. height: math.unit(55, "feet"),
  4470. default: true
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(7 + 5 / 6, "feet"),
  4479. weight: math.unit(325, "lb"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/asana/front.svg",
  4483. extra: 1133 / 1060,
  4484. bottom: 15.2 / 1148.6
  4485. }
  4486. },
  4487. back: {
  4488. height: math.unit(7 + 5 / 6, "feet"),
  4489. weight: math.unit(325, "lb"),
  4490. name: "Back",
  4491. image: {
  4492. source: "./media/characters/asana/back.svg",
  4493. extra: 1114 / 1043,
  4494. bottom: 5 / 1120
  4495. }
  4496. },
  4497. dressedDark: {
  4498. height: math.unit(7 + 5 / 6, "feet"),
  4499. weight: math.unit(325, "lb"),
  4500. name: "Dressed (Dark)",
  4501. image: {
  4502. source: "./media/characters/asana/dressed-dark.svg",
  4503. extra: 1133 / 1060,
  4504. bottom: 15.2 / 1148.6
  4505. }
  4506. },
  4507. dressedLight: {
  4508. height: math.unit(7 + 5 / 6, "feet"),
  4509. weight: math.unit(325, "lb"),
  4510. name: "Dressed (Light)",
  4511. image: {
  4512. source: "./media/characters/asana/dressed-light.svg",
  4513. extra: 1133 / 1060,
  4514. bottom: 15.2 / 1148.6
  4515. }
  4516. },
  4517. },
  4518. [
  4519. {
  4520. name: "Standard",
  4521. height: math.unit(7 + 5 / 6, "feet"),
  4522. default: true
  4523. },
  4524. {
  4525. name: "Large",
  4526. height: math.unit(10, "meters")
  4527. },
  4528. {
  4529. name: "Macro",
  4530. height: math.unit(2500, "meters")
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(5e6, "meters")
  4535. },
  4536. {
  4537. name: "Examacro",
  4538. height: math.unit(5e12, "lightyears")
  4539. },
  4540. {
  4541. name: "Max Size",
  4542. height: math.unit(1e31, "lightyears")
  4543. }
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(60, "kg"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/ebony/front.svg",
  4555. bottom: 0.03,
  4556. extra: 1045 / 810 + 0.03
  4557. }
  4558. },
  4559. side: {
  4560. height: math.unit(2, "meter"),
  4561. weight: math.unit(60, "kg"),
  4562. name: "Side",
  4563. image: {
  4564. source: "./media/characters/ebony/side.svg",
  4565. bottom: 0.03,
  4566. extra: 1045 / 810 + 0.03
  4567. }
  4568. },
  4569. back: {
  4570. height: math.unit(2, "meter"),
  4571. weight: math.unit(60, "kg"),
  4572. name: "Back",
  4573. image: {
  4574. source: "./media/characters/ebony/back.svg",
  4575. bottom: 0.01,
  4576. extra: 1045 / 810 + 0.01
  4577. }
  4578. },
  4579. },
  4580. [
  4581. // TODO check why I did this lol
  4582. {
  4583. name: "Standard",
  4584. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(200, "feet")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(13000, "km")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(175, "lb"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/mountain/front.svg",
  4606. extra: 972 / 955,
  4607. bottom: 64 / 1036.6
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(175, "lb"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/mountain/back.svg",
  4616. extra: 970 / 950,
  4617. bottom: 28.25 / 999
  4618. }
  4619. },
  4620. },
  4621. [
  4622. {
  4623. name: "Large",
  4624. height: math.unit(20, "meters")
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(300, "meters")
  4629. },
  4630. {
  4631. name: "Gigamacro",
  4632. height: math.unit(10000, "km"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Examacro",
  4637. height: math.unit(10e9, "lightyears")
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(8, "feet"),
  4646. weight: math.unit(500, "lb"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/rick/front.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(8, "feet"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Macro",
  4661. height: math.unit(5, "km")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(8, "feet"),
  4670. weight: math.unit(120, "lb"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/ona/front.svg"
  4674. }
  4675. },
  4676. frontAlt: {
  4677. height: math.unit(8, "feet"),
  4678. weight: math.unit(120, "lb"),
  4679. name: "Front (Alt)",
  4680. image: {
  4681. source: "./media/characters/ona/front-alt.svg"
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(8, "feet"),
  4686. weight: math.unit(120, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/ona/back.svg"
  4690. }
  4691. },
  4692. foot: {
  4693. height: math.unit(1.1, "feet"),
  4694. name: "Foot",
  4695. image: {
  4696. source: "./media/characters/ona/foot.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Megamacro",
  4703. height: math.unit(70, "km"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Gigamacro",
  4708. height: math.unit(681818, "miles")
  4709. },
  4710. {
  4711. name: "Examacro",
  4712. height: math.unit(3800000, "lightyears")
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(12, "feet"),
  4721. weight: math.unit(3000, "lb"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/mech/front.svg",
  4725. extra: 2900 / 2770,
  4726. bottom: 110 / 3010
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(12, "feet"),
  4731. weight: math.unit(3000, "lb"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/mech/back.svg",
  4735. extra: 3011 / 2890,
  4736. bottom: 94 / 3105
  4737. }
  4738. },
  4739. maw: {
  4740. height: math.unit(3.07, "feet"),
  4741. name: "Maw",
  4742. image: {
  4743. source: "./media/characters/mech/maw.svg"
  4744. }
  4745. },
  4746. head: {
  4747. height: math.unit(3.07, "feet"),
  4748. name: "Head",
  4749. image: {
  4750. source: "./media/characters/mech/head.svg"
  4751. }
  4752. },
  4753. dick: {
  4754. height: math.unit(1.43, "feet"),
  4755. name: "Dick",
  4756. image: {
  4757. source: "./media/characters/mech/dick.svg"
  4758. }
  4759. },
  4760. },
  4761. [
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(12, "feet")
  4765. },
  4766. {
  4767. name: "Macro",
  4768. height: math.unit(300, "feet"),
  4769. default: true
  4770. },
  4771. {
  4772. name: "Macro+",
  4773. height: math.unit(1500, "feet")
  4774. },
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(1.3, "meter"),
  4782. weight: math.unit(30, "kg"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/gregory/front.svg",
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(1.3, "meter"),
  4793. default: true
  4794. },
  4795. {
  4796. name: "Macro",
  4797. height: math.unit(20, "meter")
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(2.8, "meter"),
  4806. weight: math.unit(200, "kg"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/elory/front.svg",
  4810. }
  4811. }
  4812. },
  4813. [
  4814. {
  4815. name: "Normal",
  4816. height: math.unit(2.8, "meter"),
  4817. default: true
  4818. },
  4819. {
  4820. name: "Macro",
  4821. height: math.unit(38, "meter")
  4822. }
  4823. ]
  4824. ))
  4825. characterMakers.push(() => makeCharacter(
  4826. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4827. {
  4828. front: {
  4829. height: math.unit(470, "feet"),
  4830. weight: math.unit(924, "tons"),
  4831. name: "Front",
  4832. image: {
  4833. source: "./media/characters/angelpatamon/front.svg",
  4834. }
  4835. }
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(470, "feet"),
  4841. default: true
  4842. },
  4843. {
  4844. name: "Deity Size I",
  4845. height: math.unit(28651.2, "km")
  4846. },
  4847. {
  4848. name: "Deity Size II",
  4849. height: math.unit(171907.2, "km")
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4855. {
  4856. side: {
  4857. height: math.unit(7.2, "meter"),
  4858. weight: math.unit(8.2, "tons"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/cryae/side.svg",
  4862. extra: 3500 / 1500
  4863. }
  4864. }
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(7.2, "meter"),
  4870. default: true
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(175, "lb"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/xera/front.svg",
  4883. extra: 2377 / 1972,
  4884. bottom: 75.5 / 2452
  4885. }
  4886. },
  4887. side: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(175, "lb"),
  4890. name: "Side",
  4891. image: {
  4892. source: "./media/characters/xera/side.svg",
  4893. extra: 2345 / 2019,
  4894. bottom: 39.7 / 2384
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(175, "lb"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/xera/back.svg",
  4903. extra: 2095 / 1984,
  4904. bottom: 67 / 2166
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Small",
  4911. height: math.unit(10, "feet")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(500, "meters"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Macro+",
  4920. height: math.unit(10, "km")
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(25000, "km")
  4925. },
  4926. {
  4927. name: "Teramacro",
  4928. height: math.unit(3e6, "km")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(175, "lb"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/nebula/front.svg",
  4941. extra: 2566 / 2362,
  4942. bottom: 81 / 2644
  4943. }
  4944. }
  4945. },
  4946. [
  4947. {
  4948. name: "Small",
  4949. height: math.unit(4.5, "meters")
  4950. },
  4951. {
  4952. name: "Macro",
  4953. height: math.unit(1500, "meters"),
  4954. default: true
  4955. },
  4956. {
  4957. name: "Megamacro",
  4958. height: math.unit(150, "km")
  4959. },
  4960. {
  4961. name: "Gigamacro",
  4962. height: math.unit(27000, "km")
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4968. {
  4969. front: {
  4970. height: math.unit(6, "feet"),
  4971. weight: math.unit(225, "lb"),
  4972. name: "Front",
  4973. image: {
  4974. source: "./media/characters/abysgar/front.svg",
  4975. extra: 1739/1614,
  4976. bottom: 71/1810
  4977. }
  4978. },
  4979. frontNsfw: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(225, "lb"),
  4982. name: "Front (NSFW)",
  4983. image: {
  4984. source: "./media/characters/abysgar/front-nsfw.svg",
  4985. extra: 1739/1614,
  4986. bottom: 71/1810
  4987. }
  4988. },
  4989. back: {
  4990. height: math.unit(4.6, "feet"),
  4991. weight: math.unit(225, "lb"),
  4992. name: "Back",
  4993. image: {
  4994. source: "./media/characters/abysgar/back.svg",
  4995. extra: 1384/1327,
  4996. bottom: 0/1384
  4997. }
  4998. },
  4999. head: {
  5000. height: math.unit(1.25, "feet"),
  5001. name: "Head",
  5002. image: {
  5003. source: "./media/characters/abysgar/head.svg",
  5004. extra: 669/569,
  5005. bottom: 0/669
  5006. }
  5007. },
  5008. },
  5009. [
  5010. {
  5011. name: "Small",
  5012. height: math.unit(4.5, "meters")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(1250, "meters"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(125, "km")
  5022. },
  5023. {
  5024. name: "Gigamacro",
  5025. height: math.unit(26000, "km")
  5026. }
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5031. {
  5032. front: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(180, "lb"),
  5035. name: "Front",
  5036. image: {
  5037. source: "./media/characters/yakuz/front.svg"
  5038. }
  5039. }
  5040. },
  5041. [
  5042. {
  5043. name: "Small",
  5044. height: math.unit(5, "meters")
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(1500, "meters"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(200, "km")
  5054. },
  5055. {
  5056. name: "Gigamacro",
  5057. height: math.unit(100000, "km")
  5058. }
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(175, "lb"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/mirova/front.svg",
  5070. extra: 3334 / 3071,
  5071. bottom: 42 / 3375.6
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Small",
  5078. height: math.unit(5, "meters")
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(900, "meters"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Megamacro",
  5087. height: math.unit(135, "km")
  5088. },
  5089. {
  5090. name: "Gigamacro",
  5091. height: math.unit(20000, "km")
  5092. }
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5097. {
  5098. side: {
  5099. height: math.unit(28.35, "feet"),
  5100. weight: math.unit(99.75, "tons"),
  5101. name: "Side",
  5102. image: {
  5103. source: "./media/characters/asana-mech/side.svg",
  5104. extra: 923 / 699,
  5105. bottom: 50 / 975
  5106. }
  5107. },
  5108. chaingun: {
  5109. height: math.unit(7, "feet"),
  5110. weight: math.unit(2400, "lb"),
  5111. name: "Chaingun",
  5112. image: {
  5113. source: "./media/characters/asana-mech/chaingun.svg"
  5114. }
  5115. },
  5116. laser: {
  5117. height: math.unit(7.12, "feet"),
  5118. weight: math.unit(2000, "lb"),
  5119. name: "Laser",
  5120. image: {
  5121. source: "./media/characters/asana-mech/laser.svg"
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(28.35, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(2500, "feet")
  5134. },
  5135. {
  5136. name: "Megamacro",
  5137. height: math.unit(25, "miles")
  5138. },
  5139. {
  5140. name: "Examacro",
  5141. height: math.unit(6e8, "lightyears")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(5, "meters"),
  5150. weight: math.unit(1000, "kg"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/asche/front.svg",
  5154. extra: 1258 / 1190,
  5155. bottom: 47 / 1305
  5156. }
  5157. },
  5158. frontUnderwear: {
  5159. height: math.unit(5, "meters"),
  5160. weight: math.unit(1000, "kg"),
  5161. name: "Front (Underwear)",
  5162. image: {
  5163. source: "./media/characters/asche/front-underwear.svg",
  5164. extra: 1258 / 1190,
  5165. bottom: 47 / 1305
  5166. }
  5167. },
  5168. frontDressed: {
  5169. height: math.unit(5, "meters"),
  5170. weight: math.unit(1000, "kg"),
  5171. name: "Front (Dressed)",
  5172. image: {
  5173. source: "./media/characters/asche/front-dressed.svg",
  5174. extra: 1258 / 1190,
  5175. bottom: 47 / 1305
  5176. }
  5177. },
  5178. frontArmor: {
  5179. height: math.unit(5, "meters"),
  5180. weight: math.unit(1000, "kg"),
  5181. name: "Front (Armored)",
  5182. image: {
  5183. source: "./media/characters/asche/front-armored.svg",
  5184. extra: 1374 / 1308,
  5185. bottom: 23 / 1397
  5186. }
  5187. },
  5188. mp724: {
  5189. height: math.unit(0.96, "meters"),
  5190. weight: math.unit(38, "kg"),
  5191. name: "H&K MP724",
  5192. image: {
  5193. source: "./media/characters/asche/h&k-mp724.svg"
  5194. }
  5195. },
  5196. side: {
  5197. height: math.unit(5, "meters"),
  5198. weight: math.unit(1000, "kg"),
  5199. name: "Side",
  5200. image: {
  5201. source: "./media/characters/asche/side.svg",
  5202. extra: 1717 / 1609,
  5203. bottom: 0.005
  5204. }
  5205. },
  5206. back: {
  5207. height: math.unit(5, "meters"),
  5208. weight: math.unit(1000, "kg"),
  5209. name: "Back",
  5210. image: {
  5211. source: "./media/characters/asche/back.svg",
  5212. extra: 1570 / 1501
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "DEFCON 5",
  5219. height: math.unit(5, "meters")
  5220. },
  5221. {
  5222. name: "DEFCON 4",
  5223. height: math.unit(500, "meters"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "DEFCON 3",
  5228. height: math.unit(5, "km")
  5229. },
  5230. {
  5231. name: "DEFCON 2",
  5232. height: math.unit(500, "km")
  5233. },
  5234. {
  5235. name: "DEFCON 1",
  5236. height: math.unit(500000, "km")
  5237. },
  5238. {
  5239. name: "DEFCON 0",
  5240. height: math.unit(3, "gigaparsecs")
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5246. {
  5247. front: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(76, "kg"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/gale/front.svg"
  5253. }
  5254. },
  5255. frontAlt1: {
  5256. height: math.unit(2, "meters"),
  5257. weight: math.unit(76, "kg"),
  5258. name: "Front (Alt 1)",
  5259. image: {
  5260. source: "./media/characters/gale/front-alt-1.svg"
  5261. }
  5262. },
  5263. frontAlt2: {
  5264. height: math.unit(2, "meters"),
  5265. weight: math.unit(76, "kg"),
  5266. name: "Front (Alt 2)",
  5267. image: {
  5268. source: "./media/characters/gale/front-alt-2.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7, "feet")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(150, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(300, "feet")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(5 + 10/12, "feet"),
  5293. weight: math.unit(67, "kg"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/draylen/front.svg",
  5297. extra: 832/777,
  5298. bottom: 85/917
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(5 + 10/12, "feet")
  5306. },
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(150, "feet"),
  5310. default: true
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(7 + 9 / 12, "feet"),
  5319. weight: math.unit(379, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/chez/front.svg"
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(7 + 9 / 12, "feet"),
  5327. weight: math.unit(379, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/chez/side.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(7 + 9 / 12, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "God King",
  5342. height: math.unit(9750000, "meters")
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(275, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/kaylum/front.svg",
  5355. bottom: 0.01,
  5356. extra: 1166 / 1031
  5357. }
  5358. },
  5359. frontWingless: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(275, "lbs"),
  5362. name: "Front (Wingless)",
  5363. image: {
  5364. source: "./media/characters/kaylum/front-wingless.svg",
  5365. bottom: 0.01,
  5366. extra: 1117 / 1031
  5367. }
  5368. }
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(3.05, "meters")
  5374. },
  5375. {
  5376. name: "Master",
  5377. height: math.unit(5.5, "meters")
  5378. },
  5379. {
  5380. name: "Rampage",
  5381. height: math.unit(19, "meters")
  5382. },
  5383. {
  5384. name: "Macro Lite",
  5385. height: math.unit(37, "meters")
  5386. },
  5387. {
  5388. name: "Hyper Predator",
  5389. height: math.unit(61, "meters")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(138, "meters"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(5 + 5 / 12, "feet"),
  5403. weight: math.unit(120, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/geta/front.svg",
  5407. extra: 1003/933,
  5408. bottom: 21/1024
  5409. }
  5410. },
  5411. paw: {
  5412. height: math.unit(0.35, "feet"),
  5413. name: "Paw",
  5414. image: {
  5415. source: "./media/characters/geta/paw.svg"
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Micro",
  5422. height: math.unit(3, "inches"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(5 + 5 / 12, "feet")
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5433. {
  5434. front: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(300, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/tyrnn/front.svg"
  5440. }
  5441. }
  5442. },
  5443. [
  5444. {
  5445. name: "Main Height",
  5446. height: math.unit(355, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Fave. Height",
  5451. height: math.unit(2400, "feet")
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(300, "lbs"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/appledectomy/front.svg"
  5464. }
  5465. }
  5466. },
  5467. [
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(2500, "feet")
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(50, "miles"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Gigamacro",
  5479. height: math.unit(5000, "miles")
  5480. },
  5481. {
  5482. name: "Teramacro",
  5483. height: math.unit(250000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(200, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/vulpes/front.svg",
  5496. extra: 573 / 543,
  5497. bottom: 0.033
  5498. }
  5499. },
  5500. side: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(200, "lbs"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/vulpes/side.svg",
  5506. extra: 577 / 549,
  5507. bottom: 11 / 588
  5508. }
  5509. },
  5510. back: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(200, "lbs"),
  5513. name: "Back",
  5514. image: {
  5515. source: "./media/characters/vulpes/back.svg",
  5516. extra: 573 / 549,
  5517. bottom: 20 / 593
  5518. }
  5519. },
  5520. feet: {
  5521. height: math.unit(1.276, "feet"),
  5522. name: "Feet",
  5523. image: {
  5524. source: "./media/characters/vulpes/feet.svg"
  5525. }
  5526. },
  5527. maw: {
  5528. height: math.unit(1.18, "feet"),
  5529. name: "Maw",
  5530. image: {
  5531. source: "./media/characters/vulpes/maw.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Micro",
  5538. height: math.unit(2, "inches")
  5539. },
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(6.3, "feet")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(850, "feet")
  5547. },
  5548. {
  5549. name: "Megamacro",
  5550. height: math.unit(7500, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Gigamacro",
  5555. height: math.unit(570000, "miles")
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(210, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/rain-fallen/front.svg"
  5568. }
  5569. },
  5570. side: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(210, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/rain-fallen/side.svg"
  5576. }
  5577. },
  5578. back: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(210, "lbs"),
  5581. name: "Back",
  5582. image: {
  5583. source: "./media/characters/rain-fallen/back.svg"
  5584. }
  5585. },
  5586. feral: {
  5587. height: math.unit(9, "feet"),
  5588. weight: math.unit(700, "lbs"),
  5589. name: "Feral",
  5590. image: {
  5591. source: "./media/characters/rain-fallen/feral.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Meddling with Mortals",
  5598. height: math.unit(8 + 8/12, "feet")
  5599. },
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(5, "meter")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(150, "meter"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Megamacro",
  5611. height: math.unit(278e6, "meter")
  5612. },
  5613. {
  5614. name: "Gigamacro",
  5615. height: math.unit(2e9, "meter")
  5616. },
  5617. {
  5618. name: "Teramacro",
  5619. height: math.unit(8e12, "meter")
  5620. },
  5621. {
  5622. name: "Devourer",
  5623. height: math.unit(14, "zettameters")
  5624. },
  5625. {
  5626. name: "Scarlet King",
  5627. height: math.unit(18, "yottameters")
  5628. },
  5629. {
  5630. name: "Void",
  5631. height: math.unit(1e88, "yottameters")
  5632. }
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5637. {
  5638. standing: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(180, "lbs"),
  5641. name: "Standing",
  5642. image: {
  5643. source: "./media/characters/zaakira/standing.svg",
  5644. extra: 1599/1504,
  5645. bottom: 39/1638
  5646. }
  5647. },
  5648. laying: {
  5649. height: math.unit(3.3, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Laying",
  5652. image: {
  5653. source: "./media/characters/zaakira/laying.svg"
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(12, "feet")
  5661. },
  5662. {
  5663. name: "Macro",
  5664. height: math.unit(279, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5671. {
  5672. femSfw: {
  5673. height: math.unit(8, "feet"),
  5674. weight: math.unit(350, "lb"),
  5675. name: "Fem",
  5676. image: {
  5677. source: "./media/characters/sigvald/fem-sfw.svg",
  5678. extra: 182 / 164,
  5679. bottom: 8.7 / 190.5
  5680. }
  5681. },
  5682. femNsfw: {
  5683. height: math.unit(8, "feet"),
  5684. weight: math.unit(350, "lb"),
  5685. name: "Fem (NSFW)",
  5686. image: {
  5687. source: "./media/characters/sigvald/fem-nsfw.svg",
  5688. extra: 182 / 164,
  5689. bottom: 8.7 / 190.5
  5690. }
  5691. },
  5692. maleNsfw: {
  5693. height: math.unit(8, "feet"),
  5694. weight: math.unit(350, "lb"),
  5695. name: "Male (NSFW)",
  5696. image: {
  5697. source: "./media/characters/sigvald/male-nsfw.svg",
  5698. extra: 182 / 164,
  5699. bottom: 8.7 / 190.5
  5700. }
  5701. },
  5702. hermNsfw: {
  5703. height: math.unit(8, "feet"),
  5704. weight: math.unit(350, "lb"),
  5705. name: "Herm (NSFW)",
  5706. image: {
  5707. source: "./media/characters/sigvald/herm-nsfw.svg",
  5708. extra: 182 / 164,
  5709. bottom: 8.7 / 190.5
  5710. }
  5711. },
  5712. dick: {
  5713. height: math.unit(2.36, "feet"),
  5714. name: "Dick",
  5715. image: {
  5716. source: "./media/characters/sigvald/dick.svg"
  5717. }
  5718. },
  5719. eye: {
  5720. height: math.unit(0.31, "feet"),
  5721. name: "Eye",
  5722. image: {
  5723. source: "./media/characters/sigvald/eye.svg"
  5724. }
  5725. },
  5726. mouth: {
  5727. height: math.unit(0.92, "feet"),
  5728. name: "Mouth",
  5729. image: {
  5730. source: "./media/characters/sigvald/mouth.svg"
  5731. }
  5732. },
  5733. paws: {
  5734. height: math.unit(2.2, "feet"),
  5735. name: "Paws",
  5736. image: {
  5737. source: "./media/characters/sigvald/paws.svg"
  5738. }
  5739. }
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(8, "feet")
  5745. },
  5746. {
  5747. name: "Large",
  5748. height: math.unit(12, "feet")
  5749. },
  5750. {
  5751. name: "Larger",
  5752. height: math.unit(20, "feet")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(150, "feet")
  5757. },
  5758. {
  5759. name: "Macro+",
  5760. height: math.unit(200, "feet"),
  5761. default: true
  5762. },
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5767. {
  5768. side: {
  5769. height: math.unit(12, "feet"),
  5770. weight: math.unit(2000, "kg"),
  5771. name: "Side",
  5772. image: {
  5773. source: "./media/characters/scott/side.svg",
  5774. extra: 754 / 724,
  5775. bottom: 0.069
  5776. }
  5777. },
  5778. upright: {
  5779. height: math.unit(12, "feet"),
  5780. weight: math.unit(2000, "kg"),
  5781. name: "Upright",
  5782. image: {
  5783. source: "./media/characters/scott/upright.svg",
  5784. extra: 3881 / 3722,
  5785. bottom: 0.05
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(12, "feet"),
  5793. default: true
  5794. },
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5799. {
  5800. side: {
  5801. height: math.unit(8, "meters"),
  5802. weight: math.unit(84755, "lbs"),
  5803. name: "Side",
  5804. image: {
  5805. source: "./media/characters/tobias/side.svg",
  5806. extra: 1474 / 1096,
  5807. bottom: 38.9 / 1513.1235
  5808. }
  5809. },
  5810. },
  5811. [
  5812. {
  5813. name: "Normal",
  5814. height: math.unit(8, "meters"),
  5815. default: true
  5816. },
  5817. ]
  5818. ))
  5819. characterMakers.push(() => makeCharacter(
  5820. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5821. {
  5822. front: {
  5823. height: math.unit(5.5, "feet"),
  5824. weight: math.unit(400, "lbs"),
  5825. name: "Front",
  5826. image: {
  5827. source: "./media/characters/kieran/front.svg",
  5828. extra: 2694 / 2364,
  5829. bottom: 217 / 2908
  5830. }
  5831. },
  5832. side: {
  5833. height: math.unit(5.5, "feet"),
  5834. weight: math.unit(400, "lbs"),
  5835. name: "Side",
  5836. image: {
  5837. source: "./media/characters/kieran/side.svg",
  5838. extra: 875 / 777,
  5839. bottom: 84.6 / 959
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(5.5, "feet"),
  5847. default: true
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5853. {
  5854. side: {
  5855. height: math.unit(2, "meters"),
  5856. weight: math.unit(70, "kg"),
  5857. name: "Side",
  5858. image: {
  5859. source: "./media/characters/sanya/side.svg",
  5860. bottom: 0.02,
  5861. extra: 1.02
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Small",
  5868. height: math.unit(2, "meters")
  5869. },
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(3, "meters")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(16, "meters"),
  5877. default: true
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(2, "meters"),
  5886. weight: math.unit(120, "kg"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/miranda/front.svg",
  5890. extra: 195 / 185,
  5891. bottom: 10.9 / 206.5
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(2, "meters"),
  5896. weight: math.unit(120, "kg"),
  5897. name: "Back",
  5898. image: {
  5899. source: "./media/characters/miranda/back.svg",
  5900. extra: 201 / 193,
  5901. bottom: 2.3 / 203.7
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(10, "feet"),
  5909. default: true
  5910. }
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "James", species: ["deer"], tags: ["anthro"] },
  5915. {
  5916. side: {
  5917. height: math.unit(2, "meters"),
  5918. weight: math.unit(100, "kg"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/james/front.svg",
  5922. extra: 10 / 8.5
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(8.5, "feet"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5936. {
  5937. side: {
  5938. height: math.unit(9.5, "feet"),
  5939. weight: math.unit(2500, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/heather/side.svg"
  5943. }
  5944. },
  5945. },
  5946. [
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(9.5, "feet"),
  5950. default: true
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5956. {
  5957. side: {
  5958. height: math.unit(6.5, "feet"),
  5959. weight: math.unit(400, "lbs"),
  5960. name: "Side",
  5961. image: {
  5962. source: "./media/characters/lukas/side.svg",
  5963. extra: 7.25 / 6.5
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(6.5, "feet"),
  5971. default: true
  5972. }
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5977. {
  5978. side: {
  5979. height: math.unit(5, "feet"),
  5980. weight: math.unit(3000, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/louise/side.svg"
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(5, "feet"),
  5991. default: true
  5992. }
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5997. {
  5998. side: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(150, "lbs"),
  6001. name: "Side",
  6002. image: {
  6003. source: "./media/characters/ramona/side.svg",
  6004. extra: 871/854,
  6005. bottom: 41/912
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(6 + 4/12, "feet")
  6013. },
  6014. {
  6015. name: "Minimacro",
  6016. height: math.unit(5.3, "meters"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(20, "stories")
  6022. },
  6023. {
  6024. name: "Macro+",
  6025. height: math.unit(50, "stories")
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6031. {
  6032. standing: {
  6033. height: math.unit(5.75, "feet"),
  6034. weight: math.unit(160, "lbs"),
  6035. name: "Standing",
  6036. image: {
  6037. source: "./media/characters/deerpuff/standing.svg",
  6038. extra: 682 / 624
  6039. }
  6040. },
  6041. sitting: {
  6042. height: math.unit(5.75 / 1.79, "feet"),
  6043. weight: math.unit(160, "lbs"),
  6044. name: "Sitting",
  6045. image: {
  6046. source: "./media/characters/deerpuff/sitting.svg",
  6047. bottom: 44 / 400,
  6048. extra: 1
  6049. }
  6050. },
  6051. taurLaying: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(400, "lbs"),
  6054. name: "Taur (Laying)",
  6055. image: {
  6056. source: "./media/characters/deerpuff/taur-laying.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Puffball",
  6063. height: math.unit(6, "inches")
  6064. },
  6065. {
  6066. name: "Normalpuff",
  6067. height: math.unit(5.75, "feet")
  6068. },
  6069. {
  6070. name: "Macropuff",
  6071. height: math.unit(1500, "feet"),
  6072. default: true
  6073. },
  6074. {
  6075. name: "Megapuff",
  6076. height: math.unit(500, "miles")
  6077. },
  6078. {
  6079. name: "Gigapuff",
  6080. height: math.unit(250000, "miles")
  6081. },
  6082. {
  6083. name: "Omegapuff",
  6084. height: math.unit(1000, "lightyears")
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6090. {
  6091. stomping: {
  6092. height: math.unit(6, "feet"),
  6093. weight: math.unit(170, "lbs"),
  6094. name: "Stomping",
  6095. image: {
  6096. source: "./media/characters/vivian/stomping.svg"
  6097. }
  6098. },
  6099. sitting: {
  6100. height: math.unit(6 / 1.75, "feet"),
  6101. weight: math.unit(170, "lbs"),
  6102. name: "Sitting",
  6103. image: {
  6104. source: "./media/characters/vivian/sitting.svg",
  6105. bottom: 1 / 6.4,
  6106. extra: 1,
  6107. }
  6108. },
  6109. },
  6110. [
  6111. {
  6112. name: "Normal",
  6113. height: math.unit(7, "feet"),
  6114. default: true
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(10, "stories")
  6119. },
  6120. {
  6121. name: "Macro+",
  6122. height: math.unit(30, "stories")
  6123. },
  6124. {
  6125. name: "Megamacro",
  6126. height: math.unit(10, "miles")
  6127. },
  6128. {
  6129. name: "Megamacro+",
  6130. height: math.unit(2750000, "meters")
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(160, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/prince/front.svg",
  6143. extra: 1938/1682,
  6144. bottom: 45/1983
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(160, "lbs"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/prince/back.svg",
  6153. extra: 1955/1726,
  6154. bottom: 6/1961
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(7.75, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Not cute",
  6166. height: math.unit(17, "feet")
  6167. },
  6168. {
  6169. name: "I said NOT",
  6170. height: math.unit(91, "feet")
  6171. },
  6172. {
  6173. name: "Please stop",
  6174. height: math.unit(560, "feet")
  6175. },
  6176. {
  6177. name: "What have you done",
  6178. height: math.unit(2200, "feet")
  6179. },
  6180. {
  6181. name: "Deer God",
  6182. height: math.unit(3.6, "miles")
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6188. {
  6189. standing: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(300, "lbs"),
  6192. name: "Standing",
  6193. image: {
  6194. source: "./media/characters/psymon/standing.svg",
  6195. extra: 1888 / 1810,
  6196. bottom: 0.05
  6197. }
  6198. },
  6199. slithering: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(300, "lbs"),
  6202. name: "Slithering",
  6203. image: {
  6204. source: "./media/characters/psymon/slithering.svg",
  6205. extra: 1330 / 1224
  6206. }
  6207. },
  6208. slitheringAlt: {
  6209. height: math.unit(6, "feet"),
  6210. weight: math.unit(300, "lbs"),
  6211. name: "Slithering (Alt)",
  6212. image: {
  6213. source: "./media/characters/psymon/slithering-alt.svg",
  6214. extra: 1330 / 1224
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(11.25, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Large",
  6226. height: math.unit(27, "feet")
  6227. },
  6228. {
  6229. name: "Giant",
  6230. height: math.unit(87, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(365, "feet")
  6235. },
  6236. {
  6237. name: "Megamacro",
  6238. height: math.unit(3, "miles")
  6239. },
  6240. {
  6241. name: "World Serpent",
  6242. height: math.unit(8000, "miles")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(180, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/daimos/front.svg",
  6255. extra: 4160 / 3897,
  6256. bottom: 0.021
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(8, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Big Dog",
  6268. height: math.unit(22, "feet")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(127, "feet")
  6273. },
  6274. {
  6275. name: "Megamacro",
  6276. height: math.unit(3600, "feet")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6282. {
  6283. side: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Side",
  6287. image: {
  6288. source: "./media/characters/blake/side.svg",
  6289. extra: 1212 / 1120,
  6290. bottom: 0.05
  6291. }
  6292. },
  6293. crouched: {
  6294. height: math.unit(6 * 0.57, "feet"),
  6295. weight: math.unit(180, "lbs"),
  6296. name: "Crouched",
  6297. image: {
  6298. source: "./media/characters/blake/crouched.svg",
  6299. extra: 840 / 587,
  6300. bottom: 0.04
  6301. }
  6302. },
  6303. bent: {
  6304. height: math.unit(6 * 0.75, "feet"),
  6305. weight: math.unit(180, "lbs"),
  6306. name: "Bent",
  6307. image: {
  6308. source: "./media/characters/blake/bent.svg",
  6309. extra: 592 / 544,
  6310. bottom: 0.035
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(8 + 1 / 6, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Big Backside",
  6322. height: math.unit(37, "feet")
  6323. },
  6324. {
  6325. name: "Subway Shredder",
  6326. height: math.unit(72, "feet")
  6327. },
  6328. {
  6329. name: "City Carver",
  6330. height: math.unit(1675, "feet")
  6331. },
  6332. {
  6333. name: "Tectonic Tweaker",
  6334. height: math.unit(2300, "miles")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(6, "feet"),
  6343. weight: math.unit(180, "lbs"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/guisetto/front.svg",
  6347. extra: 856 / 817,
  6348. bottom: 0.06
  6349. }
  6350. },
  6351. airborne: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(180, "lbs"),
  6354. name: "Airborne",
  6355. image: {
  6356. source: "./media/characters/guisetto/airborne.svg",
  6357. extra: 584 / 525
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(10 + 11 / 12, "feet"),
  6365. default: true
  6366. },
  6367. {
  6368. name: "Large",
  6369. height: math.unit(35, "feet")
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(475, "feet")
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(180, "lbs"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/luxor/front.svg",
  6386. extra: 2940 / 2152
  6387. }
  6388. },
  6389. back: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(180, "lbs"),
  6392. name: "Back",
  6393. image: {
  6394. source: "./media/characters/luxor/back.svg",
  6395. extra: 1083 / 960
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(5 + 5 / 6, "feet"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Lamp",
  6407. height: math.unit(50, "feet")
  6408. },
  6409. {
  6410. name: "Lämp",
  6411. height: math.unit(300, "feet")
  6412. },
  6413. {
  6414. name: "The sun is a lamp",
  6415. height: math.unit(250000, "miles")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(50, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/huoyan/front.svg"
  6428. }
  6429. },
  6430. side: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/huoyan/side.svg"
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Chef",
  6442. height: math.unit(9, "feet")
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(65, "feet"),
  6447. default: true
  6448. },
  6449. {
  6450. name: "Macro",
  6451. height: math.unit(780, "feet")
  6452. },
  6453. {
  6454. name: "Flaming Mountain",
  6455. height: math.unit(4.8, "miles")
  6456. },
  6457. {
  6458. name: "Celestial",
  6459. height: math.unit(765000, "miles")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(5 + 3 / 4, "feet"),
  6468. weight: math.unit(120, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/tails/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(5 + 3 / 4, "feet"),
  6479. default: true
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(4, "feet"),
  6488. weight: math.unit(50, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/rainy/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(800, "feet"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(150, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/rainier/front.svg"
  6512. }
  6513. }
  6514. },
  6515. [
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(2, "mm"),
  6519. default: true
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(8 + 4/12, "feet"),
  6528. weight: math.unit(450, "kilograms"),
  6529. volume: math.unit(5, "cups"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/andy-renard/front.svg",
  6533. extra: 1839/1726,
  6534. bottom: 134/1973
  6535. }
  6536. },
  6537. back: {
  6538. height: math.unit(8 + 4/12, "feet"),
  6539. weight: math.unit(450, "kilograms"),
  6540. volume: math.unit(5, "cups"),
  6541. name: "Back",
  6542. image: {
  6543. source: "./media/characters/andy-renard/back.svg",
  6544. extra: 1838/1710,
  6545. bottom: 105/1943
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Tall",
  6552. height: math.unit(8 + 4/12, "feet")
  6553. },
  6554. {
  6555. name: "Mini Macro",
  6556. height: math.unit(15, "feet"),
  6557. default: true
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(100, "feet")
  6562. },
  6563. {
  6564. name: "Mega Macro",
  6565. height: math.unit(1000, "feet")
  6566. },
  6567. {
  6568. name: "Giga Macro",
  6569. height: math.unit(10, "miles")
  6570. },
  6571. {
  6572. name: "God Macro",
  6573. height: math.unit(1, "multiverse")
  6574. },
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(210, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/cimmaron/front-sfw.svg",
  6586. extra: 701 / 676,
  6587. bottom: 0.046
  6588. }
  6589. },
  6590. back: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(210, "lbs"),
  6593. name: "Back",
  6594. image: {
  6595. source: "./media/characters/cimmaron/back-sfw.svg",
  6596. extra: 701 / 676,
  6597. bottom: 0.046
  6598. }
  6599. },
  6600. frontNsfw: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(210, "lbs"),
  6603. name: "Front (NSFW)",
  6604. image: {
  6605. source: "./media/characters/cimmaron/front-nsfw.svg",
  6606. extra: 701 / 676,
  6607. bottom: 0.046
  6608. }
  6609. },
  6610. backNsfw: {
  6611. height: math.unit(6, "feet"),
  6612. weight: math.unit(210, "lbs"),
  6613. name: "Back (NSFW)",
  6614. image: {
  6615. source: "./media/characters/cimmaron/back-nsfw.svg",
  6616. extra: 701 / 676,
  6617. bottom: 0.046
  6618. }
  6619. },
  6620. dick: {
  6621. height: math.unit(1.714, "feet"),
  6622. name: "Dick",
  6623. image: {
  6624. source: "./media/characters/cimmaron/dick.svg"
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(6, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro Mayor",
  6636. height: math.unit(350, "meters")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(200, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/akari/front.svg",
  6649. extra: 962 / 901,
  6650. bottom: 0.04
  6651. }
  6652. }
  6653. },
  6654. [
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(5, "inches"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(7, "feet")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(140, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/cynosura/front.svg",
  6675. extra: 437/410,
  6676. bottom: 9/446
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(140, "lbs"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/cynosura/back.svg",
  6685. extra: 1304/1160,
  6686. bottom: 71/1375
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Micro",
  6693. height: math.unit(4, "inches")
  6694. },
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(5.75, "feet"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Tall",
  6702. height: math.unit(10, "feet")
  6703. },
  6704. {
  6705. name: "Big",
  6706. height: math.unit(20, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(50, "feet")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(13 + 2/12, "feet"),
  6719. weight: math.unit(800, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/gin/front.svg",
  6723. extra: 1312/1191,
  6724. bottom: 45/1357
  6725. }
  6726. },
  6727. mouth: {
  6728. height: math.unit(2.39 * 1.8, "feet"),
  6729. name: "Mouth",
  6730. image: {
  6731. source: "./media/characters/gin/mouth.svg"
  6732. }
  6733. },
  6734. hand: {
  6735. height: math.unit(1.57 * 2.19, "feet"),
  6736. name: "Hand",
  6737. image: {
  6738. source: "./media/characters/gin/hand.svg"
  6739. }
  6740. },
  6741. foot: {
  6742. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6743. name: "Foot",
  6744. image: {
  6745. source: "./media/characters/gin/foot.svg"
  6746. }
  6747. },
  6748. sole: {
  6749. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6750. name: "Sole",
  6751. image: {
  6752. source: "./media/characters/gin/sole.svg"
  6753. }
  6754. },
  6755. },
  6756. [
  6757. {
  6758. name: "Very Small",
  6759. height: math.unit(13 + 2 / 12, "feet")
  6760. },
  6761. {
  6762. name: "Micro",
  6763. height: math.unit(600, "miles")
  6764. },
  6765. {
  6766. name: "Regular",
  6767. height: math.unit(20, "earths"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(2.2, "solarradii")
  6773. },
  6774. {
  6775. name: "Teramacro",
  6776. height: math.unit(1.2, "galaxies")
  6777. },
  6778. {
  6779. name: "Omegamacro",
  6780. height: math.unit(200, "universes")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6 + 1 / 6, "feet"),
  6789. weight: math.unit(178, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/guy/front.svg"
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(6 + 1 / 6, "feet"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Large",
  6804. height: math.unit(25 + 7 / 12, "feet")
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(60 + 9 / 12, "feet")
  6809. },
  6810. {
  6811. name: "Macro+",
  6812. height: math.unit(246, "feet")
  6813. },
  6814. {
  6815. name: "Macro++",
  6816. height: math.unit(878, "feet")
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(9, "feet"),
  6825. weight: math.unit(800, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/tiberius/front.svg",
  6829. extra: 2295 / 2071
  6830. }
  6831. },
  6832. back: {
  6833. height: math.unit(9, "feet"),
  6834. weight: math.unit(800, "lbs"),
  6835. name: "Back",
  6836. image: {
  6837. source: "./media/characters/tiberius/back.svg",
  6838. extra: 2373 / 2160
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Normal",
  6845. height: math.unit(9, "feet"),
  6846. default: true
  6847. }
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6852. {
  6853. front: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(600, "lbs"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/surgo/front.svg",
  6859. extra: 3591 / 2227
  6860. }
  6861. },
  6862. back: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(600, "lbs"),
  6865. name: "Back",
  6866. image: {
  6867. source: "./media/characters/surgo/back.svg",
  6868. extra: 3557 / 2228
  6869. }
  6870. },
  6871. laying: {
  6872. height: math.unit(6 * 0.85, "feet"),
  6873. weight: math.unit(600, "lbs"),
  6874. name: "Laying",
  6875. image: {
  6876. source: "./media/characters/surgo/laying.svg"
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(6, "feet"),
  6884. default: true
  6885. }
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6890. {
  6891. side: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(150, "lbs"),
  6894. name: "Side",
  6895. image: {
  6896. source: "./media/characters/cibus/side.svg",
  6897. extra: 800 / 400
  6898. }
  6899. },
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(6, "feet"),
  6905. default: true
  6906. }
  6907. ]
  6908. ))
  6909. characterMakers.push(() => makeCharacter(
  6910. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6911. {
  6912. front: {
  6913. height: math.unit(6, "feet"),
  6914. weight: math.unit(240, "lbs"),
  6915. name: "Front",
  6916. image: {
  6917. source: "./media/characters/nibbles/front.svg"
  6918. }
  6919. },
  6920. side: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(240, "lbs"),
  6923. name: "Side",
  6924. image: {
  6925. source: "./media/characters/nibbles/side.svg"
  6926. }
  6927. },
  6928. },
  6929. [
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(9, "feet"),
  6933. default: true
  6934. }
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6939. {
  6940. side: {
  6941. height: math.unit(5 + 1 / 6, "feet"),
  6942. weight: math.unit(130, "lbs"),
  6943. name: "Side",
  6944. image: {
  6945. source: "./media/characters/rikky/side.svg",
  6946. extra: 851 / 801
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(5 + 1 / 6, "feet")
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(152, "feet"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Megamacro",
  6962. height: math.unit(7, "miles")
  6963. }
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6968. {
  6969. side: {
  6970. height: math.unit(370, "cm"),
  6971. weight: math.unit(350, "lbs"),
  6972. name: "Side",
  6973. image: {
  6974. source: "./media/characters/malfressa/side.svg"
  6975. }
  6976. },
  6977. walking: {
  6978. height: math.unit(370, "cm"),
  6979. weight: math.unit(350, "lbs"),
  6980. name: "Walking",
  6981. image: {
  6982. source: "./media/characters/malfressa/walking.svg"
  6983. }
  6984. },
  6985. feral: {
  6986. height: math.unit(2500, "cm"),
  6987. weight: math.unit(100000, "lbs"),
  6988. name: "Feral",
  6989. image: {
  6990. source: "./media/characters/malfressa/feral.svg",
  6991. extra: 2108 / 837,
  6992. bottom: 0.02
  6993. }
  6994. },
  6995. },
  6996. [
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(370, "cm")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(300, "meters"),
  7004. default: true
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(60, "kg"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/jaro/front.svg",
  7017. extra: 845/817,
  7018. bottom: 45/890
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(60, "kg"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/jaro/back.svg",
  7027. extra: 847/817,
  7028. bottom: 34/881
  7029. }
  7030. },
  7031. },
  7032. [
  7033. {
  7034. name: "Micro",
  7035. height: math.unit(7, "inches")
  7036. },
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(5.5, "feet"),
  7040. default: true
  7041. },
  7042. {
  7043. name: "Minimacro",
  7044. height: math.unit(20, "feet")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(200, "meters")
  7049. }
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7054. {
  7055. front: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(195, "lb"),
  7058. name: "Front",
  7059. image: {
  7060. source: "./media/characters/rogue/front.svg"
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(90, "feet"),
  7068. default: true
  7069. },
  7070. ]
  7071. ))
  7072. characterMakers.push(() => makeCharacter(
  7073. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7074. {
  7075. standing: {
  7076. height: math.unit(5 + 8 / 12, "feet"),
  7077. weight: math.unit(140, "lb"),
  7078. name: "Standing",
  7079. image: {
  7080. source: "./media/characters/piper/standing.svg",
  7081. extra: 1440/1284,
  7082. bottom: 66/1506
  7083. }
  7084. },
  7085. running: {
  7086. height: math.unit(5 + 8 / 12, "feet"),
  7087. weight: math.unit(140, "lb"),
  7088. name: "Running",
  7089. image: {
  7090. source: "./media/characters/piper/running.svg",
  7091. extra: 3948/3655,
  7092. bottom: 0/3948
  7093. }
  7094. },
  7095. sole: {
  7096. height: math.unit(0.81, "feet"),
  7097. weight: math.unit(2, "kg"),
  7098. name: "Sole",
  7099. image: {
  7100. source: "./media/characters/piper/sole.svg"
  7101. }
  7102. },
  7103. nipple: {
  7104. height: math.unit(0.25, "feet"),
  7105. weight: math.unit(1.5, "lb"),
  7106. name: "Nipple",
  7107. image: {
  7108. source: "./media/characters/piper/nipple.svg"
  7109. }
  7110. },
  7111. head: {
  7112. height: math.unit(1.1, "feet"),
  7113. name: "Head",
  7114. image: {
  7115. source: "./media/characters/piper/head.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(2, "inches")
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(5 + 8 / 12, "feet")
  7127. },
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(250, "feet"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Megamacro",
  7135. height: math.unit(7, "miles")
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(220, "lb"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/gemini/front.svg"
  7148. }
  7149. },
  7150. back: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(220, "lb"),
  7153. name: "Back",
  7154. image: {
  7155. source: "./media/characters/gemini/back.svg"
  7156. }
  7157. },
  7158. kneeling: {
  7159. height: math.unit(6 / 1.5, "feet"),
  7160. weight: math.unit(220, "lb"),
  7161. name: "Kneeling",
  7162. image: {
  7163. source: "./media/characters/gemini/kneeling.svg",
  7164. bottom: 0.02
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Macro",
  7171. height: math.unit(300, "meters"),
  7172. default: true
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(6900, "meters")
  7177. },
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7182. {
  7183. anthro: {
  7184. height: math.unit(2.35, "meters"),
  7185. weight: math.unit(73, "kg"),
  7186. name: "Anthro",
  7187. image: {
  7188. source: "./media/characters/alicia/anthro.svg",
  7189. extra: 2571 / 2385,
  7190. bottom: 75 / 2648
  7191. }
  7192. },
  7193. paw: {
  7194. height: math.unit(1.32, "feet"),
  7195. name: "Paw",
  7196. image: {
  7197. source: "./media/characters/alicia/paw.svg"
  7198. }
  7199. },
  7200. feral: {
  7201. height: math.unit(1.69, "meters"),
  7202. weight: math.unit(73, "kg"),
  7203. name: "Feral",
  7204. image: {
  7205. source: "./media/characters/alicia/feral.svg",
  7206. extra: 2123 / 1715,
  7207. bottom: 222 / 2349
  7208. }
  7209. },
  7210. },
  7211. [
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(2.35, "meters")
  7215. },
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(60, "meters"),
  7219. default: true
  7220. },
  7221. {
  7222. name: "Megamacro",
  7223. height: math.unit(10000, "kilometers")
  7224. },
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7229. {
  7230. front: {
  7231. height: math.unit(7, "feet"),
  7232. weight: math.unit(250, "lbs"),
  7233. name: "Front",
  7234. image: {
  7235. source: "./media/characters/archy/front.svg"
  7236. }
  7237. }
  7238. },
  7239. [
  7240. {
  7241. name: "Micro",
  7242. height: math.unit(1, "inch")
  7243. },
  7244. {
  7245. name: "Shorty",
  7246. height: math.unit(5, "feet")
  7247. },
  7248. {
  7249. name: "Normal",
  7250. height: math.unit(7, "feet")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(600, "meters"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Megamacro",
  7259. height: math.unit(1, "mile")
  7260. },
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(1.65, "meters"),
  7268. weight: math.unit(74, "kg"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/berri/front.svg",
  7272. extra: 857 / 837,
  7273. bottom: 18 / 877
  7274. }
  7275. },
  7276. bum: {
  7277. height: math.unit(1.46, "feet"),
  7278. name: "Bum",
  7279. image: {
  7280. source: "./media/characters/berri/bum.svg"
  7281. }
  7282. },
  7283. mouth: {
  7284. height: math.unit(0.44, "feet"),
  7285. name: "Mouth",
  7286. image: {
  7287. source: "./media/characters/berri/mouth.svg"
  7288. }
  7289. },
  7290. paw: {
  7291. height: math.unit(0.826, "feet"),
  7292. name: "Paw",
  7293. image: {
  7294. source: "./media/characters/berri/paw.svg"
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(1.65, "meters")
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(60, "m"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Megamacro",
  7310. height: math.unit(9.213, "km")
  7311. },
  7312. {
  7313. name: "Planet Eater",
  7314. height: math.unit(489, "megameters")
  7315. },
  7316. {
  7317. name: "Teramacro",
  7318. height: math.unit(2471635000000, "meters")
  7319. },
  7320. {
  7321. name: "Examacro",
  7322. height: math.unit(8.0624e+26, "meters")
  7323. }
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(1.72, "meters"),
  7331. weight: math.unit(68, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/lexi/front.svg"
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Very Smol",
  7341. height: math.unit(10, "mm")
  7342. },
  7343. {
  7344. name: "Micro",
  7345. height: math.unit(6.8, "cm"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Normal",
  7350. height: math.unit(1.72, "m")
  7351. }
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(1.69, "meters"),
  7359. weight: math.unit(68, "kg"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/martin/front.svg",
  7363. extra: 596 / 581
  7364. }
  7365. }
  7366. },
  7367. [
  7368. {
  7369. name: "Micro",
  7370. height: math.unit(6.85, "cm"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(1.69, "m")
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(1.69, "meters"),
  7384. weight: math.unit(68, "kg"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/juno/front.svg"
  7388. }
  7389. }
  7390. },
  7391. [
  7392. {
  7393. name: "Micro",
  7394. height: math.unit(7, "cm")
  7395. },
  7396. {
  7397. name: "Normal",
  7398. height: math.unit(1.89, "m")
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(353, "meters"),
  7403. default: true
  7404. }
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7409. {
  7410. front: {
  7411. height: math.unit(1.93, "meters"),
  7412. weight: math.unit(83, "kg"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/samantha/front.svg"
  7416. }
  7417. },
  7418. frontClothed: {
  7419. height: math.unit(1.93, "meters"),
  7420. weight: math.unit(83, "kg"),
  7421. name: "Front (Clothed)",
  7422. image: {
  7423. source: "./media/characters/samantha/front-clothed.svg"
  7424. }
  7425. },
  7426. back: {
  7427. height: math.unit(1.93, "meters"),
  7428. weight: math.unit(83, "kg"),
  7429. name: "Back",
  7430. image: {
  7431. source: "./media/characters/samantha/back.svg"
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(1.93, "m")
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(74, "meters"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Macro+",
  7447. height: math.unit(223, "meters"),
  7448. },
  7449. {
  7450. name: "Megamacro",
  7451. height: math.unit(8381, "meters"),
  7452. },
  7453. {
  7454. name: "Megamacro+",
  7455. height: math.unit(12000, "kilometers")
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(1.92, "meters"),
  7464. weight: math.unit(80, "kg"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/dr-clay/front.svg"
  7468. }
  7469. },
  7470. frontClothed: {
  7471. height: math.unit(1.92, "meters"),
  7472. weight: math.unit(80, "kg"),
  7473. name: "Front (Clothed)",
  7474. image: {
  7475. source: "./media/characters/dr-clay/front-clothed.svg"
  7476. }
  7477. }
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(1.92, "m")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(214, "meters"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Macro+",
  7491. height: math.unit(12.237, "meters"),
  7492. },
  7493. {
  7494. name: "Megamacro",
  7495. height: math.unit(557, "megameters"),
  7496. },
  7497. {
  7498. name: "Unimaginable",
  7499. height: math.unit(120e9, "lightyears")
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(2, "meters"),
  7508. weight: math.unit(80, "kg"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7512. }
  7513. }
  7514. },
  7515. [
  7516. {
  7517. name: "Teramacro",
  7518. height: math.unit(500000, "lightyears"),
  7519. default: true
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7525. {
  7526. crux: {
  7527. height: math.unit(2, "meters"),
  7528. weight: math.unit(150, "kg"),
  7529. name: "Crux",
  7530. image: {
  7531. source: "./media/characters/vemus/crux.svg",
  7532. extra: 1074/936,
  7533. bottom: 23/1097
  7534. }
  7535. },
  7536. skunkTanuki: {
  7537. height: math.unit(2, "meters"),
  7538. weight: math.unit(150, "kg"),
  7539. name: "Skunk-Tanuki",
  7540. image: {
  7541. source: "./media/characters/vemus/skunk-tanuki.svg",
  7542. extra: 926/893,
  7543. bottom: 20/946
  7544. }
  7545. },
  7546. },
  7547. [
  7548. {
  7549. name: "Normal",
  7550. height: math.unit(4, "meters"),
  7551. default: true
  7552. },
  7553. {
  7554. name: "Big",
  7555. height: math.unit(8, "meters")
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(100, "meters")
  7560. },
  7561. {
  7562. name: "Macro+",
  7563. height: math.unit(1500, "meters")
  7564. },
  7565. {
  7566. name: "Stellar",
  7567. height: math.unit(14e8, "meters")
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7573. {
  7574. front: {
  7575. height: math.unit(2, "meters"),
  7576. weight: math.unit(70, "kg"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/beherit/front.svg",
  7580. extra: 1234/1109,
  7581. bottom: 55/1289
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(6, "feet")
  7589. },
  7590. {
  7591. name: "Lorg",
  7592. height: math.unit(25, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Lorger",
  7597. height: math.unit(75, "feet")
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(200, "meters")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(2, "meters"),
  7610. weight: math.unit(150, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/everett/front.svg",
  7614. extra: 1017/866,
  7615. bottom: 86/1103
  7616. }
  7617. },
  7618. paw: {
  7619. height: math.unit(2 / 3.6, "meters"),
  7620. name: "Paw",
  7621. image: {
  7622. source: "./media/characters/everett/paw.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(15, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Lorg",
  7634. height: math.unit(70, "feet"),
  7635. default: true
  7636. },
  7637. {
  7638. name: "Lorger",
  7639. height: math.unit(250, "feet")
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(500, "meters")
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(2, "meters"),
  7652. weight: math.unit(86, "kg"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/rose/front.svg",
  7656. extra: 1785/1636,
  7657. bottom: 30/1815
  7658. },
  7659. form: "liom",
  7660. default: true
  7661. },
  7662. frontSporty: {
  7663. height: math.unit(2, "meters"),
  7664. weight: math.unit(86, "kg"),
  7665. name: "Front (Sporty)",
  7666. image: {
  7667. source: "./media/characters/rose/front-sporty.svg",
  7668. extra: 350/335,
  7669. bottom: 10/360
  7670. },
  7671. form: "liom"
  7672. },
  7673. frontAlt: {
  7674. height: math.unit(1.6, "meters"),
  7675. weight: math.unit(86, "kg"),
  7676. name: "Front (Alt)",
  7677. image: {
  7678. source: "./media/characters/rose/front-alt.svg",
  7679. extra: 299/283,
  7680. bottom: 3/302
  7681. },
  7682. form: "liom"
  7683. },
  7684. plush: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(86/3, "kg"),
  7687. name: "Plush",
  7688. image: {
  7689. source: "./media/characters/rose/plush.svg",
  7690. extra: 361/337,
  7691. bottom: 11/372
  7692. },
  7693. form: "plush",
  7694. default: true
  7695. },
  7696. faeStanding: {
  7697. height: math.unit(10, "cm"),
  7698. weight: math.unit(10, "grams"),
  7699. name: "Standing",
  7700. image: {
  7701. source: "./media/characters/rose/fae-standing.svg",
  7702. extra: 1189/1060,
  7703. bottom: 27/1216
  7704. },
  7705. form: "fae",
  7706. default: true
  7707. },
  7708. faeSitting: {
  7709. height: math.unit(5, "cm"),
  7710. weight: math.unit(10, "grams"),
  7711. name: "Sitting",
  7712. image: {
  7713. source: "./media/characters/rose/fae-sitting.svg",
  7714. extra: 737/577,
  7715. bottom: 356/1093
  7716. },
  7717. form: "fae"
  7718. },
  7719. faePaw: {
  7720. height: math.unit(1.35, "cm"),
  7721. name: "Paw",
  7722. image: {
  7723. source: "./media/characters/rose/fae-paw.svg"
  7724. },
  7725. form: "fae"
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "True Micro",
  7731. height: math.unit(9, "cm"),
  7732. form: "liom"
  7733. },
  7734. {
  7735. name: "Micro",
  7736. height: math.unit(16, "cm"),
  7737. form: "liom"
  7738. },
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(1.85, "meters"),
  7742. default: true,
  7743. form: "liom"
  7744. },
  7745. {
  7746. name: "Mini-Macro",
  7747. height: math.unit(5, "meters"),
  7748. form: "liom"
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(15, "meters"),
  7753. form: "liom"
  7754. },
  7755. {
  7756. name: "True Macro",
  7757. height: math.unit(40, "meters"),
  7758. form: "liom"
  7759. },
  7760. {
  7761. name: "City Scale",
  7762. height: math.unit(1, "km"),
  7763. form: "liom"
  7764. },
  7765. {
  7766. name: "Plushie",
  7767. height: math.unit(9, "cm"),
  7768. form: "plush",
  7769. default: true
  7770. },
  7771. {
  7772. name: "Fae",
  7773. height: math.unit(10, "cm"),
  7774. form: "fae",
  7775. default: true
  7776. },
  7777. ],
  7778. {
  7779. "liom": {
  7780. name: "Liom"
  7781. },
  7782. "plush": {
  7783. name: "Plush"
  7784. },
  7785. "fae": {
  7786. name: "Fae Fox",
  7787. default: true
  7788. }
  7789. }
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7793. {
  7794. front: {
  7795. height: math.unit(2, "meters"),
  7796. weight: math.unit(350, "lbs"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/regal/front.svg"
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(2, "meters"),
  7804. weight: math.unit(350, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/regal/back.svg"
  7808. }
  7809. },
  7810. },
  7811. [
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(350, "feet"),
  7815. default: true
  7816. }
  7817. ]
  7818. ))
  7819. characterMakers.push(() => makeCharacter(
  7820. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7821. {
  7822. front: {
  7823. height: math.unit(4 + 11 / 12, "feet"),
  7824. weight: math.unit(100, "lbs"),
  7825. name: "Front",
  7826. image: {
  7827. source: "./media/characters/opal/front.svg"
  7828. }
  7829. },
  7830. frontAlt: {
  7831. height: math.unit(4 + 11 / 12, "feet"),
  7832. weight: math.unit(100, "lbs"),
  7833. name: "Front (Alt)",
  7834. image: {
  7835. source: "./media/characters/opal/front-alt.svg"
  7836. }
  7837. },
  7838. },
  7839. [
  7840. {
  7841. name: "Small",
  7842. height: math.unit(4 + 11 / 12, "feet")
  7843. },
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(20, "feet"),
  7847. default: true
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(120, "feet")
  7852. },
  7853. {
  7854. name: "Megamacro",
  7855. height: math.unit(80, "miles")
  7856. },
  7857. {
  7858. name: "True Size",
  7859. height: math.unit(100000, "lightyears")
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(6, "feet"),
  7868. weight: math.unit(200, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/vector-wuff/front.svg"
  7872. }
  7873. }
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(2.8, "meters")
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(450, "meters"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Megamacro",
  7887. height: math.unit(15, "kilometers")
  7888. }
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(256, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/dannik/front.svg"
  7900. }
  7901. }
  7902. },
  7903. [
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(69.57, "meters"),
  7907. default: true
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(6, "feet"),
  7916. weight: math.unit(120, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/azura-saharah/front.svg"
  7920. }
  7921. },
  7922. back: {
  7923. height: math.unit(6, "feet"),
  7924. weight: math.unit(120, "lbs"),
  7925. name: "Back",
  7926. image: {
  7927. source: "./media/characters/azura-saharah/back.svg"
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(100, "feet"),
  7935. default: true
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7941. {
  7942. side: {
  7943. height: math.unit(5 + 4 / 12, "feet"),
  7944. weight: math.unit(163, "lbs"),
  7945. name: "Side",
  7946. image: {
  7947. source: "./media/characters/kennedy/side.svg"
  7948. }
  7949. }
  7950. },
  7951. [
  7952. {
  7953. name: "Standard Doggo",
  7954. height: math.unit(5 + 4 / 12, "feet")
  7955. },
  7956. {
  7957. name: "Big Doggo",
  7958. height: math.unit(25 + 3 / 12, "feet"),
  7959. default: true
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(5 + 5/12, "feet"),
  7968. weight: math.unit(100, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/odios-de-lunar/front.svg",
  7972. extra: 1468/1323,
  7973. bottom: 22/1490
  7974. }
  7975. }
  7976. },
  7977. [
  7978. {
  7979. name: "Micro",
  7980. height: math.unit(3, "inches")
  7981. },
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(5.5, "feet"),
  7985. default: true
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(100, "feet")
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7995. {
  7996. back: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(220, "lbs"),
  7999. name: "Back",
  8000. image: {
  8001. source: "./media/characters/mandake/back.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(7, "feet"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(78, "feet")
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(300, "meters")
  8018. },
  8019. {
  8020. name: "Macro++",
  8021. height: math.unit(2400, "feet")
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(5167, "meters")
  8026. },
  8027. {
  8028. name: "Gigamacro",
  8029. height: math.unit(41769, "miles")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/yozey/front.svg"
  8042. }
  8043. },
  8044. frontAlt: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(120, "lbs"),
  8047. name: "Front (Alt)",
  8048. image: {
  8049. source: "./media/characters/yozey/front-alt.svg"
  8050. }
  8051. },
  8052. side: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(120, "lbs"),
  8055. name: "Side",
  8056. image: {
  8057. source: "./media/characters/yozey/side.svg"
  8058. }
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "Micro",
  8064. height: math.unit(3, "inches"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(6, "feet")
  8070. }
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(6, "feet"),
  8078. weight: math.unit(103, "lbs"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/valeska-voss/front.svg"
  8082. }
  8083. }
  8084. },
  8085. [
  8086. {
  8087. name: "Mini-Sized Sub",
  8088. height: math.unit(3.1, "inches")
  8089. },
  8090. {
  8091. name: "Mid-Sized Sub",
  8092. height: math.unit(6.2, "inches")
  8093. },
  8094. {
  8095. name: "Full-Sized Sub",
  8096. height: math.unit(9.3, "inches")
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 2 / 12, "foot"),
  8101. default: true
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(160, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/gene-zeta/front.svg",
  8114. extra: 3006 / 2826,
  8115. bottom: 182 / 3188
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(6, "inches")
  8123. },
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(5 + 11 / 12, "foot"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(140, "feet")
  8132. },
  8133. {
  8134. name: "Supercharged",
  8135. height: math.unit(2500, "feet")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(350, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/razinox/front.svg",
  8148. extra: 1686 / 1548,
  8149. bottom: 28.2 / 1868
  8150. }
  8151. },
  8152. back: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(350, "lbs"),
  8155. name: "Back",
  8156. image: {
  8157. source: "./media/characters/razinox/back.svg",
  8158. extra: 1660 / 1590,
  8159. bottom: 15 / 1665
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(10 + 8 / 12, "foot")
  8167. },
  8168. {
  8169. name: "Minimacro",
  8170. height: math.unit(15, "foot")
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(60, "foot"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(5, "miles")
  8180. },
  8181. {
  8182. name: "Gigamacro",
  8183. height: math.unit(6000, "miles")
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(150, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/cobalt/front.svg"
  8196. }
  8197. }
  8198. },
  8199. [
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(8 + 1 / 12, "foot")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(111, "foot"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Supracosmic",
  8211. height: math.unit(1e42, "feet")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(5, "inches"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/amanda/front.svg",
  8223. extra: 926/791,
  8224. bottom: 38/964
  8225. }
  8226. },
  8227. back: {
  8228. height: math.unit(5, "inches"),
  8229. name: "Back",
  8230. image: {
  8231. source: "./media/characters/amanda/back.svg",
  8232. extra: 909/805,
  8233. bottom: 43/952
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Micro",
  8240. height: math.unit(5, "inches"),
  8241. default: true
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(2.75, "meters"),
  8250. weight: math.unit(1200, "lb"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/teal/front.svg",
  8254. extra: 2463 / 2320,
  8255. bottom: 166 / 2629
  8256. }
  8257. },
  8258. back: {
  8259. height: math.unit(2.75, "meters"),
  8260. weight: math.unit(1200, "lb"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/teal/back.svg",
  8264. extra: 2580 / 2489,
  8265. bottom: 151 / 2731
  8266. }
  8267. },
  8268. sitting: {
  8269. height: math.unit(1.9, "meters"),
  8270. weight: math.unit(1200, "lb"),
  8271. name: "Sitting",
  8272. image: {
  8273. source: "./media/characters/teal/sitting.svg",
  8274. extra: 623 / 590,
  8275. bottom: 121 / 744
  8276. }
  8277. },
  8278. standing: {
  8279. height: math.unit(2.75, "meters"),
  8280. weight: math.unit(1200, "lb"),
  8281. name: "Standing",
  8282. image: {
  8283. source: "./media/characters/teal/standing.svg",
  8284. extra: 923 / 893,
  8285. bottom: 60 / 983
  8286. }
  8287. },
  8288. stretching: {
  8289. height: math.unit(3.65, "meters"),
  8290. weight: math.unit(1200, "lb"),
  8291. name: "Stretching",
  8292. image: {
  8293. source: "./media/characters/teal/stretching.svg",
  8294. extra: 1276 / 1244,
  8295. bottom: 0 / 1276
  8296. }
  8297. },
  8298. legged: {
  8299. height: math.unit(1.3, "meters"),
  8300. weight: math.unit(100, "lb"),
  8301. name: "Legged",
  8302. image: {
  8303. source: "./media/characters/teal/legged.svg",
  8304. extra: 462 / 437,
  8305. bottom: 24 / 486
  8306. }
  8307. },
  8308. naga: {
  8309. height: math.unit(5.4, "meters"),
  8310. weight: math.unit(4000, "lb"),
  8311. name: "Naga",
  8312. image: {
  8313. source: "./media/characters/teal/naga.svg",
  8314. extra: 1902 / 1858,
  8315. bottom: 0 / 1902
  8316. }
  8317. },
  8318. hand: {
  8319. height: math.unit(0.52, "meters"),
  8320. name: "Hand",
  8321. image: {
  8322. source: "./media/characters/teal/hand.svg"
  8323. }
  8324. },
  8325. maw: {
  8326. height: math.unit(0.43, "meters"),
  8327. name: "Maw",
  8328. image: {
  8329. source: "./media/characters/teal/maw.svg"
  8330. }
  8331. },
  8332. slit: {
  8333. height: math.unit(0.25, "meters"),
  8334. name: "Slit",
  8335. image: {
  8336. source: "./media/characters/teal/slit.svg"
  8337. }
  8338. },
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(2.75, "meters"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(300, "feet")
  8349. },
  8350. {
  8351. name: "Macro+",
  8352. height: math.unit(2000, "feet")
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8358. {
  8359. frontCat: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(180, "lbs"),
  8362. name: "Front (Cat)",
  8363. image: {
  8364. source: "./media/characters/ravin-amulet/front-cat.svg"
  8365. }
  8366. },
  8367. frontCatAlt: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(180, "lbs"),
  8370. name: "Front (Alt, Cat)",
  8371. image: {
  8372. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8373. }
  8374. },
  8375. frontWerewolf: {
  8376. height: math.unit(6 * 1.2, "feet"),
  8377. weight: math.unit(225, "lbs"),
  8378. name: "Front (Werewolf)",
  8379. image: {
  8380. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8381. }
  8382. },
  8383. backWerewolf: {
  8384. height: math.unit(6 * 1.2, "feet"),
  8385. weight: math.unit(225, "lbs"),
  8386. name: "Back (Werewolf)",
  8387. image: {
  8388. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Nano",
  8395. height: math.unit(1, "micrometer")
  8396. },
  8397. {
  8398. name: "Micro",
  8399. height: math.unit(1, "inch")
  8400. },
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(6, "feet"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(60, "feet")
  8409. }
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(165, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/fluoresce/front.svg"
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(6, "cm")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(5 + 7 / 12, "feet"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(56, "feet")
  8437. },
  8438. {
  8439. name: "Megamacro",
  8440. height: math.unit(1.9, "miles")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(9 + 6 / 12, "feet"),
  8449. weight: math.unit(523, "lbs"),
  8450. name: "Side",
  8451. image: {
  8452. source: "./media/characters/aurora/side.svg",
  8453. extra: 474/393,
  8454. bottom: 5/479
  8455. }
  8456. }
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(9 + 6 / 12, "feet")
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(96, "feet"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro+",
  8470. height: math.unit(243, "feet")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(194, "cm"),
  8479. weight: math.unit(90, "kg"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/ranek/front.svg",
  8483. extra: 1862/1791,
  8484. bottom: 80/1942
  8485. }
  8486. },
  8487. back: {
  8488. height: math.unit(194, "cm"),
  8489. weight: math.unit(90, "kg"),
  8490. name: "Back",
  8491. image: {
  8492. source: "./media/characters/ranek/back.svg",
  8493. extra: 1853/1787,
  8494. bottom: 74/1927
  8495. }
  8496. },
  8497. feral: {
  8498. height: math.unit(30, "cm"),
  8499. weight: math.unit(1.6, "lbs"),
  8500. name: "Feral",
  8501. image: {
  8502. source: "./media/characters/ranek/feral.svg",
  8503. extra: 990/631,
  8504. bottom: 29/1019
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(194, "cm"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Macro",
  8516. height: math.unit(100, "meters")
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(5 + 6 / 12, "feet"),
  8525. weight: math.unit(153, "lbs"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/andrew-cooper/front.svg"
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Nano",
  8535. height: math.unit(1, "mm")
  8536. },
  8537. {
  8538. name: "Micro",
  8539. height: math.unit(2, "inches")
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(5 + 6 / 12, "feet"),
  8544. default: true
  8545. }
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(6, "feet"),
  8553. weight: math.unit(180, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/akane-sato/front.svg",
  8557. extra: 1219 / 1140
  8558. }
  8559. },
  8560. back: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(180, "lbs"),
  8563. name: "Back",
  8564. image: {
  8565. source: "./media/characters/akane-sato/back.svg",
  8566. extra: 1219 / 1170
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(2.5, "meters")
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(250, "meters"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Megamacro",
  8582. height: math.unit(25, "km")
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(65, "kg"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/rook/front.svg",
  8595. extra: 960 / 950
  8596. }
  8597. }
  8598. },
  8599. [
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(8.8, "feet")
  8603. },
  8604. {
  8605. name: "Macro",
  8606. height: math.unit(88, "feet"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(8, "miles")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(12 + 2 / 12, "feet"),
  8620. weight: math.unit(808, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/prodigy/front.svg"
  8624. }
  8625. }
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(12 + 2 / 12, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(143, "feet")
  8636. },
  8637. {
  8638. name: "Macro+",
  8639. height: math.unit(400, "feet")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(225, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/daniel/front.svg"
  8652. }
  8653. },
  8654. leaning: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(225, "lbs"),
  8657. name: "Leaning",
  8658. image: {
  8659. source: "./media/characters/daniel/leaning.svg"
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(1000, "feet"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(88, "lbs"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/chiros/front.svg",
  8680. extra: 306 / 226
  8681. }
  8682. },
  8683. side: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(88, "lbs"),
  8686. name: "Side",
  8687. image: {
  8688. source: "./media/characters/chiros/side.svg",
  8689. extra: 306 / 226
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(6, "cm"),
  8697. default: true
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8703. {
  8704. front: {
  8705. height: math.unit(6, "feet"),
  8706. weight: math.unit(100, "lbs"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/selka/front.svg",
  8710. extra: 947 / 887
  8711. }
  8712. }
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(5, "cm"),
  8718. default: true
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(8 + 3 / 12, "feet"),
  8727. weight: math.unit(424, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/verin/front.svg",
  8731. extra: 1845 / 1550
  8732. }
  8733. },
  8734. frontArmored: {
  8735. height: math.unit(8 + 3 / 12, "feet"),
  8736. weight: math.unit(424, "lbs"),
  8737. name: "Front (Armored)",
  8738. image: {
  8739. source: "./media/characters/verin/front-armor.svg",
  8740. extra: 1845 / 1550,
  8741. bottom: 0.01
  8742. }
  8743. },
  8744. back: {
  8745. height: math.unit(8 + 3 / 12, "feet"),
  8746. weight: math.unit(424, "lbs"),
  8747. name: "Back",
  8748. image: {
  8749. source: "./media/characters/verin/back.svg",
  8750. bottom: 0.1,
  8751. extra: 1
  8752. }
  8753. },
  8754. foot: {
  8755. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8756. name: "Foot",
  8757. image: {
  8758. source: "./media/characters/verin/foot.svg"
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(8 + 3 / 12, "feet")
  8766. },
  8767. {
  8768. name: "Minimacro",
  8769. height: math.unit(21, "feet"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(626, "feet")
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(2.718, "meters"),
  8783. weight: math.unit(150, "lbs"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/sovrim-terraquian/front.svg",
  8787. extra: 1752/1689,
  8788. bottom: 36/1788
  8789. }
  8790. },
  8791. back: {
  8792. height: math.unit(2.718, "meters"),
  8793. weight: math.unit(150, "lbs"),
  8794. name: "Back",
  8795. image: {
  8796. source: "./media/characters/sovrim-terraquian/back.svg",
  8797. extra: 1698/1657,
  8798. bottom: 58/1756
  8799. }
  8800. },
  8801. tongue: {
  8802. height: math.unit(2.865, "feet"),
  8803. name: "Tongue",
  8804. image: {
  8805. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8806. }
  8807. },
  8808. hand: {
  8809. height: math.unit(1.61, "feet"),
  8810. name: "Hand",
  8811. image: {
  8812. source: "./media/characters/sovrim-terraquian/hand.svg"
  8813. }
  8814. },
  8815. foot: {
  8816. height: math.unit(1.05, "feet"),
  8817. name: "Foot",
  8818. image: {
  8819. source: "./media/characters/sovrim-terraquian/foot.svg"
  8820. }
  8821. },
  8822. footAlt: {
  8823. height: math.unit(0.88, "feet"),
  8824. name: "Foot (Alt)",
  8825. image: {
  8826. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Micro",
  8833. height: math.unit(2, "inches")
  8834. },
  8835. {
  8836. name: "Small",
  8837. height: math.unit(1, "meter")
  8838. },
  8839. {
  8840. name: "Normal",
  8841. height: math.unit(Math.E, "meters"),
  8842. default: true
  8843. },
  8844. {
  8845. name: "Macro",
  8846. height: math.unit(20, "meters")
  8847. },
  8848. {
  8849. name: "Macro+",
  8850. height: math.unit(400, "meters")
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(7, "feet"),
  8859. weight: math.unit(489, "lbs"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/reece-silvermane/front.svg",
  8863. bottom: 0.02,
  8864. extra: 1
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(1.5, "miles"),
  8872. default: true
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(78, "kg"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/kane/front.svg",
  8885. extra: 978 / 899
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(2.1, "m"),
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(1, "km"),
  8897. default: true
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(200, "kg"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/tegon/front.svg",
  8910. bottom: 0.01,
  8911. extra: 1
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Micro",
  8918. height: math.unit(1, "inch")
  8919. },
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(6 + 3 / 12, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Macro",
  8927. height: math.unit(300, "feet")
  8928. },
  8929. {
  8930. name: "Megamacro",
  8931. height: math.unit(69, "miles")
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8937. {
  8938. side: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(2304, "lbs"),
  8941. name: "Side",
  8942. image: {
  8943. source: "./media/characters/arcturax/side.svg",
  8944. extra: 790 / 376,
  8945. bottom: 0.01
  8946. }
  8947. },
  8948. },
  8949. [
  8950. {
  8951. name: "Micro",
  8952. height: math.unit(2, "inch")
  8953. },
  8954. {
  8955. name: "Normal",
  8956. height: math.unit(6, "feet")
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(39, "feet"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Megamacro",
  8965. height: math.unit(7, "miles")
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(6, "feet"),
  8974. weight: math.unit(50, "lbs"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/sentri/front.svg",
  8978. extra: 1750 / 1570,
  8979. bottom: 0.025
  8980. }
  8981. },
  8982. frontAlt: {
  8983. height: math.unit(6, "feet"),
  8984. weight: math.unit(50, "lbs"),
  8985. name: "Front (Alt)",
  8986. image: {
  8987. source: "./media/characters/sentri/front-alt.svg",
  8988. extra: 1750 / 1570,
  8989. bottom: 0.025
  8990. }
  8991. },
  8992. },
  8993. [
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(15, "feet"),
  8997. default: true
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(2500, "feet")
  9002. }
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(5 + 8 / 12, "feet"),
  9010. weight: math.unit(130, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/corvin/front.svg",
  9014. extra: 1803 / 1629
  9015. }
  9016. },
  9017. frontShirt: {
  9018. height: math.unit(5 + 8 / 12, "feet"),
  9019. weight: math.unit(130, "lbs"),
  9020. name: "Front (Shirt)",
  9021. image: {
  9022. source: "./media/characters/corvin/front-shirt.svg",
  9023. extra: 1803 / 1629
  9024. }
  9025. },
  9026. frontPoncho: {
  9027. height: math.unit(5 + 8 / 12, "feet"),
  9028. weight: math.unit(130, "lbs"),
  9029. name: "Front (Poncho)",
  9030. image: {
  9031. source: "./media/characters/corvin/front-poncho.svg",
  9032. extra: 1803 / 1629
  9033. }
  9034. },
  9035. side: {
  9036. height: math.unit(5 + 8 / 12, "feet"),
  9037. weight: math.unit(130, "lbs"),
  9038. name: "Side",
  9039. image: {
  9040. source: "./media/characters/corvin/side.svg",
  9041. extra: 1012 / 945
  9042. }
  9043. },
  9044. back: {
  9045. height: math.unit(5 + 8 / 12, "feet"),
  9046. weight: math.unit(130, "lbs"),
  9047. name: "Back",
  9048. image: {
  9049. source: "./media/characters/corvin/back.svg",
  9050. extra: 1803 / 1629
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Micro",
  9057. height: math.unit(3, "inches")
  9058. },
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(5 + 8 / 12, "feet")
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(300, "feet"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Megamacro",
  9070. height: math.unit(500, "miles")
  9071. }
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(135, "lbs"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/q/front.svg",
  9083. extra: 854 / 752,
  9084. bottom: 0.005
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(6, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/q/back.svg",
  9093. extra: 854 / 752
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(90, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "Extra Macro",
  9105. height: math.unit(300, "feet"),
  9106. },
  9107. {
  9108. name: "BIG WALF",
  9109. height: math.unit(750, "feet"),
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(3, "feet"),
  9118. weight: math.unit(28, "lbs"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/citrine/front.svg"
  9122. }
  9123. }
  9124. },
  9125. [
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(3, "feet"),
  9129. default: true
  9130. }
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9135. {
  9136. front: {
  9137. height: math.unit(14, "feet"),
  9138. weight: math.unit(1450, "kg"),
  9139. preyCapacity: math.unit(15, "people"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/aura-starwind/front.svg",
  9143. extra: 1440/1327,
  9144. bottom: 11/1451
  9145. }
  9146. },
  9147. side: {
  9148. height: math.unit(14, "feet"),
  9149. weight: math.unit(1450, "kg"),
  9150. preyCapacity: math.unit(15, "people"),
  9151. name: "Side",
  9152. image: {
  9153. source: "./media/characters/aura-starwind/side.svg",
  9154. extra: 1654 / 1497
  9155. }
  9156. },
  9157. taur: {
  9158. height: math.unit(18, "feet"),
  9159. weight: math.unit(5500, "kg"),
  9160. preyCapacity: math.unit(50, "people"),
  9161. name: "Taur",
  9162. image: {
  9163. source: "./media/characters/aura-starwind/taur.svg",
  9164. extra: 1760 / 1650
  9165. }
  9166. },
  9167. feral: {
  9168. height: math.unit(46, "feet"),
  9169. weight: math.unit(25000, "kg"),
  9170. preyCapacity: math.unit(120, "people"),
  9171. name: "Feral",
  9172. image: {
  9173. source: "./media/characters/aura-starwind/feral.svg"
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(14, "feet"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(50, "meters")
  9186. },
  9187. {
  9188. name: "Megamacro",
  9189. height: math.unit(5000, "meters")
  9190. },
  9191. {
  9192. name: "Gigamacro",
  9193. height: math.unit(100000, "kilometers")
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9199. {
  9200. front: {
  9201. height: math.unit(2 + 7 / 12, "feet"),
  9202. weight: math.unit(32, "lbs"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/rivet/front.svg",
  9206. extra: 1716 / 1658,
  9207. bottom: 0.03
  9208. }
  9209. },
  9210. foot: {
  9211. height: math.unit(0.551, "feet"),
  9212. name: "Rivet's Foot",
  9213. image: {
  9214. source: "./media/characters/rivet/foot.svg"
  9215. },
  9216. rename: true
  9217. }
  9218. },
  9219. [
  9220. {
  9221. name: "Micro",
  9222. height: math.unit(1.5, "inches"),
  9223. },
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(2 + 7 / 12, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(85, "feet")
  9232. },
  9233. {
  9234. name: "Megamacro",
  9235. height: math.unit(2.2, "km")
  9236. }
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(5 + 9 / 12, "feet"),
  9244. weight: math.unit(150, "lbs"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/coffee/front.svg",
  9248. extra: 946/880,
  9249. bottom: 66/1012
  9250. }
  9251. },
  9252. foot: {
  9253. height: math.unit(1.29, "feet"),
  9254. name: "Foot",
  9255. image: {
  9256. source: "./media/characters/coffee/foot.svg"
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Micro",
  9263. height: math.unit(2, "inches"),
  9264. },
  9265. {
  9266. name: "Normal",
  9267. height: math.unit(5 + 9 / 12, "feet"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Macro",
  9272. height: math.unit(800, "feet")
  9273. },
  9274. {
  9275. name: "Megamacro",
  9276. height: math.unit(25, "miles")
  9277. }
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(6, "feet"),
  9285. weight: math.unit(200, "lbs"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/chari-gal/front.svg",
  9289. extra: 1568 / 1385,
  9290. bottom: 0.047
  9291. }
  9292. },
  9293. gigantamax: {
  9294. height: math.unit(6 * 16, "feet"),
  9295. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9296. name: "Gigantamax",
  9297. image: {
  9298. source: "./media/characters/chari-gal/gigantamax.svg",
  9299. extra: 1124 / 888,
  9300. bottom: 0.03
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(5 + 7 / 12, "feet")
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(200, "feet"),
  9312. default: true
  9313. }
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(150, "lbs"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/nova/front.svg",
  9325. extra: 5000 / 4722,
  9326. bottom: 0.02
  9327. }
  9328. }
  9329. },
  9330. [
  9331. {
  9332. name: "Micro-",
  9333. height: math.unit(0.8, "inches")
  9334. },
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(2, "inches"),
  9338. default: true
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9344. {
  9345. koboldFront: {
  9346. height: math.unit(3 + 1 / 12, "feet"),
  9347. weight: math.unit(21.7, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/argent/kobold-front.svg",
  9351. extra: 1471 / 1331,
  9352. bottom: 100.8 / 1575.5
  9353. },
  9354. form: "kobold",
  9355. default: true
  9356. },
  9357. dragonFront: {
  9358. height: math.unit(75, "inches"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/argent/dragon-front.svg",
  9362. extra: 1389/1248,
  9363. bottom: 54/1443
  9364. },
  9365. form: "dragon",
  9366. },
  9367. dragonBack: {
  9368. height: math.unit(75, "inches"),
  9369. name: "Back",
  9370. image: {
  9371. source: "./media/characters/argent/dragon-back.svg",
  9372. extra: 1399/1271,
  9373. bottom: 23/1422
  9374. },
  9375. form: "dragon",
  9376. },
  9377. dragonDressed: {
  9378. height: math.unit(75, "inches"),
  9379. name: "Dressed",
  9380. image: {
  9381. source: "./media/characters/argent/dragon-dressed.svg",
  9382. extra: 1350/1215,
  9383. bottom: 26/1376
  9384. },
  9385. form: "dragon"
  9386. },
  9387. dragonHead: {
  9388. height: math.unit(23.5, "inches"),
  9389. name: "Head",
  9390. image: {
  9391. source: "./media/characters/argent/dragon-head.svg"
  9392. },
  9393. form: "dragon",
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(2, "inches"),
  9400. form: "kobold",
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(3 + 1 / 12, "feet"),
  9405. form: "kobold",
  9406. default: true
  9407. },
  9408. {
  9409. name: "Macro",
  9410. height: math.unit(120, "feet"),
  9411. form: "kobold",
  9412. },
  9413. {
  9414. name: "Speck",
  9415. height: math.unit(1, "mm"),
  9416. form: "dragon",
  9417. },
  9418. {
  9419. name: "Tiny",
  9420. height: math.unit(1, "cm"),
  9421. form: "dragon",
  9422. },
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(5, "cm"),
  9426. form: "dragon",
  9427. },
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(75, "inches"),
  9431. form: "dragon",
  9432. default: true
  9433. },
  9434. {
  9435. name: "Extra Tall",
  9436. height: math.unit(9, "feet"),
  9437. form: "dragon",
  9438. },
  9439. {
  9440. name: "Inconvenient",
  9441. height: math.unit(5, "meters"),
  9442. form: "dragon",
  9443. },
  9444. {
  9445. name: "Macro",
  9446. height: math.unit(70, "meters"),
  9447. form: "dragon",
  9448. },
  9449. {
  9450. name: "Macro+",
  9451. height: math.unit(250, "meters"),
  9452. form: "dragon",
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(20, "km"),
  9457. form: "dragon",
  9458. },
  9459. {
  9460. name: "Mountainous",
  9461. height: math.unit(100, "km"),
  9462. form: "dragon",
  9463. },
  9464. {
  9465. name: "Continental",
  9466. height: math.unit(2, "megameters"),
  9467. form: "dragon",
  9468. },
  9469. {
  9470. name: "Too Big",
  9471. height: math.unit(900, "megameters"),
  9472. form: "dragon",
  9473. },
  9474. ],
  9475. {
  9476. "kobold": {
  9477. name: "Kobold",
  9478. default: true
  9479. },
  9480. "dragon": {
  9481. name: "Dragon",
  9482. },
  9483. }
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9487. {
  9488. lamp: {
  9489. height: math.unit(7 * 1559 / 989, "feet"),
  9490. name: "Magic Lamp",
  9491. image: {
  9492. source: "./media/characters/mira-al-cul/lamp.svg",
  9493. extra: 1617 / 1559
  9494. }
  9495. },
  9496. front: {
  9497. height: math.unit(7, "feet"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/mira-al-cul/front.svg",
  9501. extra: 1044 / 990
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Heavily Restricted",
  9508. height: math.unit(7 * 1559 / 989, "feet")
  9509. },
  9510. {
  9511. name: "Freshly Freed",
  9512. height: math.unit(50 * 1559 / 989, "feet")
  9513. },
  9514. {
  9515. name: "World Encompassing",
  9516. height: math.unit(10000 * 1559 / 989, "miles")
  9517. },
  9518. {
  9519. name: "Galactic",
  9520. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9521. },
  9522. {
  9523. name: "Palmed Universe",
  9524. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9525. default: true
  9526. },
  9527. {
  9528. name: "Multiversal Matriarch",
  9529. height: math.unit(8.87e10, "yottameters")
  9530. },
  9531. {
  9532. name: "Void Mother",
  9533. height: math.unit(3.14e110, "yottaparsecs")
  9534. },
  9535. {
  9536. name: "Toying with Transcendence",
  9537. height: math.unit(1e307, "meters")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9543. {
  9544. front: {
  9545. height: math.unit(17 + 1 / 12, "feet"),
  9546. weight: math.unit(476.2 * 5, "lbs"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/kuro-shi-uchū/front.svg",
  9550. extra: 2329 / 1835,
  9551. bottom: 0.02
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(2, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(12, "meters")
  9563. },
  9564. {
  9565. name: "Planetary",
  9566. height: math.unit(0.00929, "AU"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Universal",
  9571. height: math.unit(20, "gigaparsecs")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(5 + 2 / 12, "feet"),
  9580. weight: math.unit(120, "lbs"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/katherine/front.svg",
  9584. extra: 2075 / 1969
  9585. }
  9586. },
  9587. dress: {
  9588. height: math.unit(5 + 2 / 12, "feet"),
  9589. weight: math.unit(120, "lbs"),
  9590. name: "Dress",
  9591. image: {
  9592. source: "./media/characters/katherine/dress.svg",
  9593. extra: 2258 / 2064
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(1, "inches"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(5 + 2 / 12, "feet")
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(100, "meters")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(80, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(7 + 8 / 12, "feet"),
  9622. weight: math.unit(250, "lbs"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/yevis/front.svg",
  9626. extra: 1938 / 1755
  9627. }
  9628. }
  9629. },
  9630. [
  9631. {
  9632. name: "Mortal",
  9633. height: math.unit(7 + 8 / 12, "feet")
  9634. },
  9635. {
  9636. name: "Battle",
  9637. height: math.unit(25 + 11 / 12, "feet")
  9638. },
  9639. {
  9640. name: "Wrath",
  9641. height: math.unit(1654 + 11 / 12, "feet")
  9642. },
  9643. {
  9644. name: "Planet Destroyer",
  9645. height: math.unit(12000, "miles")
  9646. },
  9647. {
  9648. name: "Galaxy Conqueror",
  9649. height: math.unit(1.45, "zettameters"),
  9650. default: true
  9651. },
  9652. {
  9653. name: "Universal War",
  9654. height: math.unit(184, "gigaparsecs")
  9655. },
  9656. {
  9657. name: "Eternity War",
  9658. height: math.unit(1.98e55, "yottaparsecs")
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(5 + 8 / 12, "feet"),
  9667. weight: math.unit(63, "kg"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/xavier/front.svg",
  9671. extra: 944 / 883
  9672. }
  9673. },
  9674. frontStretch: {
  9675. height: math.unit(5 + 8 / 12, "feet"),
  9676. weight: math.unit(63, "kg"),
  9677. name: "Stretching",
  9678. image: {
  9679. source: "./media/characters/xavier/front-stretch.svg",
  9680. extra: 962 / 820
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(5 + 8 / 12, "feet")
  9688. },
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(100, "meters"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "McLargeHuge",
  9696. height: math.unit(10, "miles")
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(5 + 5 / 12, "feet"),
  9705. weight: math.unit(150, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/joshii/front.svg",
  9709. extra: 765 / 653,
  9710. bottom: 51 / 816
  9711. }
  9712. },
  9713. foot: {
  9714. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9715. name: "Foot",
  9716. image: {
  9717. source: "./media/characters/joshii/foot.svg"
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(2, "inches")
  9725. },
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(5 + 5 / 12, "feet")
  9729. },
  9730. {
  9731. name: "Macro",
  9732. height: math.unit(785, "feet"),
  9733. default: true
  9734. },
  9735. {
  9736. name: "Megamacro",
  9737. height: math.unit(24.5, "miles")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(6, "feet"),
  9746. weight: math.unit(150, "lb"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/goddess-elizabeth/front.svg",
  9750. extra: 1800 / 1525,
  9751. bottom: 0.005
  9752. }
  9753. },
  9754. foot: {
  9755. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9756. name: "Foot",
  9757. image: {
  9758. source: "./media/characters/goddess-elizabeth/foot.svg"
  9759. }
  9760. },
  9761. mouth: {
  9762. height: math.unit(6, "feet"),
  9763. name: "Mouth",
  9764. image: {
  9765. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Micro",
  9772. height: math.unit(12, "feet")
  9773. },
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(80, "miles"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(15000, "parsecs")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(5 + 9 / 12, "feet"),
  9790. weight: math.unit(144, "lb"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/kara/front.svg"
  9794. }
  9795. },
  9796. feet: {
  9797. height: math.unit(6 / 6.765, "feet"),
  9798. name: "Kara's Feet",
  9799. rename: true,
  9800. image: {
  9801. source: "./media/characters/kara/feet.svg"
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(5 + 9 / 12, "feet")
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(174, "feet"),
  9813. default: true
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(18, "feet"),
  9822. weight: math.unit(4050, "lb"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/tyrone/front.svg",
  9826. extra: 2405 / 2270,
  9827. bottom: 182 / 2587
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(18, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(300, "feet")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(15, "km")
  9844. },
  9845. {
  9846. name: "Gigamacro",
  9847. height: math.unit(500, "km")
  9848. },
  9849. {
  9850. name: "Teramacro",
  9851. height: math.unit(0.5, "gigameters")
  9852. },
  9853. {
  9854. name: "Omnimacro",
  9855. height: math.unit(1e252, "yottauniverse")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(7 + 8 / 12, "feet"),
  9864. weight: math.unit(120, "lb"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/danny/front.svg",
  9868. extra: 1490 / 1350
  9869. }
  9870. },
  9871. back: {
  9872. height: math.unit(7 + 8 / 12, "feet"),
  9873. weight: math.unit(120, "lb"),
  9874. name: "Back",
  9875. image: {
  9876. source: "./media/characters/danny/back.svg",
  9877. extra: 1490 / 1350
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(7 + 8 / 12, "feet"),
  9885. default: true
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(3.5, "inches"),
  9894. weight: math.unit(19, "grams"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/mallow/front.svg",
  9898. extra: 471 / 431
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(3.5, "inches"),
  9903. weight: math.unit(19, "grams"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/mallow/back.svg",
  9907. extra: 471 / 431
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(3.5, "inches"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(9, "feet"),
  9924. weight: math.unit(230, "kg"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/starry-aqua/front.svg"
  9928. }
  9929. },
  9930. back: {
  9931. height: math.unit(9, "feet"),
  9932. weight: math.unit(230, "kg"),
  9933. name: "Back",
  9934. image: {
  9935. source: "./media/characters/starry-aqua/back.svg"
  9936. }
  9937. },
  9938. hand: {
  9939. height: math.unit(9 * 0.1168, "feet"),
  9940. name: "Hand",
  9941. image: {
  9942. source: "./media/characters/starry-aqua/hand.svg"
  9943. }
  9944. },
  9945. foot: {
  9946. height: math.unit(9 * 0.18, "feet"),
  9947. name: "Foot",
  9948. image: {
  9949. source: "./media/characters/starry-aqua/foot.svg"
  9950. }
  9951. }
  9952. },
  9953. [
  9954. {
  9955. name: "Micro",
  9956. height: math.unit(3, "inches")
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(9, "feet")
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(300, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(3200, "feet")
  9970. }
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(15, "feet"),
  9978. weight: math.unit(5026, "lb"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/luka-towers/front.svg",
  9982. extra: 1269/1133,
  9983. bottom: 51/1320
  9984. }
  9985. },
  9986. },
  9987. [
  9988. {
  9989. name: "Normal",
  9990. height: math.unit(15, "feet"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Minimacro",
  9995. height: math.unit(25, "feet")
  9996. },
  9997. {
  9998. name: "Macro",
  9999. height: math.unit(320, "feet")
  10000. },
  10001. {
  10002. name: "Megamacro",
  10003. height: math.unit(35000, "feet")
  10004. },
  10005. {
  10006. name: "Gigamacro",
  10007. height: math.unit(4000, "miles")
  10008. },
  10009. {
  10010. name: "Teramacro",
  10011. height: math.unit(15000, "miles")
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(150, "lb"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/natalie-nightring/front.svg",
  10024. extra: 1,
  10025. bottom: 0.06
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Uh Oh",
  10032. height: math.unit(0.1, "mm")
  10033. },
  10034. {
  10035. name: "Small",
  10036. height: math.unit(3, "inches")
  10037. },
  10038. {
  10039. name: "Human Scale",
  10040. height: math.unit(6, "feet")
  10041. },
  10042. {
  10043. name: "Librarian",
  10044. height: math.unit(50, "feet"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Immense",
  10049. height: math.unit(200, "miles")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(180, "lbs"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/danni-rosie/front.svg",
  10062. extra: 1260 / 1128,
  10063. bottom: 0.022
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Micro",
  10070. height: math.unit(2, "inches"),
  10071. default: true
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(5 + 9 / 12, "feet"),
  10080. weight: math.unit(220, "lb"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/samantha-kruse/front.svg",
  10084. extra: (985 / 935),
  10085. bottom: 0.03
  10086. }
  10087. },
  10088. frontUndressed: {
  10089. height: math.unit(5 + 9 / 12, "feet"),
  10090. weight: math.unit(220, "lb"),
  10091. name: "Front (Undressed)",
  10092. image: {
  10093. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10094. extra: (973 / 923),
  10095. bottom: 0.025
  10096. }
  10097. },
  10098. fat: {
  10099. height: math.unit(5 + 9 / 12, "feet"),
  10100. weight: math.unit(900, "lb"),
  10101. name: "Front (Fat)",
  10102. image: {
  10103. source: "./media/characters/samantha-kruse/fat.svg",
  10104. extra: 2688 / 2561
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(5 + 9 / 12, "feet"),
  10112. default: true
  10113. }
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10118. {
  10119. back: {
  10120. height: math.unit(5 + 4 / 12, "feet"),
  10121. weight: math.unit(4963, "lb"),
  10122. name: "Back",
  10123. image: {
  10124. source: "./media/characters/amelia-rosie/back.svg",
  10125. extra: 1113 / 963,
  10126. bottom: 0.01
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Level 0",
  10133. height: math.unit(5 + 4 / 12, "feet")
  10134. },
  10135. {
  10136. name: "Level 1",
  10137. height: math.unit(164597, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Level 2",
  10142. height: math.unit(956243, "miles")
  10143. },
  10144. {
  10145. name: "Level 3",
  10146. height: math.unit(29421709423, "miles")
  10147. },
  10148. {
  10149. name: "Level 4",
  10150. height: math.unit(154, "lightyears")
  10151. },
  10152. {
  10153. name: "Level 5",
  10154. height: math.unit(4738272, "lightyears")
  10155. },
  10156. {
  10157. name: "Level 6",
  10158. height: math.unit(145787152896, "lightyears")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(5 + 11 / 12, "feet"),
  10167. weight: math.unit(65, "kg"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/rook-kitara/front.svg",
  10171. extra: 1347 / 1274,
  10172. bottom: 0.005
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Totally Unfair",
  10179. height: math.unit(1.8, "mm")
  10180. },
  10181. {
  10182. name: "Lap Rookie",
  10183. height: math.unit(1.4, "feet")
  10184. },
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(5 + 11 / 12, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "How Did This Happen",
  10192. height: math.unit(80, "miles")
  10193. }
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(7, "feet"),
  10201. weight: math.unit(300, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/pisces/front.svg",
  10205. extra: 2255 / 2115,
  10206. bottom: 0.03
  10207. }
  10208. },
  10209. back: {
  10210. height: math.unit(7, "feet"),
  10211. weight: math.unit(300, "lb"),
  10212. name: "Back",
  10213. image: {
  10214. source: "./media/characters/pisces/back.svg",
  10215. extra: 2146 / 2055,
  10216. bottom: 0.04
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(7, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Swimming Pool",
  10228. height: math.unit(12.2, "meters")
  10229. },
  10230. {
  10231. name: "Olympic Swimming Pool",
  10232. height: math.unit(56.3, "meters")
  10233. },
  10234. {
  10235. name: "Lake Superior",
  10236. height: math.unit(93900, "meters")
  10237. },
  10238. {
  10239. name: "Mediterranean Sea",
  10240. height: math.unit(644457, "meters")
  10241. },
  10242. {
  10243. name: "World's Oceans",
  10244. height: math.unit(4567491, "meters")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(2.3, "meters"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/zelas/front.svg"
  10257. }
  10258. },
  10259. side: {
  10260. height: math.unit(2.3, "meters"),
  10261. weight: math.unit(120, "kg"),
  10262. name: "Side",
  10263. image: {
  10264. source: "./media/characters/zelas/side.svg"
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(2.3, "meters"),
  10269. weight: math.unit(120, "kg"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/zelas/back.svg"
  10273. }
  10274. },
  10275. foot: {
  10276. height: math.unit(1.116, "feet"),
  10277. name: "Foot",
  10278. image: {
  10279. source: "./media/characters/zelas/foot.svg"
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(2.3, "meters")
  10287. },
  10288. {
  10289. name: "Macro",
  10290. height: math.unit(30, "meters"),
  10291. default: true
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10297. {
  10298. front: {
  10299. height: math.unit(1, "inch"),
  10300. weight: math.unit(0.21, "grams"),
  10301. name: "Front",
  10302. image: {
  10303. source: "./media/characters/talbot/front.svg",
  10304. extra: 594 / 544
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Micro",
  10311. height: math.unit(1, "inch"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10318. {
  10319. front: {
  10320. height: math.unit(3 + 3 / 12, "feet"),
  10321. weight: math.unit(51.8, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/fliss/front.svg",
  10325. extra: 840 / 640
  10326. }
  10327. },
  10328. },
  10329. [
  10330. {
  10331. name: "Teeny Tiny",
  10332. height: math.unit(1, "mm")
  10333. },
  10334. {
  10335. name: "Small",
  10336. height: math.unit(1, "inch"),
  10337. default: true
  10338. },
  10339. {
  10340. name: "Standard Sylveon",
  10341. height: math.unit(3 + 3 / 12, "feet")
  10342. },
  10343. {
  10344. name: "Large Nuisance",
  10345. height: math.unit(33, "feet")
  10346. },
  10347. {
  10348. name: "City Filler",
  10349. height: math.unit(3000, "feet")
  10350. },
  10351. {
  10352. name: "New Horizon",
  10353. height: math.unit(6000, "miles")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(5, "cm"),
  10362. weight: math.unit(1.94, "g"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/fleta/front.svg",
  10366. extra: 835 / 803
  10367. }
  10368. },
  10369. back: {
  10370. height: math.unit(5, "cm"),
  10371. weight: math.unit(1.94, "g"),
  10372. name: "Back",
  10373. image: {
  10374. source: "./media/characters/fleta/back.svg",
  10375. extra: 835 / 803
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Micro",
  10382. height: math.unit(5, "cm"),
  10383. default: true
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(225, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/dominic/front.svg",
  10396. extra: 1770 / 1620,
  10397. bottom: 0.025
  10398. }
  10399. },
  10400. back: {
  10401. height: math.unit(6, "feet"),
  10402. weight: math.unit(225, "lb"),
  10403. name: "Back",
  10404. image: {
  10405. source: "./media/characters/dominic/back.svg",
  10406. extra: 1745 / 1620,
  10407. bottom: 0.065
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Nano",
  10414. height: math.unit(0.1, "mm")
  10415. },
  10416. {
  10417. name: "Micro-",
  10418. height: math.unit(1, "mm")
  10419. },
  10420. {
  10421. name: "Micro",
  10422. height: math.unit(4, "inches")
  10423. },
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(6 + 4 / 12, "feet"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(115, "feet")
  10432. },
  10433. {
  10434. name: "Macro+",
  10435. height: math.unit(955, "feet")
  10436. },
  10437. {
  10438. name: "Megamacro",
  10439. height: math.unit(8990, "feet")
  10440. },
  10441. {
  10442. name: "Gigmacro",
  10443. height: math.unit(9310, "miles")
  10444. },
  10445. {
  10446. name: "Teramacro",
  10447. height: math.unit(1567005010, "miles")
  10448. },
  10449. {
  10450. name: "Examacro",
  10451. height: math.unit(1425, "parsecs")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(400, "feet"),
  10460. weight: math.unit(44444444, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/major-colonel/front.svg"
  10464. }
  10465. },
  10466. back: {
  10467. height: math.unit(400, "feet"),
  10468. weight: math.unit(44444444, "lb"),
  10469. name: "Back",
  10470. image: {
  10471. source: "./media/characters/major-colonel/back.svg"
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Macro",
  10478. height: math.unit(400, "feet"),
  10479. default: true
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10485. {
  10486. catFront: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(120, "lb"),
  10489. name: "Front (Cat Side)",
  10490. image: {
  10491. source: "./media/characters/axel-lycan/cat-front.svg",
  10492. extra: 430 / 402,
  10493. bottom: 43 / 472.35
  10494. }
  10495. },
  10496. catBack: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(120, "lb"),
  10499. name: "Back (Cat Side)",
  10500. image: {
  10501. source: "./media/characters/axel-lycan/cat-back.svg",
  10502. extra: 447 / 419,
  10503. bottom: 23.3 / 469
  10504. }
  10505. },
  10506. wolfFront: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(120, "lb"),
  10509. name: "Front (Wolf Side)",
  10510. image: {
  10511. source: "./media/characters/axel-lycan/wolf-front.svg",
  10512. extra: 485 / 456,
  10513. bottom: 19 / 504
  10514. }
  10515. },
  10516. wolfBack: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(120, "lb"),
  10519. name: "Back (Wolf Side)",
  10520. image: {
  10521. source: "./media/characters/axel-lycan/wolf-back.svg",
  10522. extra: 475 / 438,
  10523. bottom: 39.2 / 514
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(1, "km"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(5 + 9 / 12, "feet"),
  10540. weight: math.unit(175, "lb"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/vanrel-hyena/front.svg",
  10544. extra: 1086 / 1010,
  10545. bottom: 0.04
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(5 + 9 / 12, "feet"),
  10553. default: true
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(103, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/abbott-absol/front.svg",
  10566. extra: 2010 / 1842
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Megamicro",
  10573. height: math.unit(0.1, "mm")
  10574. },
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(1, "inch")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(6, "feet"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(264, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/hector/front.svg",
  10595. extra: 2280 / 2130,
  10596. bottom: 0.07
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(12.25, "foot"),
  10604. default: true
  10605. },
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(160, "feet")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(150, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/sal/front.svg",
  10621. extra: 1846 / 1699,
  10622. bottom: 0.04
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Megamacro",
  10629. height: math.unit(10, "miles"),
  10630. default: true
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10636. {
  10637. front: {
  10638. height: math.unit(3, "meters"),
  10639. weight: math.unit(450, "kg"),
  10640. name: "front",
  10641. image: {
  10642. source: "./media/characters/ranger/front.svg",
  10643. extra: 2401 / 2243,
  10644. bottom: 0.05
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(3, "meters"),
  10652. default: true
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10658. {
  10659. front: {
  10660. height: math.unit(14, "feet"),
  10661. weight: math.unit(800, "kg"),
  10662. name: "Front",
  10663. image: {
  10664. source: "./media/characters/theresa/front.svg",
  10665. extra: 3575 / 3346,
  10666. bottom: 0.03
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(14, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(3, "kg"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/ine/front.svg",
  10687. extra: 678 / 539,
  10688. bottom: 0.023
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(2.265, "feet"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(5, "feet"),
  10705. weight: math.unit(30, "kg"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/vial/front.svg",
  10709. extra: 1365 / 1277,
  10710. bottom: 0.04
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5, "feet"),
  10718. default: true
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10724. {
  10725. side: {
  10726. height: math.unit(3.4, "meters"),
  10727. weight: math.unit(1000, "lb"),
  10728. name: "Side",
  10729. image: {
  10730. source: "./media/characters/rovoska/side.svg",
  10731. extra: 4403 / 1515
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(3.4, "meters"),
  10739. default: true
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(8, "feet"),
  10748. weight: math.unit(315, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/gunner-rotthbauer/front.svg"
  10752. }
  10753. },
  10754. back: {
  10755. height: math.unit(8, "feet"),
  10756. weight: math.unit(315, "lb"),
  10757. name: "Back",
  10758. image: {
  10759. source: "./media/characters/gunner-rotthbauer/back.svg"
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(3.5, "inches")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(8, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(250, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(1, "AU")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(5 + 5 / 12, "feet"),
  10788. weight: math.unit(140, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/allatia/front.svg",
  10792. extra: 1227 / 1180,
  10793. bottom: 0.027
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(5 + 5 / 12, "feet")
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(250, "feet"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Megamacro",
  10809. height: math.unit(8, "miles")
  10810. }
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(6, "feet"),
  10818. weight: math.unit(120, "lb"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/tene/front.svg",
  10822. extra: 814/750,
  10823. bottom: 36/850
  10824. }
  10825. },
  10826. stomping: {
  10827. height: math.unit(2.025, "meters"),
  10828. weight: math.unit(120, "lb"),
  10829. name: "Stomping",
  10830. image: {
  10831. source: "./media/characters/tene/stomping.svg",
  10832. extra: 885/821,
  10833. bottom: 15/900
  10834. }
  10835. },
  10836. sitting: {
  10837. height: math.unit(1, "meter"),
  10838. weight: math.unit(120, "lb"),
  10839. name: "Sitting",
  10840. image: {
  10841. source: "./media/characters/tene/sitting.svg",
  10842. extra: 396/366,
  10843. bottom: 79/475
  10844. }
  10845. },
  10846. smiling: {
  10847. height: math.unit(1.2, "feet"),
  10848. name: "Smiling",
  10849. image: {
  10850. source: "./media/characters/tene/smiling.svg",
  10851. extra: 1364/1071,
  10852. bottom: 0/1364
  10853. }
  10854. },
  10855. smug: {
  10856. height: math.unit(1.3, "feet"),
  10857. name: "Smug",
  10858. image: {
  10859. source: "./media/characters/tene/smug.svg",
  10860. extra: 1323/1082,
  10861. bottom: 0/1323
  10862. }
  10863. },
  10864. feral: {
  10865. height: math.unit(3.9, "feet"),
  10866. weight: math.unit(250, "lb"),
  10867. name: "Feral",
  10868. image: {
  10869. source: "./media/characters/tene/feral.svg",
  10870. extra: 717 / 458,
  10871. bottom: 0.179
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(6, "feet")
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(300, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(5, "miles")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10893. {
  10894. side: {
  10895. height: math.unit(6, "feet"),
  10896. name: "Side",
  10897. image: {
  10898. source: "./media/characters/evander/side.svg",
  10899. extra: 877 / 477
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(0.83, "meters"),
  10907. default: true
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(12, "feet"),
  10916. weight: math.unit(1000, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10920. extra: 1762 / 1611
  10921. }
  10922. },
  10923. back: {
  10924. height: math.unit(12, "feet"),
  10925. weight: math.unit(1000, "lb"),
  10926. name: "Back",
  10927. image: {
  10928. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10929. extra: 1762 / 1611
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(12, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Kaiju",
  10941. height: math.unit(150, "feet")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/zero-alurus/front.svg"
  10954. }
  10955. },
  10956. back: {
  10957. height: math.unit(6, "feet"),
  10958. weight: math.unit(150, "lb"),
  10959. name: "Back",
  10960. image: {
  10961. source: "./media/characters/zero-alurus/back.svg"
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(5 + 10 / 12, "feet")
  10969. },
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(60, "feet"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Macro+",
  10977. height: math.unit(450, "feet")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(200, "lb"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/mega-shi/front.svg",
  10990. extra: 1279 / 1250,
  10991. bottom: 0.02
  10992. }
  10993. },
  10994. back: {
  10995. height: math.unit(6, "feet"),
  10996. weight: math.unit(200, "lb"),
  10997. name: "Back",
  10998. image: {
  10999. source: "./media/characters/mega-shi/back.svg",
  11000. extra: 1279 / 1250,
  11001. bottom: 0.02
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Micro",
  11008. height: math.unit(16 + 6 / 12, "feet")
  11009. },
  11010. {
  11011. name: "Third Dimension",
  11012. height: math.unit(40, "meters")
  11013. },
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(660, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(10, "miles")
  11022. },
  11023. {
  11024. name: "Planetary Launch",
  11025. height: math.unit(500, "miles")
  11026. },
  11027. {
  11028. name: "Interstellar",
  11029. height: math.unit(1e9, "miles")
  11030. },
  11031. {
  11032. name: "Leaving the Universe",
  11033. height: math.unit(1, "gigaparsec")
  11034. },
  11035. {
  11036. name: "Travelling Universes",
  11037. height: math.unit(30e15, "parsecs")
  11038. },
  11039. ]
  11040. ))
  11041. characterMakers.push(() => makeCharacter(
  11042. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11043. {
  11044. front: {
  11045. height: math.unit(5 + 4/12, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Front",
  11048. image: {
  11049. source: "./media/characters/odyssey/front.svg",
  11050. extra: 1747/1571,
  11051. bottom: 47/1794
  11052. }
  11053. },
  11054. side: {
  11055. height: math.unit(5.1, "feet"),
  11056. weight: math.unit(120, "lb"),
  11057. name: "Side",
  11058. image: {
  11059. source: "./media/characters/odyssey/side.svg",
  11060. extra: 1847/1619,
  11061. bottom: 47/1894
  11062. }
  11063. },
  11064. lounging: {
  11065. height: math.unit(1.464, "feet"),
  11066. weight: math.unit(120, "lb"),
  11067. name: "Lounging",
  11068. image: {
  11069. source: "./media/characters/odyssey/lounging.svg",
  11070. extra: 1235/837,
  11071. bottom: 551/1786
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(5 + 4 / 12, "feet")
  11079. },
  11080. {
  11081. name: "Macro",
  11082. height: math.unit(1, "km")
  11083. },
  11084. {
  11085. name: "Megamacro",
  11086. height: math.unit(3000, "km")
  11087. },
  11088. {
  11089. name: "Gigamacro",
  11090. height: math.unit(1, "AU"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Omniversal",
  11095. height: math.unit(100e14, "lightyears")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(300, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/mekuto/front.svg",
  11108. extra: 921 / 832,
  11109. bottom: 0.03
  11110. }
  11111. },
  11112. hand: {
  11113. height: math.unit(6 / 10.24, "feet"),
  11114. name: "Hand",
  11115. image: {
  11116. source: "./media/characters/mekuto/hand.svg"
  11117. }
  11118. },
  11119. foot: {
  11120. height: math.unit(6 / 5.05, "feet"),
  11121. name: "Foot",
  11122. image: {
  11123. source: "./media/characters/mekuto/foot.svg"
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Minimicro",
  11130. height: math.unit(0.2, "inches")
  11131. },
  11132. {
  11133. name: "Micro",
  11134. height: math.unit(1.5, "inches")
  11135. },
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(5 + 11 / 12, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Minimacro",
  11143. height: math.unit(17 + 9 / 12, "feet")
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(177.5, "feet")
  11148. },
  11149. {
  11150. name: "Megamacro",
  11151. height: math.unit(152, "miles")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6.5, "inches"),
  11160. weight: math.unit(13, "oz"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/dafydd-tomos/front.svg",
  11164. extra: 2990 / 2603,
  11165. bottom: 0.03
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Micro",
  11172. height: math.unit(6.5, "inches"),
  11173. default: true
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11179. {
  11180. front: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(150, "lb"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/splinter/front.svg",
  11186. extra: 2990 / 2882,
  11187. bottom: 0.04
  11188. }
  11189. },
  11190. back: {
  11191. height: math.unit(6, "feet"),
  11192. weight: math.unit(150, "lb"),
  11193. name: "Back",
  11194. image: {
  11195. source: "./media/characters/splinter/back.svg",
  11196. extra: 2990 / 2882,
  11197. bottom: 0.04
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(6, "feet")
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(230, "meters"),
  11209. default: true
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(4 + 10 / 12, "feet"),
  11218. weight: math.unit(480, "lb"),
  11219. name: "Front",
  11220. image: {
  11221. source: "./media/characters/snow-gabumon/front.svg",
  11222. extra: 1140 / 963,
  11223. bottom: 0.058
  11224. }
  11225. },
  11226. back: {
  11227. height: math.unit(4 + 10 / 12, "feet"),
  11228. weight: math.unit(480, "lb"),
  11229. name: "Back",
  11230. image: {
  11231. source: "./media/characters/snow-gabumon/back.svg",
  11232. extra: 1115 / 962,
  11233. bottom: 0.041
  11234. }
  11235. },
  11236. frontUndresed: {
  11237. height: math.unit(4 + 10 / 12, "feet"),
  11238. weight: math.unit(480, "lb"),
  11239. name: "Front (Undressed)",
  11240. image: {
  11241. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11242. extra: 1061 / 960,
  11243. bottom: 0.045
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Micro",
  11250. height: math.unit(1, "inch")
  11251. },
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(4 + 10 / 12, "feet"),
  11255. default: true
  11256. },
  11257. {
  11258. name: "Macro",
  11259. height: math.unit(200, "feet")
  11260. },
  11261. {
  11262. name: "Megamacro",
  11263. height: math.unit(120, "miles")
  11264. },
  11265. {
  11266. name: "Gigamacro",
  11267. height: math.unit(9800, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(1.7, "meters"),
  11276. weight: math.unit(140, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/moody/front.svg",
  11280. extra: 3226 / 3007,
  11281. bottom: 0.087
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Micro",
  11288. height: math.unit(1, "mm")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(1.7, "meters"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Macro",
  11297. height: math.unit(80, "meters")
  11298. },
  11299. {
  11300. name: "Macro+",
  11301. height: math.unit(500, "meters")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/zyas/front.svg",
  11314. extra: 1180 / 1120,
  11315. bottom: 0.045
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(10, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(500, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(5, "miles")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(150000, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/cuon/front.svg",
  11348. extra: 1390 / 1320,
  11349. bottom: 0.008
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Micro",
  11356. height: math.unit(3, "inches")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(18 + 9 / 12, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(360, "feet")
  11366. },
  11367. {
  11368. name: "Megamacro",
  11369. height: math.unit(360, "miles")
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11375. {
  11376. front: {
  11377. height: math.unit(2.4, "meters"),
  11378. weight: math.unit(70, "kg"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/nyanuxk/front.svg",
  11382. extra: 1172 / 1084,
  11383. bottom: 0.065
  11384. }
  11385. },
  11386. side: {
  11387. height: math.unit(2.4, "meters"),
  11388. weight: math.unit(70, "kg"),
  11389. name: "Side",
  11390. image: {
  11391. source: "./media/characters/nyanuxk/side.svg",
  11392. extra: 1190 / 1132,
  11393. bottom: 0.007
  11394. }
  11395. },
  11396. back: {
  11397. height: math.unit(2.4, "meters"),
  11398. weight: math.unit(70, "kg"),
  11399. name: "Back",
  11400. image: {
  11401. source: "./media/characters/nyanuxk/back.svg",
  11402. extra: 1200 / 1141,
  11403. bottom: 0.015
  11404. }
  11405. },
  11406. foot: {
  11407. height: math.unit(0.52, "meters"),
  11408. name: "Foot",
  11409. image: {
  11410. source: "./media/characters/nyanuxk/foot.svg"
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Micro",
  11417. height: math.unit(2, "cm")
  11418. },
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(2.4, "meters"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Smaller Macro",
  11426. height: math.unit(120, "meters")
  11427. },
  11428. {
  11429. name: "Bigger Macro",
  11430. height: math.unit(1.2, "km")
  11431. },
  11432. {
  11433. name: "Megamacro",
  11434. height: math.unit(15, "kilometers")
  11435. },
  11436. {
  11437. name: "Gigamacro",
  11438. height: math.unit(2000, "km")
  11439. },
  11440. {
  11441. name: "Teramacro",
  11442. height: math.unit(500000, "km")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11448. {
  11449. side: {
  11450. height: math.unit(6, "feet"),
  11451. name: "Side",
  11452. image: {
  11453. source: "./media/characters/ailbhe/side.svg",
  11454. extra: 757 / 464,
  11455. bottom: 0.041
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(1.07, "meters"),
  11463. default: true
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(120, "kg"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/zevulfius/front.svg",
  11476. extra: 965 / 903
  11477. }
  11478. },
  11479. side: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(120, "kg"),
  11482. name: "Side",
  11483. image: {
  11484. source: "./media/characters/zevulfius/side.svg",
  11485. extra: 939 / 900
  11486. }
  11487. },
  11488. back: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(120, "kg"),
  11491. name: "Back",
  11492. image: {
  11493. source: "./media/characters/zevulfius/back.svg",
  11494. extra: 918 / 854,
  11495. bottom: 0.005
  11496. }
  11497. },
  11498. foot: {
  11499. height: math.unit(6 / 3.72, "feet"),
  11500. name: "Foot",
  11501. image: {
  11502. source: "./media/characters/zevulfius/foot.svg"
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Macro",
  11509. height: math.unit(750, "meters")
  11510. },
  11511. {
  11512. name: "Megamacro",
  11513. height: math.unit(20, "km"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(2000, "km")
  11519. },
  11520. {
  11521. name: "Teramacro",
  11522. height: math.unit(250000, "km")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(100, "feet"),
  11531. weight: math.unit(350, "kg"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/rikes/front.svg",
  11535. extra: 1565 / 1483,
  11536. bottom: 0.017
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(100, "feet"),
  11544. default: true
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(8, "feet"),
  11553. weight: math.unit(356, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/adam-silver-mane/front.svg",
  11557. extra: 1036/937,
  11558. bottom: 63/1099
  11559. }
  11560. },
  11561. side: {
  11562. height: math.unit(8, "feet"),
  11563. weight: math.unit(356, "lb"),
  11564. name: "Side",
  11565. image: {
  11566. source: "./media/characters/adam-silver-mane/side.svg",
  11567. extra: 997/901,
  11568. bottom: 59/1056
  11569. }
  11570. },
  11571. frontNsfw: {
  11572. height: math.unit(8, "feet"),
  11573. weight: math.unit(356, "lb"),
  11574. name: "Front (NSFW)",
  11575. image: {
  11576. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11577. extra: 1036/937,
  11578. bottom: 63/1099
  11579. }
  11580. },
  11581. sideNsfw: {
  11582. height: math.unit(8, "feet"),
  11583. weight: math.unit(356, "lb"),
  11584. name: "Side (NSFW)",
  11585. image: {
  11586. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11587. extra: 997/901,
  11588. bottom: 59/1056
  11589. }
  11590. },
  11591. dick: {
  11592. height: math.unit(2.1, "feet"),
  11593. name: "Dick",
  11594. image: {
  11595. source: "./media/characters/adam-silver-mane/dick.svg"
  11596. }
  11597. },
  11598. taur: {
  11599. height: math.unit(16, "feet"),
  11600. weight: math.unit(1500, "kg"),
  11601. name: "Taur",
  11602. image: {
  11603. source: "./media/characters/adam-silver-mane/taur.svg",
  11604. extra: 1713 / 1571,
  11605. bottom: 0.01
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Normal",
  11612. height: math.unit(8, "feet")
  11613. },
  11614. {
  11615. name: "Minimacro",
  11616. height: math.unit(80, "feet")
  11617. },
  11618. {
  11619. name: "MDA",
  11620. height: math.unit(80, "meters")
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(800, "feet"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Megamacro",
  11629. height: math.unit(8000, "feet")
  11630. },
  11631. {
  11632. name: "Gigamacro",
  11633. height: math.unit(800, "miles")
  11634. },
  11635. {
  11636. name: "Teramacro",
  11637. height: math.unit(80000, "miles")
  11638. },
  11639. {
  11640. name: "Celestial",
  11641. height: math.unit(8e6, "miles")
  11642. },
  11643. {
  11644. name: "Star Dragon",
  11645. height: math.unit(800000, "parsecs")
  11646. },
  11647. {
  11648. name: "Godly",
  11649. height: math.unit(800, "teraparsecs")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(6, "feet"),
  11658. weight: math.unit(150, "lb"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/ky'owin/front.svg",
  11662. extra: 3862/3053,
  11663. bottom: 74/3936
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(6 + 8 / 12, "feet")
  11671. },
  11672. {
  11673. name: "Large",
  11674. height: math.unit(68, "feet")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(132, "feet")
  11679. },
  11680. {
  11681. name: "Macro+",
  11682. height: math.unit(340, "feet")
  11683. },
  11684. {
  11685. name: "Macro++",
  11686. height: math.unit(680, "feet"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(1, "mile")
  11692. },
  11693. {
  11694. name: "Megamacro+",
  11695. height: math.unit(10, "miles")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(4, "feet"),
  11704. weight: math.unit(50, "lb"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/mal/front.svg",
  11708. extra: 785 / 724,
  11709. bottom: 0.07
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Micro",
  11716. height: math.unit(4, "inches")
  11717. },
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(4, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(200, "feet")
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(6, "feet"),
  11734. weight: math.unit(150, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/jordan-deware/front.svg",
  11738. extra: 1191 / 1012
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Nano",
  11745. height: math.unit(0.01, "mm")
  11746. },
  11747. {
  11748. name: "Minimicro",
  11749. height: math.unit(1, "mm")
  11750. },
  11751. {
  11752. name: "Micro",
  11753. height: math.unit(0.5, "inches")
  11754. },
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(4, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Minimacro",
  11762. height: math.unit(40, "meters")
  11763. },
  11764. {
  11765. name: "Small Macro",
  11766. height: math.unit(400, "meters")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(4, "miles")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(40, "miles")
  11775. },
  11776. {
  11777. name: "Megamacro+",
  11778. height: math.unit(400, "miles")
  11779. },
  11780. {
  11781. name: "Gigamacro",
  11782. height: math.unit(400000, "miles")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11788. {
  11789. side: {
  11790. height: math.unit(6, "feet"),
  11791. weight: math.unit(150, "lb"),
  11792. name: "Side",
  11793. image: {
  11794. source: "./media/characters/kimiko/side.svg",
  11795. extra: 600 / 358
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(15, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(220, "feet")
  11808. },
  11809. {
  11810. name: "Macro+",
  11811. height: math.unit(1450, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(11500, "feet")
  11816. },
  11817. {
  11818. name: "Gigamacro",
  11819. height: math.unit(9500, "miles")
  11820. },
  11821. {
  11822. name: "Teramacro",
  11823. height: math.unit(2208005005, "miles")
  11824. },
  11825. {
  11826. name: "Examacro",
  11827. height: math.unit(2750, "parsecs")
  11828. },
  11829. {
  11830. name: "Zettamacro",
  11831. height: math.unit(101500, "parsecs")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(70, "kg"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/andrew-sleepy/front.svg"
  11844. }
  11845. },
  11846. side: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(70, "kg"),
  11849. name: "Side",
  11850. image: {
  11851. source: "./media/characters/andrew-sleepy/side.svg"
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(1, "mm"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/judio/front.svg",
  11872. extra: 1258 / 1110
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(5 + 6 / 12, "feet")
  11880. },
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(1000, "feet"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(10, "miles")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11894. {
  11895. frontDressed: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(68, "kg"),
  11898. name: "Front (Dressed)",
  11899. image: {
  11900. source: "./media/characters/nomaxice/front-dressed.svg",
  11901. extra: 1137/824,
  11902. bottom: 74/1211
  11903. }
  11904. },
  11905. frontShorts: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(68, "kg"),
  11908. name: "Front (Shorts)",
  11909. image: {
  11910. source: "./media/characters/nomaxice/front-shorts.svg",
  11911. extra: 1137/824,
  11912. bottom: 74/1211
  11913. }
  11914. },
  11915. back: {
  11916. height: math.unit(6, "feet"),
  11917. weight: math.unit(68, "kg"),
  11918. name: "Back",
  11919. image: {
  11920. source: "./media/characters/nomaxice/back.svg",
  11921. extra: 822/786,
  11922. bottom: 39/861
  11923. }
  11924. },
  11925. hand: {
  11926. height: math.unit(0.565, "feet"),
  11927. name: "Hand",
  11928. image: {
  11929. source: "./media/characters/nomaxice/hand.svg"
  11930. }
  11931. },
  11932. foot: {
  11933. height: math.unit(1, "feet"),
  11934. name: "Foot",
  11935. image: {
  11936. source: "./media/characters/nomaxice/foot.svg"
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Micro",
  11943. height: math.unit(8, "cm")
  11944. },
  11945. {
  11946. name: "Norm",
  11947. height: math.unit(1.82, "m")
  11948. },
  11949. {
  11950. name: "Norm+",
  11951. height: math.unit(8.8, "feet"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Big",
  11956. height: math.unit(8, "meters")
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(18, "meters")
  11961. },
  11962. {
  11963. name: "Macro+",
  11964. height: math.unit(88, "meters")
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(12, "feet"),
  11973. weight: math.unit(1.5, "tons"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/dydros/front.svg",
  11977. extra: 863 / 800,
  11978. bottom: 0.015
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(12, "feet"),
  11983. weight: math.unit(1.5, "tons"),
  11984. name: "Back",
  11985. image: {
  11986. source: "./media/characters/dydros/back.svg",
  11987. extra: 900 / 843,
  11988. bottom: 0.005
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(100, "kg"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/riggi/front.svg",
  12009. extra: 5787 / 5303
  12010. }
  12011. },
  12012. hyper: {
  12013. height: math.unit(6 * 5 / 3, "feet"),
  12014. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12015. name: "Hyper",
  12016. image: {
  12017. source: "./media/characters/riggi/hyper.svg",
  12018. extra: 3595 / 3485
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Small Macro",
  12025. height: math.unit(50, "feet")
  12026. },
  12027. {
  12028. name: "Default",
  12029. height: math.unit(200, "feet"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Loom",
  12034. height: math.unit(10000, "feet")
  12035. },
  12036. {
  12037. name: "Cruising Altitude",
  12038. height: math.unit(30000, "feet")
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(100, "miles")
  12043. },
  12044. {
  12045. name: "Continent Sized",
  12046. height: math.unit(2800, "miles")
  12047. },
  12048. {
  12049. name: "Earth Sized",
  12050. height: math.unit(8000, "miles")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(6, "feet"),
  12059. weight: math.unit(250, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/alexi/front.svg",
  12063. extra: 3483 / 3291,
  12064. bottom: 0.04
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(250, "lb"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/alexi/back.svg",
  12073. extra: 3533 / 3356,
  12074. bottom: 0.021
  12075. }
  12076. },
  12077. frontTransforming: {
  12078. height: math.unit(8.58, "feet"),
  12079. weight: math.unit(1300, "lb"),
  12080. name: "Transforming",
  12081. image: {
  12082. source: "./media/characters/alexi/front-transforming.svg",
  12083. extra: 437 / 409,
  12084. bottom: 19 / 458.66
  12085. }
  12086. },
  12087. frontTransformed: {
  12088. height: math.unit(12.5, "feet"),
  12089. weight: math.unit(4000, "lb"),
  12090. name: "Transformed",
  12091. image: {
  12092. source: "./media/characters/alexi/front-transformed.svg",
  12093. extra: 639 / 614,
  12094. bottom: 30.55 / 671
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(14, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Minimacro",
  12106. height: math.unit(30, "meters")
  12107. },
  12108. {
  12109. name: "Macro",
  12110. height: math.unit(500, "meters")
  12111. },
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(9000, "km")
  12115. },
  12116. {
  12117. name: "Teramacro",
  12118. height: math.unit(384000, "km")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(6, "feet"),
  12127. weight: math.unit(150, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/kayroo/front.svg",
  12131. extra: 1153 / 1038,
  12132. bottom: 0.06
  12133. }
  12134. },
  12135. foot: {
  12136. height: math.unit(6, "feet"),
  12137. weight: math.unit(150, "lb"),
  12138. name: "Foot",
  12139. image: {
  12140. source: "./media/characters/kayroo/foot.svg"
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(8, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Minimacro",
  12152. height: math.unit(250, "feet")
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(2800, "feet")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(5200, "feet")
  12161. },
  12162. {
  12163. name: "Gigamacro",
  12164. height: math.unit(27000, "feet")
  12165. },
  12166. {
  12167. name: "Omega",
  12168. height: math.unit(45000, "feet")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(18, "feet"),
  12177. weight: math.unit(5800, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/rhys/front.svg",
  12181. extra: 3386 / 3090,
  12182. bottom: 0.07
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(18, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Working Size",
  12194. height: math.unit(200, "feet")
  12195. },
  12196. {
  12197. name: "Demolition Size",
  12198. height: math.unit(2000, "feet")
  12199. },
  12200. {
  12201. name: "Maximum Licensed Size",
  12202. height: math.unit(5, "miles")
  12203. },
  12204. {
  12205. name: "Maximum Observed Size",
  12206. height: math.unit(10, "yottameters")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(6, "feet"),
  12215. weight: math.unit(250, "lb"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/toto/front.svg",
  12219. extra: 527 / 479,
  12220. bottom: 0.05
  12221. }
  12222. },
  12223. },
  12224. [
  12225. {
  12226. name: "Micro",
  12227. height: math.unit(3, "feet")
  12228. },
  12229. {
  12230. name: "Normal",
  12231. height: math.unit(10, "feet")
  12232. },
  12233. {
  12234. name: "Macro",
  12235. height: math.unit(150, "feet"),
  12236. default: true
  12237. },
  12238. {
  12239. name: "Megamacro",
  12240. height: math.unit(1200, "feet")
  12241. },
  12242. ]
  12243. ))
  12244. characterMakers.push(() => makeCharacter(
  12245. { name: "King", species: ["lion"], tags: ["anthro"] },
  12246. {
  12247. back: {
  12248. height: math.unit(6, "feet"),
  12249. weight: math.unit(150, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/king/back.svg"
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Micro",
  12259. height: math.unit(2, "inches")
  12260. },
  12261. {
  12262. name: "Normal",
  12263. height: math.unit(8, "feet")
  12264. },
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(200, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(50, "miles")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(11, "feet"),
  12281. weight: math.unit(1400, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/cordite/front.svg",
  12285. extra: 1919/1827,
  12286. bottom: 40/1959
  12287. }
  12288. },
  12289. side: {
  12290. height: math.unit(11, "feet"),
  12291. weight: math.unit(1400, "lb"),
  12292. name: "Side",
  12293. image: {
  12294. source: "./media/characters/cordite/side.svg",
  12295. extra: 1908/1793,
  12296. bottom: 38/1946
  12297. }
  12298. },
  12299. back: {
  12300. height: math.unit(11, "feet"),
  12301. weight: math.unit(1400, "lb"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/cordite/back.svg",
  12305. extra: 1938/1837,
  12306. bottom: 10/1948
  12307. }
  12308. },
  12309. feral: {
  12310. height: math.unit(2, "feet"),
  12311. weight: math.unit(90, "lb"),
  12312. name: "Feral",
  12313. image: {
  12314. source: "./media/characters/cordite/feral.svg",
  12315. extra: 1260 / 755,
  12316. bottom: 0.05
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(11, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(150, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/pianostrong/front.svg",
  12337. extra: 6577 / 6254,
  12338. bottom: 0.02
  12339. }
  12340. },
  12341. side: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Side",
  12345. image: {
  12346. source: "./media/characters/pianostrong/side.svg",
  12347. extra: 6106 / 5730
  12348. }
  12349. },
  12350. back: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Back",
  12354. image: {
  12355. source: "./media/characters/pianostrong/back.svg",
  12356. extra: 6085 / 5733,
  12357. bottom: 0.01
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(100, "feet")
  12365. },
  12366. {
  12367. name: "Macro+",
  12368. height: math.unit(300, "feet"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Macro++",
  12373. height: math.unit(1000, "feet")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(150, "lb"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/kona/front.svg",
  12386. extra: 2960 / 2629,
  12387. bottom: 0.005
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(11 + 8 / 12, "feet")
  12395. },
  12396. {
  12397. name: "Macro",
  12398. height: math.unit(850, "feet"),
  12399. default: true
  12400. },
  12401. {
  12402. name: "Macro+",
  12403. height: math.unit(1.5, "km"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(80, "miles")
  12409. },
  12410. {
  12411. name: "Gigamacro",
  12412. height: math.unit(3500, "miles")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12418. {
  12419. side: {
  12420. height: math.unit(1.9, "meters"),
  12421. weight: math.unit(326, "kg"),
  12422. name: "Side",
  12423. image: {
  12424. source: "./media/characters/levi/side.svg",
  12425. extra: 1704 / 1334,
  12426. bottom: 0.02
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(1.9, "meters"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(20, "meters")
  12439. },
  12440. {
  12441. name: "Macro+",
  12442. height: math.unit(200, "meters")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(2, "km")
  12447. },
  12448. {
  12449. name: "Megamacro+",
  12450. height: math.unit(20, "km")
  12451. },
  12452. {
  12453. name: "Gigamacro",
  12454. height: math.unit(2500, "km")
  12455. },
  12456. {
  12457. name: "Gigamacro+",
  12458. height: math.unit(120000, "km")
  12459. },
  12460. {
  12461. name: "Teramacro",
  12462. height: math.unit(7.77e6, "km")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(6 + 4/12, "feet"),
  12471. weight: math.unit(190, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/bmc/front.svg",
  12475. extra: 1626/1472,
  12476. bottom: 79/1705
  12477. }
  12478. },
  12479. back: {
  12480. height: math.unit(6 + 4/12, "feet"),
  12481. weight: math.unit(190, "lb"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/bmc/back.svg",
  12485. extra: 1640/1479,
  12486. bottom: 45/1685
  12487. }
  12488. },
  12489. frontArmor: {
  12490. height: math.unit(6 + 4/12, "feet"),
  12491. weight: math.unit(190, "lb"),
  12492. name: "Front-armor",
  12493. image: {
  12494. source: "./media/characters/bmc/front-armor.svg",
  12495. extra: 1538/1468,
  12496. bottom: 79/1617
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Human-sized",
  12503. height: math.unit(6 + 4 / 12, "feet")
  12504. },
  12505. {
  12506. name: "Interactive Size",
  12507. height: math.unit(25, "feet")
  12508. },
  12509. {
  12510. name: "Small",
  12511. height: math.unit(250, "feet")
  12512. },
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(1250, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Good Day",
  12520. height: math.unit(88, "miles")
  12521. },
  12522. {
  12523. name: "Largest Measured Size",
  12524. height: math.unit(105.960, "galaxies")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(20, "feet"),
  12533. weight: math.unit(2016, "kg"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/sven-the-kaiju/front.svg",
  12537. extra: 1277/1250,
  12538. bottom: 35/1312
  12539. }
  12540. },
  12541. mouth: {
  12542. height: math.unit(1.85, "feet"),
  12543. name: "Mouth",
  12544. image: {
  12545. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Fairy",
  12552. height: math.unit(6, "inches")
  12553. },
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(20, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Rampage",
  12561. height: math.unit(200, "feet")
  12562. },
  12563. {
  12564. name: "Archfey Forest Guardian",
  12565. height: math.unit(1, "mile")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(4, "meters"),
  12574. weight: math.unit(2, "tons"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/marik/front.svg",
  12578. extra: 1057 / 1003,
  12579. bottom: 0.08
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(4, "meters"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Macro",
  12591. height: math.unit(20, "meters")
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(50, "km")
  12596. },
  12597. {
  12598. name: "Gigamacro",
  12599. height: math.unit(100, "km")
  12600. },
  12601. {
  12602. name: "Alpha Macro",
  12603. height: math.unit(7.88e7, "yottameters")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(6, "feet"),
  12612. weight: math.unit(110, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/mel/front.svg",
  12616. extra: 736 / 617,
  12617. bottom: 0.017
  12618. }
  12619. },
  12620. },
  12621. [
  12622. {
  12623. name: "Pico",
  12624. height: math.unit(3, "pm")
  12625. },
  12626. {
  12627. name: "Nano",
  12628. height: math.unit(3, "nm")
  12629. },
  12630. {
  12631. name: "Micro",
  12632. height: math.unit(0.3, "mm"),
  12633. default: true
  12634. },
  12635. {
  12636. name: "Micro+",
  12637. height: math.unit(3, "mm")
  12638. },
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(5 + 10.5 / 12, "feet")
  12642. },
  12643. ]
  12644. ))
  12645. characterMakers.push(() => makeCharacter(
  12646. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12647. {
  12648. kaiju: {
  12649. height: math.unit(1.75, "meters"),
  12650. weight: math.unit(55, "kg"),
  12651. name: "Kaiju",
  12652. image: {
  12653. source: "./media/characters/lykonous/kaiju.svg",
  12654. extra: 1055 / 946,
  12655. bottom: 0.135
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(2.5, "meters"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Kaiju Dragon",
  12667. height: math.unit(60, "meters")
  12668. },
  12669. {
  12670. name: "Mega Kaiju",
  12671. height: math.unit(120, "km")
  12672. },
  12673. {
  12674. name: "Giga Kaiju",
  12675. height: math.unit(200, "megameters")
  12676. },
  12677. {
  12678. name: "Terra Kaiju",
  12679. height: math.unit(400, "gigameters")
  12680. },
  12681. {
  12682. name: "Kaiju Dragon God",
  12683. height: math.unit(13000, "exaparsecs")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/blü/front.svg",
  12696. extra: 1883 / 1564,
  12697. bottom: 0.031
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(13, "feet"),
  12705. default: true
  12706. },
  12707. {
  12708. name: "Big Boi",
  12709. height: math.unit(150, "meters")
  12710. },
  12711. {
  12712. name: "Mini Stomper",
  12713. height: math.unit(300, "meters")
  12714. },
  12715. {
  12716. name: "Macro",
  12717. height: math.unit(1000, "meters")
  12718. },
  12719. {
  12720. name: "Megamacro",
  12721. height: math.unit(11000, "meters")
  12722. },
  12723. {
  12724. name: "Gigamacro",
  12725. height: math.unit(11000, "km")
  12726. },
  12727. {
  12728. name: "Teramacro",
  12729. height: math.unit(420000, "km")
  12730. },
  12731. {
  12732. name: "Examacro",
  12733. height: math.unit(120, "parsecs")
  12734. },
  12735. {
  12736. name: "God Tho",
  12737. height: math.unit(98000000000, "parsecs")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12743. {
  12744. taurFront: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(200, "lb"),
  12747. name: "Taur (Front)",
  12748. image: {
  12749. source: "./media/characters/scales/taur-front.svg",
  12750. extra: 1,
  12751. bottom: 0.05
  12752. }
  12753. },
  12754. taurBack: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(200, "lb"),
  12757. name: "Taur (Back)",
  12758. image: {
  12759. source: "./media/characters/scales/taur-back.svg",
  12760. extra: 1,
  12761. bottom: 0.08
  12762. }
  12763. },
  12764. anthro: {
  12765. height: math.unit(6 * 7 / 12, "feet"),
  12766. weight: math.unit(100, "lb"),
  12767. name: "Anthro",
  12768. image: {
  12769. source: "./media/characters/scales/anthro.svg",
  12770. extra: 1,
  12771. bottom: 0.06
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Normal",
  12778. height: math.unit(12, "feet"),
  12779. default: true
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/koragos/front.svg",
  12792. extra: 841 / 794,
  12793. bottom: 0.035
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/koragos/back.svg",
  12802. extra: 841 / 810,
  12803. bottom: 0.022
  12804. }
  12805. },
  12806. },
  12807. [
  12808. {
  12809. name: "Normal",
  12810. height: math.unit(6 + 11 / 12, "feet"),
  12811. default: true
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(490, "feet")
  12816. },
  12817. {
  12818. name: "Megamacro",
  12819. height: math.unit(10, "miles")
  12820. },
  12821. {
  12822. name: "Gigamacro",
  12823. height: math.unit(50, "miles")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(250, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/xylrem/front.svg",
  12836. extra: 3323 / 3050,
  12837. bottom: 0.065
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Micro",
  12844. height: math.unit(4, "feet")
  12845. },
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(16, "feet"),
  12849. default: true
  12850. },
  12851. {
  12852. name: "Macro",
  12853. height: math.unit(2720, "feet")
  12854. },
  12855. {
  12856. name: "Megamacro",
  12857. height: math.unit(25000, "miles")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(8, "feet"),
  12866. weight: math.unit(250, "kg"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/ikideru/front.svg",
  12870. extra: 930 / 870,
  12871. bottom: 0.087
  12872. }
  12873. },
  12874. back: {
  12875. height: math.unit(8, "feet"),
  12876. weight: math.unit(250, "kg"),
  12877. name: "Back",
  12878. image: {
  12879. source: "./media/characters/ikideru/back.svg",
  12880. extra: 919 / 852,
  12881. bottom: 0.055
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Rare",
  12888. height: math.unit(8, "feet"),
  12889. default: true
  12890. },
  12891. {
  12892. name: "Playful Loom",
  12893. height: math.unit(80, "feet")
  12894. },
  12895. {
  12896. name: "City Leaner",
  12897. height: math.unit(230, "feet")
  12898. },
  12899. {
  12900. name: "Megamacro",
  12901. height: math.unit(2500, "feet")
  12902. },
  12903. {
  12904. name: "Gigamacro",
  12905. height: math.unit(26400, "feet")
  12906. },
  12907. {
  12908. name: "Tectonic Shifter",
  12909. height: math.unit(1.7, "megameters")
  12910. },
  12911. {
  12912. name: "Planet Carer",
  12913. height: math.unit(21, "megameters")
  12914. },
  12915. {
  12916. name: "God",
  12917. height: math.unit(11157.22, "parsecs")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(120, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/neo/front.svg"
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(2, "inches"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Human Size",
  12941. height: math.unit(5 + 8 / 12, "feet")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12947. {
  12948. front: {
  12949. height: math.unit(13 + 10 / 12, "feet"),
  12950. weight: math.unit(5320, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/chauncey-chantz/front.svg",
  12954. extra: 1587 / 1435,
  12955. bottom: 0.02
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(13 + 10 / 12, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(45, "feet")
  12968. },
  12969. {
  12970. name: "Megamacro",
  12971. height: math.unit(250, "miles")
  12972. },
  12973. {
  12974. name: "Planetary",
  12975. height: math.unit(10000, "miles")
  12976. },
  12977. {
  12978. name: "Galactic",
  12979. height: math.unit(40000, "parsecs")
  12980. },
  12981. {
  12982. name: "Universal",
  12983. height: math.unit(1, "yottameter")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/epifox/front.svg",
  12996. extra: 1,
  12997. bottom: 0.075
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Micro",
  13004. height: math.unit(6, "inches")
  13005. },
  13006. {
  13007. name: "Normal",
  13008. height: math.unit(12, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Macro",
  13013. height: math.unit(3810, "feet")
  13014. },
  13015. {
  13016. name: "Megamacro",
  13017. height: math.unit(500, "miles")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(1.8796, "m"),
  13026. weight: math.unit(230, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/colin-t/front.svg",
  13030. extra: 1272 / 1193,
  13031. bottom: 0.07
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Micro",
  13038. height: math.unit(0.571, "meters")
  13039. },
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(1.8796, "meters"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Tall",
  13047. height: math.unit(4, "meters")
  13048. },
  13049. {
  13050. name: "Macro",
  13051. height: math.unit(67.241, "meters")
  13052. },
  13053. {
  13054. name: "Megamacro",
  13055. height: math.unit(371.856, "meters")
  13056. },
  13057. {
  13058. name: "Planetary",
  13059. height: math.unit(12631.5689, "km")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(1.85, "meters"),
  13068. weight: math.unit(80, "kg"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/matvei/front.svg",
  13072. extra: 456/447,
  13073. bottom: 8/464
  13074. }
  13075. },
  13076. back: {
  13077. height: math.unit(1.85, "meters"),
  13078. weight: math.unit(80, "kg"),
  13079. name: "Back",
  13080. image: {
  13081. source: "./media/characters/matvei/back.svg",
  13082. extra: 434/427,
  13083. bottom: 11/445
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(1.85, "meters"),
  13091. default: true
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(5 + 9 / 12, "feet"),
  13100. weight: math.unit(70, "lb"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/quincy/front.svg",
  13104. extra: 3041 / 2751
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(5 + 9 / 12, "feet"),
  13109. weight: math.unit(70, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/quincy/back.svg",
  13113. extra: 3041 / 2751
  13114. }
  13115. },
  13116. flying: {
  13117. height: math.unit(5 + 4 / 12, "feet"),
  13118. weight: math.unit(70, "lb"),
  13119. name: "Flying",
  13120. image: {
  13121. source: "./media/characters/quincy/flying.svg",
  13122. extra: 1044 / 930
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Micro",
  13129. height: math.unit(3, "cm")
  13130. },
  13131. {
  13132. name: "Normal",
  13133. height: math.unit(5 + 9 / 12, "feet")
  13134. },
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(200, "meters"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(1000, "meters")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(3 + 11/12, "feet"),
  13151. weight: math.unit(50, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/vanrel/front.svg",
  13155. extra: 1104/949,
  13156. bottom: 52/1156
  13157. }
  13158. },
  13159. back: {
  13160. height: math.unit(3 + 11/12, "feet"),
  13161. weight: math.unit(50, "lb"),
  13162. name: "Back",
  13163. image: {
  13164. source: "./media/characters/vanrel/back.svg",
  13165. extra: 1119/976,
  13166. bottom: 37/1156
  13167. }
  13168. },
  13169. tome: {
  13170. height: math.unit(1.35, "feet"),
  13171. weight: math.unit(10, "lb"),
  13172. name: "Vanrel's Tome",
  13173. rename: true,
  13174. image: {
  13175. source: "./media/characters/vanrel/tome.svg"
  13176. }
  13177. },
  13178. beans: {
  13179. height: math.unit(0.89, "feet"),
  13180. name: "Beans",
  13181. image: {
  13182. source: "./media/characters/vanrel/beans.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(3 + 11/12, "feet"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(7 + 5 / 12, "feet"),
  13199. name: "Front",
  13200. image: {
  13201. source: "./media/characters/kuiper-vanrel/front.svg",
  13202. extra: 1219/1169,
  13203. bottom: 69/1288
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(7 + 5 / 12, "feet"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/kuiper-vanrel/back.svg",
  13211. extra: 1236/1193,
  13212. bottom: 27/1263
  13213. }
  13214. },
  13215. foot: {
  13216. height: math.unit(0.55, "meters"),
  13217. name: "Foot",
  13218. image: {
  13219. source: "./media/characters/kuiper-vanrel/foot.svg",
  13220. }
  13221. },
  13222. battle: {
  13223. height: math.unit(6.824, "feet"),
  13224. name: "Battle",
  13225. image: {
  13226. source: "./media/characters/kuiper-vanrel/battle.svg",
  13227. extra: 1466 / 1327,
  13228. bottom: 29 / 1492.5
  13229. }
  13230. },
  13231. meerkui: {
  13232. height: math.unit(18, "inches"),
  13233. name: "Meerkui",
  13234. image: {
  13235. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13236. extra: 1354/1289,
  13237. bottom: 69/1423
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(7 + 5 / 12, "feet"),
  13245. default: true
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13251. {
  13252. front: {
  13253. height: math.unit(8 + 5 / 12, "feet"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/keset-vanrel/front.svg",
  13257. extra: 1231/1148,
  13258. bottom: 82/1313
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(8 + 5 / 12, "feet"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/keset-vanrel/back.svg",
  13266. extra: 1240/1174,
  13267. bottom: 33/1273
  13268. }
  13269. },
  13270. hand: {
  13271. height: math.unit(0.6, "meters"),
  13272. name: "Hand",
  13273. image: {
  13274. source: "./media/characters/keset-vanrel/hand.svg"
  13275. }
  13276. },
  13277. foot: {
  13278. height: math.unit(0.94978, "meters"),
  13279. name: "Foot",
  13280. image: {
  13281. source: "./media/characters/keset-vanrel/foot.svg"
  13282. }
  13283. },
  13284. battle: {
  13285. height: math.unit(7.408, "feet"),
  13286. name: "Battle",
  13287. image: {
  13288. source: "./media/characters/keset-vanrel/battle.svg",
  13289. extra: 1890 / 1386,
  13290. bottom: 73.28 / 1970
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(8 + 5 / 12, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/neos/front.svg",
  13311. extra: 1696 / 992,
  13312. bottom: 0.14
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(54, "cm"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Macro",
  13324. height: math.unit(100, "m")
  13325. },
  13326. {
  13327. name: "Megamacro",
  13328. height: math.unit(10, "km")
  13329. },
  13330. {
  13331. name: "Megamacro+",
  13332. height: math.unit(100, "km")
  13333. },
  13334. {
  13335. name: "Gigamacro",
  13336. height: math.unit(100, "Mm")
  13337. },
  13338. {
  13339. name: "Teramacro",
  13340. height: math.unit(100, "Gm")
  13341. },
  13342. {
  13343. name: "Examacro",
  13344. height: math.unit(100, "Em")
  13345. },
  13346. {
  13347. name: "Godly",
  13348. height: math.unit(10000, "Ym")
  13349. },
  13350. {
  13351. name: "Beyond Godly",
  13352. height: math.unit(25, "multiverses")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13358. {
  13359. feminine: {
  13360. height: math.unit(5, "feet"),
  13361. weight: math.unit(100, "lb"),
  13362. name: "Feminine",
  13363. image: {
  13364. source: "./media/characters/sammy-mouse/feminine.svg",
  13365. extra: 2526 / 2425,
  13366. bottom: 0.123
  13367. }
  13368. },
  13369. masculine: {
  13370. height: math.unit(5, "feet"),
  13371. weight: math.unit(100, "lb"),
  13372. name: "Masculine",
  13373. image: {
  13374. source: "./media/characters/sammy-mouse/masculine.svg",
  13375. extra: 2526 / 2425,
  13376. bottom: 0.123
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Micro",
  13383. height: math.unit(5, "inches")
  13384. },
  13385. {
  13386. name: "Normal",
  13387. height: math.unit(5, "feet"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Macro",
  13392. height: math.unit(60, "feet")
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13398. {
  13399. front: {
  13400. height: math.unit(4, "feet"),
  13401. weight: math.unit(50, "lb"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/kole/front.svg",
  13405. extra: 1423 / 1303,
  13406. bottom: 0.025
  13407. }
  13408. },
  13409. back: {
  13410. height: math.unit(4, "feet"),
  13411. weight: math.unit(50, "lb"),
  13412. name: "Back",
  13413. image: {
  13414. source: "./media/characters/kole/back.svg",
  13415. extra: 1426 / 1280,
  13416. bottom: 0.02
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Normal",
  13423. height: math.unit(4, "feet"),
  13424. default: true
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(2.5, "feet"),
  13433. weight: math.unit(32, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/rufran/front.svg",
  13437. extra: 1313/885,
  13438. bottom: 94/1407
  13439. }
  13440. },
  13441. side: {
  13442. height: math.unit(2.5, "feet"),
  13443. weight: math.unit(32, "lb"),
  13444. name: "Side",
  13445. image: {
  13446. source: "./media/characters/rufran/side.svg",
  13447. extra: 1109/852,
  13448. bottom: 118/1227
  13449. }
  13450. },
  13451. back: {
  13452. height: math.unit(2.5, "feet"),
  13453. weight: math.unit(32, "lb"),
  13454. name: "Back",
  13455. image: {
  13456. source: "./media/characters/rufran/back.svg",
  13457. extra: 1280/878,
  13458. bottom: 131/1411
  13459. }
  13460. },
  13461. mouth: {
  13462. height: math.unit(1.13, "feet"),
  13463. name: "Mouth",
  13464. image: {
  13465. source: "./media/characters/rufran/mouth.svg"
  13466. }
  13467. },
  13468. foot: {
  13469. height: math.unit(1.33, "feet"),
  13470. name: "Foot",
  13471. image: {
  13472. source: "./media/characters/rufran/foot.svg"
  13473. }
  13474. },
  13475. koboldFront: {
  13476. height: math.unit(2 + 6 / 12, "feet"),
  13477. weight: math.unit(20, "lb"),
  13478. name: "Front (Kobold)",
  13479. image: {
  13480. source: "./media/characters/rufran/kobold-front.svg",
  13481. extra: 2041 / 1839,
  13482. bottom: 0.055
  13483. }
  13484. },
  13485. koboldBack: {
  13486. height: math.unit(2 + 6 / 12, "feet"),
  13487. weight: math.unit(20, "lb"),
  13488. name: "Back (Kobold)",
  13489. image: {
  13490. source: "./media/characters/rufran/kobold-back.svg",
  13491. extra: 2054 / 1839,
  13492. bottom: 0.01
  13493. }
  13494. },
  13495. koboldHand: {
  13496. height: math.unit(0.2166, "meters"),
  13497. name: "Hand (Kobold)",
  13498. image: {
  13499. source: "./media/characters/rufran/kobold-hand.svg"
  13500. }
  13501. },
  13502. koboldFoot: {
  13503. height: math.unit(0.185, "meters"),
  13504. name: "Foot (Kobold)",
  13505. image: {
  13506. source: "./media/characters/rufran/kobold-foot.svg"
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Micro",
  13513. height: math.unit(1, "inch")
  13514. },
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(2 + 6 / 12, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Big",
  13522. height: math.unit(60, "feet")
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(325, "feet")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(0.3, "meters"),
  13535. weight: math.unit(3.5, "kg"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/chip/front.svg",
  13539. extra: 748 / 674
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(1, "inch"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13553. {
  13554. side: {
  13555. height: math.unit(2.3, "meters"),
  13556. weight: math.unit(3500, "lb"),
  13557. name: "Side",
  13558. image: {
  13559. source: "./media/characters/torvid/side.svg",
  13560. extra: 1972 / 722,
  13561. bottom: 0.035
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(2.3, "meters"),
  13569. default: true
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(2, "meters"),
  13578. weight: math.unit(150.5, "kg"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/susan/front.svg",
  13582. extra: 693 / 635,
  13583. bottom: 0.05
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Megamacro",
  13590. height: math.unit(505, "miles"),
  13591. default: true
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/raindrops/front.svg",
  13604. extra: 2655 / 2461,
  13605. bottom: 49 / 2705
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(150, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/raindrops/back.svg",
  13614. extra: 2574 / 2400,
  13615. bottom: 65 / 2634
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(6, "inches")
  13623. },
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(6 + 2 / 12, "feet")
  13627. },
  13628. {
  13629. name: "Macro",
  13630. height: math.unit(131, "feet"),
  13631. default: true
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(15, "miles")
  13636. },
  13637. {
  13638. name: "Gigamacro",
  13639. height: math.unit(4000, "miles")
  13640. },
  13641. {
  13642. name: "Teramacro",
  13643. height: math.unit(315000, "miles")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(2.794, "meters"),
  13652. weight: math.unit(325, "kg"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/tezwa/front.svg",
  13656. extra: 2083 / 1906,
  13657. bottom: 0.031
  13658. }
  13659. },
  13660. foot: {
  13661. height: math.unit(0.687, "meters"),
  13662. name: "Foot",
  13663. image: {
  13664. source: "./media/characters/tezwa/foot.svg"
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(9 + 2 / 12, "feet"),
  13672. default: true
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(58, "feet"),
  13681. weight: math.unit(89000, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/typhus/front.svg",
  13685. extra: 816 / 800,
  13686. bottom: 0.065
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(58, "feet"),
  13694. default: true
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(12, "feet"),
  13703. weight: math.unit(6, "tonnes"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/lyra-von-wulf/front.svg",
  13707. extra: 1,
  13708. bottom: 0.10
  13709. }
  13710. },
  13711. frontMecha: {
  13712. height: math.unit(12, "feet"),
  13713. weight: math.unit(12, "tonnes"),
  13714. name: "Front (Mecha)",
  13715. image: {
  13716. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13717. extra: 1,
  13718. bottom: 0.042
  13719. }
  13720. },
  13721. maw: {
  13722. height: math.unit(2.2, "feet"),
  13723. name: "Maw",
  13724. image: {
  13725. source: "./media/characters/lyra-von-wulf/maw.svg"
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(12, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Classic",
  13737. height: math.unit(50, "feet")
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(500, "feet")
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(1, "mile")
  13746. },
  13747. {
  13748. name: "Gigamacro",
  13749. height: math.unit(400, "miles")
  13750. },
  13751. {
  13752. name: "Teramacro",
  13753. height: math.unit(22000, "miles")
  13754. },
  13755. {
  13756. name: "Solarmacro",
  13757. height: math.unit(8600000, "miles")
  13758. },
  13759. {
  13760. name: "Galactic",
  13761. height: math.unit(1057000, "lightyears")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(6 + 10 / 12, "feet"),
  13770. weight: math.unit(150, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/dixon/front.svg",
  13774. extra: 3361 / 3209,
  13775. bottom: 0.01
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Normal",
  13782. height: math.unit(6 + 10 / 12, "feet"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Big",
  13787. height: math.unit(12, "meters")
  13788. },
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(500, "meters")
  13792. },
  13793. {
  13794. name: "Megamacro",
  13795. height: math.unit(2, "km")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(185, "cm"),
  13804. weight: math.unit(68, "kg"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/kauko/front.svg",
  13808. extra: 1455 / 1421,
  13809. bottom: 0.03
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(185, "cm"),
  13814. weight: math.unit(68, "kg"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/kauko/back.svg",
  13818. extra: 1455 / 1421,
  13819. bottom: 0.004
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(185, "cm"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13833. {
  13834. frontSfw: {
  13835. height: math.unit(5, "meters"),
  13836. weight: math.unit(4250, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/varg/front-sfw.svg",
  13840. extra: 1103/1010,
  13841. bottom: 50/1153
  13842. },
  13843. form: "anthro",
  13844. default: true
  13845. },
  13846. backSfw: {
  13847. height: math.unit(5, "meters"),
  13848. weight: math.unit(4250, "lb"),
  13849. name: "Back",
  13850. image: {
  13851. source: "./media/characters/varg/back-sfw.svg",
  13852. extra: 1038/1022,
  13853. bottom: 36/1074
  13854. },
  13855. form: "anthro"
  13856. },
  13857. frontNsfw: {
  13858. height: math.unit(5, "meters"),
  13859. weight: math.unit(4250, "lb"),
  13860. name: "Front (NSFW)",
  13861. image: {
  13862. source: "./media/characters/varg/front-nsfw.svg",
  13863. extra: 1103/1010,
  13864. bottom: 50/1153
  13865. },
  13866. form: "anthro"
  13867. },
  13868. sheath: {
  13869. height: math.unit(3.8, "feet"),
  13870. weight: math.unit(90, "kilograms"),
  13871. name: "Sheath",
  13872. image: {
  13873. source: "./media/characters/varg/sheath.svg"
  13874. },
  13875. form: "anthro"
  13876. },
  13877. dick: {
  13878. height: math.unit(4.6, "feet"),
  13879. weight: math.unit(451, "kilograms"),
  13880. name: "Dick",
  13881. image: {
  13882. source: "./media/characters/varg/dick.svg"
  13883. },
  13884. form: "anthro"
  13885. },
  13886. feralSfw: {
  13887. height: math.unit(5, "meters"),
  13888. weight: math.unit(100000, "lb"),
  13889. name: "Side",
  13890. image: {
  13891. source: "./media/characters/varg/feral-sfw.svg",
  13892. extra: 1065/511,
  13893. bottom: 211/1276
  13894. },
  13895. form: "feral",
  13896. default: true
  13897. },
  13898. feralNsfw: {
  13899. height: math.unit(5, "meters"),
  13900. weight: math.unit(100000, "lb"),
  13901. name: "Side (NSFW)",
  13902. image: {
  13903. source: "./media/characters/varg/feral-nsfw.svg",
  13904. extra: 1065/511,
  13905. bottom: 211/1276
  13906. },
  13907. form: "feral",
  13908. },
  13909. feralSheath: {
  13910. height: math.unit(9.8, "feet"),
  13911. weight: math.unit(2000, "kilograms"),
  13912. name: "Sheath",
  13913. image: {
  13914. source: "./media/characters/varg/sheath.svg"
  13915. },
  13916. form: "feral"
  13917. },
  13918. feralDick: {
  13919. height: math.unit(13.11, "feet"),
  13920. weight: math.unit(10440, "kilograms"),
  13921. name: "Dick",
  13922. image: {
  13923. source: "./media/characters/varg/dick.svg"
  13924. },
  13925. form: "feral"
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(5, "meters"),
  13932. form: "anthro"
  13933. },
  13934. {
  13935. name: "Macro",
  13936. height: math.unit(200, "meters"),
  13937. form: "anthro"
  13938. },
  13939. {
  13940. name: "Megamacro",
  13941. height: math.unit(20, "kilometers"),
  13942. form: "anthro"
  13943. },
  13944. {
  13945. name: "True Size",
  13946. height: math.unit(211, "km"),
  13947. form: "anthro",
  13948. default: true
  13949. },
  13950. {
  13951. name: "Gigamacro",
  13952. height: math.unit(1000, "km"),
  13953. form: "anthro"
  13954. },
  13955. {
  13956. name: "Gigamacro+",
  13957. height: math.unit(8000, "km"),
  13958. form: "anthro"
  13959. },
  13960. {
  13961. name: "Teramacro",
  13962. height: math.unit(1000000, "km"),
  13963. form: "anthro"
  13964. },
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(5, "meters"),
  13968. form: "feral"
  13969. },
  13970. {
  13971. name: "Macro",
  13972. height: math.unit(200, "meters"),
  13973. form: "feral"
  13974. },
  13975. {
  13976. name: "Megamacro",
  13977. height: math.unit(20, "kilometers"),
  13978. form: "feral"
  13979. },
  13980. {
  13981. name: "True Size",
  13982. height: math.unit(211, "km"),
  13983. form: "feral",
  13984. default: true
  13985. },
  13986. {
  13987. name: "Gigamacro",
  13988. height: math.unit(1000, "km"),
  13989. form: "feral"
  13990. },
  13991. {
  13992. name: "Gigamacro+",
  13993. height: math.unit(8000, "km"),
  13994. form: "feral"
  13995. },
  13996. {
  13997. name: "Teramacro",
  13998. height: math.unit(1000000, "km"),
  13999. form: "feral"
  14000. },
  14001. ],
  14002. {
  14003. "anthro": {
  14004. name: "Anthro",
  14005. default: true
  14006. },
  14007. "feral": {
  14008. name: "Feral",
  14009. },
  14010. }
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(7 + 7 / 12, "feet"),
  14017. weight: math.unit(267, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/dayza/front.svg",
  14021. extra: 1262 / 1200,
  14022. bottom: 0.035
  14023. }
  14024. },
  14025. side: {
  14026. height: math.unit(7 + 7 / 12, "feet"),
  14027. weight: math.unit(267, "lb"),
  14028. name: "Side",
  14029. image: {
  14030. source: "./media/characters/dayza/side.svg",
  14031. extra: 1295 / 1245,
  14032. bottom: 0.05
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(7 + 7 / 12, "feet"),
  14037. weight: math.unit(267, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/dayza/back.svg",
  14041. extra: 1241 / 1170
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(7 + 7 / 12, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(155, "feet")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6 + 5 / 12, "feet"),
  14062. weight: math.unit(160, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/xanthos/front.svg",
  14066. extra: 1,
  14067. bottom: 0.04
  14068. }
  14069. },
  14070. back: {
  14071. height: math.unit(6 + 5 / 12, "feet"),
  14072. weight: math.unit(160, "lb"),
  14073. name: "Back",
  14074. image: {
  14075. source: "./media/characters/xanthos/back.svg",
  14076. extra: 1,
  14077. bottom: 0.03
  14078. }
  14079. },
  14080. hand: {
  14081. height: math.unit(0.928, "feet"),
  14082. name: "Hand",
  14083. image: {
  14084. source: "./media/characters/xanthos/hand.svg"
  14085. }
  14086. },
  14087. foot: {
  14088. height: math.unit(1.286, "feet"),
  14089. name: "Foot",
  14090. image: {
  14091. source: "./media/characters/xanthos/foot.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(6 + 5 / 12, "feet"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Normal+",
  14103. height: math.unit(6, "meters")
  14104. },
  14105. {
  14106. name: "Macro",
  14107. height: math.unit(40, "feet")
  14108. },
  14109. {
  14110. name: "Macro+",
  14111. height: math.unit(200, "meters")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(20, "km")
  14116. },
  14117. {
  14118. name: "Megamacro+",
  14119. height: math.unit(100, "km")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(200, "megameters")
  14124. },
  14125. {
  14126. name: "Gigamacro+",
  14127. height: math.unit(1.5, "gigameters")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(6 + 3 / 12, "feet"),
  14136. weight: math.unit(215, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/grynn/front.svg",
  14140. extra: 4627 / 4209,
  14141. bottom: 0.047
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Micro",
  14148. height: math.unit(6, "inches")
  14149. },
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(6 + 3 / 12, "feet"),
  14153. default: true
  14154. },
  14155. {
  14156. name: "Big",
  14157. height: math.unit(104, "feet")
  14158. },
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(944, "feet")
  14162. },
  14163. {
  14164. name: "Macro+",
  14165. height: math.unit(9480, "feet")
  14166. },
  14167. {
  14168. name: "Megamacro",
  14169. height: math.unit(78752, "feet")
  14170. },
  14171. {
  14172. name: "Megamacro+",
  14173. height: math.unit(630128, "feet")
  14174. },
  14175. {
  14176. name: "Megamacro++",
  14177. height: math.unit(3150695, "feet")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(7 + 5 / 12, "feet"),
  14186. weight: math.unit(450, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/mocha-aura/front.svg",
  14190. extra: 1907 / 1817,
  14191. bottom: 0.04
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(7 + 5 / 12, "feet"),
  14196. weight: math.unit(450, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/mocha-aura/back.svg",
  14200. extra: 1900 / 1825,
  14201. bottom: 0.045
  14202. }
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Nano",
  14208. height: math.unit(1, "nm")
  14209. },
  14210. {
  14211. name: "Megamicro",
  14212. height: math.unit(1, "mm")
  14213. },
  14214. {
  14215. name: "Micro",
  14216. height: math.unit(3, "inches")
  14217. },
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(7 + 5 / 12, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(30, "feet")
  14226. },
  14227. {
  14228. name: "Megamacro",
  14229. height: math.unit(3500, "feet")
  14230. },
  14231. {
  14232. name: "Teramacro",
  14233. height: math.unit(500000, "miles")
  14234. },
  14235. {
  14236. name: "Petamacro",
  14237. height: math.unit(50000000000000000, "parsecs")
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14243. {
  14244. front: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/ilisha-devya/front.svg",
  14250. extra: 1053/1049,
  14251. bottom: 270/1323
  14252. }
  14253. },
  14254. back: {
  14255. height: math.unit(6, "feet"),
  14256. weight: math.unit(150, "lb"),
  14257. name: "Back",
  14258. image: {
  14259. source: "./media/characters/ilisha-devya/back.svg",
  14260. extra: 1131/1128,
  14261. bottom: 39/1170
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Macro",
  14268. height: math.unit(500, "feet"),
  14269. default: true
  14270. },
  14271. {
  14272. name: "Megamacro",
  14273. height: math.unit(10, "miles")
  14274. },
  14275. {
  14276. name: "Gigamacro",
  14277. height: math.unit(100000, "miles")
  14278. },
  14279. {
  14280. name: "Examacro",
  14281. height: math.unit(1e9, "lightyears")
  14282. },
  14283. {
  14284. name: "Omniversal",
  14285. height: math.unit(1e33, "lightyears")
  14286. },
  14287. {
  14288. name: "Beyond Infinite",
  14289. height: math.unit(1e100, "lightyears")
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14295. {
  14296. Side: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Side",
  14300. image: {
  14301. source: "./media/characters/mira/side.svg",
  14302. extra: 900 / 799,
  14303. bottom: 0.02
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Human Size",
  14310. height: math.unit(6, "feet")
  14311. },
  14312. {
  14313. name: "Macro",
  14314. height: math.unit(100, "feet"),
  14315. default: true
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(10, "miles")
  14320. },
  14321. {
  14322. name: "Gigamacro",
  14323. height: math.unit(25000, "miles")
  14324. },
  14325. {
  14326. name: "Teramacro",
  14327. height: math.unit(300, "AU")
  14328. },
  14329. {
  14330. name: "Full Size",
  14331. height: math.unit(4.5e10, "lightyears")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6, "feet"),
  14340. weight: math.unit(150, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/holly/front.svg",
  14344. extra: 639 / 606
  14345. }
  14346. },
  14347. back: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Back",
  14351. image: {
  14352. source: "./media/characters/holly/back.svg",
  14353. extra: 623 / 598
  14354. }
  14355. },
  14356. frontWorking: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Front (Working)",
  14360. image: {
  14361. source: "./media/characters/holly/front-working.svg",
  14362. extra: 607 / 577,
  14363. bottom: 0.048
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(12 + 3 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/porter/front.svg",
  14384. extra: 1,
  14385. bottom: 0.01
  14386. }
  14387. },
  14388. frontRobes: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(150, "lb"),
  14391. name: "Front (Robes)",
  14392. image: {
  14393. source: "./media/characters/porter/front-robes.svg",
  14394. extra: 1.01,
  14395. bottom: 0.01
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(11 + 9 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14409. {
  14410. legendary: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(150, "lb"),
  14413. name: "Legendary",
  14414. image: {
  14415. source: "./media/characters/lucy/legendary.svg",
  14416. extra: 1355 / 1100,
  14417. bottom: 0.045
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Legendary",
  14424. height: math.unit(86882 * 2, "miles"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/drusilla/front.svg",
  14438. extra: 678 / 635,
  14439. bottom: 0.03
  14440. }
  14441. },
  14442. back: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Back",
  14446. image: {
  14447. source: "./media/characters/drusilla/back.svg",
  14448. extra: 678 / 635,
  14449. bottom: 0.005
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(100, "feet")
  14457. },
  14458. {
  14459. name: "Canon Height",
  14460. height: math.unit(2000, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(180, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/renard-thatch/front.svg",
  14474. extra: 2411 / 2275,
  14475. bottom: 0.01
  14476. }
  14477. },
  14478. frontPosing: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(180, "lb"),
  14481. name: "Front (Posing)",
  14482. image: {
  14483. source: "./media/characters/renard-thatch/front-posing.svg",
  14484. extra: 2381 / 2261,
  14485. bottom: 0.01
  14486. }
  14487. },
  14488. back: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(180, "lb"),
  14491. name: "Back",
  14492. image: {
  14493. source: "./media/characters/renard-thatch/back.svg",
  14494. extra: 2428 / 2288
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Micro",
  14501. height: math.unit(3, "inches")
  14502. },
  14503. {
  14504. name: "Default",
  14505. height: math.unit(6, "feet"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(75, "feet")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(1450, "feet"),
  14519. weight: math.unit(1.21e6, "tons"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/sekvra/front.svg",
  14523. extra: 1193/1190,
  14524. bottom: 78/1271
  14525. }
  14526. },
  14527. side: {
  14528. height: math.unit(1450, "feet"),
  14529. weight: math.unit(1.21e6, "tons"),
  14530. name: "Side",
  14531. image: {
  14532. source: "./media/characters/sekvra/side.svg",
  14533. extra: 1193/1190,
  14534. bottom: 52/1245
  14535. }
  14536. },
  14537. back: {
  14538. height: math.unit(1450, "feet"),
  14539. weight: math.unit(1.21e6, "tons"),
  14540. name: "Back",
  14541. image: {
  14542. source: "./media/characters/sekvra/back.svg",
  14543. extra: 1219/1216,
  14544. bottom: 21/1240
  14545. }
  14546. },
  14547. frontClothed: {
  14548. height: math.unit(1450, "feet"),
  14549. weight: math.unit(1.21e6, "tons"),
  14550. name: "Front (Clothed)",
  14551. image: {
  14552. source: "./media/characters/sekvra/front-clothed.svg",
  14553. extra: 1192/1189,
  14554. bottom: 79/1271
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Macro",
  14561. height: math.unit(1450, "feet"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Megamacro",
  14566. height: math.unit(15000, "feet")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(150, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/carmine/front.svg",
  14579. extra: 1,
  14580. bottom: 0.035
  14581. }
  14582. },
  14583. frontArmor: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Front (Armor)",
  14587. image: {
  14588. source: "./media/characters/carmine/front-armor.svg",
  14589. extra: 1,
  14590. bottom: 0.035
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Large",
  14597. height: math.unit(1, "mile")
  14598. },
  14599. {
  14600. name: "Huge",
  14601. height: math.unit(40, "miles"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Colossal",
  14606. height: math.unit(2500, "miles")
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/elyssia/front.svg",
  14619. extra: 2201 / 2035,
  14620. bottom: 0.05
  14621. }
  14622. },
  14623. frontClothed: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Front (Clothed)",
  14627. image: {
  14628. source: "./media/characters/elyssia/front-clothed.svg",
  14629. extra: 2201 / 2035,
  14630. bottom: 0.05
  14631. }
  14632. },
  14633. back: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(150, "lb"),
  14636. name: "Back",
  14637. image: {
  14638. source: "./media/characters/elyssia/back.svg",
  14639. extra: 2201 / 2035,
  14640. bottom: 0.013
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Smaller",
  14647. height: math.unit(150, "feet")
  14648. },
  14649. {
  14650. name: "Standard",
  14651. height: math.unit(1400, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Distracted",
  14656. height: math.unit(15000, "feet")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(7 + 4/12, "feet"),
  14665. weight: math.unit(690, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/geno-maxwell/front.svg",
  14669. extra: 984/856,
  14670. bottom: 87/1071
  14671. }
  14672. },
  14673. back: {
  14674. height: math.unit(7 + 4/12, "feet"),
  14675. weight: math.unit(690, "lb"),
  14676. name: "Back",
  14677. image: {
  14678. source: "./media/characters/geno-maxwell/back.svg",
  14679. extra: 981/854,
  14680. bottom: 57/1038
  14681. }
  14682. },
  14683. frontCostume: {
  14684. height: math.unit(7 + 4/12, "feet"),
  14685. weight: math.unit(690, "lb"),
  14686. name: "Front (Costume)",
  14687. image: {
  14688. source: "./media/characters/geno-maxwell/front-costume.svg",
  14689. extra: 984/856,
  14690. bottom: 87/1071
  14691. }
  14692. },
  14693. backcostume: {
  14694. height: math.unit(7 + 4/12, "feet"),
  14695. weight: math.unit(690, "lb"),
  14696. name: "Back (Costume)",
  14697. image: {
  14698. source: "./media/characters/geno-maxwell/back-costume.svg",
  14699. extra: 981/854,
  14700. bottom: 57/1038
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Micro",
  14707. height: math.unit(3, "inches")
  14708. },
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(7 + 4 / 12, "feet"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Macro",
  14716. height: math.unit(220, "feet")
  14717. },
  14718. {
  14719. name: "Megamacro",
  14720. height: math.unit(11, "miles")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(750, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/regena-maxwell/front.svg",
  14733. extra: 984/856,
  14734. bottom: 87/1071
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(7 + 4/12, "feet"),
  14739. weight: math.unit(750, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/regena-maxwell/back.svg",
  14743. extra: 981/854,
  14744. bottom: 57/1038
  14745. }
  14746. },
  14747. frontCostume: {
  14748. height: math.unit(7 + 4/12, "feet"),
  14749. weight: math.unit(750, "lb"),
  14750. name: "Front (Costume)",
  14751. image: {
  14752. source: "./media/characters/regena-maxwell/front-costume.svg",
  14753. extra: 984/856,
  14754. bottom: 87/1071
  14755. }
  14756. },
  14757. backcostume: {
  14758. height: math.unit(7 + 4/12, "feet"),
  14759. weight: math.unit(750, "lb"),
  14760. name: "Back (Costume)",
  14761. image: {
  14762. source: "./media/characters/regena-maxwell/back-costume.svg",
  14763. extra: 981/854,
  14764. bottom: 57/1038
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(7 + 4 / 12, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(220, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(11, "miles")
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14793. extra: 860 / 690,
  14794. bottom: 0.03
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(1.7, "meters"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/quilly/front.svg",
  14815. extra: 890 / 776
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Gigamacro",
  14822. height: math.unit(404090, "miles"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(7 + 8 / 12, "feet"),
  14832. weight: math.unit(350, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/tempest/front.svg",
  14836. extra: 1175 / 1086,
  14837. bottom: 0.02
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(7 + 8 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14851. {
  14852. side: {
  14853. height: math.unit(4 + 5 / 12, "feet"),
  14854. weight: math.unit(80, "lb"),
  14855. name: "Side",
  14856. image: {
  14857. source: "./media/characters/rodger/side.svg",
  14858. extra: 1235 / 1118
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(1, "inch")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(4 + 5 / 12, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(120, "feet")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/danyel/front.svg",
  14887. extra: 1185 / 1123,
  14888. bottom: 0.05
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Shrunken",
  14895. height: math.unit(0.5, "mm")
  14896. },
  14897. {
  14898. name: "Micro",
  14899. height: math.unit(1, "mm"),
  14900. default: true
  14901. },
  14902. {
  14903. name: "Upsized",
  14904. height: math.unit(5 + 5 / 12, "feet")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(5 + 6 / 12, "feet"),
  14913. weight: math.unit(200, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/vivian-bijoux/front.svg",
  14917. extra: 1217/1209,
  14918. bottom: 76/1293
  14919. }
  14920. },
  14921. back: {
  14922. height: math.unit(5 + 6 / 12, "feet"),
  14923. weight: math.unit(200, "lb"),
  14924. name: "Back",
  14925. image: {
  14926. source: "./media/characters/vivian-bijoux/back.svg",
  14927. extra: 1214/1208,
  14928. bottom: 51/1265
  14929. }
  14930. },
  14931. dressed: {
  14932. height: math.unit(5 + 6 / 12, "feet"),
  14933. weight: math.unit(200, "lb"),
  14934. name: "Dressed",
  14935. image: {
  14936. source: "./media/characters/vivian-bijoux/dressed.svg",
  14937. extra: 1217/1209,
  14938. bottom: 76/1293
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5 + 6 / 12, "feet"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Bad Dream",
  14950. height: math.unit(500, "feet")
  14951. },
  14952. {
  14953. name: "Nightmare",
  14954. height: math.unit(500, "miles")
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(6 + 1 / 12, "feet"),
  14963. weight: math.unit(260, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/zeta/front.svg",
  14967. extra: 1968 / 1889,
  14968. bottom: 0.06
  14969. }
  14970. },
  14971. back: {
  14972. height: math.unit(6 + 1 / 12, "feet"),
  14973. weight: math.unit(260, "lb"),
  14974. name: "Back",
  14975. image: {
  14976. source: "./media/characters/zeta/back.svg",
  14977. extra: 1944 / 1858,
  14978. bottom: 0.03
  14979. }
  14980. },
  14981. hand: {
  14982. height: math.unit(1.112, "feet"),
  14983. name: "Hand",
  14984. image: {
  14985. source: "./media/characters/zeta/hand.svg"
  14986. }
  14987. },
  14988. foot: {
  14989. height: math.unit(1.48, "feet"),
  14990. name: "Foot",
  14991. image: {
  14992. source: "./media/characters/zeta/foot.svg"
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(6, "inches")
  15000. },
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(6 + 1 / 12, "feet"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(20, "feet")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(150, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/jamie-larsen/front.svg",
  15021. extra: 962 / 933,
  15022. bottom: 0.02
  15023. }
  15024. },
  15025. back: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Back",
  15029. image: {
  15030. source: "./media/characters/jamie-larsen/back.svg",
  15031. extra: 997 / 946
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(28 + 7 / 12, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Macro+",
  15043. height: math.unit(180, "feet")
  15044. },
  15045. {
  15046. name: "Megamacro",
  15047. height: math.unit(10, "miles")
  15048. },
  15049. {
  15050. name: "Gigamacro",
  15051. height: math.unit(200000, "miles")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(120, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/vance/front.svg",
  15064. extra: 1980 / 1890,
  15065. bottom: 0.09
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(120, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/vance/back.svg",
  15074. extra: 2081 / 1994,
  15075. bottom: 0.014
  15076. }
  15077. },
  15078. hand: {
  15079. height: math.unit(0.88, "feet"),
  15080. name: "Hand",
  15081. image: {
  15082. source: "./media/characters/vance/hand.svg"
  15083. }
  15084. },
  15085. foot: {
  15086. height: math.unit(0.64, "feet"),
  15087. name: "Foot",
  15088. image: {
  15089. source: "./media/characters/vance/foot.svg"
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Small",
  15096. height: math.unit(90, "feet"),
  15097. default: true
  15098. },
  15099. {
  15100. name: "Macro",
  15101. height: math.unit(100, "meters")
  15102. },
  15103. {
  15104. name: "Megamacro",
  15105. height: math.unit(15, "miles")
  15106. },
  15107. ]
  15108. ))
  15109. characterMakers.push(() => makeCharacter(
  15110. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15111. {
  15112. front: {
  15113. height: math.unit(6, "feet"),
  15114. weight: math.unit(180, "lb"),
  15115. name: "Front",
  15116. image: {
  15117. source: "./media/characters/xochitl/front.svg",
  15118. extra: 2297 / 2261,
  15119. bottom: 0.065
  15120. }
  15121. },
  15122. back: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(180, "lb"),
  15125. name: "Back",
  15126. image: {
  15127. source: "./media/characters/xochitl/back.svg",
  15128. extra: 2386 / 2354,
  15129. bottom: 0.01
  15130. }
  15131. },
  15132. foot: {
  15133. height: math.unit(6 / 5 * 1.15, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Foot",
  15136. image: {
  15137. source: "./media/characters/xochitl/foot.svg"
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(80, "feet")
  15145. },
  15146. {
  15147. name: "Macro+",
  15148. height: math.unit(400, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Gigamacro",
  15153. height: math.unit(80000, "miles")
  15154. },
  15155. {
  15156. name: "Gigamacro+",
  15157. height: math.unit(400000, "miles")
  15158. },
  15159. {
  15160. name: "Teramacro",
  15161. height: math.unit(300, "AU")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/vincent/front.svg",
  15174. extra: 1130 / 1080,
  15175. bottom: 0.055
  15176. }
  15177. },
  15178. beak: {
  15179. height: math.unit(6 * 0.1, "feet"),
  15180. name: "Beak",
  15181. image: {
  15182. source: "./media/characters/vincent/beak.svg"
  15183. }
  15184. },
  15185. hand: {
  15186. height: math.unit(6 * 0.85, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Hand",
  15189. image: {
  15190. source: "./media/characters/vincent/hand.svg"
  15191. }
  15192. },
  15193. foot: {
  15194. height: math.unit(6 * 0.19, "feet"),
  15195. weight: math.unit(150, "lb"),
  15196. name: "Foot",
  15197. image: {
  15198. source: "./media/characters/vincent/foot.svg"
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Base",
  15205. height: math.unit(6 + 5 / 12, "feet"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Macro",
  15210. height: math.unit(300, "feet")
  15211. },
  15212. {
  15213. name: "Megamacro",
  15214. height: math.unit(2, "miles")
  15215. },
  15216. {
  15217. name: "Gigamacro",
  15218. height: math.unit(1000, "miles")
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(2, "meters"),
  15227. weight: math.unit(500, "kg"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/coatl/front.svg",
  15231. extra: 3948 / 3500,
  15232. bottom: 0.082
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(4, "meters")
  15240. },
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(100, "meters"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Macro+",
  15248. height: math.unit(300, "meters")
  15249. },
  15250. {
  15251. name: "Megamacro",
  15252. height: math.unit(3, "gigameters")
  15253. },
  15254. {
  15255. name: "Megamacro+",
  15256. height: math.unit(300, "terameters")
  15257. },
  15258. {
  15259. name: "Megamacro++",
  15260. height: math.unit(3, "lightyears")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(50, "kg"),
  15270. name: "front",
  15271. image: {
  15272. source: "./media/characters/shiroryu/front.svg",
  15273. extra: 1990 / 1935
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Mortal Mingling",
  15280. height: math.unit(3, "meters")
  15281. },
  15282. {
  15283. name: "Kaiju-ish",
  15284. height: math.unit(250, "meters")
  15285. },
  15286. {
  15287. name: "Somewhat Godly",
  15288. height: math.unit(400, "km"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Planetary",
  15293. height: math.unit(300, "megameters")
  15294. },
  15295. {
  15296. name: "Galaxy-dwarfing",
  15297. height: math.unit(450, "kiloparsecs")
  15298. },
  15299. {
  15300. name: "Universe Eater",
  15301. height: math.unit(150, "gigaparsecs")
  15302. },
  15303. {
  15304. name: "Almost Immeasurable",
  15305. height: math.unit(1.3e266, "yottaparsecs")
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/umeko/front.svg",
  15318. extra: 1,
  15319. bottom: 0.019
  15320. }
  15321. },
  15322. frontArmored: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Front (Armored)",
  15326. image: {
  15327. source: "./media/characters/umeko/front-armored.svg",
  15328. extra: 1,
  15329. bottom: 0.021
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Macro",
  15336. height: math.unit(220, "feet"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Guardian Dragon",
  15341. height: math.unit(50, "miles")
  15342. },
  15343. {
  15344. name: "Cosmic",
  15345. height: math.unit(800000, "miles")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(150, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/cassidy/front.svg",
  15358. extra: 810/808,
  15359. bottom: 41/851
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Canon Height",
  15366. height: math.unit(120, "feet"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Macro+",
  15371. height: math.unit(400, "feet")
  15372. },
  15373. {
  15374. name: "Macro++",
  15375. height: math.unit(4000, "feet")
  15376. },
  15377. {
  15378. name: "Megamacro",
  15379. height: math.unit(3, "miles")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/isaac/front.svg",
  15392. extra: 896 / 815,
  15393. bottom: 0.11
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Human Size",
  15400. height: math.unit(8, "feet"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Macro",
  15405. height: math.unit(400, "feet")
  15406. },
  15407. {
  15408. name: "Megamacro",
  15409. height: math.unit(50, "miles")
  15410. },
  15411. {
  15412. name: "Canon Height",
  15413. height: math.unit(200, "AU")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(72, "kg"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/sleekit/front.svg",
  15426. extra: 4693 / 4487,
  15427. bottom: 0.012
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Minimum Height",
  15434. height: math.unit(10, "meters")
  15435. },
  15436. {
  15437. name: "Smaller",
  15438. height: math.unit(25, "meters")
  15439. },
  15440. {
  15441. name: "Larger",
  15442. height: math.unit(38, "meters"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Maximum height",
  15447. height: math.unit(100, "meters")
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/nillia/front.svg",
  15460. extra: 2195 / 2037,
  15461. bottom: 0.005
  15462. }
  15463. },
  15464. back: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Back",
  15468. image: {
  15469. source: "./media/characters/nillia/back.svg",
  15470. extra: 2195 / 2037,
  15471. bottom: 0.005
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Canon Height",
  15478. height: math.unit(489, "feet"),
  15479. default: true
  15480. }
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/mesmyriza/front.svg",
  15492. extra: 2067 / 1784,
  15493. bottom: 0.035
  15494. }
  15495. },
  15496. foot: {
  15497. height: math.unit(6 / (250 / 35), "feet"),
  15498. name: "Foot",
  15499. image: {
  15500. source: "./media/characters/mesmyriza/foot.svg"
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Macro",
  15507. height: math.unit(457, "meters"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(8, "megameters")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(250, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/saudade/front.svg",
  15525. extra: 1172 / 1139,
  15526. bottom: 0.035
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(3, "inches")
  15534. },
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(6, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(50, "feet")
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(2800, "feet")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(5 + 4 / 12, "feet"),
  15555. weight: math.unit(100, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/keireer/front.svg",
  15559. extra: 716 / 666,
  15560. bottom: 0.05
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(5 + 4 / 12, "feet"),
  15568. default: true
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(5.5, "feet"),
  15577. weight: math.unit(90, "kg"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/mirja/front.svg",
  15581. extra: 1452/1262,
  15582. bottom: 67/1519
  15583. }
  15584. },
  15585. frontDressed: {
  15586. height: math.unit(5.5, "feet"),
  15587. weight: math.unit(90, "lb"),
  15588. name: "Front (Dressed)",
  15589. image: {
  15590. source: "./media/characters/mirja/dressed.svg",
  15591. extra: 1452/1262,
  15592. bottom: 67/1519
  15593. }
  15594. },
  15595. back: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(90, "lb"),
  15598. name: "Back",
  15599. image: {
  15600. source: "./media/characters/mirja/back.svg",
  15601. extra: 1892/1795,
  15602. bottom: 48/1940
  15603. }
  15604. },
  15605. maw: {
  15606. height: math.unit(1.312, "feet"),
  15607. name: "Maw",
  15608. image: {
  15609. source: "./media/characters/mirja/maw.svg"
  15610. }
  15611. },
  15612. paw: {
  15613. height: math.unit(1.15, "feet"),
  15614. name: "Paw",
  15615. image: {
  15616. source: "./media/characters/mirja/paw.svg"
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "\"Incognito\"",
  15623. height: math.unit(3, "meters")
  15624. },
  15625. {
  15626. name: "Strolling Size",
  15627. height: math.unit(15, "km")
  15628. },
  15629. {
  15630. name: "Larger Strolling Size",
  15631. height: math.unit(400, "km")
  15632. },
  15633. {
  15634. name: "Preferred Size",
  15635. height: math.unit(5000, "km"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "True Size",
  15640. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(15, "feet"),
  15649. weight: math.unit(880, "kg"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/nightraver/front.svg",
  15653. extra: 2444 / 2160,
  15654. bottom: 0.027
  15655. }
  15656. },
  15657. back: {
  15658. height: math.unit(15, "feet"),
  15659. weight: math.unit(880, "kg"),
  15660. name: "Back",
  15661. image: {
  15662. source: "./media/characters/nightraver/back.svg",
  15663. extra: 2309 / 2180,
  15664. bottom: 0.005
  15665. }
  15666. },
  15667. sole: {
  15668. height: math.unit(2.878, "feet"),
  15669. name: "Sole",
  15670. image: {
  15671. source: "./media/characters/nightraver/sole.svg"
  15672. }
  15673. },
  15674. foot: {
  15675. height: math.unit(2.285, "feet"),
  15676. name: "Foot",
  15677. image: {
  15678. source: "./media/characters/nightraver/foot.svg"
  15679. }
  15680. },
  15681. maw: {
  15682. height: math.unit(2.67, "feet"),
  15683. name: "Maw",
  15684. image: {
  15685. source: "./media/characters/nightraver/maw.svg"
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Micro",
  15692. height: math.unit(1, "cm")
  15693. },
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(15, "feet"),
  15697. default: true
  15698. },
  15699. {
  15700. name: "Macro",
  15701. height: math.unit(300, "feet")
  15702. },
  15703. {
  15704. name: "Megamacro",
  15705. height: math.unit(300, "miles")
  15706. },
  15707. {
  15708. name: "Gigamacro",
  15709. height: math.unit(10000, "miles")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15715. {
  15716. side: {
  15717. height: math.unit(2, "inches"),
  15718. weight: math.unit(5, "grams"),
  15719. name: "Side",
  15720. image: {
  15721. source: "./media/characters/arc/side.svg"
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Micro",
  15728. height: math.unit(2, "inches"),
  15729. default: true
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(1.1938, "meters"),
  15738. weight: math.unit(54, "kg"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/nebula-shahar/front.svg",
  15742. extra: 1642 / 1436,
  15743. bottom: 0.06
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Megamicro",
  15750. height: math.unit(0.3, "mm")
  15751. },
  15752. {
  15753. name: "Micro",
  15754. height: math.unit(3, "cm")
  15755. },
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(138, "cm"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(30, "m")
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(5.24, "feet"),
  15772. weight: math.unit(150, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/shayla/front.svg",
  15776. extra: 1512 / 1414,
  15777. bottom: 0.01
  15778. }
  15779. },
  15780. back: {
  15781. height: math.unit(5.24, "feet"),
  15782. weight: math.unit(150, "lb"),
  15783. name: "Back",
  15784. image: {
  15785. source: "./media/characters/shayla/back.svg",
  15786. extra: 1512 / 1414
  15787. }
  15788. },
  15789. hand: {
  15790. height: math.unit(0.7781496062992126, "feet"),
  15791. name: "Hand",
  15792. image: {
  15793. source: "./media/characters/shayla/hand.svg"
  15794. }
  15795. },
  15796. foot: {
  15797. height: math.unit(1.4206036745406823, "feet"),
  15798. name: "Foot",
  15799. image: {
  15800. source: "./media/characters/shayla/foot.svg"
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Micro",
  15807. height: math.unit(0.32, "feet")
  15808. },
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(5.24, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(492.12, "feet")
  15817. },
  15818. {
  15819. name: "Megamacro",
  15820. height: math.unit(186.41, "miles")
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(2.2, "m"),
  15829. weight: math.unit(120, "kg"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/pia-jr/front.svg",
  15833. extra: 1000 / 970,
  15834. bottom: 0.035
  15835. }
  15836. },
  15837. hand: {
  15838. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15839. name: "Hand",
  15840. image: {
  15841. source: "./media/characters/pia-jr/hand.svg"
  15842. }
  15843. },
  15844. paw: {
  15845. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15846. name: "Paw",
  15847. image: {
  15848. source: "./media/characters/pia-jr/paw.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Micro",
  15855. height: math.unit(1.2, "cm")
  15856. },
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(2.2, "m"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Macro",
  15864. height: math.unit(180, "m")
  15865. },
  15866. {
  15867. name: "Megamacro",
  15868. height: math.unit(420, "km")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(2, "m"),
  15877. weight: math.unit(115, "kg"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/pia-sr/front.svg",
  15881. extra: 760 / 730,
  15882. bottom: 0.015
  15883. }
  15884. },
  15885. back: {
  15886. height: math.unit(2, "m"),
  15887. weight: math.unit(115, "kg"),
  15888. name: "Back",
  15889. image: {
  15890. source: "./media/characters/pia-sr/back.svg",
  15891. extra: 760 / 730,
  15892. bottom: 0.01
  15893. }
  15894. },
  15895. hand: {
  15896. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15897. name: "Hand",
  15898. image: {
  15899. source: "./media/characters/pia-sr/hand.svg"
  15900. }
  15901. },
  15902. foot: {
  15903. height: math.unit(1.83, "feet"),
  15904. name: "Foot",
  15905. image: {
  15906. source: "./media/characters/pia-sr/foot.svg"
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Micro",
  15913. height: math.unit(88, "mm")
  15914. },
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(2, "m"),
  15918. default: true
  15919. },
  15920. {
  15921. name: "Macro",
  15922. height: math.unit(200, "m")
  15923. },
  15924. {
  15925. name: "Megamacro",
  15926. height: math.unit(420, "km")
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(8 + 2 / 12, "feet"),
  15935. weight: math.unit(300, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/kibibyte/front.svg",
  15939. extra: 2221 / 2098,
  15940. bottom: 0.04
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(8 + 2 / 12, "feet"),
  15948. default: true
  15949. },
  15950. {
  15951. name: "Socialable Macro",
  15952. height: math.unit(50, "feet")
  15953. },
  15954. {
  15955. name: "Macro",
  15956. height: math.unit(300, "feet")
  15957. },
  15958. {
  15959. name: "Megamacro",
  15960. height: math.unit(500, "miles")
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(6, "feet"),
  15969. weight: math.unit(150, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/felix/front.svg",
  15973. extra: 762 / 722,
  15974. bottom: 0.02
  15975. }
  15976. },
  15977. frontClothed: {
  15978. height: math.unit(6, "feet"),
  15979. weight: math.unit(150, "lb"),
  15980. name: "Front (Clothed)",
  15981. image: {
  15982. source: "./media/characters/felix/front-clothed.svg",
  15983. extra: 762 / 722,
  15984. bottom: 0.02
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(6 + 8 / 12, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(2600, "feet")
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(450, "miles")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6 + 1 / 12, "feet"),
  16009. weight: math.unit(250, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/tobo/front.svg",
  16013. extra: 608 / 586,
  16014. bottom: 0.023
  16015. }
  16016. },
  16017. back: {
  16018. height: math.unit(6 + 1 / 12, "feet"),
  16019. weight: math.unit(250, "lb"),
  16020. name: "Back",
  16021. image: {
  16022. source: "./media/characters/tobo/back.svg",
  16023. extra: 608 / 586
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Nano",
  16030. height: math.unit(2, "nm")
  16031. },
  16032. {
  16033. name: "Megamicro",
  16034. height: math.unit(0.1, "mm")
  16035. },
  16036. {
  16037. name: "Micro",
  16038. height: math.unit(1, "inch"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Human-sized",
  16043. height: math.unit(6 + 1 / 12, "feet")
  16044. },
  16045. {
  16046. name: "Macro",
  16047. height: math.unit(250, "feet")
  16048. },
  16049. {
  16050. name: "Megamacro",
  16051. height: math.unit(75, "miles")
  16052. },
  16053. {
  16054. name: "Texas-sized",
  16055. height: math.unit(750, "miles")
  16056. },
  16057. {
  16058. name: "Teramacro",
  16059. height: math.unit(50000, "miles")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(269, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/danny-kapowsky/front.svg",
  16072. extra: 766 / 736,
  16073. bottom: 0.044
  16074. }
  16075. },
  16076. back: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(269, "lb"),
  16079. name: "Back",
  16080. image: {
  16081. source: "./media/characters/danny-kapowsky/back.svg",
  16082. extra: 797 / 760,
  16083. bottom: 0.025
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Macro",
  16090. height: math.unit(150, "feet"),
  16091. default: true
  16092. },
  16093. {
  16094. name: "Macro+",
  16095. height: math.unit(200, "feet")
  16096. },
  16097. {
  16098. name: "Macro++",
  16099. height: math.unit(300, "feet")
  16100. },
  16101. {
  16102. name: "Macro+++",
  16103. height: math.unit(400, "feet")
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16109. {
  16110. side: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(170, "lb"),
  16113. name: "Side",
  16114. image: {
  16115. source: "./media/characters/finn/side.svg",
  16116. extra: 1953 / 1807,
  16117. bottom: 0.057
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(14445, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(5 + 6 / 12, "feet"),
  16134. weight: math.unit(125, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/roy/front.svg",
  16138. extra: 1,
  16139. bottom: 0.11
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Micro",
  16146. height: math.unit(3, "inches"),
  16147. default: true
  16148. },
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(5 + 6 / 12, "feet")
  16152. },
  16153. {
  16154. name: "Lesser Macro",
  16155. height: math.unit(60, "feet")
  16156. },
  16157. {
  16158. name: "Greater Macro",
  16159. height: math.unit(120, "feet")
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16165. {
  16166. front: {
  16167. height: math.unit(6, "feet"),
  16168. weight: math.unit(100, "lb"),
  16169. name: "Front",
  16170. image: {
  16171. source: "./media/characters/aevsivs/front.svg",
  16172. extra: 1,
  16173. bottom: 0.03
  16174. }
  16175. },
  16176. back: {
  16177. height: math.unit(6, "feet"),
  16178. weight: math.unit(100, "lb"),
  16179. name: "Back",
  16180. image: {
  16181. source: "./media/characters/aevsivs/back.svg"
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Micro",
  16188. height: math.unit(2, "inches"),
  16189. default: true
  16190. },
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(5, "feet")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(5 + 7 / 12, "feet"),
  16202. weight: math.unit(159, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/hildegard/front.svg",
  16206. extra: 289 / 269,
  16207. bottom: 7.63 / 297.8
  16208. }
  16209. },
  16210. back: {
  16211. height: math.unit(5 + 7 / 12, "feet"),
  16212. weight: math.unit(159, "lb"),
  16213. name: "Back",
  16214. image: {
  16215. source: "./media/characters/hildegard/back.svg",
  16216. extra: 280 / 260,
  16217. bottom: 2.3 / 282
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(5 + 7 / 12, "feet"),
  16225. default: true
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16231. {
  16232. bernard: {
  16233. height: math.unit(2 + 7 / 12, "feet"),
  16234. weight: math.unit(66, "lb"),
  16235. name: "Bernard",
  16236. rename: true,
  16237. image: {
  16238. source: "./media/characters/bernard-wilder/bernard.svg",
  16239. extra: 192 / 128,
  16240. bottom: 0.05
  16241. }
  16242. },
  16243. wilder: {
  16244. height: math.unit(5 + 8 / 12, "feet"),
  16245. weight: math.unit(143, "lb"),
  16246. name: "Wilder",
  16247. rename: true,
  16248. image: {
  16249. source: "./media/characters/bernard-wilder/wilder.svg",
  16250. extra: 361 / 312,
  16251. bottom: 0.02
  16252. }
  16253. },
  16254. },
  16255. [
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(2 + 7 / 12, "feet"),
  16259. default: true
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16265. {
  16266. anthro: {
  16267. height: math.unit(6 + 1 / 12, "feet"),
  16268. weight: math.unit(155, "lb"),
  16269. name: "Anthro",
  16270. image: {
  16271. source: "./media/characters/hearth/anthro.svg",
  16272. extra: 1178/1136,
  16273. bottom: 28/1206
  16274. }
  16275. },
  16276. feral: {
  16277. height: math.unit(3.78, "feet"),
  16278. weight: math.unit(35, "kg"),
  16279. name: "Feral",
  16280. image: {
  16281. source: "./media/characters/hearth/feral.svg",
  16282. extra: 153 / 135,
  16283. bottom: 0.03
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(6 + 1 / 12, "feet"),
  16291. default: true
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16297. {
  16298. front: {
  16299. height: math.unit(6, "feet"),
  16300. weight: math.unit(182, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/ingrid/front.svg",
  16304. extra: 294 / 268,
  16305. bottom: 0.027
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(6, "feet"),
  16313. default: true
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16319. {
  16320. eevee: {
  16321. height: math.unit(2 + 10 / 12, "feet"),
  16322. weight: math.unit(86, "lb"),
  16323. name: "Malgam",
  16324. image: {
  16325. source: "./media/characters/malgam/eevee.svg",
  16326. extra: 952/784,
  16327. bottom: 38/990
  16328. }
  16329. },
  16330. sylveon: {
  16331. height: math.unit(4, "feet"),
  16332. weight: math.unit(101, "lb"),
  16333. name: "Future Malgam",
  16334. rename: true,
  16335. image: {
  16336. source: "./media/characters/malgam/sylveon.svg",
  16337. extra: 371 / 325,
  16338. bottom: 0.015
  16339. }
  16340. },
  16341. gigantamax: {
  16342. height: math.unit(50, "feet"),
  16343. name: "Gigantamax Malgam",
  16344. rename: true,
  16345. image: {
  16346. source: "./media/characters/malgam/gigantamax.svg"
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(2 + 10 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(5 + 11 / 12, "feet"),
  16363. weight: math.unit(188, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/fleur/front.svg",
  16367. extra: 309 / 283,
  16368. bottom: 0.007
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(5 + 11 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(5 + 4 / 12, "feet"),
  16385. weight: math.unit(122, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/jude/front.svg",
  16389. extra: 288 / 273,
  16390. bottom: 0.03
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(5 + 4 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(5 + 11 / 12, "feet"),
  16407. weight: math.unit(190, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/seara/front.svg",
  16411. extra: 1,
  16412. bottom: 0.05
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(5 + 11 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(16 + 5 / 12, "feet"),
  16429. weight: math.unit(524, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/caspian-lugia/front.svg",
  16433. extra: 1,
  16434. bottom: 0.04
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(16 + 5 / 12, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(5 + 7 / 12, "feet"),
  16451. weight: math.unit(170, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/mika/front.svg",
  16455. extra: 1,
  16456. bottom: 0.016
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(5 + 7 / 12, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(6 + 2 / 12, "feet"),
  16473. weight: math.unit(268, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/sol/front.svg",
  16477. extra: 247 / 231,
  16478. bottom: 0.05
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(6 + 2 / 12, "feet"),
  16486. default: true
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16492. {
  16493. buizel: {
  16494. height: math.unit(2 + 5 / 12, "feet"),
  16495. weight: math.unit(87, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/umiko/buizel.svg",
  16499. extra: 172 / 157,
  16500. bottom: 0.01
  16501. },
  16502. form: "buizel",
  16503. default: true
  16504. },
  16505. floatzel: {
  16506. height: math.unit(5 + 9 / 12, "feet"),
  16507. weight: math.unit(250, "lb"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/umiko/floatzel.svg",
  16511. extra: 1076/1006,
  16512. bottom: 15/1091
  16513. },
  16514. form: "floatzel",
  16515. default: true
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(2 + 5 / 12, "feet"),
  16522. form: "buizel",
  16523. default: true
  16524. },
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(5 + 9 / 12, "feet"),
  16528. form: "floatzel",
  16529. default: true
  16530. },
  16531. ],
  16532. {
  16533. "buizel": {
  16534. name: "Buizel"
  16535. },
  16536. "floatzel": {
  16537. name: "Floatzel",
  16538. default: true
  16539. }
  16540. }
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(6 + 2 / 12, "feet"),
  16547. weight: math.unit(146, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/iliac/front.svg",
  16551. extra: 389 / 365,
  16552. bottom: 0.035
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(6 + 2 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(6, "feet"),
  16569. weight: math.unit(170, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/topaz/front.svg",
  16573. extra: 317 / 303,
  16574. bottom: 0.055
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(5 + 11 / 12, "feet"),
  16591. weight: math.unit(144, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/gabriel/front.svg",
  16595. extra: 285 / 262,
  16596. bottom: 0.004
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(5 + 11 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16610. {
  16611. side: {
  16612. height: math.unit(6 + 5 / 12, "feet"),
  16613. weight: math.unit(300, "lb"),
  16614. name: "Side",
  16615. image: {
  16616. source: "./media/characters/tempest-suicune/side.svg",
  16617. extra: 195 / 154,
  16618. bottom: 0.04
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 5 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(7 + 2 / 12, "feet"),
  16635. weight: math.unit(322, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/vulcan/front.svg",
  16639. extra: 154 / 147,
  16640. bottom: 0.04
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(7 + 2 / 12, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(5 + 10 / 12, "feet"),
  16657. weight: math.unit(264, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/gault/front.svg",
  16661. extra: 161 / 140,
  16662. bottom: 0.028
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(5 + 10 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(150, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/shard/front.svg",
  16683. extra: 273 / 238,
  16684. bottom: 0.02
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(3 + 6 / 12, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16698. {
  16699. front: {
  16700. height: math.unit(5 + 11 / 12, "feet"),
  16701. weight: math.unit(146, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/ashe/front.svg",
  16705. extra: 400 / 373,
  16706. bottom: 0.01
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(5 + 11 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(5 + 5 / 12, "feet"),
  16723. weight: math.unit(135, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/beatrix/front.svg",
  16727. extra: 392 / 379,
  16728. bottom: 0.01
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(6, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(6 + 2/12, "feet"),
  16745. weight: math.unit(135, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/ignatius/front.svg",
  16749. extra: 1380/1259,
  16750. bottom: 27/1407
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(6 + 2/12, "feet"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6 + 2 / 12, "feet"),
  16767. weight: math.unit(138, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/mei-li/front.svg",
  16771. extra: 237 / 229,
  16772. bottom: 0.03
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(6 + 2 / 12, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(2 + 4 / 12, "feet"),
  16789. weight: math.unit(62, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/puru/front.svg",
  16793. extra: 206 / 149,
  16794. bottom: 0.06
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(2 + 4 / 12, "feet"),
  16802. default: true
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16808. {
  16809. anthro: {
  16810. height: math.unit(5 + 8/12, "feet"),
  16811. weight: math.unit(200, "lb"),
  16812. energyNeed: math.unit(2000, "kcal"),
  16813. name: "Anthro",
  16814. image: {
  16815. source: "./media/characters/kee/anthro.svg",
  16816. extra: 3251/3184,
  16817. bottom: 250/3501
  16818. }
  16819. },
  16820. taur: {
  16821. height: math.unit(11, "feet"),
  16822. weight: math.unit(500, "lb"),
  16823. energyNeed: math.unit(5000, "kcal"),
  16824. name: "Taur",
  16825. image: {
  16826. source: "./media/characters/kee/taur.svg",
  16827. extra: 1362/1320,
  16828. bottom: 83/1445
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(5 + 8/12, "feet"),
  16836. default: true
  16837. },
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(35, "feet")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16846. {
  16847. anthro: {
  16848. height: math.unit(7, "feet"),
  16849. weight: math.unit(190, "lb"),
  16850. name: "Anthro",
  16851. image: {
  16852. source: "./media/characters/cobalt-dracha/anthro.svg",
  16853. extra: 231 / 225,
  16854. bottom: 0.04
  16855. }
  16856. },
  16857. feral: {
  16858. height: math.unit(9 + 7 / 12, "feet"),
  16859. weight: math.unit(294, "lb"),
  16860. name: "Feral",
  16861. image: {
  16862. source: "./media/characters/cobalt-dracha/feral.svg",
  16863. extra: 692 / 633,
  16864. bottom: 0.05
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(7, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16878. {
  16879. fallen: {
  16880. height: math.unit(11 + 8 / 12, "feet"),
  16881. weight: math.unit(485, "lb"),
  16882. name: "Java (Fallen)",
  16883. rename: true,
  16884. image: {
  16885. source: "./media/characters/java/fallen.svg",
  16886. extra: 226 / 208,
  16887. bottom: 0.005
  16888. }
  16889. },
  16890. godkin: {
  16891. height: math.unit(10 + 6 / 12, "feet"),
  16892. weight: math.unit(328, "lb"),
  16893. name: "Java (Godkin)",
  16894. rename: true,
  16895. image: {
  16896. source: "./media/characters/java/godkin.svg",
  16897. extra: 1104/1068,
  16898. bottom: 36/1140
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(11 + 8 / 12, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(5 + 9 / 12, "feet"),
  16915. weight: math.unit(170, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/purna/front.svg",
  16919. extra: 239 / 229,
  16920. bottom: 0.01
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(5 + 9 / 12, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(5 + 9 / 12, "feet"),
  16937. weight: math.unit(142, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/kuva/front.svg",
  16941. extra: 281 / 271,
  16942. bottom: 0.006
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(5 + 9 / 12, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16956. {
  16957. anthro: {
  16958. height: math.unit(9 + 2 / 12, "feet"),
  16959. weight: math.unit(270, "lb"),
  16960. name: "Anthro",
  16961. image: {
  16962. source: "./media/characters/embra/anthro.svg",
  16963. extra: 200 / 187,
  16964. bottom: 0.02
  16965. }
  16966. },
  16967. feral: {
  16968. height: math.unit(18 + 8 / 12, "feet"),
  16969. weight: math.unit(576, "lb"),
  16970. name: "Feral",
  16971. image: {
  16972. source: "./media/characters/embra/feral.svg",
  16973. extra: 152 / 137,
  16974. bottom: 0.037
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(9 + 2 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16988. {
  16989. anthro: {
  16990. height: math.unit(10 + 9 / 12, "feet"),
  16991. weight: math.unit(224, "lb"),
  16992. name: "Anthro",
  16993. image: {
  16994. source: "./media/characters/grottos/anthro.svg",
  16995. extra: 350 / 332,
  16996. bottom: 0.045
  16997. }
  16998. },
  16999. feral: {
  17000. height: math.unit(20 + 7 / 12, "feet"),
  17001. weight: math.unit(629, "lb"),
  17002. name: "Feral",
  17003. image: {
  17004. source: "./media/characters/grottos/feral.svg",
  17005. extra: 207 / 190,
  17006. bottom: 0.05
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(10 + 9 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17020. {
  17021. anthro: {
  17022. height: math.unit(9 + 6 / 12, "feet"),
  17023. weight: math.unit(298, "lb"),
  17024. name: "Anthro",
  17025. image: {
  17026. source: "./media/characters/frifna/anthro.svg",
  17027. extra: 282 / 269,
  17028. bottom: 0.015
  17029. }
  17030. },
  17031. feral: {
  17032. height: math.unit(16 + 2 / 12, "feet"),
  17033. weight: math.unit(624, "lb"),
  17034. name: "Feral",
  17035. image: {
  17036. source: "./media/characters/frifna/feral.svg"
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(9 + 6 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6 + 2 / 12, "feet"),
  17053. weight: math.unit(168, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/elise/front.svg",
  17057. extra: 276 / 271
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(6 + 2 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(5 + 10 / 12, "feet"),
  17074. weight: math.unit(210, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/glade/front.svg",
  17078. extra: 258 / 247,
  17079. bottom: 0.008
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(5 + 10 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(5 + 10 / 12, "feet"),
  17096. weight: math.unit(129, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/rina/front.svg",
  17100. extra: 266 / 255,
  17101. bottom: 0.005
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. default: true
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(6 + 1 / 12, "feet"),
  17118. weight: math.unit(192, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/veronica/front.svg",
  17122. extra: 319 / 309,
  17123. bottom: 0.005
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(6 + 1 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(9 + 3 / 12, "feet"),
  17140. weight: math.unit(1100, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/braxton/front.svg",
  17144. extra: 1057 / 984,
  17145. bottom: 0.05
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(9 + 3 / 12, "feet")
  17153. },
  17154. {
  17155. name: "Giant",
  17156. height: math.unit(300, "feet"),
  17157. default: true
  17158. },
  17159. {
  17160. name: "Macro",
  17161. height: math.unit(700, "feet")
  17162. },
  17163. {
  17164. name: "Megamacro",
  17165. height: math.unit(6000, "feet")
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(6 + 7 / 12, "feet"),
  17174. weight: math.unit(150, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/blue-feyonics/front.svg",
  17178. extra: 1403 / 1306,
  17179. bottom: 0.047
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(6 + 7 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(1.8, "meters"),
  17196. weight: math.unit(60, "kg"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/maxwell/front.svg",
  17200. extra: 2060 / 1873
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Micro",
  17207. height: math.unit(1, "mm")
  17208. },
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(1.8, "meter"),
  17212. default: true
  17213. },
  17214. {
  17215. name: "Macro",
  17216. height: math.unit(30, "meters")
  17217. },
  17218. {
  17219. name: "Megamacro",
  17220. height: math.unit(10, "km")
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(6, "feet"),
  17229. weight: math.unit(150, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/jack/front.svg",
  17233. extra: 1754 / 1640,
  17234. bottom: 0.01
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(80000, "feet"),
  17242. default: true
  17243. },
  17244. {
  17245. name: "Max size",
  17246. height: math.unit(10, "lightyears")
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17252. {
  17253. urban: {
  17254. height: math.unit(5, "feet"),
  17255. weight: math.unit(240, "lb"),
  17256. name: "Urban",
  17257. image: {
  17258. source: "./media/characters/cafat/urban.svg",
  17259. extra: 1223/1126,
  17260. bottom: 205/1428
  17261. }
  17262. },
  17263. summer: {
  17264. height: math.unit(5, "feet"),
  17265. weight: math.unit(240, "lb"),
  17266. name: "Summer",
  17267. image: {
  17268. source: "./media/characters/cafat/summer.svg",
  17269. extra: 1223/1126,
  17270. bottom: 205/1428
  17271. }
  17272. },
  17273. winter: {
  17274. height: math.unit(5, "feet"),
  17275. weight: math.unit(240, "lb"),
  17276. name: "Winter",
  17277. image: {
  17278. source: "./media/characters/cafat/winter.svg",
  17279. extra: 1223/1126,
  17280. bottom: 205/1428
  17281. }
  17282. },
  17283. lingerie: {
  17284. height: math.unit(5, "feet"),
  17285. weight: math.unit(240, "lb"),
  17286. name: "Lingerie",
  17287. image: {
  17288. source: "./media/characters/cafat/lingerie.svg",
  17289. extra: 1223/1126,
  17290. bottom: 205/1428
  17291. }
  17292. },
  17293. upright: {
  17294. height: math.unit(6.3, "feet"),
  17295. weight: math.unit(240, "lb"),
  17296. name: "Upright",
  17297. image: {
  17298. source: "./media/characters/cafat/upright.svg",
  17299. bottom: 0.01
  17300. }
  17301. },
  17302. uprightFull: {
  17303. height: math.unit(6.3, "feet"),
  17304. weight: math.unit(240, "lb"),
  17305. name: "Upright (Full)",
  17306. image: {
  17307. source: "./media/characters/cafat/upright-full.svg",
  17308. bottom: 0.01
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Small",
  17315. height: math.unit(5, "feet"),
  17316. default: true
  17317. },
  17318. {
  17319. name: "Large",
  17320. height: math.unit(13, "feet")
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(6, "feet"),
  17329. weight: math.unit(150, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/verin-raharra/front.svg",
  17333. extra: 5019 / 4835,
  17334. bottom: 0.023
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(7 + 5 / 12, "feet"),
  17342. default: true
  17343. },
  17344. {
  17345. name: "Upsized",
  17346. height: math.unit(20, "feet")
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(7, "feet"),
  17355. weight: math.unit(230, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/nakata/front.svg",
  17359. extra: 1.005,
  17360. bottom: 0.01
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(7, "feet"),
  17368. default: true
  17369. },
  17370. {
  17371. name: "Big",
  17372. height: math.unit(14, "feet")
  17373. },
  17374. {
  17375. name: "Macro",
  17376. height: math.unit(400, "feet")
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(4.91, "feet"),
  17385. weight: math.unit(100, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/lily/front.svg",
  17389. extra: 1585 / 1415,
  17390. bottom: 0.02
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(4.91, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17404. {
  17405. laying: {
  17406. height: math.unit(4 + 4 / 12, "feet"),
  17407. weight: math.unit(600, "lb"),
  17408. name: "Laying",
  17409. image: {
  17410. source: "./media/characters/sheila/laying.svg",
  17411. extra: 1333 / 1265,
  17412. bottom: 0.16
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(4 + 4 / 12, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6, "feet"),
  17429. weight: math.unit(190, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/sax/front.svg",
  17433. extra: 1187 / 973,
  17434. bottom: 0.042
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Micro",
  17441. height: math.unit(4, "inches"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(6, "feet"),
  17451. weight: math.unit(150, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/pandora/front.svg",
  17455. extra: 2720 / 2556,
  17456. bottom: 0.015
  17457. }
  17458. },
  17459. back: {
  17460. height: math.unit(6, "feet"),
  17461. weight: math.unit(150, "lb"),
  17462. name: "Back",
  17463. image: {
  17464. source: "./media/characters/pandora/back.svg",
  17465. extra: 2720 / 2556,
  17466. bottom: 0.01
  17467. }
  17468. },
  17469. beans: {
  17470. height: math.unit(6 / 8, "feet"),
  17471. name: "Beans",
  17472. image: {
  17473. source: "./media/characters/pandora/beans.svg"
  17474. }
  17475. },
  17476. collar: {
  17477. height: math.unit(0.31, "feet"),
  17478. name: "Collar",
  17479. image: {
  17480. source: "./media/characters/pandora/collar.svg"
  17481. }
  17482. },
  17483. skirt: {
  17484. height: math.unit(6, "feet"),
  17485. weight: math.unit(150, "lb"),
  17486. name: "Skirt",
  17487. image: {
  17488. source: "./media/characters/pandora/skirt.svg",
  17489. extra: 1622 / 1525,
  17490. bottom: 0.015
  17491. }
  17492. },
  17493. hoodie: {
  17494. height: math.unit(6, "feet"),
  17495. weight: math.unit(150, "lb"),
  17496. name: "Hoodie",
  17497. image: {
  17498. source: "./media/characters/pandora/hoodie.svg",
  17499. extra: 1622 / 1525,
  17500. bottom: 0.015
  17501. }
  17502. },
  17503. casual: {
  17504. height: math.unit(6, "feet"),
  17505. weight: math.unit(150, "lb"),
  17506. name: "Casual",
  17507. image: {
  17508. source: "./media/characters/pandora/casual.svg",
  17509. extra: 1622 / 1525,
  17510. bottom: 0.015
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(6, "feet")
  17518. },
  17519. {
  17520. name: "Big Steppy",
  17521. height: math.unit(1, "km"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Galactic Steppy",
  17526. height: math.unit(2, "gigameters")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17532. {
  17533. side: {
  17534. height: math.unit(10, "feet"),
  17535. weight: math.unit(800, "kg"),
  17536. name: "Side",
  17537. image: {
  17538. source: "./media/characters/venio-darcony/side.svg",
  17539. extra: 1373 / 1003,
  17540. bottom: 0.037
  17541. }
  17542. },
  17543. front: {
  17544. height: math.unit(19, "feet"),
  17545. weight: math.unit(800, "kg"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/venio-darcony/front.svg"
  17549. }
  17550. },
  17551. back: {
  17552. height: math.unit(19, "feet"),
  17553. weight: math.unit(800, "kg"),
  17554. name: "Back",
  17555. image: {
  17556. source: "./media/characters/venio-darcony/back.svg"
  17557. }
  17558. },
  17559. sideNsfw: {
  17560. height: math.unit(10, "feet"),
  17561. weight: math.unit(800, "kg"),
  17562. name: "Side (NSFW)",
  17563. image: {
  17564. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17565. extra: 1373 / 1003,
  17566. bottom: 0.037
  17567. }
  17568. },
  17569. frontNsfw: {
  17570. height: math.unit(19, "feet"),
  17571. weight: math.unit(800, "kg"),
  17572. name: "Front (NSFW)",
  17573. image: {
  17574. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17575. }
  17576. },
  17577. backNsfw: {
  17578. height: math.unit(19, "feet"),
  17579. weight: math.unit(800, "kg"),
  17580. name: "Back (NSFW)",
  17581. image: {
  17582. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17583. }
  17584. },
  17585. sideArmored: {
  17586. height: math.unit(10, "feet"),
  17587. weight: math.unit(800, "kg"),
  17588. name: "Side (Armored)",
  17589. image: {
  17590. source: "./media/characters/venio-darcony/side-armored.svg",
  17591. extra: 1373 / 1003,
  17592. bottom: 0.037
  17593. }
  17594. },
  17595. frontArmored: {
  17596. height: math.unit(19, "feet"),
  17597. weight: math.unit(900, "kg"),
  17598. name: "Front (Armored)",
  17599. image: {
  17600. source: "./media/characters/venio-darcony/front-armored.svg"
  17601. }
  17602. },
  17603. backArmored: {
  17604. height: math.unit(19, "feet"),
  17605. weight: math.unit(900, "kg"),
  17606. name: "Back (Armored)",
  17607. image: {
  17608. source: "./media/characters/venio-darcony/back-armored.svg"
  17609. }
  17610. },
  17611. sword: {
  17612. height: math.unit(10, "feet"),
  17613. weight: math.unit(50, "lb"),
  17614. name: "Sword",
  17615. image: {
  17616. source: "./media/characters/venio-darcony/sword.svg"
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(10, "feet")
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(130, "feet"),
  17628. default: true
  17629. },
  17630. {
  17631. name: "Macro+",
  17632. height: math.unit(240, "feet")
  17633. },
  17634. ]
  17635. ))
  17636. characterMakers.push(() => makeCharacter(
  17637. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17638. {
  17639. front: {
  17640. height: math.unit(6, "feet"),
  17641. weight: math.unit(150, "lb"),
  17642. name: "Front",
  17643. image: {
  17644. source: "./media/characters/veski/front.svg",
  17645. extra: 1299 / 1225,
  17646. bottom: 0.04
  17647. }
  17648. },
  17649. back: {
  17650. height: math.unit(6, "feet"),
  17651. weight: math.unit(150, "lb"),
  17652. name: "Back",
  17653. image: {
  17654. source: "./media/characters/veski/back.svg",
  17655. extra: 1299 / 1225,
  17656. bottom: 0.008
  17657. }
  17658. },
  17659. maw: {
  17660. height: math.unit(1.5 * 1.21, "feet"),
  17661. name: "Maw",
  17662. image: {
  17663. source: "./media/characters/veski/maw.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Macro",
  17670. height: math.unit(2, "km"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(5 + 7 / 12, "feet"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/isabelle/front.svg",
  17683. extra: 2130 / 1976,
  17684. bottom: 0.05
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Supermicro",
  17691. height: math.unit(10, "micrometers")
  17692. },
  17693. {
  17694. name: "Micro",
  17695. height: math.unit(1, "inch")
  17696. },
  17697. {
  17698. name: "Tiny",
  17699. height: math.unit(5, "inches")
  17700. },
  17701. {
  17702. name: "Standard",
  17703. height: math.unit(5 + 7 / 12, "inches")
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(80, "meters"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Megamacro",
  17712. height: math.unit(250, "meters")
  17713. },
  17714. {
  17715. name: "Gigamacro",
  17716. height: math.unit(5, "km")
  17717. },
  17718. {
  17719. name: "Cosmic",
  17720. height: math.unit(2.5e6, "miles")
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(6, "feet"),
  17729. weight: math.unit(150, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/hanzo/front.svg",
  17733. extra: 374 / 344,
  17734. bottom: 0.02
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(8, "feet"),
  17742. default: true
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(7, "feet"),
  17751. weight: math.unit(130, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/anna/front.svg",
  17755. extra: 169 / 145,
  17756. bottom: 0.06
  17757. }
  17758. },
  17759. full: {
  17760. height: math.unit(4.96, "feet"),
  17761. weight: math.unit(220, "lb"),
  17762. name: "Full",
  17763. image: {
  17764. source: "./media/characters/anna/full.svg",
  17765. extra: 138 / 114,
  17766. bottom: 0.15
  17767. }
  17768. },
  17769. tongue: {
  17770. height: math.unit(2.53, "feet"),
  17771. name: "Tongue",
  17772. image: {
  17773. source: "./media/characters/anna/tongue.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(7, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/ian-corvid/front.svg",
  17794. extra: 150 / 142,
  17795. bottom: 0.02
  17796. }
  17797. },
  17798. back: {
  17799. height: math.unit(7, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Back",
  17802. image: {
  17803. source: "./media/characters/ian-corvid/back.svg",
  17804. extra: 150 / 143,
  17805. bottom: 0.01
  17806. }
  17807. },
  17808. stomping: {
  17809. height: math.unit(7, "feet"),
  17810. weight: math.unit(150, "lb"),
  17811. name: "Stomping",
  17812. image: {
  17813. source: "./media/characters/ian-corvid/stomping.svg",
  17814. extra: 76 / 72
  17815. }
  17816. },
  17817. sitting: {
  17818. height: math.unit(7 / 1.8, "feet"),
  17819. weight: math.unit(150, "lb"),
  17820. name: "Sitting",
  17821. image: {
  17822. source: "./media/characters/ian-corvid/sitting.svg",
  17823. extra: 1400 / 1269,
  17824. bottom: 0.15
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Tiny Microw",
  17831. height: math.unit(1, "inch")
  17832. },
  17833. {
  17834. name: "Microw",
  17835. height: math.unit(6, "inches")
  17836. },
  17837. {
  17838. name: "Crow",
  17839. height: math.unit(7 + 1 / 12, "feet"),
  17840. default: true
  17841. },
  17842. {
  17843. name: "Macrow",
  17844. height: math.unit(176, "feet")
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(5 + 7 / 12, "feet"),
  17853. weight: math.unit(147, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/natalie-kellon/front.svg",
  17857. extra: 1214 / 1141,
  17858. bottom: 0.02
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Micro",
  17865. height: math.unit(1 / 16, "inch")
  17866. },
  17867. {
  17868. name: "Tiny",
  17869. height: math.unit(4, "inches")
  17870. },
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(5 + 7 / 12, "feet"),
  17874. default: true
  17875. },
  17876. {
  17877. name: "Amazon",
  17878. height: math.unit(12, "feet")
  17879. },
  17880. {
  17881. name: "Giantess",
  17882. height: math.unit(160, "meters")
  17883. },
  17884. {
  17885. name: "Titaness",
  17886. height: math.unit(800, "meters")
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17892. {
  17893. front: {
  17894. height: math.unit(6, "feet"),
  17895. weight: math.unit(150, "lb"),
  17896. name: "Front",
  17897. image: {
  17898. source: "./media/characters/alluria/front.svg",
  17899. extra: 806 / 738,
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. side: {
  17904. height: math.unit(6, "feet"),
  17905. weight: math.unit(150, "lb"),
  17906. name: "Side",
  17907. image: {
  17908. source: "./media/characters/alluria/side.svg",
  17909. extra: 800 / 750,
  17910. }
  17911. },
  17912. back: {
  17913. height: math.unit(6, "feet"),
  17914. weight: math.unit(150, "lb"),
  17915. name: "Back",
  17916. image: {
  17917. source: "./media/characters/alluria/back.svg",
  17918. extra: 806 / 738,
  17919. }
  17920. },
  17921. frontMaid: {
  17922. height: math.unit(6, "feet"),
  17923. weight: math.unit(150, "lb"),
  17924. name: "Front (Maid)",
  17925. image: {
  17926. source: "./media/characters/alluria/front-maid.svg",
  17927. extra: 806 / 738,
  17928. bottom: 0.01
  17929. }
  17930. },
  17931. sideMaid: {
  17932. height: math.unit(6, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Side (Maid)",
  17935. image: {
  17936. source: "./media/characters/alluria/side-maid.svg",
  17937. extra: 800 / 750,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. backMaid: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Back (Maid)",
  17945. image: {
  17946. source: "./media/characters/alluria/back-maid.svg",
  17947. extra: 806 / 738,
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Micro",
  17954. height: math.unit(6, "inches"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17961. {
  17962. front: {
  17963. height: math.unit(6, "feet"),
  17964. weight: math.unit(150, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/kyle/front.svg",
  17968. extra: 1069 / 962,
  17969. bottom: 77.228 / 1727.45
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(150, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(6, "feet"),
  17986. weight: math.unit(300, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/duncan/front.svg",
  17990. extra: 1650 / 1482,
  17991. bottom: 0.05
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(100, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(5 + 4 / 12, "feet"),
  18008. weight: math.unit(220, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/memory/front.svg",
  18012. extra: 3641 / 3545,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. back: {
  18017. height: math.unit(5 + 4 / 12, "feet"),
  18018. weight: math.unit(220, "lb"),
  18019. name: "Back",
  18020. image: {
  18021. source: "./media/characters/memory/back.svg",
  18022. extra: 3641 / 3545,
  18023. bottom: 0.025
  18024. }
  18025. },
  18026. frontSkirt: {
  18027. height: math.unit(5 + 4 / 12, "feet"),
  18028. weight: math.unit(220, "lb"),
  18029. name: "Front (Skirt)",
  18030. image: {
  18031. source: "./media/characters/memory/front-skirt.svg",
  18032. extra: 3641 / 3545,
  18033. bottom: 0.03
  18034. }
  18035. },
  18036. frontDress: {
  18037. height: math.unit(5 + 4 / 12, "feet"),
  18038. weight: math.unit(220, "lb"),
  18039. name: "Front (Dress)",
  18040. image: {
  18041. source: "./media/characters/memory/front-dress.svg",
  18042. extra: 3641 / 3545,
  18043. bottom: 0.03
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(6, "inches"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(5 + 4 / 12, "feet")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(4 + 11 / 12, "feet"),
  18064. weight: math.unit(100, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/luno/front.svg",
  18068. extra: 1535 / 1487,
  18069. bottom: 0.03
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Micro",
  18076. height: math.unit(3, "inches")
  18077. },
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(4 + 11 / 12, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(300, "feet")
  18086. },
  18087. {
  18088. name: "Megamacro",
  18089. height: math.unit(700, "miles")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(6 + 2 / 12, "feet"),
  18098. weight: math.unit(170, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/jamesy/front.svg",
  18102. extra: 440 / 382,
  18103. bottom: 0.005
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Micro",
  18110. height: math.unit(3, "inches")
  18111. },
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(6 + 2 / 12, "feet"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(300, "feet")
  18120. },
  18121. {
  18122. name: "Megamacro",
  18123. height: math.unit(700, "miles")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18129. {
  18130. front: {
  18131. height: math.unit(6, "feet"),
  18132. weight: math.unit(160, "lb"),
  18133. name: "Front",
  18134. image: {
  18135. source: "./media/characters/mark/front.svg",
  18136. extra: 3300 / 3100,
  18137. bottom: 136.42 / 3440.47
  18138. }
  18139. },
  18140. },
  18141. [
  18142. {
  18143. name: "Macro",
  18144. height: math.unit(120, "meters")
  18145. },
  18146. {
  18147. name: "Bigger Macro",
  18148. height: math.unit(350, "meters")
  18149. },
  18150. {
  18151. name: "Megamacro",
  18152. height: math.unit(8, "km"),
  18153. default: true
  18154. },
  18155. {
  18156. name: "Continental",
  18157. height: math.unit(4550, "km")
  18158. },
  18159. {
  18160. name: "Planetary",
  18161. height: math.unit(65000, "km")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(6, "feet"),
  18170. weight: math.unit(400, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/mac/front.svg",
  18174. extra: 1048 / 987.7,
  18175. bottom: 60 / 1107.6,
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Macro",
  18182. height: math.unit(500, "feet"),
  18183. default: true
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(5 + 2 / 12, "feet"),
  18192. weight: math.unit(190, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/bari/front.svg",
  18196. extra: 3156 / 2880,
  18197. bottom: 0.03
  18198. }
  18199. },
  18200. back: {
  18201. height: math.unit(5 + 2 / 12, "feet"),
  18202. weight: math.unit(190, "lb"),
  18203. name: "Back",
  18204. image: {
  18205. source: "./media/characters/bari/back.svg",
  18206. extra: 3260 / 2834,
  18207. bottom: 0.025
  18208. }
  18209. },
  18210. frontPlush: {
  18211. height: math.unit(5 + 2 / 12, "feet"),
  18212. weight: math.unit(190, "lb"),
  18213. name: "Front (Plush)",
  18214. image: {
  18215. source: "./media/characters/bari/front-plush.svg",
  18216. extra: 1112 / 1061,
  18217. bottom: 0.002
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Micro",
  18224. height: math.unit(3, "inches")
  18225. },
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(5 + 2 / 12, "feet"),
  18229. default: true
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(20, "feet")
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18239. {
  18240. front: {
  18241. height: math.unit(6 + 1 / 12, "feet"),
  18242. weight: math.unit(275, "lb"),
  18243. name: "Front",
  18244. image: {
  18245. source: "./media/characters/hunter-misha-raven/front.svg"
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Mortal",
  18252. height: math.unit(6 + 1 / 12, "feet")
  18253. },
  18254. {
  18255. name: "Divine",
  18256. height: math.unit(1.12134e34, "parsecs"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6 + 3 / 12, "feet"),
  18266. weight: math.unit(220, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/max-calore/front.svg",
  18270. extra: 1700 / 1648,
  18271. bottom: 0.01
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(6 + 3 / 12, "feet"),
  18276. weight: math.unit(220, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/max-calore/back.svg",
  18280. extra: 1700 / 1648,
  18281. bottom: 0.01
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(6 + 3 / 12, "feet"),
  18289. default: true
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18295. {
  18296. side: {
  18297. height: math.unit(2 + 8 / 12, "feet"),
  18298. weight: math.unit(99, "lb"),
  18299. name: "Side",
  18300. image: {
  18301. source: "./media/characters/aspen/side.svg",
  18302. extra: 152 / 138,
  18303. bottom: 0.032
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(2 + 8 / 12, "feet"),
  18311. default: true
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18317. {
  18318. side: {
  18319. height: math.unit(3 + 2 / 12, "feet"),
  18320. weight: math.unit(224, "lb"),
  18321. name: "Side",
  18322. image: {
  18323. source: "./media/characters/sheila-feral-wolf/side.svg",
  18324. extra: 179 / 166,
  18325. bottom: 0.03
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(3 + 2 / 12, "feet"),
  18333. default: true
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18339. {
  18340. side: {
  18341. height: math.unit(1 + 9 / 12, "feet"),
  18342. weight: math.unit(38, "lb"),
  18343. name: "Side",
  18344. image: {
  18345. source: "./media/characters/michelle/side.svg",
  18346. extra: 147 / 136.7,
  18347. bottom: 0.03
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(1 + 9 / 12, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(1.54, "feet"),
  18364. weight: math.unit(50, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/nino/front.svg"
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(1.54, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(1.49, "feet"),
  18384. weight: math.unit(45, "lb"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/viola/front.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(1.49, "feet"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(6 + 5 / 12, "feet"),
  18404. weight: math.unit(580, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/atlas/front.svg",
  18408. extra: 298.5 / 290,
  18409. bottom: 0.015
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(6 + 5 / 12, "feet"),
  18417. default: true
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18423. {
  18424. side: {
  18425. height: math.unit(15.6, "inches"),
  18426. weight: math.unit(10, "lb"),
  18427. name: "Side",
  18428. image: {
  18429. source: "./media/characters/davy/side.svg",
  18430. extra: 200 / 170,
  18431. bottom: 0.01
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(15.6, "inches"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18445. {
  18446. side: {
  18447. height: math.unit(4 + 8 / 12, "feet"),
  18448. weight: math.unit(166, "lb"),
  18449. name: "Side",
  18450. image: {
  18451. source: "./media/characters/fiona/side.svg",
  18452. extra: 232 / 220,
  18453. bottom: 0.03
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(4 + 8 / 12, "feet"),
  18461. default: true
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18467. {
  18468. front: {
  18469. height: math.unit(26, "inches"),
  18470. weight: math.unit(35, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/lyla/front.svg",
  18474. bottom: 0.1
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(3, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18488. {
  18489. side: {
  18490. height: math.unit(1.8, "feet"),
  18491. weight: math.unit(44, "lb"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/perseus/side.svg",
  18495. bottom: 0.21
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(1.8, "feet"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18509. {
  18510. side: {
  18511. height: math.unit(4 + 2 / 12, "feet"),
  18512. weight: math.unit(20, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/remus/side.svg"
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(4 + 2 / 12, "feet"),
  18523. default: true
  18524. },
  18525. ]
  18526. ))
  18527. characterMakers.push(() => makeCharacter(
  18528. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18529. {
  18530. front: {
  18531. height: math.unit(4 + 11 / 12, "feet"),
  18532. weight: math.unit(114, "lb"),
  18533. name: "Front",
  18534. image: {
  18535. source: "./media/characters/raf/front.svg",
  18536. extra: 1504/1339,
  18537. bottom: 26/1530
  18538. }
  18539. },
  18540. side: {
  18541. height: math.unit(4 + 11 / 12, "feet"),
  18542. weight: math.unit(114, "lb"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/raf/side.svg",
  18546. extra: 1466/1316,
  18547. bottom: 29/1495
  18548. }
  18549. },
  18550. paw: {
  18551. height: math.unit(1.45, "feet"),
  18552. name: "Paw",
  18553. image: {
  18554. source: "./media/characters/raf/paw.svg"
  18555. },
  18556. extraAttributes: {
  18557. "toeSize": {
  18558. name: "Toe Size",
  18559. power: 2,
  18560. type: "area",
  18561. base: math.unit(0.004, "m^2")
  18562. },
  18563. "padSize": {
  18564. name: "Pad Size",
  18565. power: 2,
  18566. type: "area",
  18567. base: math.unit(0.04, "m^2")
  18568. },
  18569. "footSize": {
  18570. name: "Foot Size",
  18571. power: 2,
  18572. type: "area",
  18573. base: math.unit(0.08, "m^2")
  18574. },
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Micro",
  18581. height: math.unit(2, "inches")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(4 + 11 / 12, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(70, "feet")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18596. {
  18597. front: {
  18598. height: math.unit(1.5, "meters"),
  18599. weight: math.unit(68, "kg"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/liam-einarr/front.svg",
  18603. extra: 2822 / 2666
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(1.5, "meters"),
  18608. weight: math.unit(68, "kg"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/liam-einarr/back.svg",
  18612. extra: 2822 / 2666,
  18613. bottom: 0.015
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(1.5, "meters"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(150, "meters")
  18626. },
  18627. {
  18628. name: "Megamacro",
  18629. height: math.unit(35, "km")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(6, "feet"),
  18638. weight: math.unit(75, "kg"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/linda/front.svg",
  18642. extra: 930 / 874,
  18643. bottom: 0.004
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(6, "feet"),
  18651. default: true
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(6 + 8 / 12, "feet"),
  18660. weight: math.unit(220, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/caylex/front.svg",
  18664. extra: 821 / 772,
  18665. bottom: 0.07
  18666. }
  18667. },
  18668. back: {
  18669. height: math.unit(6 + 8 / 12, "feet"),
  18670. weight: math.unit(220, "lb"),
  18671. name: "Back",
  18672. image: {
  18673. source: "./media/characters/caylex/back.svg",
  18674. extra: 821 / 772,
  18675. bottom: 0.022
  18676. }
  18677. },
  18678. hand: {
  18679. height: math.unit(1.25, "feet"),
  18680. name: "Hand",
  18681. image: {
  18682. source: "./media/characters/caylex/hand.svg"
  18683. }
  18684. },
  18685. foot: {
  18686. height: math.unit(1.6, "feet"),
  18687. name: "Foot",
  18688. image: {
  18689. source: "./media/characters/caylex/foot.svg"
  18690. }
  18691. },
  18692. armored: {
  18693. height: math.unit(6 + 8 / 12, "feet"),
  18694. weight: math.unit(250, "lb"),
  18695. name: "Armored",
  18696. image: {
  18697. source: "./media/characters/caylex/armored.svg",
  18698. extra: 1420 / 1310,
  18699. bottom: 0.045
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(6 + 8 / 12, "feet"),
  18707. default: true
  18708. },
  18709. {
  18710. name: "Normal+",
  18711. height: math.unit(12, "feet")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(7 + 6 / 12, "feet"),
  18720. weight: math.unit(288, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/alana/front.svg",
  18724. extra: 679 / 653,
  18725. bottom: 22.5 / 701
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(7 + 6 / 12, "feet")
  18733. },
  18734. {
  18735. name: "Large",
  18736. height: math.unit(50, "feet")
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(100, "feet"),
  18741. default: true
  18742. },
  18743. {
  18744. name: "Macro+",
  18745. height: math.unit(200, "feet")
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(6 + 1 / 12, "feet"),
  18754. weight: math.unit(210, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/hasani/front.svg",
  18758. extra: 244 / 232,
  18759. bottom: 0.01
  18760. }
  18761. },
  18762. back: {
  18763. height: math.unit(6 + 1 / 12, "feet"),
  18764. weight: math.unit(210, "lb"),
  18765. name: "Back",
  18766. image: {
  18767. source: "./media/characters/hasani/back.svg",
  18768. extra: 244 / 232,
  18769. bottom: 0.01
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(6 + 1 / 12, "feet")
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(175, "feet"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(1.82, "meters"),
  18790. weight: math.unit(140, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/nita/front.svg",
  18794. extra: 2473 / 2363,
  18795. bottom: 0.01
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(1.82, "m")
  18803. },
  18804. {
  18805. name: "Macro",
  18806. height: math.unit(300, "m")
  18807. },
  18808. {
  18809. name: "Mistake Canon",
  18810. height: math.unit(0.5, "miles"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Big Mistake",
  18815. height: math.unit(13, "miles")
  18816. },
  18817. {
  18818. name: "Playing God",
  18819. height: math.unit(2450, "miles")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(4, "feet"),
  18828. weight: math.unit(120, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/shiriko/front.svg",
  18832. extra: 970/934,
  18833. bottom: 5/975
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(4, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(6, "feet"),
  18850. name: "front",
  18851. image: {
  18852. source: "./media/characters/deja/front.svg",
  18853. extra: 926 / 840,
  18854. bottom: 0.07
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Planck Length",
  18861. height: math.unit(1.6e-35, "meters")
  18862. },
  18863. {
  18864. name: "Normal",
  18865. height: math.unit(30.48, "meters"),
  18866. default: true
  18867. },
  18868. {
  18869. name: "Universal",
  18870. height: math.unit(8.8e26, "meters")
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18876. {
  18877. side: {
  18878. height: math.unit(8, "feet"),
  18879. weight: math.unit(6300, "lb"),
  18880. name: "Side",
  18881. image: {
  18882. source: "./media/characters/anima/side.svg",
  18883. bottom: 0.035
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(8, "feet"),
  18891. default: true
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(8, "feet"),
  18900. weight: math.unit(350, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/bianca/front.svg",
  18904. extra: 234 / 225,
  18905. bottom: 0.03
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(8, "feet"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(11 + 5/12, "feet"),
  18922. weight: math.unit(1200, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/adinia/front.svg",
  18926. extra: 1767/1641,
  18927. bottom: 44/1811
  18928. },
  18929. extraAttributes: {
  18930. "energyIntake": {
  18931. name: "Energy Intake",
  18932. power: 3,
  18933. type: "energy",
  18934. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18935. },
  18936. }
  18937. },
  18938. back: {
  18939. height: math.unit(11 + 5/12, "feet"),
  18940. weight: math.unit(1200, "lb"),
  18941. name: "Back",
  18942. image: {
  18943. source: "./media/characters/adinia/back.svg",
  18944. extra: 1834/1684,
  18945. bottom: 14/1848
  18946. },
  18947. extraAttributes: {
  18948. "energyIntake": {
  18949. name: "Energy Intake",
  18950. power: 3,
  18951. type: "energy",
  18952. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18953. },
  18954. }
  18955. },
  18956. maw: {
  18957. height: math.unit(3.79, "feet"),
  18958. name: "Maw",
  18959. image: {
  18960. source: "./media/characters/adinia/maw.svg"
  18961. }
  18962. },
  18963. rump: {
  18964. height: math.unit(4.6, "feet"),
  18965. name: "Rump",
  18966. image: {
  18967. source: "./media/characters/adinia/rump.svg"
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(11 + 5 / 12, "feet"),
  18975. default: true
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(3, "meters"),
  18984. weight: math.unit(200, "kg"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/lykasa/front.svg",
  18988. extra: 1076 / 976,
  18989. bottom: 0.06
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(3, "meters")
  18997. },
  18998. {
  18999. name: "Kaiju",
  19000. height: math.unit(120, "meters"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Mega Kaiju",
  19005. height: math.unit(240, "km")
  19006. },
  19007. {
  19008. name: "Giga Kaiju",
  19009. height: math.unit(400, "megameters")
  19010. },
  19011. {
  19012. name: "Tera Kaiju",
  19013. height: math.unit(800, "gigameters")
  19014. },
  19015. {
  19016. name: "Kaiju Dragon Goddess",
  19017. height: math.unit(26, "zettaparsecs")
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19023. {
  19024. side: {
  19025. height: math.unit(283 / 124 * 6, "feet"),
  19026. weight: math.unit(35000, "lb"),
  19027. name: "Side",
  19028. image: {
  19029. source: "./media/characters/malfaren/side.svg",
  19030. extra: 1310/529,
  19031. bottom: 24/1334
  19032. }
  19033. },
  19034. front: {
  19035. height: math.unit(22.36, "feet"),
  19036. weight: math.unit(35000, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/malfaren/front.svg",
  19040. extra: 1237/1115,
  19041. bottom: 32/1269
  19042. }
  19043. },
  19044. maw: {
  19045. height: math.unit(6.9, "feet"),
  19046. name: "Maw",
  19047. image: {
  19048. source: "./media/characters/malfaren/maw.svg"
  19049. }
  19050. },
  19051. dick: {
  19052. height: math.unit(6.19, "feet"),
  19053. name: "Dick",
  19054. image: {
  19055. source: "./media/characters/malfaren/dick.svg"
  19056. }
  19057. },
  19058. eye: {
  19059. height: math.unit(0.69, "feet"),
  19060. name: "Eye",
  19061. image: {
  19062. source: "./media/characters/malfaren/eye.svg"
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Big",
  19069. height: math.unit(283 / 162 * 6, "feet"),
  19070. },
  19071. {
  19072. name: "Bigger",
  19073. height: math.unit(283 / 124 * 6, "feet")
  19074. },
  19075. {
  19076. name: "Massive",
  19077. height: math.unit(283 / 92 * 6, "feet"),
  19078. default: true
  19079. },
  19080. {
  19081. name: "👀💦",
  19082. height: math.unit(283 / 73 * 6, "feet"),
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(1.7, "m"),
  19091. weight: math.unit(70, "kg"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/kernel/front.svg",
  19095. extra: 222 / 210,
  19096. bottom: 0.007
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Nano",
  19103. height: math.unit(17, "micrometers")
  19104. },
  19105. {
  19106. name: "Micro",
  19107. height: math.unit(1.7, "mm")
  19108. },
  19109. {
  19110. name: "Small",
  19111. height: math.unit(1.7, "cm")
  19112. },
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(1.7, "m"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(1.75, "meters"),
  19125. weight: math.unit(65, "kg"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/jayne-folest/front.svg",
  19129. extra: 2115 / 2007,
  19130. bottom: 0.02
  19131. }
  19132. },
  19133. back: {
  19134. height: math.unit(1.75, "meters"),
  19135. weight: math.unit(65, "kg"),
  19136. name: "Back",
  19137. image: {
  19138. source: "./media/characters/jayne-folest/back.svg",
  19139. extra: 2115 / 2007,
  19140. bottom: 0.005
  19141. }
  19142. },
  19143. frontClothed: {
  19144. height: math.unit(1.75, "meters"),
  19145. weight: math.unit(65, "kg"),
  19146. name: "Front (Clothed)",
  19147. image: {
  19148. source: "./media/characters/jayne-folest/front-clothed.svg",
  19149. extra: 2115 / 2007,
  19150. bottom: 0.035
  19151. }
  19152. },
  19153. hand: {
  19154. height: math.unit(1 / 1.260, "feet"),
  19155. name: "Hand",
  19156. image: {
  19157. source: "./media/characters/jayne-folest/hand.svg"
  19158. }
  19159. },
  19160. foot: {
  19161. height: math.unit(1 / 0.918, "feet"),
  19162. name: "Foot",
  19163. image: {
  19164. source: "./media/characters/jayne-folest/foot.svg"
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Micro",
  19171. height: math.unit(4, "cm")
  19172. },
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(1.75, "meters")
  19176. },
  19177. {
  19178. name: "Macro",
  19179. height: math.unit(47.5, "meters"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(180, "cm"),
  19189. weight: math.unit(70, "kg"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/algier/front.svg",
  19193. extra: 596 / 572,
  19194. bottom: 0.04
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(180, "cm"),
  19199. weight: math.unit(70, "kg"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/algier/back.svg",
  19203. extra: 596 / 572,
  19204. bottom: 0.025
  19205. }
  19206. },
  19207. frontdressed: {
  19208. height: math.unit(180, "cm"),
  19209. weight: math.unit(150, "kg"),
  19210. name: "Front-dressed",
  19211. image: {
  19212. source: "./media/characters/algier/front-dressed.svg",
  19213. extra: 596 / 572,
  19214. bottom: 0.038
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Micro",
  19221. height: math.unit(5, "cm")
  19222. },
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(180, "cm"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(64, "m")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19236. {
  19237. upright: {
  19238. height: math.unit(7, "feet"),
  19239. weight: math.unit(300, "lb"),
  19240. name: "Upright",
  19241. image: {
  19242. source: "./media/characters/pretzel/upright.svg",
  19243. extra: 534 / 522,
  19244. bottom: 0.065
  19245. }
  19246. },
  19247. sprawling: {
  19248. height: math.unit(3.75, "feet"),
  19249. weight: math.unit(300, "lb"),
  19250. name: "Sprawling",
  19251. image: {
  19252. source: "./media/characters/pretzel/sprawling.svg",
  19253. extra: 314 / 281,
  19254. bottom: 0.1
  19255. }
  19256. },
  19257. tongue: {
  19258. height: math.unit(2, "feet"),
  19259. name: "Tongue",
  19260. image: {
  19261. source: "./media/characters/pretzel/tongue.svg"
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(7, "feet"),
  19269. default: true
  19270. },
  19271. {
  19272. name: "Oversized",
  19273. height: math.unit(15, "feet")
  19274. },
  19275. {
  19276. name: "Huge",
  19277. height: math.unit(30, "feet")
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(250, "feet")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19287. {
  19288. sideFront: {
  19289. height: math.unit(5 + 2 / 12, "feet"),
  19290. weight: math.unit(120, "lb"),
  19291. name: "Front Side",
  19292. image: {
  19293. source: "./media/characters/roxi/side-front.svg",
  19294. extra: 2924 / 2717,
  19295. bottom: 0.08
  19296. }
  19297. },
  19298. sideBack: {
  19299. height: math.unit(5 + 2 / 12, "feet"),
  19300. weight: math.unit(120, "lb"),
  19301. name: "Back Side",
  19302. image: {
  19303. source: "./media/characters/roxi/side-back.svg",
  19304. extra: 2904 / 2693,
  19305. bottom: 0.06
  19306. }
  19307. },
  19308. front: {
  19309. height: math.unit(5 + 2 / 12, "feet"),
  19310. weight: math.unit(120, "lb"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/roxi/front.svg",
  19314. extra: 2028 / 1907,
  19315. bottom: 0.01
  19316. }
  19317. },
  19318. frontAlt: {
  19319. height: math.unit(5 + 2 / 12, "feet"),
  19320. weight: math.unit(120, "lb"),
  19321. name: "Front (Alt)",
  19322. image: {
  19323. source: "./media/characters/roxi/front-alt.svg",
  19324. extra: 1828 / 1798,
  19325. bottom: 0.01
  19326. }
  19327. },
  19328. sitting: {
  19329. height: math.unit(2.8, "feet"),
  19330. weight: math.unit(120, "lb"),
  19331. name: "Sitting",
  19332. image: {
  19333. source: "./media/characters/roxi/sitting.svg",
  19334. extra: 2660 / 2462,
  19335. bottom: 0.1
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(5 + 2 / 12, "feet"),
  19343. default: true
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19349. {
  19350. side: {
  19351. height: math.unit(55, "feet"),
  19352. weight: math.unit(153, "tons"),
  19353. name: "Side",
  19354. image: {
  19355. source: "./media/characters/shadow/side.svg",
  19356. extra: 701 / 628,
  19357. bottom: 0.02
  19358. }
  19359. },
  19360. flying: {
  19361. height: math.unit(145, "feet"),
  19362. weight: math.unit(153, "tons"),
  19363. name: "Flying",
  19364. image: {
  19365. source: "./media/characters/shadow/flying.svg"
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(55, "feet"),
  19373. default: true
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(6, "feet"),
  19382. weight: math.unit(200, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/marcie/front.svg",
  19386. extra: 960 / 876,
  19387. bottom: 58 / 1017.87
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Macro",
  19394. height: math.unit(1, "mile"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(7, "feet"),
  19404. weight: math.unit(200, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/kachina/front.svg",
  19408. extra: 1290.68 / 1119,
  19409. bottom: 36.5 / 1327.18
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(7, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19423. {
  19424. looking: {
  19425. height: math.unit(2, "meters"),
  19426. weight: math.unit(300, "kg"),
  19427. name: "Looking",
  19428. image: {
  19429. source: "./media/characters/kash/looking.svg",
  19430. extra: 474 / 344,
  19431. bottom: 0.03
  19432. }
  19433. },
  19434. side: {
  19435. height: math.unit(2, "meters"),
  19436. weight: math.unit(300, "kg"),
  19437. name: "Side",
  19438. image: {
  19439. source: "./media/characters/kash/side.svg",
  19440. extra: 302 / 251,
  19441. bottom: 0.03
  19442. }
  19443. },
  19444. front: {
  19445. height: math.unit(2, "meters"),
  19446. weight: math.unit(300, "kg"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/kash/front.svg",
  19450. extra: 495 / 360,
  19451. bottom: 0.015
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(2, "meters"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Big",
  19463. height: math.unit(3, "meters")
  19464. },
  19465. {
  19466. name: "Large",
  19467. height: math.unit(5, "meters")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19473. {
  19474. feeding: {
  19475. height: math.unit(6.7, "feet"),
  19476. weight: math.unit(350, "lb"),
  19477. name: "Feeding",
  19478. image: {
  19479. source: "./media/characters/lalim/feeding.svg",
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(6.7, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(9.5, "feet"),
  19496. weight: math.unit(600, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/de'vout/front.svg",
  19500. extra: 1443 / 1328,
  19501. bottom: 0.025
  19502. }
  19503. },
  19504. back: {
  19505. height: math.unit(9.5, "feet"),
  19506. weight: math.unit(600, "lb"),
  19507. name: "Back",
  19508. image: {
  19509. source: "./media/characters/de'vout/back.svg",
  19510. extra: 1443 / 1328
  19511. }
  19512. },
  19513. frontDressed: {
  19514. height: math.unit(9.5, "feet"),
  19515. weight: math.unit(600, "lb"),
  19516. name: "Front (Dressed",
  19517. image: {
  19518. source: "./media/characters/de'vout/front-dressed.svg",
  19519. extra: 1443 / 1328,
  19520. bottom: 0.025
  19521. }
  19522. },
  19523. backDressed: {
  19524. height: math.unit(9.5, "feet"),
  19525. weight: math.unit(600, "lb"),
  19526. name: "Back (Dressed",
  19527. image: {
  19528. source: "./media/characters/de'vout/back-dressed.svg",
  19529. extra: 1443 / 1328
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(9.5, "feet"),
  19537. default: true
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(8, "feet"),
  19546. weight: math.unit(225, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/talana/front.svg",
  19550. extra: 1410 / 1300,
  19551. bottom: 0.015
  19552. }
  19553. },
  19554. frontDressed: {
  19555. height: math.unit(8, "feet"),
  19556. weight: math.unit(225, "lb"),
  19557. name: "Front (Dressed",
  19558. image: {
  19559. source: "./media/characters/talana/front-dressed.svg",
  19560. extra: 1410 / 1300,
  19561. bottom: 0.015
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(8, "feet"),
  19569. default: true
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19575. {
  19576. side: {
  19577. height: math.unit(7.2, "feet"),
  19578. weight: math.unit(150, "lb"),
  19579. name: "Side",
  19580. image: {
  19581. source: "./media/characters/xeauvok/side.svg",
  19582. extra: 1975 / 1523,
  19583. bottom: 0.07
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(7.2, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19597. {
  19598. side: {
  19599. height: math.unit(4, "meters"),
  19600. weight: math.unit(2200, "kg"),
  19601. name: "Side",
  19602. image: {
  19603. source: "./media/characters/zara/side.svg",
  19604. extra: 765/744,
  19605. bottom: 156/921
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(4, "meters"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19619. {
  19620. side: {
  19621. height: math.unit(6, "feet"),
  19622. weight: math.unit(150, "lb"),
  19623. name: "Side",
  19624. image: {
  19625. source: "./media/characters/richard-dragon/side.svg",
  19626. extra: 845 / 340,
  19627. bottom: 0.017
  19628. }
  19629. },
  19630. maw: {
  19631. height: math.unit(2.97, "feet"),
  19632. name: "Maw",
  19633. image: {
  19634. source: "./media/characters/richard-dragon/maw.svg"
  19635. }
  19636. },
  19637. },
  19638. [
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(4, "feet"),
  19646. weight: math.unit(100, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/richard-smeargle/front.svg",
  19650. extra: 2952 / 2820,
  19651. bottom: 0.028
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(4, "feet"),
  19659. default: true
  19660. },
  19661. {
  19662. name: "Dynamax",
  19663. height: math.unit(20, "meters")
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(6, "feet"),
  19672. weight: math.unit(110, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/klay/front.svg",
  19676. extra: 962 / 883,
  19677. bottom: 0.04
  19678. }
  19679. },
  19680. back: {
  19681. height: math.unit(6, "feet"),
  19682. weight: math.unit(110, "lb"),
  19683. name: "Back",
  19684. image: {
  19685. source: "./media/characters/klay/back.svg",
  19686. extra: 962 / 883
  19687. }
  19688. },
  19689. beans: {
  19690. height: math.unit(1.15, "feet"),
  19691. name: "Beans",
  19692. image: {
  19693. source: "./media/characters/klay/beans.svg"
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Micro",
  19700. height: math.unit(6, "inches")
  19701. },
  19702. {
  19703. name: "Mini",
  19704. height: math.unit(3, "feet")
  19705. },
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(6, "feet"),
  19709. default: true
  19710. },
  19711. {
  19712. name: "Big",
  19713. height: math.unit(25, "feet")
  19714. },
  19715. {
  19716. name: "Macro",
  19717. height: math.unit(100, "feet")
  19718. },
  19719. {
  19720. name: "Megamacro",
  19721. height: math.unit(400, "feet")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(6, "feet"),
  19730. weight: math.unit(160, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/marcus/front.svg",
  19734. extra: 734 / 676,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Little",
  19742. height: math.unit(6, "feet")
  19743. },
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(110, "feet"),
  19747. default: true
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(250, "feet")
  19752. },
  19753. {
  19754. name: "Megamacro",
  19755. height: math.unit(1000, "feet")
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(7, "feet"),
  19764. weight: math.unit(275, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/claude-delroute/front.svg",
  19768. extra: 902/827,
  19769. bottom: 26/928
  19770. }
  19771. },
  19772. side: {
  19773. height: math.unit(7, "feet"),
  19774. weight: math.unit(275, "lb"),
  19775. name: "Side",
  19776. image: {
  19777. source: "./media/characters/claude-delroute/side.svg",
  19778. extra: 908/853,
  19779. bottom: 16/924
  19780. }
  19781. },
  19782. back: {
  19783. height: math.unit(7, "feet"),
  19784. weight: math.unit(275, "lb"),
  19785. name: "Back",
  19786. image: {
  19787. source: "./media/characters/claude-delroute/back.svg",
  19788. extra: 911/829,
  19789. bottom: 18/929
  19790. }
  19791. },
  19792. maw: {
  19793. height: math.unit(0.6407, "meters"),
  19794. name: "Maw",
  19795. image: {
  19796. source: "./media/characters/claude-delroute/maw.svg"
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(7, "feet"),
  19804. default: true
  19805. },
  19806. {
  19807. name: "Lorge",
  19808. height: math.unit(20, "feet")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(8 + 4 / 12, "feet"),
  19817. weight: math.unit(600, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/dragonien/front.svg",
  19821. extra: 100 / 94,
  19822. bottom: 3.3 / 103.3445
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(8 + 4 / 12, "feet"),
  19827. weight: math.unit(600, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/dragonien/back.svg",
  19831. extra: 776 / 746,
  19832. bottom: 6.4 / 782.0616
  19833. }
  19834. },
  19835. foot: {
  19836. height: math.unit(1.54, "feet"),
  19837. name: "Foot",
  19838. image: {
  19839. source: "./media/characters/dragonien/foot.svg",
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(8 + 4 / 12, "feet"),
  19847. default: true
  19848. },
  19849. {
  19850. name: "Macro",
  19851. height: math.unit(200, "feet")
  19852. },
  19853. {
  19854. name: "Megamacro",
  19855. height: math.unit(1, "mile")
  19856. },
  19857. {
  19858. name: "Gigamacro",
  19859. height: math.unit(1000, "miles")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(5 + 2 / 12, "feet"),
  19868. weight: math.unit(110, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/desta/front.svg",
  19872. extra: 767 / 726,
  19873. bottom: 11.7 / 779
  19874. }
  19875. },
  19876. back: {
  19877. height: math.unit(5 + 2 / 12, "feet"),
  19878. weight: math.unit(110, "lb"),
  19879. name: "Back",
  19880. image: {
  19881. source: "./media/characters/desta/back.svg",
  19882. extra: 777 / 728,
  19883. bottom: 6 / 784
  19884. }
  19885. },
  19886. frontAlt: {
  19887. height: math.unit(5 + 2 / 12, "feet"),
  19888. weight: math.unit(110, "lb"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/desta/front-alt.svg",
  19892. extra: 1482 / 1417
  19893. }
  19894. },
  19895. side: {
  19896. height: math.unit(5 + 2 / 12, "feet"),
  19897. weight: math.unit(110, "lb"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/desta/side.svg",
  19901. extra: 2579 / 2491,
  19902. bottom: 0.053
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Micro",
  19909. height: math.unit(6, "inches")
  19910. },
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(5 + 2 / 12, "feet"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Macro",
  19918. height: math.unit(62, "feet")
  19919. },
  19920. {
  19921. name: "Megamacro",
  19922. height: math.unit(1800, "feet")
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19928. {
  19929. front: {
  19930. height: math.unit(10, "feet"),
  19931. weight: math.unit(700, "lb"),
  19932. name: "Front",
  19933. image: {
  19934. source: "./media/characters/storm-alystar/front.svg",
  19935. extra: 2112 / 1898,
  19936. bottom: 0.034
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Micro",
  19943. height: math.unit(3.5, "inches")
  19944. },
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(10, "feet"),
  19948. default: true
  19949. },
  19950. {
  19951. name: "Macro",
  19952. height: math.unit(400, "feet")
  19953. },
  19954. {
  19955. name: "Deific",
  19956. height: math.unit(60, "miles")
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(2.35, "meters"),
  19965. weight: math.unit(119, "kg"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/ilia/front.svg",
  19969. extra: 1285 / 1255,
  19970. bottom: 0.06
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(2.35, "meters")
  19978. },
  19979. {
  19980. name: "Macro",
  19981. height: math.unit(140, "meters"),
  19982. default: true
  19983. },
  19984. {
  19985. name: "Megamacro",
  19986. height: math.unit(100, "miles")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(6 + 5 / 12, "feet"),
  19995. weight: math.unit(190, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/kingdead/front.svg",
  19999. extra: 1228 / 1177
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Micro",
  20006. height: math.unit(7, "inches")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(6 + 5 / 12, "feet")
  20011. },
  20012. {
  20013. name: "Macro",
  20014. height: math.unit(150, "feet"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Megamacro",
  20019. height: math.unit(200, "miles")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(8, "feet"),
  20028. weight: math.unit(600, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/kyrehx/front.svg",
  20032. extra: 1195 / 1095,
  20033. bottom: 0.034
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Micro",
  20040. height: math.unit(2, "inches")
  20041. },
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(8, "feet"),
  20045. default: true
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(255, "feet")
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20058. weight: math.unit(184, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/xang/front.svg",
  20062. extra: 845 / 755
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Macro",
  20074. height: math.unit(0.935 * 146, "feet")
  20075. },
  20076. {
  20077. name: "Megamacro",
  20078. height: math.unit(0.935 * 3, "miles")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20084. {
  20085. frontDressed: {
  20086. height: math.unit(5 + 7 / 12, "feet"),
  20087. weight: math.unit(140, "lb"),
  20088. name: "Front (Dressed)",
  20089. image: {
  20090. source: "./media/characters/doc-weardno/front-dressed.svg",
  20091. extra: 263 / 234
  20092. }
  20093. },
  20094. backDressed: {
  20095. height: math.unit(5 + 7 / 12, "feet"),
  20096. weight: math.unit(140, "lb"),
  20097. name: "Back (Dressed)",
  20098. image: {
  20099. source: "./media/characters/doc-weardno/back-dressed.svg",
  20100. extra: 266 / 238
  20101. }
  20102. },
  20103. front: {
  20104. height: math.unit(5 + 7 / 12, "feet"),
  20105. weight: math.unit(140, "lb"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/doc-weardno/front.svg",
  20109. extra: 254 / 233
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Micro",
  20116. height: math.unit(3, "inches")
  20117. },
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(5 + 7 / 12, "feet"),
  20121. default: true
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(25, "feet")
  20126. },
  20127. {
  20128. name: "Megamacro",
  20129. height: math.unit(2, "miles")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6 + 2 / 12, "feet"),
  20138. weight: math.unit(153, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/seth-whilst/front.svg",
  20142. bottom: 0.07
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Micro",
  20149. height: math.unit(5, "inches")
  20150. },
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(6 + 2 / 12, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(3, "inches"),
  20163. weight: math.unit(8, "grams"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/pocket-jabari/front.svg",
  20167. extra: 1024 / 974,
  20168. bottom: 0.039
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Minimicro",
  20175. height: math.unit(8, "mm")
  20176. },
  20177. {
  20178. name: "Micro",
  20179. height: math.unit(3, "inches"),
  20180. default: true
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(3, "feet")
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20190. {
  20191. frontDressed: {
  20192. height: math.unit(15, "feet"),
  20193. weight: math.unit(3280, "lb"),
  20194. name: "Front (Dressed)",
  20195. image: {
  20196. source: "./media/characters/sapphy/front-dressed.svg",
  20197. extra: 1951/1654,
  20198. bottom: 194/2145
  20199. },
  20200. form: "anthro",
  20201. default: true
  20202. },
  20203. backDressed: {
  20204. height: math.unit(15, "feet"),
  20205. weight: math.unit(3280, "lb"),
  20206. name: "Back (Dressed)",
  20207. image: {
  20208. source: "./media/characters/sapphy/back-dressed.svg",
  20209. extra: 2058/1918,
  20210. bottom: 125/2183
  20211. },
  20212. form: "anthro"
  20213. },
  20214. frontNude: {
  20215. height: math.unit(15, "feet"),
  20216. weight: math.unit(3280, "lb"),
  20217. name: "Front (Nude)",
  20218. image: {
  20219. source: "./media/characters/sapphy/front-nude.svg",
  20220. extra: 1951/1654,
  20221. bottom: 194/2145
  20222. },
  20223. form: "anthro"
  20224. },
  20225. backNude: {
  20226. height: math.unit(15, "feet"),
  20227. weight: math.unit(3280, "lb"),
  20228. name: "Back (Nude)",
  20229. image: {
  20230. source: "./media/characters/sapphy/back-nude.svg",
  20231. extra: 2058/1918,
  20232. bottom: 125/2183
  20233. },
  20234. form: "anthro"
  20235. },
  20236. full: {
  20237. height: math.unit(15, "feet"),
  20238. weight: math.unit(3280, "lb"),
  20239. name: "Full",
  20240. image: {
  20241. source: "./media/characters/sapphy/full.svg",
  20242. extra: 1396/1317,
  20243. bottom: 44/1440
  20244. },
  20245. form: "anthro"
  20246. },
  20247. dick: {
  20248. height: math.unit(3.8, "feet"),
  20249. name: "Dick",
  20250. image: {
  20251. source: "./media/characters/sapphy/dick.svg"
  20252. },
  20253. form: "anthro"
  20254. },
  20255. feral: {
  20256. height: math.unit(35, "feet"),
  20257. weight: math.unit(160, "tons"),
  20258. name: "Feral",
  20259. image: {
  20260. source: "./media/characters/sapphy/feral.svg",
  20261. extra: 1050/573,
  20262. bottom: 60/1110
  20263. },
  20264. form: "feral",
  20265. default: true
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(15, "feet"),
  20272. form: "anthro"
  20273. },
  20274. {
  20275. name: "Casual Macro",
  20276. height: math.unit(120, "feet"),
  20277. form: "anthro"
  20278. },
  20279. {
  20280. name: "Macro",
  20281. height: math.unit(2150, "feet"),
  20282. default: true,
  20283. form: "anthro"
  20284. },
  20285. {
  20286. name: "Megamacro",
  20287. height: math.unit(8, "miles"),
  20288. form: "anthro"
  20289. },
  20290. {
  20291. name: "Galaxy Mom",
  20292. height: math.unit(6, "megalightyears"),
  20293. form: "anthro"
  20294. },
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(35, "feet"),
  20298. form: "feral",
  20299. default: true
  20300. },
  20301. {
  20302. name: "Macro",
  20303. height: math.unit(300, "feet"),
  20304. form: "feral"
  20305. },
  20306. {
  20307. name: "Galaxy Mom",
  20308. height: math.unit(10, "megalightyears"),
  20309. form: "feral"
  20310. },
  20311. ],
  20312. {
  20313. "anthro": {
  20314. name: "Anthro",
  20315. default: true
  20316. },
  20317. "feral": {
  20318. name: "Feral"
  20319. }
  20320. }
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20324. {
  20325. hyenaFront: {
  20326. height: math.unit(6, "feet"),
  20327. weight: math.unit(190, "lb"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/kiro/hyena-front.svg",
  20331. extra: 927/839,
  20332. bottom: 91/1018
  20333. },
  20334. form: "hyena",
  20335. default: true
  20336. },
  20337. front: {
  20338. height: math.unit(6, "feet"),
  20339. weight: math.unit(170, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/kiro/front.svg",
  20343. extra: 1064 / 1012,
  20344. bottom: 0.052
  20345. },
  20346. form: "folf",
  20347. default: true
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Micro",
  20353. height: math.unit(6, "inches"),
  20354. form: "folf"
  20355. },
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(6, "feet"),
  20359. form: "folf",
  20360. default: true
  20361. },
  20362. {
  20363. name: "Macro",
  20364. height: math.unit(72, "feet"),
  20365. form: "folf"
  20366. },
  20367. {
  20368. name: "Micro",
  20369. height: math.unit(6, "inches"),
  20370. form: "hyena"
  20371. },
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(6, "feet"),
  20375. form: "hyena",
  20376. default: true
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(72, "feet"),
  20381. form: "hyena"
  20382. },
  20383. ],
  20384. {
  20385. "hyena": {
  20386. name: "Hyena",
  20387. default: true
  20388. },
  20389. "folf": {
  20390. name: "Folf",
  20391. },
  20392. }
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20396. {
  20397. front: {
  20398. height: math.unit(5 + 9 / 12, "feet"),
  20399. weight: math.unit(175, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/irishfox/front.svg",
  20403. extra: 1912 / 1680,
  20404. bottom: 0.02
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Nano",
  20411. height: math.unit(1, "mm")
  20412. },
  20413. {
  20414. name: "Micro",
  20415. height: math.unit(2, "inches")
  20416. },
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(5 + 9 / 12, "feet"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Macro",
  20424. height: math.unit(45, "feet")
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(6 + 1 / 12, "feet"),
  20433. weight: math.unit(75, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/aronai-sieyes/front.svg",
  20437. extra: 1532/1450,
  20438. bottom: 42/1574
  20439. }
  20440. },
  20441. side: {
  20442. height: math.unit(6 + 1 / 12, "feet"),
  20443. weight: math.unit(75, "lb"),
  20444. name: "Side",
  20445. image: {
  20446. source: "./media/characters/aronai-sieyes/side.svg",
  20447. extra: 1422/1365,
  20448. bottom: 148/1570
  20449. }
  20450. },
  20451. back: {
  20452. height: math.unit(6 + 1 / 12, "feet"),
  20453. weight: math.unit(75, "lb"),
  20454. name: "Back",
  20455. image: {
  20456. source: "./media/characters/aronai-sieyes/back.svg",
  20457. extra: 1526/1464,
  20458. bottom: 51/1577
  20459. }
  20460. },
  20461. dressed: {
  20462. height: math.unit(6 + 1 / 12, "feet"),
  20463. weight: math.unit(75, "lb"),
  20464. name: "Dressed",
  20465. image: {
  20466. source: "./media/characters/aronai-sieyes/dressed.svg",
  20467. extra: 1559/1483,
  20468. bottom: 39/1598
  20469. }
  20470. },
  20471. slit: {
  20472. height: math.unit(1.3, "feet"),
  20473. name: "Slit",
  20474. image: {
  20475. source: "./media/characters/aronai-sieyes/slit.svg"
  20476. }
  20477. },
  20478. slitSpread: {
  20479. height: math.unit(0.9, "feet"),
  20480. name: "Slit (Spread)",
  20481. image: {
  20482. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20483. }
  20484. },
  20485. rump: {
  20486. height: math.unit(1.3, "feet"),
  20487. name: "Rump",
  20488. image: {
  20489. source: "./media/characters/aronai-sieyes/rump.svg"
  20490. }
  20491. },
  20492. maw: {
  20493. height: math.unit(1.25, "feet"),
  20494. name: "Maw",
  20495. image: {
  20496. source: "./media/characters/aronai-sieyes/maw.svg"
  20497. }
  20498. },
  20499. feral: {
  20500. height: math.unit(18, "feet"),
  20501. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20502. name: "Feral",
  20503. image: {
  20504. source: "./media/characters/aronai-sieyes/feral.svg",
  20505. extra: 1530 / 1240,
  20506. bottom: 0.035
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Micro",
  20513. height: math.unit(2, "inches")
  20514. },
  20515. {
  20516. name: "Normal",
  20517. height: math.unit(6 + 1 / 12, "feet"),
  20518. default: true
  20519. }
  20520. ]
  20521. ))
  20522. characterMakers.push(() => makeCharacter(
  20523. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20524. {
  20525. front: {
  20526. height: math.unit(12, "feet"),
  20527. weight: math.unit(410, "kg"),
  20528. name: "Front",
  20529. image: {
  20530. source: "./media/characters/xuna/front.svg",
  20531. extra: 2184 / 1980
  20532. }
  20533. },
  20534. side: {
  20535. height: math.unit(12, "feet"),
  20536. weight: math.unit(410, "kg"),
  20537. name: "Side",
  20538. image: {
  20539. source: "./media/characters/xuna/side.svg",
  20540. extra: 2184 / 1980
  20541. }
  20542. },
  20543. back: {
  20544. height: math.unit(12, "feet"),
  20545. weight: math.unit(410, "kg"),
  20546. name: "Back",
  20547. image: {
  20548. source: "./media/characters/xuna/back.svg",
  20549. extra: 2184 / 1980
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Nano glow",
  20556. height: math.unit(10, "nm")
  20557. },
  20558. {
  20559. name: "Micro floof",
  20560. height: math.unit(0.3, "m")
  20561. },
  20562. {
  20563. name: "Huggable softy boi",
  20564. height: math.unit(3.6576, "m"),
  20565. default: true
  20566. },
  20567. {
  20568. name: "Admirable floof",
  20569. height: math.unit(80, "meters")
  20570. },
  20571. {
  20572. name: "Gentle macro",
  20573. height: math.unit(300, "meters")
  20574. },
  20575. {
  20576. name: "Very careful floof",
  20577. height: math.unit(3200, "meters")
  20578. },
  20579. {
  20580. name: "The mega floof",
  20581. height: math.unit(36000, "meters")
  20582. },
  20583. {
  20584. name: "Giga-fur-Wicker",
  20585. height: math.unit(4800000, "meters")
  20586. },
  20587. {
  20588. name: "Licky world",
  20589. height: math.unit(20000000, "meters")
  20590. },
  20591. {
  20592. name: "Floofy cyan sun",
  20593. height: math.unit(1500000000, "meters")
  20594. },
  20595. {
  20596. name: "Milky Wicker",
  20597. height: math.unit(1000000000000000000000, "meters")
  20598. },
  20599. {
  20600. name: "The observing Wicker",
  20601. height: math.unit(999999999999999999999999999, "meters")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(5 + 9 / 12, "feet"),
  20610. weight: math.unit(150, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/arokha-sieyes/front.svg",
  20614. extra: 1425 / 1284,
  20615. bottom: 0.05
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 9 / 12, "feet")
  20623. },
  20624. {
  20625. name: "Macro",
  20626. height: math.unit(30, "meters"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(6, "feet"),
  20636. weight: math.unit(180, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/arokh-sieyes/front.svg",
  20640. extra: 1830 / 1769,
  20641. bottom: 0.01
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(6, "feet")
  20649. },
  20650. {
  20651. name: "Macro",
  20652. height: math.unit(30, "meters"),
  20653. default: true
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20659. {
  20660. side: {
  20661. height: math.unit(13 + 1 / 12, "feet"),
  20662. weight: math.unit(8.5, "tonnes"),
  20663. preyCapacity: math.unit(36, "people"),
  20664. name: "Side",
  20665. image: {
  20666. source: "./media/characters/goldeneye/side.svg",
  20667. extra: 1139/741,
  20668. bottom: 98/1237
  20669. }
  20670. },
  20671. front: {
  20672. height: math.unit(5.1, "feet"),
  20673. weight: math.unit(8.5, "tonnes"),
  20674. preyCapacity: math.unit(36, "people"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/goldeneye/front.svg",
  20678. extra: 635/365,
  20679. bottom: 598/1233
  20680. }
  20681. },
  20682. maw: {
  20683. height: math.unit(6.6, "feet"),
  20684. name: "Maw",
  20685. image: {
  20686. source: "./media/characters/goldeneye/maw.svg"
  20687. }
  20688. },
  20689. headFront: {
  20690. height: math.unit(8, "feet"),
  20691. name: "Head (Front)",
  20692. image: {
  20693. source: "./media/characters/goldeneye/head-front.svg"
  20694. }
  20695. },
  20696. headSide: {
  20697. height: math.unit(6, "feet"),
  20698. name: "Head (Side)",
  20699. image: {
  20700. source: "./media/characters/goldeneye/head-side.svg"
  20701. }
  20702. },
  20703. headBack: {
  20704. height: math.unit(8, "feet"),
  20705. name: "Head (Back)",
  20706. image: {
  20707. source: "./media/characters/goldeneye/head-back.svg"
  20708. }
  20709. },
  20710. paw: {
  20711. height: math.unit(3.4, "feet"),
  20712. name: "Paw",
  20713. image: {
  20714. source: "./media/characters/goldeneye/paw.svg"
  20715. }
  20716. },
  20717. toering: {
  20718. height: math.unit(0.45, "feet"),
  20719. name: "Toering",
  20720. image: {
  20721. source: "./media/characters/goldeneye/toering.svg"
  20722. }
  20723. },
  20724. eyes: {
  20725. height: math.unit(0.5, "feet"),
  20726. name: "Eyes",
  20727. image: {
  20728. source: "./media/characters/goldeneye/eyes.svg"
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(13 + 1 / 12, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20742. {
  20743. front: {
  20744. height: math.unit(6 + 1 / 12, "feet"),
  20745. weight: math.unit(210, "lb"),
  20746. name: "Front",
  20747. image: {
  20748. source: "./media/characters/leonardo-lycheborne/front.svg",
  20749. extra: 776/723,
  20750. bottom: 34/810
  20751. }
  20752. },
  20753. side: {
  20754. height: math.unit(6 + 1 / 12, "feet"),
  20755. weight: math.unit(210, "lb"),
  20756. name: "Side",
  20757. image: {
  20758. source: "./media/characters/leonardo-lycheborne/side.svg",
  20759. extra: 780/728,
  20760. bottom: 12/792
  20761. }
  20762. },
  20763. back: {
  20764. height: math.unit(6 + 1 / 12, "feet"),
  20765. weight: math.unit(210, "lb"),
  20766. name: "Back",
  20767. image: {
  20768. source: "./media/characters/leonardo-lycheborne/back.svg",
  20769. extra: 775/721,
  20770. bottom: 17/792
  20771. }
  20772. },
  20773. hand: {
  20774. height: math.unit(1.08, "feet"),
  20775. name: "Hand",
  20776. image: {
  20777. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20778. }
  20779. },
  20780. foot: {
  20781. height: math.unit(1.32, "feet"),
  20782. name: "Foot",
  20783. image: {
  20784. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20785. }
  20786. },
  20787. maw: {
  20788. height: math.unit(1, "feet"),
  20789. name: "Maw",
  20790. image: {
  20791. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20792. }
  20793. },
  20794. were: {
  20795. height: math.unit(20, "feet"),
  20796. weight: math.unit(7800, "lb"),
  20797. name: "Were",
  20798. image: {
  20799. source: "./media/characters/leonardo-lycheborne/were.svg",
  20800. extra: 1224/1165,
  20801. bottom: 72/1296
  20802. }
  20803. },
  20804. feral: {
  20805. height: math.unit(7.5, "feet"),
  20806. weight: math.unit(600, "lb"),
  20807. name: "Feral",
  20808. image: {
  20809. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20810. extra: 797/702,
  20811. bottom: 139/936
  20812. }
  20813. },
  20814. taur: {
  20815. height: math.unit(11, "feet"),
  20816. weight: math.unit(3300, "lb"),
  20817. name: "Taur",
  20818. image: {
  20819. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20820. extra: 1271/1197,
  20821. bottom: 47/1318
  20822. }
  20823. },
  20824. barghest: {
  20825. height: math.unit(11, "feet"),
  20826. weight: math.unit(1300, "lb"),
  20827. name: "Barghest",
  20828. image: {
  20829. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20830. extra: 1291/1204,
  20831. bottom: 37/1328
  20832. }
  20833. },
  20834. dick: {
  20835. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20836. name: "Dick",
  20837. image: {
  20838. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20839. }
  20840. },
  20841. dickWere: {
  20842. height: math.unit((20) / 3.8, "feet"),
  20843. name: "Dick (Were)",
  20844. image: {
  20845. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6 + 1 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(10, "feet"),
  20862. weight: math.unit(350, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/jet/front.svg",
  20866. extra: 2050 / 1980,
  20867. bottom: 0.013
  20868. }
  20869. },
  20870. back: {
  20871. height: math.unit(10, "feet"),
  20872. weight: math.unit(350, "lb"),
  20873. name: "Back",
  20874. image: {
  20875. source: "./media/characters/jet/back.svg",
  20876. extra: 2050 / 1980,
  20877. bottom: 0.013
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Micro",
  20884. height: math.unit(6, "inches")
  20885. },
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(10, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(100, "feet")
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20899. {
  20900. front: {
  20901. height: math.unit(15, "feet"),
  20902. weight: math.unit(2800, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/tanarath/front.svg",
  20906. extra: 2392 / 2220,
  20907. bottom: 0.03
  20908. }
  20909. },
  20910. back: {
  20911. height: math.unit(15, "feet"),
  20912. weight: math.unit(2800, "lb"),
  20913. name: "Back",
  20914. image: {
  20915. source: "./media/characters/tanarath/back.svg",
  20916. extra: 2392 / 2220,
  20917. bottom: 0.03
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(15, "feet"),
  20925. default: true
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(7 + 1 / 12, "feet"),
  20934. weight: math.unit(175, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/patty-cattybatty/front.svg",
  20938. extra: 908 / 874,
  20939. bottom: 0.025
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(1, "inch")
  20947. },
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(7 + 1 / 12, "feet")
  20951. },
  20952. {
  20953. name: "Mini Macro",
  20954. height: math.unit(155, "feet")
  20955. },
  20956. {
  20957. name: "Macro",
  20958. height: math.unit(1077, "feet")
  20959. },
  20960. {
  20961. name: "Mega Macro",
  20962. height: math.unit(47650, "feet"),
  20963. default: true
  20964. },
  20965. {
  20966. name: "Giga Macro",
  20967. height: math.unit(440, "miles")
  20968. },
  20969. {
  20970. name: "Tera Macro",
  20971. height: math.unit(8700, "miles")
  20972. },
  20973. {
  20974. name: "Planetary Macro",
  20975. height: math.unit(32700, "miles")
  20976. },
  20977. {
  20978. name: "Solar Macro",
  20979. height: math.unit(550000, "miles")
  20980. },
  20981. {
  20982. name: "Celestial Macro",
  20983. height: math.unit(2.5, "AU")
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(4 + 5 / 12, "feet"),
  20992. weight: math.unit(90, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/cappu/front.svg",
  20996. extra: 1247 / 1152,
  20997. bottom: 0.012
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(4 + 5 / 12, "feet"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21011. {
  21012. frontDressed: {
  21013. height: math.unit(70, "cm"),
  21014. weight: math.unit(6, "kg"),
  21015. name: "Front (Dressed)",
  21016. image: {
  21017. source: "./media/characters/sebi/front-dressed.svg",
  21018. extra: 713.5 / 686.5,
  21019. bottom: 0.003
  21020. }
  21021. },
  21022. front: {
  21023. height: math.unit(70, "cm"),
  21024. weight: math.unit(5, "kg"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/sebi/front.svg",
  21028. extra: 713.5 / 686.5,
  21029. bottom: 0.003
  21030. }
  21031. }
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(70, "cm"),
  21037. default: true
  21038. },
  21039. {
  21040. name: "Macro",
  21041. height: math.unit(8, "meters")
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(6, "feet"),
  21050. weight: math.unit(150, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/typhek/front.svg",
  21054. extra: 1948 / 1929,
  21055. bottom: 0.025
  21056. }
  21057. },
  21058. side: {
  21059. height: math.unit(6, "feet"),
  21060. weight: math.unit(150, "lb"),
  21061. name: "Side",
  21062. image: {
  21063. source: "./media/characters/typhek/side.svg",
  21064. extra: 2034 / 2010,
  21065. bottom: 0.003
  21066. }
  21067. },
  21068. back: {
  21069. height: math.unit(6, "feet"),
  21070. weight: math.unit(150, "lb"),
  21071. name: "Back",
  21072. image: {
  21073. source: "./media/characters/typhek/back.svg",
  21074. extra: 2005 / 1978,
  21075. bottom: 0.004
  21076. }
  21077. },
  21078. palm: {
  21079. height: math.unit(1.2, "feet"),
  21080. name: "Palm",
  21081. image: {
  21082. source: "./media/characters/typhek/palm.svg"
  21083. }
  21084. },
  21085. fist: {
  21086. height: math.unit(1.1, "feet"),
  21087. name: "Fist",
  21088. image: {
  21089. source: "./media/characters/typhek/fist.svg"
  21090. }
  21091. },
  21092. foot: {
  21093. height: math.unit(1.57, "feet"),
  21094. name: "Foot",
  21095. image: {
  21096. source: "./media/characters/typhek/foot.svg"
  21097. }
  21098. },
  21099. sole: {
  21100. height: math.unit(2.05, "feet"),
  21101. name: "Sole",
  21102. image: {
  21103. source: "./media/characters/typhek/sole.svg"
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Macro",
  21110. height: math.unit(40, "stories"),
  21111. default: true
  21112. },
  21113. {
  21114. name: "Megamacro",
  21115. height: math.unit(1, "mile")
  21116. },
  21117. {
  21118. name: "Gigamacro",
  21119. height: math.unit(4000, "solarradii")
  21120. },
  21121. {
  21122. name: "Universal",
  21123. height: math.unit(1.1, "universes")
  21124. }
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21129. {
  21130. side: {
  21131. height: math.unit(5 + 7 / 12, "feet"),
  21132. weight: math.unit(150, "lb"),
  21133. name: "Side",
  21134. image: {
  21135. source: "./media/characters/kassy/side.svg",
  21136. extra: 1280 / 1225,
  21137. bottom: 0.002
  21138. }
  21139. },
  21140. front: {
  21141. height: math.unit(5 + 7 / 12, "feet"),
  21142. weight: math.unit(150, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/kassy/front.svg",
  21146. extra: 1280 / 1225,
  21147. bottom: 0.025
  21148. }
  21149. },
  21150. back: {
  21151. height: math.unit(5 + 7 / 12, "feet"),
  21152. weight: math.unit(150, "lb"),
  21153. name: "Back",
  21154. image: {
  21155. source: "./media/characters/kassy/back.svg",
  21156. extra: 1280 / 1225,
  21157. bottom: 0.002
  21158. }
  21159. },
  21160. foot: {
  21161. height: math.unit(1.266, "feet"),
  21162. name: "Foot",
  21163. image: {
  21164. source: "./media/characters/kassy/foot.svg"
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(5 + 7 / 12, "feet")
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(137, "feet"),
  21176. default: true
  21177. },
  21178. {
  21179. name: "Megamacro",
  21180. height: math.unit(1, "mile")
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(6 + 1 / 12, "feet"),
  21189. weight: math.unit(200, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/neil/front.svg",
  21193. extra: 1326 / 1250,
  21194. bottom: 0.023
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(6 + 1 / 12, "feet"),
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(200, "feet")
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(5 + 9 / 12, "feet"),
  21215. weight: math.unit(190, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/atticus/front.svg",
  21219. extra: 2934 / 2785,
  21220. bottom: 0.025
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(5 + 9 / 12, "feet"),
  21228. default: true
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(180, "feet")
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21238. {
  21239. side: {
  21240. height: math.unit(9, "feet"),
  21241. weight: math.unit(650, "lb"),
  21242. name: "Side",
  21243. image: {
  21244. source: "./media/characters/milo/side.svg",
  21245. extra: 2644 / 2310,
  21246. bottom: 0.032
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(9, "feet"),
  21254. default: true
  21255. },
  21256. {
  21257. name: "Macro",
  21258. height: math.unit(300, "feet")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21264. {
  21265. side: {
  21266. height: math.unit(8, "meters"),
  21267. weight: math.unit(90000, "kg"),
  21268. name: "Side",
  21269. image: {
  21270. source: "./media/characters/ijzer/side.svg",
  21271. extra: 2756 / 1600,
  21272. bottom: 0.01
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Small",
  21279. height: math.unit(3, "meters")
  21280. },
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(8, "meters"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Normal+",
  21288. height: math.unit(10, "meters")
  21289. },
  21290. {
  21291. name: "Bigger",
  21292. height: math.unit(24, "meters")
  21293. },
  21294. {
  21295. name: "Huge",
  21296. height: math.unit(80, "meters")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(6 + 2 / 12, "feet"),
  21305. weight: math.unit(153, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/luca-cervicum/front.svg",
  21309. extra: 370 / 327,
  21310. bottom: 0.015
  21311. }
  21312. },
  21313. back: {
  21314. height: math.unit(6 + 2 / 12, "feet"),
  21315. weight: math.unit(153, "lb"),
  21316. name: "Back",
  21317. image: {
  21318. source: "./media/characters/luca-cervicum/back.svg",
  21319. extra: 367 / 333,
  21320. bottom: 0.005
  21321. }
  21322. },
  21323. frontGear: {
  21324. height: math.unit(6 + 2 / 12, "feet"),
  21325. weight: math.unit(173, "lb"),
  21326. name: "Front (Gear)",
  21327. image: {
  21328. source: "./media/characters/luca-cervicum/front-gear.svg",
  21329. extra: 377 / 333,
  21330. bottom: 0.006
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(6 + 2 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(6 + 1 / 12, "feet"),
  21347. weight: math.unit(304, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/oliver/front.svg",
  21351. extra: 157 / 143,
  21352. bottom: 0.08
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(6 + 1 / 12, "feet"),
  21360. default: true
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(5 + 7 / 12, "feet"),
  21369. weight: math.unit(140, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/shane/front.svg",
  21373. extra: 304 / 289,
  21374. bottom: 0.005
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(5 + 7 / 12, "feet"),
  21382. default: true
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21388. {
  21389. front: {
  21390. height: math.unit(5 + 9 / 12, "feet"),
  21391. weight: math.unit(178, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/shin/front.svg",
  21395. extra: 159 / 151,
  21396. bottom: 0.015
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(5 + 9 / 12, "feet"),
  21404. default: true
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(5 + 10 / 12, "feet"),
  21413. weight: math.unit(168, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/xerxes/front.svg",
  21417. extra: 282 / 260,
  21418. bottom: 0.045
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Normal",
  21425. height: math.unit(5 + 10 / 12, "feet"),
  21426. default: true
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(6 + 7 / 12, "feet"),
  21435. weight: math.unit(208, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/chaska/front.svg",
  21439. extra: 332 / 319,
  21440. bottom: 0.015
  21441. }
  21442. },
  21443. },
  21444. [
  21445. {
  21446. name: "Normal",
  21447. height: math.unit(6 + 7 / 12, "feet"),
  21448. default: true
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(5 + 8 / 12, "feet"),
  21457. weight: math.unit(208, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/enuk/front.svg",
  21461. extra: 437 / 406,
  21462. bottom: 0.02
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(5 + 8 / 12, "feet"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(5 + 10 / 12, "feet"),
  21479. weight: math.unit(252, "lb"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/bruun/front.svg",
  21483. extra: 197 / 187,
  21484. bottom: 0.012
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(5 + 10 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(6 + 10 / 12, "feet"),
  21501. weight: math.unit(255, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/alexeev/front.svg",
  21505. extra: 213 / 200,
  21506. bottom: 0.05
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(6 + 10 / 12, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(2 + 8 / 12, "feet"),
  21523. weight: math.unit(22, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/evelyn/front.svg",
  21527. extra: 208 / 180
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(2 + 8 / 12, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(5 + 9 / 12, "feet"),
  21544. weight: math.unit(139, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/inca/front.svg",
  21548. extra: 294 / 291,
  21549. bottom: 0.03
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(5 + 9 / 12, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(6 + 3 / 12, "feet"),
  21566. weight: math.unit(185, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/mera/front.svg",
  21570. extra: 291 / 277,
  21571. bottom: 0.03
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(6 + 3 / 12, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21585. {
  21586. front: {
  21587. height: math.unit(6 + 7 / 12, "feet"),
  21588. weight: math.unit(160, "lb"),
  21589. name: "Front",
  21590. image: {
  21591. source: "./media/characters/ceres/front.svg",
  21592. extra: 1023 / 950,
  21593. bottom: 0.027
  21594. }
  21595. },
  21596. back: {
  21597. height: math.unit(6 + 7 / 12, "feet"),
  21598. weight: math.unit(160, "lb"),
  21599. name: "Back",
  21600. image: {
  21601. source: "./media/characters/ceres/back.svg",
  21602. extra: 1023 / 950
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(6 + 7 / 12, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(5 + 10 / 12, "feet"),
  21619. weight: math.unit(150, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/kris/front.svg",
  21623. extra: 885 / 803,
  21624. bottom: 0.03
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(5 + 10 / 12, "feet"),
  21632. default: true
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21638. {
  21639. front: {
  21640. height: math.unit(7, "feet"),
  21641. weight: math.unit(120, "kg"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/taluthus/front.svg",
  21645. extra: 903 / 833,
  21646. bottom: 0.015
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(7, "feet"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Macro",
  21658. height: math.unit(300, "feet")
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(5 + 9 / 12, "feet"),
  21667. weight: math.unit(145, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/dawn/front.svg",
  21671. extra: 2094 / 2016,
  21672. bottom: 0.025
  21673. }
  21674. },
  21675. back: {
  21676. height: math.unit(5 + 9 / 12, "feet"),
  21677. weight: math.unit(160, "lb"),
  21678. name: "Back",
  21679. image: {
  21680. source: "./media/characters/dawn/back.svg",
  21681. extra: 2112 / 2080,
  21682. bottom: 0.005
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6 + 7 / 12, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21696. {
  21697. anthro: {
  21698. height: math.unit(8 + 3 / 12, "feet"),
  21699. weight: math.unit(450, "lb"),
  21700. name: "Anthro",
  21701. image: {
  21702. source: "./media/characters/arador/anthro.svg",
  21703. extra: 1835 / 1718,
  21704. bottom: 0.025
  21705. }
  21706. },
  21707. feral: {
  21708. height: math.unit(4, "feet"),
  21709. weight: math.unit(200, "lb"),
  21710. name: "Feral",
  21711. image: {
  21712. source: "./media/characters/arador/feral.svg",
  21713. extra: 1683 / 1514,
  21714. bottom: 0.07
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(8 + 3 / 12, "feet")
  21722. },
  21723. {
  21724. name: "Macro",
  21725. height: math.unit(82.5, "feet"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(5 + 10 / 12, "feet"),
  21735. weight: math.unit(125, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/dharsi/front.svg",
  21739. extra: 716 / 630,
  21740. bottom: 0.035
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Nano",
  21747. height: math.unit(100, "nm")
  21748. },
  21749. {
  21750. name: "Micro",
  21751. height: math.unit(2, "inches")
  21752. },
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5 + 10 / 12, "feet"),
  21756. default: true
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(1000, "feet")
  21761. },
  21762. {
  21763. name: "Megamacro",
  21764. height: math.unit(10, "miles")
  21765. },
  21766. {
  21767. name: "Gigamacro",
  21768. height: math.unit(3000, "miles")
  21769. },
  21770. {
  21771. name: "Teramacro",
  21772. height: math.unit(500000, "miles")
  21773. },
  21774. {
  21775. name: "Teramacro+",
  21776. height: math.unit(30, "galaxies")
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(6, "feet"),
  21785. weight: math.unit(150, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/deathy/front.svg",
  21789. extra: 1552 / 1463,
  21790. bottom: 0.025
  21791. }
  21792. },
  21793. side: {
  21794. height: math.unit(6, "feet"),
  21795. weight: math.unit(150, "lb"),
  21796. name: "Side",
  21797. image: {
  21798. source: "./media/characters/deathy/side.svg",
  21799. extra: 1604 / 1455,
  21800. bottom: 0.025
  21801. }
  21802. },
  21803. back: {
  21804. height: math.unit(6, "feet"),
  21805. weight: math.unit(150, "lb"),
  21806. name: "Back",
  21807. image: {
  21808. source: "./media/characters/deathy/back.svg",
  21809. extra: 1580 / 1463,
  21810. bottom: 0.005
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Micro",
  21817. height: math.unit(5, "millimeters")
  21818. },
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(6 + 5 / 12, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21828. {
  21829. front: {
  21830. height: math.unit(16, "feet"),
  21831. weight: math.unit(4000, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/juniper/front.svg",
  21835. bottom: 0.04
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(16, "feet"),
  21843. default: true
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(6, "feet"),
  21852. weight: math.unit(150, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/hipster/front.svg",
  21856. extra: 1312 / 1209,
  21857. bottom: 0.025
  21858. }
  21859. },
  21860. back: {
  21861. height: math.unit(6, "feet"),
  21862. weight: math.unit(150, "lb"),
  21863. name: "Back",
  21864. image: {
  21865. source: "./media/characters/hipster/back.svg",
  21866. extra: 1281 / 1196,
  21867. bottom: 0.01
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Micro",
  21874. height: math.unit(1, "mm")
  21875. },
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(4, "inches"),
  21879. default: true
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(500, "feet")
  21884. },
  21885. {
  21886. name: "Megamacro",
  21887. height: math.unit(1000, "miles")
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(150, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/tendirmuldr/front.svg",
  21900. extra: 1878 / 1772,
  21901. bottom: 0.015
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Megamacro",
  21908. height: math.unit(1500, "miles"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21915. {
  21916. front: {
  21917. height: math.unit(14, "feet"),
  21918. weight: math.unit(12000, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/mort/front.svg",
  21922. extra: 365 / 318,
  21923. bottom: 0.01
  21924. }
  21925. },
  21926. side: {
  21927. height: math.unit(14, "feet"),
  21928. weight: math.unit(12000, "lb"),
  21929. name: "Side",
  21930. image: {
  21931. source: "./media/characters/mort/side.svg",
  21932. extra: 365 / 318,
  21933. bottom: 0.052
  21934. },
  21935. default: true
  21936. },
  21937. back: {
  21938. height: math.unit(14, "feet"),
  21939. weight: math.unit(12000, "lb"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/mort/back.svg",
  21943. extra: 371 / 332,
  21944. bottom: 0.18
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(14, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21958. {
  21959. front: {
  21960. height: math.unit(8, "feet"),
  21961. weight: math.unit(1, "ton"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/lycoa/front.svg",
  21965. extra: 1836/1728,
  21966. bottom: 81/1917
  21967. }
  21968. },
  21969. back: {
  21970. height: math.unit(8, "feet"),
  21971. weight: math.unit(1, "ton"),
  21972. name: "Back",
  21973. image: {
  21974. source: "./media/characters/lycoa/back.svg",
  21975. extra: 1785/1720,
  21976. bottom: 91/1876
  21977. }
  21978. },
  21979. head: {
  21980. height: math.unit(1.6243, "feet"),
  21981. name: "Head",
  21982. image: {
  21983. source: "./media/characters/lycoa/head.svg",
  21984. extra: 1011/782,
  21985. bottom: 0/1011
  21986. }
  21987. },
  21988. tailmaw: {
  21989. height: math.unit(1.9, "feet"),
  21990. name: "Tailmaw",
  21991. image: {
  21992. source: "./media/characters/lycoa/tailmaw.svg"
  21993. }
  21994. },
  21995. tentacles: {
  21996. height: math.unit(2.1, "feet"),
  21997. name: "Tentacles",
  21998. image: {
  21999. source: "./media/characters/lycoa/tentacles.svg"
  22000. }
  22001. },
  22002. dick: {
  22003. height: math.unit(1.73, "feet"),
  22004. name: "Dick",
  22005. image: {
  22006. source: "./media/characters/lycoa/dick.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(8, "feet"),
  22014. default: true
  22015. },
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(30, "feet")
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22024. {
  22025. front: {
  22026. height: math.unit(4 + 2 / 12, "feet"),
  22027. weight: math.unit(70, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/naldara/front.svg",
  22031. extra: 1664/1387,
  22032. bottom: 81/1745
  22033. },
  22034. form: "anthro",
  22035. default: true
  22036. },
  22037. naga: {
  22038. height: math.unit(20, "feet"),
  22039. weight: math.unit(15000, "kg"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/naldara/naga.svg",
  22043. extra: 1590/1396,
  22044. bottom: 285/1875
  22045. },
  22046. form: "naga",
  22047. default: true
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(4 + 2 / 12, "feet"),
  22054. form: "anthro",
  22055. default: true
  22056. },
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(20, "feet"),
  22060. form: "naga",
  22061. default: true
  22062. },
  22063. ],
  22064. {
  22065. "anthro": {
  22066. name: "Anthro",
  22067. default: true
  22068. },
  22069. "naga": {
  22070. name: "Naga"
  22071. }
  22072. }
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22076. {
  22077. front: {
  22078. height: math.unit(13 + 7 / 12, "feet"),
  22079. weight: math.unit(1500, "lb"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/briar/front.svg",
  22083. extra: 1223/1157,
  22084. bottom: 123/1346
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(13 + 7 / 12, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22098. {
  22099. side: {
  22100. height: math.unit(16, "feet"),
  22101. weight: math.unit(500, "lb"),
  22102. name: "Side",
  22103. image: {
  22104. source: "./media/characters/vanguard/side.svg",
  22105. extra: 1022/914,
  22106. bottom: 30/1052
  22107. }
  22108. },
  22109. sideAlt: {
  22110. height: math.unit(10, "feet"),
  22111. weight: math.unit(500, "lb"),
  22112. name: "Side (Alt)",
  22113. image: {
  22114. source: "./media/characters/vanguard/side-alt.svg",
  22115. extra: 502 / 425,
  22116. bottom: 0.087
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(17.71, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(7.5, "feet"),
  22133. weight: math.unit(2, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/artemis/work-safe-front.svg",
  22137. extra: 1192 / 1075,
  22138. bottom: 0.07
  22139. },
  22140. form: "work-safe",
  22141. default: true
  22142. },
  22143. frontNsfw: {
  22144. height: math.unit(7.5, "feet"),
  22145. weight: math.unit(2, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/artemis/calibrating-front.svg",
  22149. extra: 1192 / 1075,
  22150. bottom: 0.07
  22151. },
  22152. form: "calibrating",
  22153. default: true
  22154. },
  22155. frontNsfwer: {
  22156. height: math.unit(7.5, "feet"),
  22157. weight: math.unit(2, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/artemis/oversize-load-front.svg",
  22161. extra: 1192 / 1075,
  22162. bottom: 0.07
  22163. },
  22164. form: "oversize-load",
  22165. default: true
  22166. },
  22167. side: {
  22168. height: math.unit(7.5, "feet"),
  22169. weight: math.unit(2, "lb"),
  22170. name: "Side",
  22171. image: {
  22172. source: "./media/characters/artemis/work-safe-side.svg",
  22173. extra: 1192 / 1075,
  22174. bottom: 0.07
  22175. },
  22176. form: "work-safe"
  22177. },
  22178. sideNsfw: {
  22179. height: math.unit(7.5, "feet"),
  22180. weight: math.unit(2, "lb"),
  22181. name: "Side",
  22182. image: {
  22183. source: "./media/characters/artemis/calibrating-side.svg",
  22184. extra: 1192 / 1075,
  22185. bottom: 0.07
  22186. },
  22187. form: "calibrating"
  22188. },
  22189. sideNsfwer: {
  22190. height: math.unit(7.5, "feet"),
  22191. weight: math.unit(2, "lb"),
  22192. name: "Side",
  22193. image: {
  22194. source: "./media/characters/artemis/oversize-load-side.svg",
  22195. extra: 1192 / 1075,
  22196. bottom: 0.07
  22197. },
  22198. form: "oversize-load"
  22199. },
  22200. maw: {
  22201. height: math.unit(1.1, "feet"),
  22202. name: "Maw",
  22203. image: {
  22204. source: "./media/characters/artemis/maw.svg"
  22205. },
  22206. form: "work-safe"
  22207. },
  22208. stomach: {
  22209. height: math.unit(0.95, "feet"),
  22210. name: "Stomach",
  22211. image: {
  22212. source: "./media/characters/artemis/stomach.svg"
  22213. },
  22214. form: "work-safe"
  22215. },
  22216. dickCanine: {
  22217. height: math.unit(1, "feet"),
  22218. name: "Dick (Canine)",
  22219. image: {
  22220. source: "./media/characters/artemis/dick-canine.svg"
  22221. },
  22222. form: "calibrating"
  22223. },
  22224. dickEquine: {
  22225. height: math.unit(0.85, "feet"),
  22226. name: "Dick (Equine)",
  22227. image: {
  22228. source: "./media/characters/artemis/dick-equine.svg"
  22229. },
  22230. form: "calibrating"
  22231. },
  22232. dickExotic: {
  22233. height: math.unit(0.85, "feet"),
  22234. name: "Dick (Exotic)",
  22235. image: {
  22236. source: "./media/characters/artemis/dick-exotic.svg"
  22237. },
  22238. form: "calibrating"
  22239. },
  22240. dickCanineBigger: {
  22241. height: math.unit(1 * 1.33, "feet"),
  22242. name: "Dick (Canine)",
  22243. image: {
  22244. source: "./media/characters/artemis/dick-canine.svg"
  22245. },
  22246. form: "oversize-load"
  22247. },
  22248. dickEquineBigger: {
  22249. height: math.unit(0.85 * 1.33, "feet"),
  22250. name: "Dick (Equine)",
  22251. image: {
  22252. source: "./media/characters/artemis/dick-equine.svg"
  22253. },
  22254. form: "oversize-load"
  22255. },
  22256. dickExoticBigger: {
  22257. height: math.unit(0.85 * 1.33, "feet"),
  22258. name: "Dick (Exotic)",
  22259. image: {
  22260. source: "./media/characters/artemis/dick-exotic.svg"
  22261. },
  22262. form: "oversize-load"
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(7.5, "feet"),
  22269. form: "work-safe",
  22270. default: true
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(7.5, "feet"),
  22275. form: "calibrating",
  22276. default: true
  22277. },
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(7.5, "feet"),
  22281. form: "oversize-load",
  22282. default: true
  22283. },
  22284. {
  22285. name: "Enlarged",
  22286. height: math.unit(12, "feet"),
  22287. form: "work-safe",
  22288. },
  22289. {
  22290. name: "Enlarged",
  22291. height: math.unit(12, "feet"),
  22292. form: "calibrating",
  22293. },
  22294. {
  22295. name: "Enlarged",
  22296. height: math.unit(12, "feet"),
  22297. form: "oversize-load",
  22298. },
  22299. ],
  22300. {
  22301. "work-safe": {
  22302. name: "Work-Safe",
  22303. default: true
  22304. },
  22305. "calibrating": {
  22306. name: "Calibrating"
  22307. },
  22308. "oversize-load": {
  22309. name: "Oversize Load"
  22310. }
  22311. }
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(5 + 3 / 12, "feet"),
  22318. weight: math.unit(160, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/kira/front.svg",
  22322. extra: 906 / 786,
  22323. bottom: 0.01
  22324. }
  22325. },
  22326. back: {
  22327. height: math.unit(5 + 3 / 12, "feet"),
  22328. weight: math.unit(160, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/kira/back.svg",
  22332. extra: 882 / 757,
  22333. bottom: 0.005
  22334. }
  22335. },
  22336. frontDressed: {
  22337. height: math.unit(5 + 3 / 12, "feet"),
  22338. weight: math.unit(160, "lb"),
  22339. name: "Front (Dressed)",
  22340. image: {
  22341. source: "./media/characters/kira/front-dressed.svg",
  22342. extra: 906 / 786,
  22343. bottom: 0.01
  22344. }
  22345. },
  22346. beans: {
  22347. height: math.unit(0.92, "feet"),
  22348. name: "Beans",
  22349. image: {
  22350. source: "./media/characters/kira/beans.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(5 + 3 / 12, "feet"),
  22358. default: true
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22364. {
  22365. front: {
  22366. height: math.unit(5 + 4 / 12, "feet"),
  22367. weight: math.unit(145, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/scramble/front.svg",
  22371. extra: 763 / 727,
  22372. bottom: 0.05
  22373. }
  22374. },
  22375. back: {
  22376. height: math.unit(5 + 4 / 12, "feet"),
  22377. weight: math.unit(145, "lb"),
  22378. name: "Back",
  22379. image: {
  22380. source: "./media/characters/scramble/back.svg",
  22381. extra: 826 / 737,
  22382. bottom: 0.002
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(5 + 4 / 12, "feet"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22396. {
  22397. side: {
  22398. height: math.unit(6 + 2 / 12, "feet"),
  22399. weight: math.unit(190, "lb"),
  22400. name: "Side",
  22401. image: {
  22402. source: "./media/characters/biscuit/side.svg",
  22403. extra: 858 / 791,
  22404. bottom: 0.044
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Normal",
  22411. height: math.unit(6 + 2 / 12, "feet"),
  22412. default: true
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(5 + 2 / 12, "feet"),
  22421. weight: math.unit(120, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/poffin/front.svg",
  22425. extra: 786 / 680,
  22426. bottom: 0.005
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(5 + 2 / 12, "feet"),
  22434. default: true
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(6 + 3 / 12, "feet"),
  22443. weight: math.unit(519, "lb"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/dhari/front.svg",
  22447. extra: 1048 / 946,
  22448. bottom: 0.015
  22449. }
  22450. },
  22451. back: {
  22452. height: math.unit(6 + 3 / 12, "feet"),
  22453. weight: math.unit(519, "lb"),
  22454. name: "Back",
  22455. image: {
  22456. source: "./media/characters/dhari/back.svg",
  22457. extra: 1048 / 931,
  22458. bottom: 0.005
  22459. }
  22460. },
  22461. frontDressed: {
  22462. height: math.unit(6 + 3 / 12, "feet"),
  22463. weight: math.unit(519, "lb"),
  22464. name: "Front (Dressed)",
  22465. image: {
  22466. source: "./media/characters/dhari/front-dressed.svg",
  22467. extra: 1713 / 1546,
  22468. bottom: 0.02
  22469. }
  22470. },
  22471. backDressed: {
  22472. height: math.unit(6 + 3 / 12, "feet"),
  22473. weight: math.unit(519, "lb"),
  22474. name: "Back (Dressed)",
  22475. image: {
  22476. source: "./media/characters/dhari/back-dressed.svg",
  22477. extra: 1699 / 1537,
  22478. bottom: 0.01
  22479. }
  22480. },
  22481. maw: {
  22482. height: math.unit(0.95, "feet"),
  22483. name: "Maw",
  22484. image: {
  22485. source: "./media/characters/dhari/maw.svg"
  22486. }
  22487. },
  22488. wereFront: {
  22489. height: math.unit(12 + 8 / 12, "feet"),
  22490. weight: math.unit(4000, "lb"),
  22491. name: "Front (Were)",
  22492. image: {
  22493. source: "./media/characters/dhari/were-front.svg",
  22494. extra: 1065 / 969,
  22495. bottom: 0.015
  22496. }
  22497. },
  22498. wereBack: {
  22499. height: math.unit(12 + 8 / 12, "feet"),
  22500. weight: math.unit(4000, "lb"),
  22501. name: "Back (Were)",
  22502. image: {
  22503. source: "./media/characters/dhari/were-back.svg",
  22504. extra: 1065 / 969,
  22505. bottom: 0.012
  22506. }
  22507. },
  22508. wereMaw: {
  22509. height: math.unit(0.625, "meters"),
  22510. name: "Maw (Were)",
  22511. image: {
  22512. source: "./media/characters/dhari/were-maw.svg"
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(6 + 3 / 12, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22526. {
  22527. anthro: {
  22528. height: math.unit(5 + 7 / 12, "feet"),
  22529. weight: math.unit(175, "lb"),
  22530. name: "Anthro",
  22531. image: {
  22532. source: "./media/characters/rena-dyne/anthro.svg",
  22533. extra: 1849 / 1785,
  22534. bottom: 0.005
  22535. }
  22536. },
  22537. taur: {
  22538. height: math.unit(15 + 6 / 12, "feet"),
  22539. weight: math.unit(8000, "lb"),
  22540. name: "Taur",
  22541. image: {
  22542. source: "./media/characters/rena-dyne/taur.svg",
  22543. extra: 2315 / 2234,
  22544. bottom: 0.033
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Normal",
  22551. height: math.unit(5 + 7 / 12, "feet"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22558. {
  22559. front: {
  22560. height: math.unit(8, "feet"),
  22561. weight: math.unit(600, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/weremeep/front.svg",
  22565. extra: 970/849,
  22566. bottom: 7/977
  22567. }
  22568. },
  22569. },
  22570. [
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(8, "feet"),
  22574. default: true
  22575. },
  22576. {
  22577. name: "Lorg",
  22578. height: math.unit(12, "feet")
  22579. },
  22580. {
  22581. name: "Oh Lawd She Comin'",
  22582. height: math.unit(20, "feet")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22588. {
  22589. front: {
  22590. height: math.unit(4, "feet"),
  22591. weight: math.unit(90, "lb"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/reza/front.svg",
  22595. extra: 1183 / 1111,
  22596. bottom: 0.017
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(4, "feet"),
  22601. weight: math.unit(90, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/reza/back.svg",
  22605. extra: 1183 / 1111,
  22606. bottom: 0.01
  22607. }
  22608. },
  22609. drake: {
  22610. height: math.unit(30, "feet"),
  22611. weight: math.unit(246960, "lb"),
  22612. name: "Drake",
  22613. image: {
  22614. source: "./media/characters/reza/drake.svg",
  22615. extra: 2350 / 2024,
  22616. bottom: 60.7 / 2403
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(4, "feet"),
  22624. default: true
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22630. {
  22631. side: {
  22632. height: math.unit(15, "feet"),
  22633. weight: math.unit(14, "tons"),
  22634. name: "Side",
  22635. image: {
  22636. source: "./media/characters/athea/side.svg",
  22637. extra: 960 / 540,
  22638. bottom: 0.003
  22639. }
  22640. },
  22641. sitting: {
  22642. height: math.unit(6 * 2.85, "feet"),
  22643. weight: math.unit(14, "tons"),
  22644. name: "Sitting",
  22645. image: {
  22646. source: "./media/characters/athea/sitting.svg",
  22647. extra: 621 / 581,
  22648. bottom: 0.075
  22649. }
  22650. },
  22651. maw: {
  22652. height: math.unit(7.59498031496063, "feet"),
  22653. name: "Maw",
  22654. image: {
  22655. source: "./media/characters/athea/maw.svg"
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Lap Cat",
  22662. height: math.unit(2.5, "feet")
  22663. },
  22664. {
  22665. name: "Minimacro",
  22666. height: math.unit(15, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Macro",
  22671. height: math.unit(120, "feet")
  22672. },
  22673. {
  22674. name: "Macro+",
  22675. height: math.unit(640, "feet")
  22676. },
  22677. {
  22678. name: "Colossus",
  22679. height: math.unit(2.2, "miles")
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(8 + 8 / 12, "feet"),
  22688. weight: math.unit(130, "kg"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/seroko/front.svg",
  22692. extra: 1385 / 1280,
  22693. bottom: 0.025
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(8 + 8 / 12, "feet"),
  22698. weight: math.unit(130, "kg"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/seroko/back.svg",
  22702. extra: 1369 / 1238,
  22703. bottom: 0.018
  22704. }
  22705. },
  22706. frontDressed: {
  22707. height: math.unit(8 + 8 / 12, "feet"),
  22708. weight: math.unit(130, "kg"),
  22709. name: "Front (Dressed)",
  22710. image: {
  22711. source: "./media/characters/seroko/front-dressed.svg",
  22712. extra: 1366 / 1275,
  22713. bottom: 0.03
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(8 + 8 / 12, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(5.5, "feet"),
  22730. weight: math.unit(160, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/quatzi/front.svg",
  22734. extra: 2346 / 2242,
  22735. bottom: 0.015
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(5.5, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Big",
  22747. height: math.unit(7.7, "feet")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(5 + 11 / 12, "feet"),
  22756. weight: math.unit(180, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/sen/front.svg",
  22760. extra: 1321 / 1254,
  22761. bottom: 0.015
  22762. }
  22763. },
  22764. side: {
  22765. height: math.unit(5 + 11 / 12, "feet"),
  22766. weight: math.unit(180, "lb"),
  22767. name: "Side",
  22768. image: {
  22769. source: "./media/characters/sen/side.svg",
  22770. extra: 1321 / 1254,
  22771. bottom: 0.007
  22772. }
  22773. },
  22774. back: {
  22775. height: math.unit(5 + 11 / 12, "feet"),
  22776. weight: math.unit(180, "lb"),
  22777. name: "Back",
  22778. image: {
  22779. source: "./media/characters/sen/back.svg",
  22780. extra: 1321 / 1254
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(5 + 11 / 12, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22794. {
  22795. front: {
  22796. height: math.unit(166.6, "cm"),
  22797. weight: math.unit(66.6, "kg"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/fruity/front.svg",
  22801. extra: 1510 / 1386,
  22802. bottom: 0.04
  22803. }
  22804. },
  22805. back: {
  22806. height: math.unit(166.6, "cm"),
  22807. weight: math.unit(66.6, "lb"),
  22808. name: "Back",
  22809. image: {
  22810. source: "./media/characters/fruity/back.svg",
  22811. extra: 1563 / 1435,
  22812. bottom: 0.005
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(166.6, "cm"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Demonic",
  22824. height: math.unit(166.6, "feet")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22830. {
  22831. side: {
  22832. height: math.unit(10, "feet"),
  22833. weight: math.unit(500, "lb"),
  22834. name: "Side",
  22835. image: {
  22836. source: "./media/characters/zost/side.svg",
  22837. extra: 2870/2533,
  22838. bottom: 252/3122
  22839. }
  22840. },
  22841. mawFront: {
  22842. height: math.unit(1.08, "meters"),
  22843. name: "Maw (Front)",
  22844. image: {
  22845. source: "./media/characters/zost/maw-front.svg"
  22846. }
  22847. },
  22848. mawSide: {
  22849. height: math.unit(2.66, "feet"),
  22850. name: "Maw (Side)",
  22851. image: {
  22852. source: "./media/characters/zost/maw-side.svg"
  22853. }
  22854. },
  22855. wingspan: {
  22856. height: math.unit(7.4, "feet"),
  22857. name: "Wingspan",
  22858. image: {
  22859. source: "./media/characters/zost/wingspan.svg"
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(10, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(5 + 4 / 12, "feet"),
  22876. weight: math.unit(120, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/luci/front.svg",
  22880. extra: 1985 / 1884,
  22881. bottom: 0.04
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(5 + 4 / 12, "feet"),
  22886. weight: math.unit(120, "lb"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/luci/back.svg",
  22890. extra: 1892 / 1791,
  22891. bottom: 0.002
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(5 + 4 / 12, "feet"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(1500, "feet"),
  22908. weight: math.unit(3.8e6, "tons"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/2th/front.svg",
  22912. extra: 3489 / 3350,
  22913. bottom: 0.1
  22914. }
  22915. },
  22916. foot: {
  22917. height: math.unit(461, "feet"),
  22918. name: "Foot",
  22919. image: {
  22920. source: "./media/characters/2th/foot.svg"
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "\"Micro\"",
  22927. height: math.unit(15 + 7 / 12, "feet")
  22928. },
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(1500, "feet"),
  22932. default: true
  22933. },
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(5000, "feet")
  22937. },
  22938. {
  22939. name: "Megamacro",
  22940. height: math.unit(15, "miles")
  22941. },
  22942. {
  22943. name: "Gigamacro",
  22944. height: math.unit(4000, "miles")
  22945. },
  22946. {
  22947. name: "Galactic",
  22948. height: math.unit(50, "AU")
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22954. {
  22955. front: {
  22956. height: math.unit(5 + 6 / 12, "feet"),
  22957. weight: math.unit(220, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/amethyst/front.svg",
  22961. extra: 2078 / 2040,
  22962. bottom: 0.045
  22963. }
  22964. },
  22965. back: {
  22966. height: math.unit(5 + 6 / 12, "feet"),
  22967. weight: math.unit(220, "lb"),
  22968. name: "Back",
  22969. image: {
  22970. source: "./media/characters/amethyst/back.svg",
  22971. extra: 2021 / 1989,
  22972. bottom: 0.02
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(5 + 6 / 12, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(4 + 11 / 12, "feet"),
  22989. weight: math.unit(120, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/yumi-akiyama/front.svg",
  22993. extra: 1327 / 1235,
  22994. bottom: 0.02
  22995. }
  22996. },
  22997. back: {
  22998. height: math.unit(4 + 11 / 12, "feet"),
  22999. weight: math.unit(120, "lb"),
  23000. name: "Back",
  23001. image: {
  23002. source: "./media/characters/yumi-akiyama/back.svg",
  23003. extra: 1287 / 1245,
  23004. bottom: 0.002
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Galactic",
  23011. height: math.unit(50, "galaxies"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Universal",
  23016. height: math.unit(100, "universes")
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(8, "feet"),
  23025. weight: math.unit(500, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/rifter-yrmori/front.svg",
  23029. extra: 1180 / 1125,
  23030. bottom: 0.02
  23031. }
  23032. },
  23033. back: {
  23034. height: math.unit(8, "feet"),
  23035. weight: math.unit(500, "lb"),
  23036. name: "Back",
  23037. image: {
  23038. source: "./media/characters/rifter-yrmori/back.svg",
  23039. extra: 1190 / 1145,
  23040. bottom: 0.001
  23041. }
  23042. },
  23043. wings: {
  23044. height: math.unit(7.75, "feet"),
  23045. weight: math.unit(500, "lb"),
  23046. name: "Wings",
  23047. image: {
  23048. source: "./media/characters/rifter-yrmori/wings.svg",
  23049. extra: 1357 / 1285
  23050. }
  23051. },
  23052. maw: {
  23053. height: math.unit(0.8, "feet"),
  23054. name: "Maw",
  23055. image: {
  23056. source: "./media/characters/rifter-yrmori/maw.svg"
  23057. }
  23058. },
  23059. mawfront: {
  23060. height: math.unit(1.45, "feet"),
  23061. name: "Maw (Front)",
  23062. image: {
  23063. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(8, "feet"),
  23071. default: true
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(42, "meters")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23081. {
  23082. were: {
  23083. height: math.unit(25 + 6 / 12, "feet"),
  23084. weight: math.unit(10000, "lb"),
  23085. name: "Were",
  23086. image: {
  23087. source: "./media/characters/tahajin/were.svg",
  23088. extra: 801 / 770,
  23089. bottom: 0.042
  23090. }
  23091. },
  23092. aquatic: {
  23093. height: math.unit(6 + 4 / 12, "feet"),
  23094. weight: math.unit(160, "lb"),
  23095. name: "Aquatic",
  23096. image: {
  23097. source: "./media/characters/tahajin/aquatic.svg",
  23098. extra: 572 / 542,
  23099. bottom: 0.04
  23100. }
  23101. },
  23102. chow: {
  23103. height: math.unit(8 + 11 / 12, "feet"),
  23104. weight: math.unit(450, "lb"),
  23105. name: "Chow",
  23106. image: {
  23107. source: "./media/characters/tahajin/chow.svg",
  23108. extra: 660 / 640,
  23109. bottom: 0.015
  23110. }
  23111. },
  23112. demiNaga: {
  23113. height: math.unit(6 + 8 / 12, "feet"),
  23114. weight: math.unit(300, "lb"),
  23115. name: "Demi Naga",
  23116. image: {
  23117. source: "./media/characters/tahajin/demi-naga.svg",
  23118. extra: 643 / 615,
  23119. bottom: 0.1
  23120. }
  23121. },
  23122. data: {
  23123. height: math.unit(5, "inches"),
  23124. weight: math.unit(0.1, "lb"),
  23125. name: "Data",
  23126. image: {
  23127. source: "./media/characters/tahajin/data.svg"
  23128. }
  23129. },
  23130. fluu: {
  23131. height: math.unit(5 + 7 / 12, "feet"),
  23132. weight: math.unit(140, "lb"),
  23133. name: "Fluu",
  23134. image: {
  23135. source: "./media/characters/tahajin/fluu.svg",
  23136. extra: 628 / 592,
  23137. bottom: 0.02
  23138. }
  23139. },
  23140. starWarrior: {
  23141. height: math.unit(4 + 5 / 12, "feet"),
  23142. weight: math.unit(50, "lb"),
  23143. name: "Star Warrior",
  23144. image: {
  23145. source: "./media/characters/tahajin/star-warrior.svg"
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(25 + 6 / 12, "feet"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(8, "feet"),
  23162. weight: math.unit(350, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/gabira/front.svg",
  23166. extra: 1261/1154,
  23167. bottom: 51/1312
  23168. }
  23169. },
  23170. back: {
  23171. height: math.unit(8, "feet"),
  23172. weight: math.unit(350, "lb"),
  23173. name: "Back",
  23174. image: {
  23175. source: "./media/characters/gabira/back.svg",
  23176. extra: 1265/1163,
  23177. bottom: 46/1311
  23178. }
  23179. },
  23180. head: {
  23181. height: math.unit(2.85, "feet"),
  23182. name: "Head",
  23183. image: {
  23184. source: "./media/characters/gabira/head.svg"
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(8, "feet"),
  23192. default: true
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(5 + 3 / 12, "feet"),
  23201. weight: math.unit(137, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/sasha-katraine/front.svg",
  23205. extra: 1745/1694,
  23206. bottom: 37/1782
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(5 + 3 / 12, "feet"),
  23211. weight: math.unit(137, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/sasha-katraine/back.svg",
  23215. extra: 1776/1699,
  23216. bottom: 26/1802
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Micro",
  23223. height: math.unit(5, "inches")
  23224. },
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(5 + 3 / 12, "feet"),
  23228. default: true
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23234. {
  23235. side: {
  23236. height: math.unit(4, "inches"),
  23237. weight: math.unit(200, "grams"),
  23238. name: "Side",
  23239. image: {
  23240. source: "./media/characters/der/side.svg",
  23241. extra: 719 / 400,
  23242. bottom: 30.6 / 749.9187
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Micro",
  23249. height: math.unit(4, "inches"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23256. {
  23257. side: {
  23258. height: math.unit(30, "meters"),
  23259. weight: math.unit(700, "tonnes"),
  23260. name: "Side",
  23261. image: {
  23262. source: "./media/characters/fixerdragon/side.svg",
  23263. extra: (1293.0514 - 116.03) / 1106.86,
  23264. bottom: 116.03 / 1293.0514
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Planck",
  23271. height: math.unit(1.6e-35, "meters")
  23272. },
  23273. {
  23274. name: "Micro",
  23275. height: math.unit(0.4, "meters")
  23276. },
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(30, "meters"),
  23280. default: true
  23281. },
  23282. {
  23283. name: "Megamacro",
  23284. height: math.unit(1.2, "megameters")
  23285. },
  23286. {
  23287. name: "Teramacro",
  23288. height: math.unit(130, "terameters")
  23289. },
  23290. {
  23291. name: "Yottamacro",
  23292. height: math.unit(6200, "yottameters")
  23293. },
  23294. ]
  23295. ));
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(8, "feet"),
  23301. weight: math.unit(250, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/kite/front.svg",
  23305. extra: 2796 / 2659,
  23306. bottom: 0.002
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(8, "feet"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Macro",
  23318. height: math.unit(360, "feet")
  23319. },
  23320. {
  23321. name: "Megamacro",
  23322. height: math.unit(1500, "feet")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(5 + 11/12, "feet"),
  23331. weight: math.unit(170, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/poojawa-vynar/front.svg",
  23335. extra: 1735/1585,
  23336. bottom: 96/1831
  23337. }
  23338. },
  23339. back: {
  23340. height: math.unit(5 + 11/12, "feet"),
  23341. weight: math.unit(170, "lb"),
  23342. name: "Back",
  23343. image: {
  23344. source: "./media/characters/poojawa-vynar/back.svg",
  23345. extra: 1749/1607,
  23346. bottom: 28/1777
  23347. }
  23348. },
  23349. male: {
  23350. height: math.unit(5 + 11/12, "feet"),
  23351. weight: math.unit(170, "lb"),
  23352. name: "Male",
  23353. image: {
  23354. source: "./media/characters/poojawa-vynar/male.svg",
  23355. extra: 1855/1713,
  23356. bottom: 63/1918
  23357. }
  23358. },
  23359. taur: {
  23360. height: math.unit(5 + 11/12, "feet"),
  23361. weight: math.unit(170, "lb"),
  23362. name: "Taur",
  23363. image: {
  23364. source: "./media/characters/poojawa-vynar/taur.svg",
  23365. extra: 1151/1059,
  23366. bottom: 356/1507
  23367. }
  23368. },
  23369. frontDressed: {
  23370. height: math.unit(5 + 11/12, "feet"),
  23371. weight: math.unit(170, "lb"),
  23372. name: "Front (Dressed)",
  23373. image: {
  23374. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23375. extra: 1735/1585,
  23376. bottom: 96/1831
  23377. }
  23378. },
  23379. backDressed: {
  23380. height: math.unit(5 + 11/12, "feet"),
  23381. weight: math.unit(170, "lb"),
  23382. name: "Back (Dressed)",
  23383. image: {
  23384. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23385. extra: 1749/1607,
  23386. bottom: 28/1777
  23387. }
  23388. },
  23389. maleDressed: {
  23390. height: math.unit(5 + 11/12, "feet"),
  23391. weight: math.unit(170, "lb"),
  23392. name: "Male (Dressed)",
  23393. image: {
  23394. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23395. extra: 1855/1713,
  23396. bottom: 63/1918
  23397. }
  23398. },
  23399. taurDressed: {
  23400. height: math.unit(5 + 11/12, "feet"),
  23401. weight: math.unit(170, "lb"),
  23402. name: "Taur (Dressed)",
  23403. image: {
  23404. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23405. extra: 1151/1059,
  23406. bottom: 356/1507
  23407. }
  23408. },
  23409. maw: {
  23410. height: math.unit(1.46, "feet"),
  23411. name: "Maw",
  23412. image: {
  23413. source: "./media/characters/poojawa-vynar/maw.svg"
  23414. }
  23415. },
  23416. head: {
  23417. height: math.unit(2.34, "feet"),
  23418. name: "Head",
  23419. image: {
  23420. source: "./media/characters/poojawa-vynar/head.svg"
  23421. }
  23422. },
  23423. paw: {
  23424. height: math.unit(1.61, "feet"),
  23425. name: "Paw",
  23426. image: {
  23427. source: "./media/characters/poojawa-vynar/paw.svg"
  23428. }
  23429. },
  23430. pawToering: {
  23431. height: math.unit(1.72, "feet"),
  23432. name: "Paw (Toering)",
  23433. image: {
  23434. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23435. }
  23436. },
  23437. toering: {
  23438. height: math.unit(2.9, "inches"),
  23439. name: "Toering",
  23440. image: {
  23441. source: "./media/characters/poojawa-vynar/toering.svg"
  23442. }
  23443. },
  23444. shaft: {
  23445. height: math.unit(0.625, "feet"),
  23446. name: "Shaft",
  23447. image: {
  23448. source: "./media/characters/poojawa-vynar/shaft.svg"
  23449. }
  23450. },
  23451. spade: {
  23452. height: math.unit(0.42, "feet"),
  23453. name: "Spade",
  23454. image: {
  23455. source: "./media/characters/poojawa-vynar/spade.svg"
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Shortstack",
  23462. height: math.unit(4, "feet")
  23463. },
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(5 + 11 / 12, "feet"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Tauric",
  23471. height: math.unit(4, "meters")
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(293, "meters"),
  23480. weight: math.unit(70400, "tons"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/violette/front.svg",
  23484. extra: 1227 / 1180,
  23485. bottom: 0.005
  23486. }
  23487. },
  23488. back: {
  23489. height: math.unit(293, "meters"),
  23490. weight: math.unit(70400, "tons"),
  23491. name: "Back",
  23492. image: {
  23493. source: "./media/characters/violette/back.svg",
  23494. extra: 1227 / 1180,
  23495. bottom: 0.005
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Macro",
  23502. height: math.unit(293, "meters"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(1050, "feet"),
  23512. weight: math.unit(200000, "tons"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/alessandra/front.svg",
  23516. extra: 960 / 912,
  23517. bottom: 0.06
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Macro",
  23524. height: math.unit(1050, "feet")
  23525. },
  23526. {
  23527. name: "Macro+",
  23528. height: math.unit(900, "meters"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23535. {
  23536. front: {
  23537. height: math.unit(5, "feet"),
  23538. weight: math.unit(187, "lb"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/person/front.svg",
  23542. extra: 3087 / 2945,
  23543. bottom: 91 / 3181
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Micro",
  23550. height: math.unit(3, "inches")
  23551. },
  23552. {
  23553. name: "Normal",
  23554. height: math.unit(5, "feet"),
  23555. default: true
  23556. },
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(90, "feet")
  23560. },
  23561. {
  23562. name: "Max Size",
  23563. height: math.unit(280, "feet")
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(4.5, "meters"),
  23572. weight: math.unit(3200, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/ty/front.svg",
  23576. extra: 1038 / 960,
  23577. bottom: 31.156 / 1068
  23578. }
  23579. },
  23580. back: {
  23581. height: math.unit(4.5, "meters"),
  23582. weight: math.unit(3200, "lb"),
  23583. name: "Back",
  23584. image: {
  23585. source: "./media/characters/ty/back.svg",
  23586. extra: 1044 / 966,
  23587. bottom: 7.48 / 1049
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(4.5, "meters"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(5 + 4 / 12, "feet"),
  23604. weight: math.unit(115, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/rocky/front.svg",
  23608. extra: 1012 / 975,
  23609. bottom: 54 / 1066
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(5 + 4 / 12, "feet"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23623. {
  23624. upright: {
  23625. height: math.unit(6, "meters"),
  23626. weight: math.unit(4000, "kg"),
  23627. name: "Upright",
  23628. image: {
  23629. source: "./media/characters/ruin/upright.svg",
  23630. extra: 668 / 661,
  23631. bottom: 42 / 799.8396
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(6, "meters"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(5, "feet"),
  23648. weight: math.unit(106, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/robin/front.svg",
  23652. extra: 862 / 799,
  23653. bottom: 42.4 / 914.8856
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(5, "feet"),
  23661. default: true
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23667. {
  23668. side: {
  23669. height: math.unit(3, "feet"),
  23670. weight: math.unit(225, "lb"),
  23671. name: "Side",
  23672. image: {
  23673. source: "./media/characters/saian/side.svg",
  23674. extra: 566 / 356,
  23675. bottom: 79.7 / 643
  23676. }
  23677. },
  23678. maw: {
  23679. height: math.unit(2.85, "feet"),
  23680. name: "Maw",
  23681. image: {
  23682. source: "./media/characters/saian/maw.svg"
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(3, "feet"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23696. {
  23697. side: {
  23698. height: math.unit(8, "feet"),
  23699. weight: math.unit(300, "lb"),
  23700. name: "Side",
  23701. image: {
  23702. source: "./media/characters/equus-silvermane/side.svg",
  23703. extra: 2176 / 2050,
  23704. bottom: 65.7 / 2245
  23705. }
  23706. },
  23707. front: {
  23708. height: math.unit(8, "feet"),
  23709. weight: math.unit(300, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/equus-silvermane/front.svg",
  23713. extra: 4633 / 4400,
  23714. bottom: 71.3 / 4706.915
  23715. }
  23716. },
  23717. sideStepping: {
  23718. height: math.unit(8, "feet"),
  23719. weight: math.unit(300, "lb"),
  23720. name: "Side (Stepping)",
  23721. image: {
  23722. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23723. extra: 1968 / 1860,
  23724. bottom: 16.4 / 1989
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(8, "feet")
  23732. },
  23733. {
  23734. name: "Minimacro",
  23735. height: math.unit(75, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(150, "feet")
  23741. },
  23742. {
  23743. name: "Macro+",
  23744. height: math.unit(1000, "feet")
  23745. },
  23746. {
  23747. name: "Megamacro",
  23748. height: math.unit(1, "mile")
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23754. {
  23755. side: {
  23756. height: math.unit(20, "feet"),
  23757. weight: math.unit(30000, "kg"),
  23758. name: "Side",
  23759. image: {
  23760. source: "./media/characters/windar/side.svg",
  23761. extra: 1491 / 1248,
  23762. bottom: 82.56 / 1568
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(20, "feet"),
  23770. default: true
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23776. {
  23777. side: {
  23778. height: math.unit(15.66, "feet"),
  23779. weight: math.unit(150, "lb"),
  23780. name: "Side",
  23781. image: {
  23782. source: "./media/characters/melody/side.svg",
  23783. extra: 1097 / 944,
  23784. bottom: 11.8 / 1109
  23785. }
  23786. },
  23787. sideOutfit: {
  23788. height: math.unit(15.66, "feet"),
  23789. weight: math.unit(150, "lb"),
  23790. name: "Side (Outfit)",
  23791. image: {
  23792. source: "./media/characters/melody/side-outfit.svg",
  23793. extra: 1097 / 944,
  23794. bottom: 11.8 / 1109
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(15.66, "feet"),
  23802. default: true
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23808. {
  23809. armoredFront: {
  23810. height: math.unit(8, "feet"),
  23811. weight: math.unit(325, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/windera/armored-front.svg",
  23815. extra: 1830/1598,
  23816. bottom: 151/1981
  23817. },
  23818. form: "armored",
  23819. default: true
  23820. },
  23821. macroFront: {
  23822. height: math.unit(70, "feet"),
  23823. weight: math.unit(315453, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/windera/macro-front.svg",
  23827. extra: 963/883,
  23828. bottom: 23/986
  23829. },
  23830. form: "macro",
  23831. default: true
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(8, "feet"),
  23838. default: true,
  23839. form: "armored"
  23840. },
  23841. {
  23842. name: "Normal",
  23843. height: math.unit(70, "feet"),
  23844. default: true,
  23845. form: "macro"
  23846. },
  23847. ],
  23848. {
  23849. "armored": {
  23850. name: "Armored",
  23851. default: true
  23852. },
  23853. "macro": {
  23854. name: "Macro",
  23855. },
  23856. }
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23860. {
  23861. front: {
  23862. height: math.unit(28.75, "feet"),
  23863. weight: math.unit(2000, "kg"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/sonear/front.svg",
  23867. extra: 1041.1 / 964.9,
  23868. bottom: 53.7 / 1096.6
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(28.75, "feet"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23882. {
  23883. side: {
  23884. height: math.unit(25.5, "feet"),
  23885. weight: math.unit(23000, "kg"),
  23886. name: "Side",
  23887. image: {
  23888. source: "./media/characters/kanara/side.svg"
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(25.5, "feet"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23902. {
  23903. side: {
  23904. height: math.unit(10, "feet"),
  23905. weight: math.unit(1000, "kg"),
  23906. name: "Side",
  23907. image: {
  23908. source: "./media/characters/ereus/side.svg",
  23909. extra: 1157 / 959,
  23910. bottom: 153 / 1312.5
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(10, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23924. {
  23925. side: {
  23926. height: math.unit(4.5, "feet"),
  23927. weight: math.unit(500, "lb"),
  23928. name: "Side",
  23929. image: {
  23930. source: "./media/characters/e-ter/side.svg",
  23931. extra: 1550 / 1248,
  23932. bottom: 146 / 1694
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(4.5, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23946. {
  23947. side: {
  23948. height: math.unit(9.7, "feet"),
  23949. weight: math.unit(4000, "kg"),
  23950. name: "Side",
  23951. image: {
  23952. source: "./media/characters/yamie/side.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(9.7, "feet"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(50, "feet"),
  23969. weight: math.unit(50000, "kg"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/anders/front.svg",
  23973. extra: 570 / 539,
  23974. bottom: 14.7 / 586.7
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Large",
  23981. height: math.unit(50, "feet")
  23982. },
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(2000, "feet"),
  23986. default: true
  23987. },
  23988. {
  23989. name: "Megamacro",
  23990. height: math.unit(12, "miles")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(7 + 2 / 12, "feet"),
  23999. weight: math.unit(300, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/reban/front.svg",
  24003. extra: 1287/1212,
  24004. bottom: 148/1435
  24005. }
  24006. },
  24007. head: {
  24008. height: math.unit(1.95, "feet"),
  24009. name: "Head",
  24010. image: {
  24011. source: "./media/characters/reban/head.svg"
  24012. }
  24013. },
  24014. maw: {
  24015. height: math.unit(0.95, "feet"),
  24016. name: "Maw",
  24017. image: {
  24018. source: "./media/characters/reban/maw.svg"
  24019. }
  24020. },
  24021. foot: {
  24022. height: math.unit(1.65, "feet"),
  24023. name: "Foot",
  24024. image: {
  24025. source: "./media/characters/reban/foot.svg"
  24026. }
  24027. },
  24028. dick: {
  24029. height: math.unit(7 / 5, "feet"),
  24030. name: "Dick",
  24031. image: {
  24032. source: "./media/characters/reban/dick.svg"
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Natural Height",
  24039. height: math.unit(7 + 2 / 12, "feet")
  24040. },
  24041. {
  24042. name: "Macro",
  24043. height: math.unit(500, "feet"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Canon Height",
  24048. height: math.unit(50, "AU")
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(6, "feet"),
  24057. weight: math.unit(150, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/terrance-keayes/front.svg",
  24061. extra: 1.005,
  24062. bottom: 151 / 1615
  24063. }
  24064. },
  24065. side: {
  24066. height: math.unit(6, "feet"),
  24067. weight: math.unit(150, "lb"),
  24068. name: "Side",
  24069. image: {
  24070. source: "./media/characters/terrance-keayes/side.svg",
  24071. extra: 1.005,
  24072. bottom: 129.4 / 1544
  24073. }
  24074. },
  24075. back: {
  24076. height: math.unit(6, "feet"),
  24077. weight: math.unit(150, "lb"),
  24078. name: "Back",
  24079. image: {
  24080. source: "./media/characters/terrance-keayes/back.svg",
  24081. extra: 1.005,
  24082. bottom: 58.4 / 1557.3
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(6 * 0.208, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/terrance-keayes/dick.svg"
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Canon Height",
  24096. height: math.unit(35, "miles"),
  24097. default: true
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(6, "feet"),
  24106. weight: math.unit(150, "lb"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/ofelia/front.svg",
  24110. extra: 1130/1117,
  24111. bottom: 91/1221
  24112. }
  24113. },
  24114. back: {
  24115. height: math.unit(6, "feet"),
  24116. weight: math.unit(150, "lb"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/ofelia/back.svg",
  24120. extra: 1172/1159,
  24121. bottom: 28/1200
  24122. }
  24123. },
  24124. maw: {
  24125. height: math.unit(1, "feet"),
  24126. name: "Maw",
  24127. image: {
  24128. source: "./media/characters/ofelia/maw.svg"
  24129. }
  24130. },
  24131. foot: {
  24132. height: math.unit(1.949, "feet"),
  24133. name: "Foot",
  24134. image: {
  24135. source: "./media/characters/ofelia/foot.svg"
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Canon Height",
  24142. height: math.unit(2000, "miles"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(6, "feet"),
  24152. weight: math.unit(150, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/samuel/front.svg",
  24156. extra: 265 / 258,
  24157. bottom: 2 / 266.1566
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Macro",
  24164. height: math.unit(100, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Full Size",
  24169. height: math.unit(1000, "miles")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(6, "feet"),
  24178. weight: math.unit(300, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/beishir-kiel/front.svg",
  24182. extra: 569 / 547,
  24183. bottom: 41.9 / 609
  24184. }
  24185. },
  24186. maw: {
  24187. height: math.unit(6 * 0.202, "feet"),
  24188. name: "Maw",
  24189. image: {
  24190. source: "./media/characters/beishir-kiel/maw.svg"
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Macro",
  24197. height: math.unit(300, "feet"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(5 + 7/12, "feet"),
  24207. weight: math.unit(120, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/logan-grey/front.svg",
  24211. extra: 1836/1738,
  24212. bottom: 108/1944
  24213. }
  24214. },
  24215. back: {
  24216. height: math.unit(5 + 7/12, "feet"),
  24217. weight: math.unit(120, "lb"),
  24218. name: "Back",
  24219. image: {
  24220. source: "./media/characters/logan-grey/back.svg",
  24221. extra: 1880/1794,
  24222. bottom: 24/1904
  24223. }
  24224. },
  24225. frontSfw: {
  24226. height: math.unit(5 + 7/12, "feet"),
  24227. weight: math.unit(120, "lb"),
  24228. name: "Front (SFW)",
  24229. image: {
  24230. source: "./media/characters/logan-grey/front-sfw.svg",
  24231. extra: 1836/1738,
  24232. bottom: 108/1944
  24233. }
  24234. },
  24235. backSfw: {
  24236. height: math.unit(5 + 7/12, "feet"),
  24237. weight: math.unit(120, "lb"),
  24238. name: "Back (SFW)",
  24239. image: {
  24240. source: "./media/characters/logan-grey/back-sfw.svg",
  24241. extra: 1880/1794,
  24242. bottom: 24/1904
  24243. }
  24244. },
  24245. hands: {
  24246. height: math.unit(0.84, "feet"),
  24247. name: "Hands",
  24248. image: {
  24249. source: "./media/characters/logan-grey/hands.svg"
  24250. }
  24251. },
  24252. paws: {
  24253. height: math.unit(0.72, "feet"),
  24254. name: "Paws",
  24255. image: {
  24256. source: "./media/characters/logan-grey/paws.svg"
  24257. }
  24258. },
  24259. cock: {
  24260. height: math.unit(1.45, "feet"),
  24261. name: "Cock",
  24262. image: {
  24263. source: "./media/characters/logan-grey/cock.svg"
  24264. }
  24265. },
  24266. cockAlt: {
  24267. height: math.unit(1.437, "feet"),
  24268. name: "Cock (alt)",
  24269. image: {
  24270. source: "./media/characters/logan-grey/cock-alt.svg"
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(5 + 8 / 12, "feet")
  24278. },
  24279. {
  24280. name: "The 500 Foot Femboy",
  24281. height: math.unit(500, "feet"),
  24282. default: true
  24283. },
  24284. {
  24285. name: "Megmacro",
  24286. height: math.unit(20, "miles")
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24292. {
  24293. front: {
  24294. height: math.unit(8 + 2 / 12, "feet"),
  24295. weight: math.unit(275, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/draganta/front.svg",
  24299. extra: 1177 / 1135,
  24300. bottom: 33.46 / 1212.1
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(8 + 6 / 12, "feet"),
  24308. default: true
  24309. },
  24310. {
  24311. name: "Macro",
  24312. height: math.unit(150, "feet")
  24313. },
  24314. {
  24315. name: "Megamacro",
  24316. height: math.unit(1000, "miles")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(1.72, "m"),
  24325. weight: math.unit(80, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/voski/front.svg",
  24329. extra: 2076.22 / 2022.4,
  24330. bottom: 102.7 / 2177.3866
  24331. }
  24332. },
  24333. frontFlaccid: {
  24334. height: math.unit(1.72, "m"),
  24335. weight: math.unit(80, "lb"),
  24336. name: "Front (Flaccid)",
  24337. image: {
  24338. source: "./media/characters/voski/front-flaccid.svg",
  24339. extra: 2076.22 / 2022.4,
  24340. bottom: 102.7 / 2177.3866
  24341. }
  24342. },
  24343. frontErect: {
  24344. height: math.unit(1.72, "m"),
  24345. weight: math.unit(80, "lb"),
  24346. name: "Front (Erect)",
  24347. image: {
  24348. source: "./media/characters/voski/front-erect.svg",
  24349. extra: 2076.22 / 2022.4,
  24350. bottom: 102.7 / 2177.3866
  24351. }
  24352. },
  24353. back: {
  24354. height: math.unit(1.72, "m"),
  24355. weight: math.unit(80, "lb"),
  24356. name: "Back",
  24357. image: {
  24358. source: "./media/characters/voski/back.svg",
  24359. extra: 2104 / 2051,
  24360. bottom: 10.45 / 2113.63
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(1.72, "m")
  24368. },
  24369. {
  24370. name: "Macro",
  24371. height: math.unit(55, "m"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro+",
  24376. height: math.unit(300, "m")
  24377. },
  24378. {
  24379. name: "Macro++",
  24380. height: math.unit(700, "m")
  24381. },
  24382. {
  24383. name: "Macro+++",
  24384. height: math.unit(4500, "m")
  24385. },
  24386. {
  24387. name: "Macro++++",
  24388. height: math.unit(45, "km")
  24389. },
  24390. {
  24391. name: "Macro+++++",
  24392. height: math.unit(1220, "km")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(2.3, "m"),
  24401. weight: math.unit(304, "kg"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/icowom-lee/front.svg",
  24405. extra: 985 / 955,
  24406. bottom: 25.4 / 1012
  24407. }
  24408. },
  24409. fronttentacles: {
  24410. height: math.unit(2.3, "m"),
  24411. weight: math.unit(304, "kg"),
  24412. name: "Front-tentacles",
  24413. image: {
  24414. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24415. extra: 985 / 955,
  24416. bottom: 25.4 / 1012
  24417. }
  24418. },
  24419. back: {
  24420. height: math.unit(2.3, "m"),
  24421. weight: math.unit(304, "kg"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/icowom-lee/back.svg",
  24425. extra: 975 / 954,
  24426. bottom: 9.5 / 985
  24427. }
  24428. },
  24429. backtentacles: {
  24430. height: math.unit(2.3, "m"),
  24431. weight: math.unit(304, "kg"),
  24432. name: "Back-tentacles",
  24433. image: {
  24434. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24435. extra: 975 / 954,
  24436. bottom: 9.5 / 985
  24437. }
  24438. },
  24439. frontDressed: {
  24440. height: math.unit(2.3, "m"),
  24441. weight: math.unit(304, "kg"),
  24442. name: "Front (Dressed)",
  24443. image: {
  24444. source: "./media/characters/icowom-lee/front-dressed.svg",
  24445. extra: 3076 / 2933,
  24446. bottom: 51.4 / 3125.1889
  24447. }
  24448. },
  24449. rump: {
  24450. height: math.unit(0.776, "meters"),
  24451. name: "Rump",
  24452. image: {
  24453. source: "./media/characters/icowom-lee/rump.svg"
  24454. }
  24455. },
  24456. genitals: {
  24457. height: math.unit(0.78, "meters"),
  24458. name: "Genitals",
  24459. image: {
  24460. source: "./media/characters/icowom-lee/genitals.svg"
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(2.3, "meters"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(94, "meters"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(22, "meters"),
  24482. weight: math.unit(21000, "kg"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/shock-diamond/front.svg",
  24486. extra: 2204 / 2053,
  24487. bottom: 65 / 2239.47
  24488. }
  24489. },
  24490. frontNude: {
  24491. height: math.unit(22, "meters"),
  24492. weight: math.unit(21000, "kg"),
  24493. name: "Front (Nude)",
  24494. image: {
  24495. source: "./media/characters/shock-diamond/front-nude.svg",
  24496. extra: 2514 / 2285,
  24497. bottom: 13 / 2527.56
  24498. }
  24499. },
  24500. },
  24501. [
  24502. {
  24503. name: "Normal",
  24504. height: math.unit(3, "meters")
  24505. },
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(22, "meters"),
  24509. default: true
  24510. },
  24511. ]
  24512. ))
  24513. characterMakers.push(() => makeCharacter(
  24514. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24515. {
  24516. front: {
  24517. height: math.unit(5 + 4/12, "feet"),
  24518. weight: math.unit(125, "lb"),
  24519. name: "Front",
  24520. image: {
  24521. source: "./media/characters/rory/front.svg",
  24522. extra: 1790/1681,
  24523. bottom: 66/1856
  24524. }
  24525. },
  24526. back: {
  24527. height: math.unit(5 + 4/12, "feet"),
  24528. weight: math.unit(125, "lb"),
  24529. name: "Back",
  24530. image: {
  24531. source: "./media/characters/rory/back.svg",
  24532. extra: 1805/1690,
  24533. bottom: 56/1861
  24534. }
  24535. },
  24536. frontDressed: {
  24537. height: math.unit(5 + 4/12, "feet"),
  24538. weight: math.unit(125, "lb"),
  24539. name: "Front (Dressed)",
  24540. image: {
  24541. source: "./media/characters/rory/front-dressed.svg",
  24542. extra: 1790/1681,
  24543. bottom: 66/1856
  24544. }
  24545. },
  24546. backDressed: {
  24547. height: math.unit(5 + 4/12, "feet"),
  24548. weight: math.unit(125, "lb"),
  24549. name: "Back (Dressed)",
  24550. image: {
  24551. source: "./media/characters/rory/back-dressed.svg",
  24552. extra: 1805/1690,
  24553. bottom: 56/1861
  24554. }
  24555. },
  24556. frontNsfw: {
  24557. height: math.unit(5 + 4/12, "feet"),
  24558. weight: math.unit(125, "lb"),
  24559. name: "Front (NSFW)",
  24560. image: {
  24561. source: "./media/characters/rory/front-nsfw.svg",
  24562. extra: 1790/1681,
  24563. bottom: 66/1856
  24564. }
  24565. },
  24566. backNsfw: {
  24567. height: math.unit(5 + 4/12, "feet"),
  24568. weight: math.unit(125, "lb"),
  24569. name: "Back (NSFW)",
  24570. image: {
  24571. source: "./media/characters/rory/back-nsfw.svg",
  24572. extra: 1805/1690,
  24573. bottom: 56/1861
  24574. }
  24575. },
  24576. dick: {
  24577. height: math.unit(0.8, "feet"),
  24578. name: "Dick",
  24579. image: {
  24580. source: "./media/characters/rory/dick.svg"
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Micro",
  24587. height: math.unit(3, "inches")
  24588. },
  24589. {
  24590. name: "Normal",
  24591. height: math.unit(5 + 4/12, "feet"),
  24592. default: true
  24593. },
  24594. {
  24595. name: "Macro",
  24596. height: math.unit(90, "feet")
  24597. },
  24598. {
  24599. name: "Supercharged",
  24600. height: math.unit(270, "feet")
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(5 + 9 / 12, "feet"),
  24609. weight: math.unit(190, "lb"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/sprisk/front.svg",
  24613. extra: 1225 / 1180,
  24614. bottom: 42.7 / 1266.4
  24615. }
  24616. },
  24617. frontNsfw: {
  24618. height: math.unit(5 + 9 / 12, "feet"),
  24619. weight: math.unit(190, "lb"),
  24620. name: "Front (NSFW)",
  24621. image: {
  24622. source: "./media/characters/sprisk/front-nsfw.svg",
  24623. extra: 1225 / 1180,
  24624. bottom: 42.7 / 1266.4
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(5 + 9 / 12, "feet"),
  24629. weight: math.unit(190, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/sprisk/back.svg",
  24633. extra: 1247 / 1200,
  24634. bottom: 5.6 / 1253.04
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Tiny",
  24641. height: math.unit(2, "inches")
  24642. },
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(5 + 9 / 12, "feet"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Mini Macro",
  24650. height: math.unit(18, "feet")
  24651. },
  24652. {
  24653. name: "Macro",
  24654. height: math.unit(100, "feet")
  24655. },
  24656. {
  24657. name: "MACRO",
  24658. height: math.unit(50, "miles")
  24659. },
  24660. {
  24661. name: "M A C R O",
  24662. height: math.unit(300, "miles")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24668. {
  24669. side: {
  24670. height: math.unit(15.6, "meters"),
  24671. weight: math.unit(700000, "kg"),
  24672. name: "Side",
  24673. image: {
  24674. source: "./media/characters/bunsen/side.svg",
  24675. extra: 1644 / 358
  24676. }
  24677. },
  24678. foot: {
  24679. height: math.unit(1.611 * 1644 / 358, "meter"),
  24680. name: "Foot",
  24681. image: {
  24682. source: "./media/characters/bunsen/foot.svg"
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Small",
  24689. height: math.unit(10, "feet")
  24690. },
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(15.6, "meters"),
  24694. default: true
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(4 + 11 / 12, "feet"),
  24703. weight: math.unit(140, "lb"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/sesh/front.svg",
  24707. extra: 3420 / 3231,
  24708. bottom: 72 / 3949.5
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(4 + 11 / 12, "feet")
  24716. },
  24717. {
  24718. name: "Grown",
  24719. height: math.unit(15, "feet"),
  24720. default: true
  24721. },
  24722. {
  24723. name: "Macro",
  24724. height: math.unit(1500, "feet")
  24725. },
  24726. {
  24727. name: "Megamacro",
  24728. height: math.unit(30, "miles")
  24729. },
  24730. {
  24731. name: "Continental",
  24732. height: math.unit(3000, "miles")
  24733. },
  24734. {
  24735. name: "Gravity Mass",
  24736. height: math.unit(300000, "miles")
  24737. },
  24738. {
  24739. name: "Planet Buster",
  24740. height: math.unit(30000000, "miles")
  24741. },
  24742. {
  24743. name: "Big",
  24744. height: math.unit(3000000000, "miles")
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(9, "feet"),
  24753. weight: math.unit(350, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/pepper/front.svg",
  24757. extra: 1448 / 1312,
  24758. bottom: 9.4 / 1457.88
  24759. }
  24760. },
  24761. back: {
  24762. height: math.unit(9, "feet"),
  24763. weight: math.unit(350, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/pepper/back.svg",
  24767. extra: 1423 / 1300,
  24768. bottom: 4.6 / 1429
  24769. }
  24770. },
  24771. maw: {
  24772. height: math.unit(0.932, "feet"),
  24773. name: "Maw",
  24774. image: {
  24775. source: "./media/characters/pepper/maw.svg"
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(9, "feet"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(6, "feet"),
  24792. weight: math.unit(150, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/maelstrom/front.svg",
  24796. extra: 2100 / 1883,
  24797. bottom: 94 / 2196.7
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Less Kaiju",
  24804. height: math.unit(200, "feet")
  24805. },
  24806. {
  24807. name: "Kaiju",
  24808. height: math.unit(400, "feet"),
  24809. default: true
  24810. },
  24811. {
  24812. name: "Kaiju-er",
  24813. height: math.unit(600, "feet")
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24819. {
  24820. front: {
  24821. height: math.unit(6 + 5 / 12, "feet"),
  24822. weight: math.unit(180, "lb"),
  24823. name: "Front",
  24824. image: {
  24825. source: "./media/characters/lexir/front.svg",
  24826. extra: 180 / 172,
  24827. bottom: 12 / 192
  24828. }
  24829. },
  24830. back: {
  24831. height: math.unit(6 + 5 / 12, "feet"),
  24832. weight: math.unit(180, "lb"),
  24833. name: "Back",
  24834. image: {
  24835. source: "./media/characters/lexir/back.svg",
  24836. extra: 1273/1201,
  24837. bottom: 39/1312
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Very Smal",
  24844. height: math.unit(1, "nm")
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(6 + 5 / 12, "feet"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(1, "mile")
  24854. },
  24855. {
  24856. name: "Megamacro",
  24857. height: math.unit(50, "miles")
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(1.5, "meters"),
  24866. weight: math.unit(100, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/maksio/front.svg",
  24870. extra: 1549 / 1531,
  24871. bottom: 123.7 / 1674.5429
  24872. }
  24873. },
  24874. back: {
  24875. height: math.unit(1.5, "meters"),
  24876. weight: math.unit(100, "lb"),
  24877. name: "Back",
  24878. image: {
  24879. source: "./media/characters/maksio/back.svg",
  24880. extra: 1541 / 1509,
  24881. bottom: 97 / 1639
  24882. }
  24883. },
  24884. hand: {
  24885. height: math.unit(0.621, "feet"),
  24886. name: "Hand",
  24887. image: {
  24888. source: "./media/characters/maksio/hand.svg"
  24889. }
  24890. },
  24891. foot: {
  24892. height: math.unit(1.611, "feet"),
  24893. name: "Foot",
  24894. image: {
  24895. source: "./media/characters/maksio/foot.svg"
  24896. }
  24897. },
  24898. },
  24899. [
  24900. {
  24901. name: "Shrunken",
  24902. height: math.unit(10, "cm")
  24903. },
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(150, "cm"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(100, "feet"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/erza-bear/front.svg",
  24919. extra: 2449 / 2390,
  24920. bottom: 46 / 2494
  24921. }
  24922. },
  24923. back: {
  24924. height: math.unit(100, "feet"),
  24925. name: "Back",
  24926. image: {
  24927. source: "./media/characters/erza-bear/back.svg",
  24928. extra: 2489 / 2430,
  24929. bottom: 85.4 / 2480
  24930. }
  24931. },
  24932. tail: {
  24933. height: math.unit(42, "feet"),
  24934. name: "Tail",
  24935. image: {
  24936. source: "./media/characters/erza-bear/tail.svg"
  24937. }
  24938. },
  24939. tongue: {
  24940. height: math.unit(8, "feet"),
  24941. name: "Tongue",
  24942. image: {
  24943. source: "./media/characters/erza-bear/tongue.svg"
  24944. }
  24945. },
  24946. dick: {
  24947. height: math.unit(10.5, "feet"),
  24948. name: "Dick",
  24949. image: {
  24950. source: "./media/characters/erza-bear/dick.svg"
  24951. }
  24952. },
  24953. dickVertical: {
  24954. height: math.unit(16.9, "feet"),
  24955. name: "Dick (Vertical)",
  24956. image: {
  24957. source: "./media/characters/erza-bear/dick-vertical.svg"
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(100, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(172, "cm"),
  24974. weight: math.unit(73, "kg"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/violet-flor/front.svg",
  24978. extra: 1530 / 1442,
  24979. bottom: 61.9 / 1588.8
  24980. }
  24981. },
  24982. back: {
  24983. height: math.unit(180, "cm"),
  24984. weight: math.unit(73, "kg"),
  24985. name: "Back",
  24986. image: {
  24987. source: "./media/characters/violet-flor/back.svg",
  24988. extra: 1692 / 1630,
  24989. bottom: 20 / 1712
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(172, "cm"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(6, "feet"),
  25006. weight: math.unit(220, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/lynn-rhea/front.svg",
  25010. extra: 310 / 273
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(220, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/lynn-rhea/back.svg",
  25019. extra: 310 / 273
  25020. }
  25021. },
  25022. dicks: {
  25023. height: math.unit(0.9, "feet"),
  25024. name: "Dicks",
  25025. image: {
  25026. source: "./media/characters/lynn-rhea/dicks.svg"
  25027. }
  25028. },
  25029. slit: {
  25030. height: math.unit(0.4, "feet"),
  25031. name: "Slit",
  25032. image: {
  25033. source: "./media/characters/lynn-rhea/slit.svg"
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Micro",
  25040. height: math.unit(1, "inch")
  25041. },
  25042. {
  25043. name: "Macro",
  25044. height: math.unit(60, "feet"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Megamacro",
  25049. height: math.unit(2, "miles")
  25050. },
  25051. {
  25052. name: "Gigamacro",
  25053. height: math.unit(3, "earths")
  25054. },
  25055. {
  25056. name: "Galactic",
  25057. height: math.unit(0.8, "galaxies")
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25063. {
  25064. front: {
  25065. height: math.unit(1600, "feet"),
  25066. weight: math.unit(85758785169, "kg"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/valathos/front.svg",
  25070. extra: 1451 / 1339
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Macro",
  25077. height: math.unit(1600, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(7 + 5 / 12, "feet"),
  25087. weight: math.unit(300, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/azula/front.svg",
  25091. extra: 3208 / 2880,
  25092. bottom: 80.2 / 3277
  25093. }
  25094. },
  25095. back: {
  25096. height: math.unit(7 + 5 / 12, "feet"),
  25097. weight: math.unit(300, "lb"),
  25098. name: "Back",
  25099. image: {
  25100. source: "./media/characters/azula/back.svg",
  25101. extra: 3169 / 2822,
  25102. bottom: 150.6 / 3321
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(7 + 5 / 12, "feet"),
  25110. default: true
  25111. },
  25112. {
  25113. name: "Big",
  25114. height: math.unit(20, "feet")
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25120. {
  25121. front: {
  25122. height: math.unit(5 + 1 / 12, "feet"),
  25123. weight: math.unit(110, "lb"),
  25124. name: "Front",
  25125. image: {
  25126. source: "./media/characters/rupert/front.svg",
  25127. extra: 1549 / 1495,
  25128. bottom: 54.2 / 1604.4
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(5 + 1 / 12, "feet"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25142. {
  25143. front: {
  25144. height: math.unit(8 + 4 / 12, "feet"),
  25145. weight: math.unit(350, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/sheera-castellar/front.svg",
  25149. extra: 1957 / 1894,
  25150. bottom: 26.97 / 1975.017
  25151. }
  25152. },
  25153. side: {
  25154. height: math.unit(8 + 4 / 12, "feet"),
  25155. weight: math.unit(350, "lb"),
  25156. name: "Side",
  25157. image: {
  25158. source: "./media/characters/sheera-castellar/side.svg",
  25159. extra: 1957 / 1894
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(8 + 4 / 12, "feet"),
  25164. weight: math.unit(350, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/sheera-castellar/back.svg",
  25168. extra: 1957 / 1894
  25169. }
  25170. },
  25171. angled: {
  25172. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25173. weight: math.unit(350, "lb"),
  25174. name: "Angled",
  25175. image: {
  25176. source: "./media/characters/sheera-castellar/angled.svg",
  25177. extra: 1807 / 1707,
  25178. bottom: 68 / 1875
  25179. }
  25180. },
  25181. genitals: {
  25182. height: math.unit(2.2, "feet"),
  25183. name: "Genitals",
  25184. image: {
  25185. source: "./media/characters/sheera-castellar/genitals.svg"
  25186. }
  25187. },
  25188. taur: {
  25189. height: math.unit(10 + 6/12, "feet"),
  25190. name: "Taur",
  25191. image: {
  25192. source: "./media/characters/sheera-castellar/taur.svg",
  25193. extra: 2017/1909,
  25194. bottom: 185/2202
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(8 + 4 / 12, "feet")
  25202. },
  25203. {
  25204. name: "Macro",
  25205. height: math.unit(150, "feet"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Macro+",
  25210. height: math.unit(800, "feet")
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(6, "feet"),
  25219. weight: math.unit(150, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/jaipur/front.svg",
  25223. extra: 3860 / 3731,
  25224. bottom: 287 / 4140
  25225. }
  25226. },
  25227. back: {
  25228. height: math.unit(6, "feet"),
  25229. weight: math.unit(150, "lb"),
  25230. name: "Back",
  25231. image: {
  25232. source: "./media/characters/jaipur/back.svg",
  25233. extra: 1637/1561,
  25234. bottom: 154/1791
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(1.85, "meters"),
  25242. default: true
  25243. },
  25244. {
  25245. name: "Macro",
  25246. height: math.unit(150, "meters")
  25247. },
  25248. {
  25249. name: "Macro+",
  25250. height: math.unit(0.5, "miles")
  25251. },
  25252. {
  25253. name: "Macro++",
  25254. height: math.unit(2.5, "miles")
  25255. },
  25256. {
  25257. name: "Macro+++",
  25258. height: math.unit(12, "miles")
  25259. },
  25260. {
  25261. name: "Macro++++",
  25262. height: math.unit(120, "miles")
  25263. },
  25264. {
  25265. name: "Macro+++++",
  25266. height: math.unit(1200, "miles")
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(6, "feet"),
  25275. weight: math.unit(150, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/sheila-wolf/front.svg",
  25279. extra: 1931 / 1808,
  25280. bottom: 29.5 / 1960
  25281. }
  25282. },
  25283. dick: {
  25284. height: math.unit(1.464, "feet"),
  25285. name: "Dick",
  25286. image: {
  25287. source: "./media/characters/sheila-wolf/dick.svg"
  25288. }
  25289. },
  25290. muzzle: {
  25291. height: math.unit(0.513, "feet"),
  25292. name: "Muzzle",
  25293. image: {
  25294. source: "./media/characters/sheila-wolf/muzzle.svg"
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Macro",
  25301. height: math.unit(70, "feet"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(32, "meters"),
  25311. weight: math.unit(300000, "kg"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/almor/front.svg",
  25315. extra: 1408 / 1322,
  25316. bottom: 94.6 / 1506.5
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(32, "meters"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(7, "feet"),
  25333. weight: math.unit(200, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/silver/front.svg",
  25337. extra: 472.1 / 450.5,
  25338. bottom: 26.5 / 499.424
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(7, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Macro",
  25350. height: math.unit(800, "feet")
  25351. },
  25352. {
  25353. name: "Megamacro",
  25354. height: math.unit(250, "miles")
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(6, "feet"),
  25363. weight: math.unit(150, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/pliskin/front.svg",
  25367. extra: 1469 / 1359,
  25368. bottom: 70 / 1540
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Micro",
  25375. height: math.unit(3, "inches")
  25376. },
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(5 + 11 / 12, "feet"),
  25380. default: true
  25381. },
  25382. {
  25383. name: "Macro",
  25384. height: math.unit(120, "feet")
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(6, "feet"),
  25393. weight: math.unit(150, "lb"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/sammy/front.svg",
  25397. extra: 1193 / 1089,
  25398. bottom: 30.5 / 1226
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(1700, "feet"),
  25406. default: true
  25407. },
  25408. {
  25409. name: "Examacro",
  25410. height: math.unit(2.5e9, "lightyears")
  25411. },
  25412. ]
  25413. ))
  25414. characterMakers.push(() => makeCharacter(
  25415. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25416. {
  25417. front: {
  25418. height: math.unit(21, "meters"),
  25419. weight: math.unit(12, "tonnes"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/kuru/front.svg",
  25423. extra: 4301 / 3785,
  25424. bottom: 371.3 / 4691
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Macro",
  25431. height: math.unit(21, "meters"),
  25432. default: true
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(23, "meters"),
  25441. weight: math.unit(12.2, "tonnes"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/rakka/front.svg",
  25445. extra: 4670 / 4169,
  25446. bottom: 301 / 4968.7
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(23, "meters"),
  25454. default: true
  25455. },
  25456. ]
  25457. ))
  25458. characterMakers.push(() => makeCharacter(
  25459. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25460. {
  25461. front: {
  25462. height: math.unit(6, "feet"),
  25463. weight: math.unit(150, "lb"),
  25464. name: "Front",
  25465. image: {
  25466. source: "./media/characters/rhys-feline/front.svg",
  25467. extra: 2488 / 2308,
  25468. bottom: 35.67 / 2519.19
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Really Small",
  25475. height: math.unit(1, "nm")
  25476. },
  25477. {
  25478. name: "Micro",
  25479. height: math.unit(4, "inches")
  25480. },
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(4 + 10 / 12, "feet"),
  25484. default: true
  25485. },
  25486. {
  25487. name: "Macro",
  25488. height: math.unit(100, "feet")
  25489. },
  25490. {
  25491. name: "Megamacto",
  25492. height: math.unit(50, "miles")
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25498. {
  25499. side: {
  25500. height: math.unit(30, "feet"),
  25501. weight: math.unit(35000, "kg"),
  25502. name: "Side",
  25503. image: {
  25504. source: "./media/characters/alydar/side.svg",
  25505. extra: 234 / 222,
  25506. bottom: 6.5 / 241
  25507. }
  25508. },
  25509. front: {
  25510. height: math.unit(30, "feet"),
  25511. weight: math.unit(35000, "kg"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/alydar/front.svg",
  25515. extra: 223.37 / 210.2,
  25516. bottom: 22.3 / 246.76
  25517. }
  25518. },
  25519. top: {
  25520. height: math.unit(64.54, "feet"),
  25521. weight: math.unit(35000, "kg"),
  25522. name: "Top",
  25523. image: {
  25524. source: "./media/characters/alydar/top.svg"
  25525. }
  25526. },
  25527. anthro: {
  25528. height: math.unit(30, "feet"),
  25529. weight: math.unit(9000, "kg"),
  25530. name: "Anthro",
  25531. image: {
  25532. source: "./media/characters/alydar/anthro.svg",
  25533. extra: 432 / 421,
  25534. bottom: 7.18 / 440
  25535. }
  25536. },
  25537. maw: {
  25538. height: math.unit(11.693, "feet"),
  25539. name: "Maw",
  25540. image: {
  25541. source: "./media/characters/alydar/maw.svg"
  25542. }
  25543. },
  25544. head: {
  25545. height: math.unit(11.693, "feet"),
  25546. name: "Head",
  25547. image: {
  25548. source: "./media/characters/alydar/head.svg"
  25549. }
  25550. },
  25551. headAlt: {
  25552. height: math.unit(12.861, "feet"),
  25553. name: "Head (Alt)",
  25554. image: {
  25555. source: "./media/characters/alydar/head-alt.svg"
  25556. }
  25557. },
  25558. wing: {
  25559. height: math.unit(20.712, "feet"),
  25560. name: "Wing",
  25561. image: {
  25562. source: "./media/characters/alydar/wing.svg"
  25563. }
  25564. },
  25565. wingFeather: {
  25566. height: math.unit(9.662, "feet"),
  25567. name: "Wing Feather",
  25568. image: {
  25569. source: "./media/characters/alydar/wing-feather.svg"
  25570. }
  25571. },
  25572. countourFeather: {
  25573. height: math.unit(4.154, "feet"),
  25574. name: "Contour Feather",
  25575. image: {
  25576. source: "./media/characters/alydar/contour-feather.svg"
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Diplomatic",
  25583. height: math.unit(13, "feet"),
  25584. default: true
  25585. },
  25586. {
  25587. name: "Small",
  25588. height: math.unit(30, "feet")
  25589. },
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(95, "feet"),
  25593. default: true
  25594. },
  25595. {
  25596. name: "Large",
  25597. height: math.unit(285, "feet")
  25598. },
  25599. {
  25600. name: "Incomprehensible",
  25601. height: math.unit(450, "megameters")
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25607. {
  25608. side: {
  25609. height: math.unit(11, "feet"),
  25610. weight: math.unit(1750, "kg"),
  25611. name: "Side",
  25612. image: {
  25613. source: "./media/characters/selicia/side.svg",
  25614. extra: 440 / 396,
  25615. bottom: 24.8 / 465.979
  25616. }
  25617. },
  25618. maw: {
  25619. height: math.unit(4.665, "feet"),
  25620. name: "Maw",
  25621. image: {
  25622. source: "./media/characters/selicia/maw.svg"
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(11, "feet"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25636. {
  25637. side: {
  25638. height: math.unit(2 + 6 / 12, "feet"),
  25639. weight: math.unit(30, "lb"),
  25640. name: "Side",
  25641. image: {
  25642. source: "./media/characters/layla/side.svg",
  25643. extra: 244 / 188,
  25644. bottom: 18.2 / 262.1
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(2 + 6 / 12, "feet"),
  25649. weight: math.unit(30, "lb"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/layla/back.svg",
  25653. extra: 308 / 241.5,
  25654. bottom: 8.9 / 316.8
  25655. }
  25656. },
  25657. cumming: {
  25658. height: math.unit(2 + 6 / 12, "feet"),
  25659. weight: math.unit(30, "lb"),
  25660. name: "Cumming",
  25661. image: {
  25662. source: "./media/characters/layla/cumming.svg",
  25663. extra: 342 / 279,
  25664. bottom: 595 / 938
  25665. }
  25666. },
  25667. dickFlaccid: {
  25668. height: math.unit(2.595, "feet"),
  25669. name: "Flaccid Genitals",
  25670. image: {
  25671. source: "./media/characters/layla/dick-flaccid.svg"
  25672. }
  25673. },
  25674. dickErect: {
  25675. height: math.unit(2.359, "feet"),
  25676. name: "Erect Genitals",
  25677. image: {
  25678. source: "./media/characters/layla/dick-erect.svg"
  25679. }
  25680. },
  25681. dragon: {
  25682. height: math.unit(40, "feet"),
  25683. name: "Dragon",
  25684. image: {
  25685. source: "./media/characters/layla/dragon.svg",
  25686. extra: 610/535,
  25687. bottom: 367/977
  25688. }
  25689. },
  25690. taur: {
  25691. height: math.unit(30, "feet"),
  25692. name: "Taur",
  25693. image: {
  25694. source: "./media/characters/layla/taur.svg",
  25695. extra: 1268/1199,
  25696. bottom: 112/1380
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Micro",
  25703. height: math.unit(1, "inch")
  25704. },
  25705. {
  25706. name: "Small",
  25707. height: math.unit(1, "foot")
  25708. },
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(2 + 6 / 12, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(200, "feet")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(1000, "miles")
  25721. },
  25722. {
  25723. name: "Planetary",
  25724. height: math.unit(8000, "miles")
  25725. },
  25726. {
  25727. name: "True Layla",
  25728. height: math.unit(200000 * 7, "multiverses")
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25734. {
  25735. back: {
  25736. height: math.unit(10.5, "feet"),
  25737. weight: math.unit(800, "lb"),
  25738. name: "Back",
  25739. image: {
  25740. source: "./media/characters/knox/back.svg",
  25741. extra: 1486 / 1089,
  25742. bottom: 107 / 1601.4
  25743. }
  25744. },
  25745. side: {
  25746. height: math.unit(10.5, "feet"),
  25747. weight: math.unit(800, "lb"),
  25748. name: "Side",
  25749. image: {
  25750. source: "./media/characters/knox/side.svg",
  25751. extra: 244 / 218,
  25752. bottom: 14 / 260
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Compact",
  25759. height: math.unit(10.5, "feet"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "Dynamax",
  25764. height: math.unit(210, "feet")
  25765. },
  25766. {
  25767. name: "Full Macro",
  25768. height: math.unit(850, "feet")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(28, "feet"),
  25777. weight: math.unit(10500, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/kayda/front.svg",
  25781. extra: 1536 / 1428,
  25782. bottom: 68.7 / 1603
  25783. }
  25784. },
  25785. back: {
  25786. height: math.unit(28, "feet"),
  25787. weight: math.unit(10500, "lb"),
  25788. name: "Back",
  25789. image: {
  25790. source: "./media/characters/kayda/back.svg",
  25791. extra: 1557 / 1464,
  25792. bottom: 39.5 / 1597.49
  25793. }
  25794. },
  25795. dick: {
  25796. height: math.unit(3.858, "feet"),
  25797. name: "Dick",
  25798. image: {
  25799. source: "./media/characters/kayda/dick.svg"
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Macro",
  25806. height: math.unit(28, "feet"),
  25807. default: true
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25813. {
  25814. front: {
  25815. height: math.unit(10 + 11 / 12, "feet"),
  25816. weight: math.unit(1400, "lb"),
  25817. name: "Front",
  25818. image: {
  25819. source: "./media/characters/brian/front.svg",
  25820. extra: 737 / 692,
  25821. bottom: 55.4 / 785
  25822. }
  25823. },
  25824. },
  25825. [
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(10 + 11 / 12, "feet"),
  25829. default: true
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25835. {
  25836. front: {
  25837. height: math.unit(5 + 8 / 12, "feet"),
  25838. weight: math.unit(140, "lb"),
  25839. name: "Front",
  25840. image: {
  25841. source: "./media/characters/khemri/front.svg",
  25842. extra: 4780 / 4059,
  25843. bottom: 80.1 / 4859.25
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Micro",
  25850. height: math.unit(6, "inches")
  25851. },
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(5 + 8 / 12, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25861. {
  25862. front: {
  25863. height: math.unit(13, "feet"),
  25864. weight: math.unit(1700, "lb"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/felix-braveheart/front.svg",
  25868. extra: 1222 / 1157,
  25869. bottom: 53.2 / 1280
  25870. }
  25871. },
  25872. back: {
  25873. height: math.unit(13, "feet"),
  25874. weight: math.unit(1700, "lb"),
  25875. name: "Back",
  25876. image: {
  25877. source: "./media/characters/felix-braveheart/back.svg",
  25878. extra: 1277 / 1203,
  25879. bottom: 50.2 / 1327
  25880. }
  25881. },
  25882. feral: {
  25883. height: math.unit(6, "feet"),
  25884. weight: math.unit(400, "lb"),
  25885. name: "Feral",
  25886. image: {
  25887. source: "./media/characters/felix-braveheart/feral.svg",
  25888. extra: 682 / 625,
  25889. bottom: 6.9 / 688
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(13, "feet"),
  25897. default: true
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25903. {
  25904. side: {
  25905. height: math.unit(5 + 11 / 12, "feet"),
  25906. weight: math.unit(1400, "lb"),
  25907. name: "Side",
  25908. image: {
  25909. source: "./media/characters/shadow-blade/side.svg",
  25910. extra: 1726 / 1267,
  25911. bottom: 58.4 / 1785
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(5 + 11 / 12, "feet"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(1 + 6 / 12, "feet"),
  25928. weight: math.unit(25, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/karla-halldor/front.svg",
  25932. extra: 1459 / 1383,
  25933. bottom: 12 / 1472
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(1 + 6 / 12, "feet"),
  25941. default: true
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(6 + 2 / 12, "feet"),
  25950. weight: math.unit(160, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/ariam/front.svg",
  25954. extra: 1073/976,
  25955. bottom: 52/1125
  25956. }
  25957. },
  25958. back: {
  25959. height: math.unit(6 + 2/12, "feet"),
  25960. weight: math.unit(160, "lb"),
  25961. name: "Back",
  25962. image: {
  25963. source: "./media/characters/ariam/back.svg",
  25964. extra: 1103/1023,
  25965. bottom: 9/1112
  25966. }
  25967. },
  25968. dressed: {
  25969. height: math.unit(6 + 2/12, "feet"),
  25970. weight: math.unit(160, "lb"),
  25971. name: "Dressed",
  25972. image: {
  25973. source: "./media/characters/ariam/dressed.svg",
  25974. extra: 1099/1009,
  25975. bottom: 25/1124
  25976. }
  25977. },
  25978. squatting: {
  25979. height: math.unit(4.1, "feet"),
  25980. weight: math.unit(160, "lb"),
  25981. name: "Squatting",
  25982. image: {
  25983. source: "./media/characters/ariam/squatting.svg",
  25984. extra: 2617 / 2112,
  25985. bottom: 61.2 / 2681,
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(6 + 2 / 12, "feet"),
  25993. default: true
  25994. },
  25995. {
  25996. name: "Normal+",
  25997. height: math.unit(4, "meters")
  25998. },
  25999. {
  26000. name: "Macro",
  26001. height: math.unit(50, "meters")
  26002. },
  26003. {
  26004. name: "Macro+",
  26005. height: math.unit(100, "meters")
  26006. },
  26007. {
  26008. name: "Megamacro",
  26009. height: math.unit(20, "km")
  26010. },
  26011. {
  26012. name: "Caretaker",
  26013. height: math.unit(444, "megameters")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(1.67, "meters"),
  26022. weight: math.unit(140, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26026. extra: 438 / 410,
  26027. bottom: 0.75 / 439
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Shrunken",
  26034. height: math.unit(7.6, "cm")
  26035. },
  26036. {
  26037. name: "Human Scale",
  26038. height: math.unit(1.67, "meters")
  26039. },
  26040. {
  26041. name: "Wolxi Scale",
  26042. height: math.unit(36.7, "meters"),
  26043. default: true
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(1.73, "meters"),
  26052. weight: math.unit(240, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/izue-two-mothers/front.svg",
  26056. extra: 469 / 437,
  26057. bottom: 1.24 / 470.6
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Shrunken",
  26064. height: math.unit(7.86, "cm")
  26065. },
  26066. {
  26067. name: "Human Scale",
  26068. height: math.unit(1.73, "meters")
  26069. },
  26070. {
  26071. name: "Wolxi Scale",
  26072. height: math.unit(38, "meters"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(1.55, "meters"),
  26082. weight: math.unit(120, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/teeku-love-shack/front.svg",
  26086. extra: 387 / 362,
  26087. bottom: 1.51 / 388
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Shrunken",
  26094. height: math.unit(7, "cm")
  26095. },
  26096. {
  26097. name: "Human Scale",
  26098. height: math.unit(1.55, "meters")
  26099. },
  26100. {
  26101. name: "Wolxi Scale",
  26102. height: math.unit(34.1, "meters"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(1.83, "meters"),
  26112. weight: math.unit(135, "lb"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/dejma-the-red/front.svg",
  26116. extra: 480 / 458,
  26117. bottom: 1.8 / 482
  26118. }
  26119. },
  26120. },
  26121. [
  26122. {
  26123. name: "Shrunken",
  26124. height: math.unit(8.3, "cm")
  26125. },
  26126. {
  26127. name: "Human Scale",
  26128. height: math.unit(1.83, "meters")
  26129. },
  26130. {
  26131. name: "Wolxi Scale",
  26132. height: math.unit(40, "meters"),
  26133. default: true
  26134. },
  26135. ]
  26136. ))
  26137. characterMakers.push(() => makeCharacter(
  26138. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26139. {
  26140. front: {
  26141. height: math.unit(1.78, "meters"),
  26142. weight: math.unit(65, "kg"),
  26143. name: "Front",
  26144. image: {
  26145. source: "./media/characters/aki/front.svg",
  26146. extra: 452 / 415
  26147. }
  26148. },
  26149. frontNsfw: {
  26150. height: math.unit(1.78, "meters"),
  26151. weight: math.unit(65, "kg"),
  26152. name: "Front (NSFW)",
  26153. image: {
  26154. source: "./media/characters/aki/front-nsfw.svg",
  26155. extra: 452 / 415
  26156. }
  26157. },
  26158. back: {
  26159. height: math.unit(1.78, "meters"),
  26160. weight: math.unit(65, "kg"),
  26161. name: "Back",
  26162. image: {
  26163. source: "./media/characters/aki/back.svg",
  26164. extra: 452 / 415
  26165. }
  26166. },
  26167. rump: {
  26168. height: math.unit(2.05, "feet"),
  26169. name: "Rump",
  26170. image: {
  26171. source: "./media/characters/aki/rump.svg"
  26172. }
  26173. },
  26174. dick: {
  26175. height: math.unit(0.95, "feet"),
  26176. name: "Dick",
  26177. image: {
  26178. source: "./media/characters/aki/dick.svg"
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Micro",
  26185. height: math.unit(15, "cm")
  26186. },
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(178, "cm"),
  26190. default: true
  26191. },
  26192. {
  26193. name: "Macro",
  26194. height: math.unit(214, "m")
  26195. },
  26196. {
  26197. name: "Macro+",
  26198. height: math.unit(534, "m")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(5 + 5 / 12, "feet"),
  26207. weight: math.unit(120, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/ari/front.svg",
  26211. extra: 1550/1471,
  26212. bottom: 39/1589
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(5 + 5 / 12, "feet")
  26220. },
  26221. {
  26222. name: "Macro",
  26223. height: math.unit(100, "feet"),
  26224. default: true
  26225. },
  26226. {
  26227. name: "Megamacro",
  26228. height: math.unit(100, "miles")
  26229. },
  26230. {
  26231. name: "Gigamacro",
  26232. height: math.unit(80000, "miles")
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26238. {
  26239. side: {
  26240. height: math.unit(9, "feet"),
  26241. weight: math.unit(400, "kg"),
  26242. name: "Side",
  26243. image: {
  26244. source: "./media/characters/bolt/side.svg",
  26245. extra: 1126 / 896,
  26246. bottom: 60 / 1187.3,
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Micro",
  26253. height: math.unit(5, "inches")
  26254. },
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(9, "feet"),
  26258. default: true
  26259. },
  26260. {
  26261. name: "Macro",
  26262. height: math.unit(700, "feet")
  26263. },
  26264. {
  26265. name: "Max Size",
  26266. height: math.unit(1.52e22, "yottameters")
  26267. },
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(4.3, "meters"),
  26275. weight: math.unit(3, "tons"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/draekon-sylviar/front.svg",
  26279. extra: 2072/1512,
  26280. bottom: 74/2146
  26281. }
  26282. },
  26283. back: {
  26284. height: math.unit(4.3, "meters"),
  26285. weight: math.unit(3, "tons"),
  26286. name: "Back",
  26287. image: {
  26288. source: "./media/characters/draekon-sylviar/back.svg",
  26289. extra: 1639/1483,
  26290. bottom: 41/1680
  26291. }
  26292. },
  26293. feral: {
  26294. height: math.unit(1.15, "meters"),
  26295. weight: math.unit(3, "tons"),
  26296. name: "Feral",
  26297. image: {
  26298. source: "./media/characters/draekon-sylviar/feral.svg",
  26299. extra: 1033/395,
  26300. bottom: 130/1163
  26301. }
  26302. },
  26303. maw: {
  26304. height: math.unit(1.3, "meters"),
  26305. name: "Maw",
  26306. image: {
  26307. source: "./media/characters/draekon-sylviar/maw.svg"
  26308. }
  26309. },
  26310. mawSeparated: {
  26311. height: math.unit(1.53, "meters"),
  26312. name: "Separated Maw",
  26313. image: {
  26314. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26315. }
  26316. },
  26317. tail: {
  26318. height: math.unit(1.15, "meters"),
  26319. name: "Tail",
  26320. image: {
  26321. source: "./media/characters/draekon-sylviar/tail.svg"
  26322. }
  26323. },
  26324. tailDick: {
  26325. height: math.unit(1.15, "meters"),
  26326. name: "Tail (Dick)",
  26327. image: {
  26328. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26329. }
  26330. },
  26331. tailDickSeparated: {
  26332. height: math.unit(1.19, "meters"),
  26333. name: "Tail (Separated Dick)",
  26334. image: {
  26335. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26336. }
  26337. },
  26338. slit: {
  26339. height: math.unit(1, "meters"),
  26340. name: "Slit",
  26341. image: {
  26342. source: "./media/characters/draekon-sylviar/slit.svg"
  26343. }
  26344. },
  26345. dick: {
  26346. height: math.unit(1.15, "meters"),
  26347. name: "Dick",
  26348. image: {
  26349. source: "./media/characters/draekon-sylviar/dick.svg"
  26350. }
  26351. },
  26352. dickSeparated: {
  26353. height: math.unit(1.1, "meters"),
  26354. name: "Separated Dick",
  26355. image: {
  26356. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26357. }
  26358. },
  26359. sheath: {
  26360. height: math.unit(1.15, "meters"),
  26361. name: "Sheath",
  26362. image: {
  26363. source: "./media/characters/draekon-sylviar/sheath.svg"
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Small",
  26370. height: math.unit(4.53 / 2, "meters"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Normal",
  26375. height: math.unit(4.53, "meters"),
  26376. default: true
  26377. },
  26378. {
  26379. name: "Large",
  26380. height: math.unit(4.53 * 2, "meters"),
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(6 + 2 / 12, "feet"),
  26389. weight: math.unit(180, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/brawler/front.svg",
  26393. extra: 3301 / 3027,
  26394. bottom: 138 / 3439
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Normal",
  26401. height: math.unit(6 + 2 / 12, "feet"),
  26402. default: true
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(11, "feet"),
  26411. weight: math.unit(1000, "lb"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/alex/front.svg",
  26415. bottom: 44.5 / 620
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Micro",
  26422. height: math.unit(5, "inches")
  26423. },
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(11, "feet"),
  26427. default: true
  26428. },
  26429. {
  26430. name: "Macro",
  26431. height: math.unit(9.5e9, "feet")
  26432. },
  26433. {
  26434. name: "Max Size",
  26435. height: math.unit(1.4e283, "yottameters")
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26441. {
  26442. female: {
  26443. height: math.unit(29.9, "m"),
  26444. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26445. name: "Female",
  26446. image: {
  26447. source: "./media/characters/zenari/female.svg",
  26448. extra: 3281.6 / 3217,
  26449. bottom: 72.2 / 3353
  26450. }
  26451. },
  26452. male: {
  26453. height: math.unit(27.7, "m"),
  26454. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26455. name: "Male",
  26456. image: {
  26457. source: "./media/characters/zenari/male.svg",
  26458. extra: 3008 / 2991,
  26459. bottom: 54.6 / 3069
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Macro",
  26466. height: math.unit(29.7, "meters"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26473. {
  26474. female: {
  26475. height: math.unit(23.8, "m"),
  26476. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26477. name: "Female",
  26478. image: {
  26479. source: "./media/characters/mactarian/female.svg",
  26480. extra: 2662 / 2569,
  26481. bottom: 73 / 2736
  26482. }
  26483. },
  26484. male: {
  26485. height: math.unit(23.8, "m"),
  26486. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26487. name: "Male",
  26488. image: {
  26489. source: "./media/characters/mactarian/male.svg",
  26490. extra: 2673 / 2600,
  26491. bottom: 76 / 2750
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Macro",
  26498. height: math.unit(23.8, "meters"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26505. {
  26506. female: {
  26507. height: math.unit(19.3, "m"),
  26508. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26509. name: "Female",
  26510. image: {
  26511. source: "./media/characters/umok/female.svg",
  26512. extra: 2186 / 2078,
  26513. bottom: 87 / 2277
  26514. }
  26515. },
  26516. male: {
  26517. height: math.unit(19.5, "m"),
  26518. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26519. name: "Male",
  26520. image: {
  26521. source: "./media/characters/umok/male.svg",
  26522. extra: 2233 / 2140,
  26523. bottom: 24.4 / 2258
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(19.3, "meters"),
  26531. default: true
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26537. {
  26538. female: {
  26539. height: math.unit(26.15, "m"),
  26540. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26541. name: "Female",
  26542. image: {
  26543. source: "./media/characters/joraxian/female.svg",
  26544. extra: 2912 / 2824,
  26545. bottom: 36 / 2956
  26546. }
  26547. },
  26548. male: {
  26549. height: math.unit(25.4, "m"),
  26550. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26551. name: "Male",
  26552. image: {
  26553. source: "./media/characters/joraxian/male.svg",
  26554. extra: 2877 / 2721,
  26555. bottom: 82 / 2967
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Macro",
  26562. height: math.unit(26.15, "meters"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26569. {
  26570. female: {
  26571. height: math.unit(21.6, "m"),
  26572. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26573. name: "Female",
  26574. image: {
  26575. source: "./media/characters/sthara/female.svg",
  26576. extra: 2516 / 2347,
  26577. bottom: 21.5 / 2537
  26578. }
  26579. },
  26580. male: {
  26581. height: math.unit(24, "m"),
  26582. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26583. name: "Male",
  26584. image: {
  26585. source: "./media/characters/sthara/male.svg",
  26586. extra: 2732 / 2607,
  26587. bottom: 23 / 2732
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Macro",
  26594. height: math.unit(21.6, "meters"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26601. {
  26602. front: {
  26603. height: math.unit(6 + 4 / 12, "feet"),
  26604. weight: math.unit(175, "lb"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/luka-bryzant/front.svg",
  26608. extra: 311 / 289,
  26609. bottom: 4 / 315
  26610. }
  26611. },
  26612. back: {
  26613. height: math.unit(6 + 4 / 12, "feet"),
  26614. weight: math.unit(175, "lb"),
  26615. name: "Back",
  26616. image: {
  26617. source: "./media/characters/luka-bryzant/back.svg",
  26618. extra: 311 / 289,
  26619. bottom: 3.8 / 313.7
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Micro",
  26626. height: math.unit(10, "inches")
  26627. },
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(6 + 4 / 12, "feet"),
  26631. default: true
  26632. },
  26633. {
  26634. name: "Large",
  26635. height: math.unit(12, "feet")
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(5 + 7 / 12, "feet"),
  26644. weight: math.unit(185, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/aman-aquila/front.svg",
  26648. extra: 1013 / 976,
  26649. bottom: 45.6 / 1057
  26650. }
  26651. },
  26652. side: {
  26653. height: math.unit(5 + 7 / 12, "feet"),
  26654. weight: math.unit(185, "lb"),
  26655. name: "Side",
  26656. image: {
  26657. source: "./media/characters/aman-aquila/side.svg",
  26658. extra: 1054 / 1011,
  26659. bottom: 15 / 1070
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(5 + 7 / 12, "feet"),
  26664. weight: math.unit(185, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/aman-aquila/back.svg",
  26668. extra: 1026 / 970,
  26669. bottom: 12 / 1039
  26670. }
  26671. },
  26672. head: {
  26673. height: math.unit(1.211, "feet"),
  26674. name: "Head",
  26675. image: {
  26676. source: "./media/characters/aman-aquila/head.svg",
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Minimicro",
  26683. height: math.unit(0.057, "inches")
  26684. },
  26685. {
  26686. name: "Micro",
  26687. height: math.unit(7, "inches")
  26688. },
  26689. {
  26690. name: "Mini",
  26691. height: math.unit(3 + 7 / 12, "feet")
  26692. },
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(5 + 7 / 12, "feet"),
  26696. default: true
  26697. },
  26698. {
  26699. name: "Macro",
  26700. height: math.unit(157 + 7 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Megamacro",
  26704. height: math.unit(1557 + 7 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Gigamacro",
  26708. height: math.unit(15557 + 7 / 12, "feet")
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(3 + 2 / 12, "inches"),
  26717. weight: math.unit(0.3, "ounces"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/hiphae/front.svg",
  26721. extra: 1931 / 1683,
  26722. bottom: 24 / 1955
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(3 + 1 / 2, "inches"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(5 + 10 / 12, "feet"),
  26739. weight: math.unit(165, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/nicky/front.svg",
  26743. extra: 3144 / 2886,
  26744. bottom: 45.6 / 3192
  26745. }
  26746. },
  26747. back: {
  26748. height: math.unit(5 + 10 / 12, "feet"),
  26749. weight: math.unit(165, "lb"),
  26750. name: "Back",
  26751. image: {
  26752. source: "./media/characters/nicky/back.svg",
  26753. extra: 3055 / 2804,
  26754. bottom: 28.4 / 3087
  26755. }
  26756. },
  26757. frontclothed: {
  26758. height: math.unit(5 + 10 / 12, "feet"),
  26759. weight: math.unit(165, "lb"),
  26760. name: "Front-clothed",
  26761. image: {
  26762. source: "./media/characters/nicky/front-clothed.svg",
  26763. extra: 3184.9 / 2926.9,
  26764. bottom: 86.5 / 3239.9
  26765. }
  26766. },
  26767. foot: {
  26768. height: math.unit(1.16, "feet"),
  26769. name: "Foot",
  26770. image: {
  26771. source: "./media/characters/nicky/foot.svg"
  26772. }
  26773. },
  26774. feet: {
  26775. height: math.unit(1.34, "feet"),
  26776. name: "Feet",
  26777. image: {
  26778. source: "./media/characters/nicky/feet.svg"
  26779. }
  26780. },
  26781. maw: {
  26782. height: math.unit(0.9, "feet"),
  26783. name: "Maw",
  26784. image: {
  26785. source: "./media/characters/nicky/maw.svg"
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(5 + 10 / 12, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Macro",
  26797. height: math.unit(60, "feet")
  26798. },
  26799. {
  26800. name: "Megamacro",
  26801. height: math.unit(1, "mile")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26807. {
  26808. side: {
  26809. height: math.unit(10, "feet"),
  26810. weight: math.unit(600, "lb"),
  26811. name: "Side",
  26812. image: {
  26813. source: "./media/characters/blair/side.svg",
  26814. bottom: 16.6 / 475,
  26815. extra: 458 / 431
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Micro",
  26822. height: math.unit(8, "inches")
  26823. },
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(10, "feet"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(180, "feet")
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(5 + 4 / 12, "feet"),
  26840. weight: math.unit(125, "lb"),
  26841. name: "Front",
  26842. image: {
  26843. source: "./media/characters/fisher/front.svg",
  26844. extra: 444 / 390,
  26845. bottom: 2 / 444.8
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Micro",
  26852. height: math.unit(4, "inches")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(5 + 4 / 12, "feet"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(100, "feet")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(6.71, "feet"),
  26870. weight: math.unit(200, "lb"),
  26871. preyCapacity: math.unit(1000000, "people"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/gliss/front.svg",
  26875. extra: 2347 / 2231,
  26876. bottom: 113 / 2462
  26877. }
  26878. },
  26879. hammerspaceSize: {
  26880. height: math.unit(6.71 * 717, "feet"),
  26881. weight: math.unit(200, "lb"),
  26882. preyCapacity: math.unit(1000000, "people"),
  26883. name: "Hammerspace Size",
  26884. image: {
  26885. source: "./media/characters/gliss/front.svg",
  26886. extra: 2347 / 2231,
  26887. bottom: 113 / 2462
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(6.71, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26901. {
  26902. side: {
  26903. height: math.unit(1.44, "m"),
  26904. weight: math.unit(80, "kg"),
  26905. name: "Side",
  26906. image: {
  26907. source: "./media/characters/dune-anderson/side.svg",
  26908. bottom: 49 / 1426
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Wolf-sized",
  26915. height: math.unit(1.44, "meters")
  26916. },
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(5.05, "meters"),
  26920. default: true
  26921. },
  26922. {
  26923. name: "Big",
  26924. height: math.unit(14.4, "meters")
  26925. },
  26926. {
  26927. name: "Huge",
  26928. height: math.unit(144, "meters")
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(7, "feet"),
  26937. weight: math.unit(425, "lb"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/hind/front.svg",
  26941. extra: 2091 / 1860,
  26942. bottom: 129 / 2220
  26943. }
  26944. },
  26945. back: {
  26946. height: math.unit(7, "feet"),
  26947. weight: math.unit(425, "lb"),
  26948. name: "Back",
  26949. image: {
  26950. source: "./media/characters/hind/back.svg",
  26951. extra: 2091 / 1860,
  26952. bottom: 24.6 / 2309
  26953. }
  26954. },
  26955. tail: {
  26956. height: math.unit(2.8, "feet"),
  26957. name: "Tail",
  26958. image: {
  26959. source: "./media/characters/hind/tail.svg"
  26960. }
  26961. },
  26962. head: {
  26963. height: math.unit(2.55, "feet"),
  26964. name: "Head",
  26965. image: {
  26966. source: "./media/characters/hind/head.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "XS",
  26973. height: math.unit(0.7, "feet")
  26974. },
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(7, "feet"),
  26978. default: true
  26979. },
  26980. {
  26981. name: "XL",
  26982. height: math.unit(70, "feet")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(2.1, "meters"),
  26991. weight: math.unit(150, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/tharquench-sizestealer/front.svg",
  26995. extra: 1605/1470,
  26996. bottom: 36/1641
  26997. }
  26998. },
  26999. frontAlt: {
  27000. height: math.unit(2.1, "meters"),
  27001. weight: math.unit(150, "lb"),
  27002. name: "Front (Alt)",
  27003. image: {
  27004. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27005. extra: 2318 / 2063,
  27006. bottom: 93.4 / 2410
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Nano",
  27013. height: math.unit(1, "mm")
  27014. },
  27015. {
  27016. name: "Micro",
  27017. height: math.unit(1, "cm")
  27018. },
  27019. {
  27020. name: "Normal",
  27021. height: math.unit(2.1, "meters"),
  27022. default: true
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27028. {
  27029. front: {
  27030. height: math.unit(7 + 5 / 12, "feet"),
  27031. weight: math.unit(357, "lb"),
  27032. name: "Front",
  27033. image: {
  27034. source: "./media/characters/solex-draconov/front.svg",
  27035. extra: 1993 / 1865,
  27036. bottom: 117 / 2111
  27037. }
  27038. },
  27039. },
  27040. [
  27041. {
  27042. name: "Natural Height",
  27043. height: math.unit(7 + 5 / 12, "feet"),
  27044. default: true
  27045. },
  27046. {
  27047. name: "Macro",
  27048. height: math.unit(350, "feet")
  27049. },
  27050. {
  27051. name: "Macro+",
  27052. height: math.unit(1000, "feet")
  27053. },
  27054. {
  27055. name: "Megamacro",
  27056. height: math.unit(20, "km")
  27057. },
  27058. {
  27059. name: "Megamacro+",
  27060. height: math.unit(1000, "km")
  27061. },
  27062. {
  27063. name: "Gigamacro",
  27064. height: math.unit(2.5, "Gm")
  27065. },
  27066. {
  27067. name: "Teramacro",
  27068. height: math.unit(15, "Tm")
  27069. },
  27070. {
  27071. name: "Galactic",
  27072. height: math.unit(30, "Zm")
  27073. },
  27074. {
  27075. name: "Universal",
  27076. height: math.unit(21000, "Ym")
  27077. },
  27078. {
  27079. name: "Omniversal",
  27080. height: math.unit(9.861e50, "Ym")
  27081. },
  27082. {
  27083. name: "Existential",
  27084. height: math.unit(1e300, "meters")
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27090. {
  27091. side: {
  27092. height: math.unit(25, "feet"),
  27093. weight: math.unit(90000, "lb"),
  27094. name: "Side",
  27095. image: {
  27096. source: "./media/characters/mandarax/side.svg",
  27097. extra: 614 / 332,
  27098. bottom: 55 / 630
  27099. }
  27100. },
  27101. lounging: {
  27102. height: math.unit(15.4, "feet"),
  27103. weight: math.unit(90000, "lb"),
  27104. name: "Lounging",
  27105. image: {
  27106. source: "./media/characters/mandarax/lounging.svg",
  27107. extra: 817/609,
  27108. bottom: 685/1502
  27109. }
  27110. },
  27111. head: {
  27112. height: math.unit(11.4, "feet"),
  27113. name: "Head",
  27114. image: {
  27115. source: "./media/characters/mandarax/head.svg"
  27116. }
  27117. },
  27118. belly: {
  27119. height: math.unit(33, "feet"),
  27120. name: "Belly",
  27121. preyCapacity: math.unit(500, "people"),
  27122. image: {
  27123. source: "./media/characters/mandarax/belly.svg"
  27124. }
  27125. },
  27126. dick: {
  27127. height: math.unit(8.46, "feet"),
  27128. name: "Dick",
  27129. image: {
  27130. source: "./media/characters/mandarax/dick.svg"
  27131. }
  27132. },
  27133. top: {
  27134. height: math.unit(28, "meters"),
  27135. name: "Top",
  27136. image: {
  27137. source: "./media/characters/mandarax/top.svg"
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(25, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(5, "feet"),
  27154. weight: math.unit(90, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/pixil/front.svg",
  27158. extra: 2000 / 1618,
  27159. bottom: 12.3 / 2011
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(5, "feet"),
  27167. default: true
  27168. },
  27169. {
  27170. name: "Megamacro",
  27171. height: math.unit(10, "miles"),
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(7 + 2 / 12, "feet"),
  27180. weight: math.unit(200, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/angel/front.svg",
  27184. extra: 1830 / 1737,
  27185. bottom: 22.6 / 1854,
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(7 + 2 / 12, "feet"),
  27193. default: true
  27194. },
  27195. {
  27196. name: "Macro",
  27197. height: math.unit(1000, "feet")
  27198. },
  27199. {
  27200. name: "Megamacro",
  27201. height: math.unit(2, "miles")
  27202. },
  27203. {
  27204. name: "Gigamacro",
  27205. height: math.unit(20, "earths")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27211. {
  27212. front: {
  27213. height: math.unit(5, "feet"),
  27214. weight: math.unit(180, "lb"),
  27215. name: "Front",
  27216. image: {
  27217. source: "./media/characters/mekana/front.svg",
  27218. extra: 1671 / 1605,
  27219. bottom: 3.5 / 1691
  27220. }
  27221. },
  27222. side: {
  27223. height: math.unit(5, "feet"),
  27224. weight: math.unit(180, "lb"),
  27225. name: "Side",
  27226. image: {
  27227. source: "./media/characters/mekana/side.svg",
  27228. extra: 1671 / 1605,
  27229. bottom: 3.5 / 1691
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(5, "feet"),
  27234. weight: math.unit(180, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/mekana/back.svg",
  27238. extra: 1671 / 1605,
  27239. bottom: 3.5 / 1691
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(5, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(4 + 6 / 12, "feet"),
  27256. weight: math.unit(80, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/pixie/front.svg",
  27260. extra: 1924 / 1825,
  27261. bottom: 22.4 / 1946
  27262. }
  27263. },
  27264. },
  27265. [
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(4 + 6 / 12, "feet"),
  27269. default: true
  27270. },
  27271. {
  27272. name: "Macro",
  27273. height: math.unit(40, "feet")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(2.1, "meters"),
  27282. weight: math.unit(200, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/the-lascivious/front.svg",
  27286. extra: 1 / 0.893,
  27287. bottom: 3.5 / 573.7
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Human Scale",
  27294. height: math.unit(2.1, "meters")
  27295. },
  27296. {
  27297. name: "Wolxi Scale",
  27298. height: math.unit(46.2, "m"),
  27299. default: true
  27300. },
  27301. {
  27302. name: "Boinker of Buildings",
  27303. height: math.unit(10, "km")
  27304. },
  27305. {
  27306. name: "Shagger of Skyscrapers",
  27307. height: math.unit(40, "km")
  27308. },
  27309. {
  27310. name: "Banger of Boroughs",
  27311. height: math.unit(4000, "km")
  27312. },
  27313. {
  27314. name: "Screwer of States",
  27315. height: math.unit(100000, "km")
  27316. },
  27317. {
  27318. name: "Pounder of Planets",
  27319. height: math.unit(2000000, "km")
  27320. },
  27321. ]
  27322. ))
  27323. characterMakers.push(() => makeCharacter(
  27324. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27325. {
  27326. front: {
  27327. height: math.unit(6, "feet"),
  27328. weight: math.unit(150, "lb"),
  27329. name: "Front",
  27330. image: {
  27331. source: "./media/characters/aj/front.svg",
  27332. extra: 2039 / 1562,
  27333. bottom: 40 / 2079
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(11 + 6 / 12, "feet"),
  27341. default: true
  27342. },
  27343. {
  27344. name: "Megamacro",
  27345. height: math.unit(60, "megameters")
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27351. {
  27352. side: {
  27353. height: math.unit(31 + 8 / 12, "feet"),
  27354. weight: math.unit(75000, "kg"),
  27355. name: "Side",
  27356. image: {
  27357. source: "./media/characters/koros/side.svg",
  27358. extra: 1442 / 1297,
  27359. bottom: 122.7 / 1562
  27360. }
  27361. },
  27362. dicksKingsCrown: {
  27363. height: math.unit(6, "feet"),
  27364. name: "Dicks (King's Crown)",
  27365. image: {
  27366. source: "./media/characters/koros/dicks-kings-crown.svg"
  27367. }
  27368. },
  27369. dicksTailSet: {
  27370. height: math.unit(3, "feet"),
  27371. name: "Dicks (Tail Set)",
  27372. image: {
  27373. source: "./media/characters/koros/dicks-tail-set.svg"
  27374. }
  27375. },
  27376. dickCumming: {
  27377. height: math.unit(7.98, "feet"),
  27378. name: "Dick (Cumming)",
  27379. image: {
  27380. source: "./media/characters/koros/dick-cumming.svg"
  27381. }
  27382. },
  27383. dicksBack: {
  27384. height: math.unit(5.9, "feet"),
  27385. name: "Dicks (Back)",
  27386. image: {
  27387. source: "./media/characters/koros/dicks-back.svg"
  27388. }
  27389. },
  27390. dicksFront: {
  27391. height: math.unit(3.72, "feet"),
  27392. name: "Dicks (Front)",
  27393. image: {
  27394. source: "./media/characters/koros/dicks-front.svg"
  27395. }
  27396. },
  27397. dicksPeeking: {
  27398. height: math.unit(3.0, "feet"),
  27399. name: "Dicks (Peeking)",
  27400. image: {
  27401. source: "./media/characters/koros/dicks-peeking.svg"
  27402. }
  27403. },
  27404. eye: {
  27405. height: math.unit(1.7, "feet"),
  27406. name: "Eye",
  27407. image: {
  27408. source: "./media/characters/koros/eye.svg"
  27409. }
  27410. },
  27411. headFront: {
  27412. height: math.unit(11.69, "feet"),
  27413. name: "Head (Front)",
  27414. image: {
  27415. source: "./media/characters/koros/head-front.svg"
  27416. }
  27417. },
  27418. headSide: {
  27419. height: math.unit(14, "feet"),
  27420. name: "Head (Side)",
  27421. image: {
  27422. source: "./media/characters/koros/head-side.svg"
  27423. }
  27424. },
  27425. leg: {
  27426. height: math.unit(17, "feet"),
  27427. name: "Leg",
  27428. image: {
  27429. source: "./media/characters/koros/leg.svg"
  27430. }
  27431. },
  27432. mawSide: {
  27433. height: math.unit(12.8, "feet"),
  27434. name: "Maw (Side)",
  27435. image: {
  27436. source: "./media/characters/koros/maw-side.svg"
  27437. }
  27438. },
  27439. mawSpitting: {
  27440. height: math.unit(17, "feet"),
  27441. name: "Maw (Spitting)",
  27442. image: {
  27443. source: "./media/characters/koros/maw-spitting.svg"
  27444. }
  27445. },
  27446. slit: {
  27447. height: math.unit(2.8, "feet"),
  27448. name: "Slit",
  27449. image: {
  27450. source: "./media/characters/koros/slit.svg"
  27451. }
  27452. },
  27453. stomach: {
  27454. height: math.unit(6.8, "feet"),
  27455. preyCapacity: math.unit(20, "people"),
  27456. name: "Stomach",
  27457. image: {
  27458. source: "./media/characters/koros/stomach.svg"
  27459. }
  27460. },
  27461. wingspanBottom: {
  27462. height: math.unit(114, "feet"),
  27463. name: "Wingspan (Bottom)",
  27464. image: {
  27465. source: "./media/characters/koros/wingspan-bottom.svg"
  27466. }
  27467. },
  27468. wingspanTop: {
  27469. height: math.unit(104, "feet"),
  27470. name: "Wingspan (Top)",
  27471. image: {
  27472. source: "./media/characters/koros/wingspan-top.svg"
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(31 + 8 / 12, "feet"),
  27480. default: true
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27486. {
  27487. front: {
  27488. height: math.unit(18 + 5 / 12, "feet"),
  27489. weight: math.unit(3750, "kg"),
  27490. name: "Front",
  27491. image: {
  27492. source: "./media/characters/vexx/front.svg",
  27493. extra: 426 / 396,
  27494. bottom: 31.5 / 458
  27495. }
  27496. },
  27497. maw: {
  27498. height: math.unit(6, "feet"),
  27499. name: "Maw",
  27500. image: {
  27501. source: "./media/characters/vexx/maw.svg"
  27502. }
  27503. },
  27504. },
  27505. [
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(18 + 5 / 12, "feet"),
  27509. default: true
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27515. {
  27516. front: {
  27517. height: math.unit(17 + 6 / 12, "feet"),
  27518. weight: math.unit(150, "lb"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/baadra/front.svg",
  27522. extra: 1694/1553,
  27523. bottom: 179/1873
  27524. }
  27525. },
  27526. frontAlt: {
  27527. height: math.unit(17 + 6 / 12, "feet"),
  27528. weight: math.unit(150, "lb"),
  27529. name: "Front (Alt)",
  27530. image: {
  27531. source: "./media/characters/baadra/front-alt.svg",
  27532. extra: 3137 / 2890,
  27533. bottom: 168.4 / 3305
  27534. }
  27535. },
  27536. back: {
  27537. height: math.unit(17 + 6 / 12, "feet"),
  27538. weight: math.unit(150, "lb"),
  27539. name: "Back",
  27540. image: {
  27541. source: "./media/characters/baadra/back.svg",
  27542. extra: 3142 / 2890,
  27543. bottom: 220 / 3371
  27544. }
  27545. },
  27546. head: {
  27547. height: math.unit(5.45, "feet"),
  27548. name: "Head",
  27549. image: {
  27550. source: "./media/characters/baadra/head.svg"
  27551. }
  27552. },
  27553. headAngry: {
  27554. height: math.unit(4.95, "feet"),
  27555. name: "Head (Angry)",
  27556. image: {
  27557. source: "./media/characters/baadra/head-angry.svg"
  27558. }
  27559. },
  27560. headOpen: {
  27561. height: math.unit(6, "feet"),
  27562. name: "Head (Open)",
  27563. image: {
  27564. source: "./media/characters/baadra/head-open.svg"
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Normal",
  27571. height: math.unit(17 + 6 / 12, "feet"),
  27572. default: true
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27578. {
  27579. front: {
  27580. height: math.unit(7 + 3 / 12, "feet"),
  27581. weight: math.unit(180, "lb"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/juri/front.svg",
  27585. extra: 1401 / 1237,
  27586. bottom: 18.5 / 1418
  27587. }
  27588. },
  27589. side: {
  27590. height: math.unit(7 + 3 / 12, "feet"),
  27591. weight: math.unit(180, "lb"),
  27592. name: "Side",
  27593. image: {
  27594. source: "./media/characters/juri/side.svg",
  27595. extra: 1424 / 1242,
  27596. bottom: 18.5 / 1447
  27597. }
  27598. },
  27599. sitting: {
  27600. height: math.unit(6, "feet"),
  27601. weight: math.unit(180, "lb"),
  27602. name: "Sitting",
  27603. image: {
  27604. source: "./media/characters/juri/sitting.svg",
  27605. extra: 1270 / 1143,
  27606. bottom: 100 / 1343
  27607. }
  27608. },
  27609. back: {
  27610. height: math.unit(7 + 3 / 12, "feet"),
  27611. weight: math.unit(180, "lb"),
  27612. name: "Back",
  27613. image: {
  27614. source: "./media/characters/juri/back.svg",
  27615. extra: 1377 / 1240,
  27616. bottom: 23.7 / 1405
  27617. }
  27618. },
  27619. maw: {
  27620. height: math.unit(2.8, "feet"),
  27621. name: "Maw",
  27622. image: {
  27623. source: "./media/characters/juri/maw.svg"
  27624. }
  27625. },
  27626. stomach: {
  27627. height: math.unit(0.89, "feet"),
  27628. preyCapacity: math.unit(4, "liters"),
  27629. name: "Stomach",
  27630. image: {
  27631. source: "./media/characters/juri/stomach.svg"
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(7 + 3 / 12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27645. {
  27646. fox: {
  27647. height: math.unit(5 + 6 / 12, "feet"),
  27648. weight: math.unit(140, "lb"),
  27649. name: "Fox",
  27650. image: {
  27651. source: "./media/characters/maxene-sita/fox.svg",
  27652. extra: 146 / 138,
  27653. bottom: 2.1 / 148.19
  27654. }
  27655. },
  27656. foxLaying: {
  27657. height: math.unit(1.70, "feet"),
  27658. weight: math.unit(140, "lb"),
  27659. name: "Fox (Laying)",
  27660. image: {
  27661. source: "./media/characters/maxene-sita/fox-laying.svg",
  27662. extra: 910 / 572,
  27663. bottom: 71 / 981
  27664. }
  27665. },
  27666. kitsune: {
  27667. height: math.unit(10, "feet"),
  27668. weight: math.unit(800, "lb"),
  27669. name: "Kitsune",
  27670. image: {
  27671. source: "./media/characters/maxene-sita/kitsune.svg",
  27672. extra: 185 / 176,
  27673. bottom: 4.7 / 189.9
  27674. }
  27675. },
  27676. hellhound: {
  27677. height: math.unit(10, "feet"),
  27678. weight: math.unit(700, "lb"),
  27679. name: "Hellhound",
  27680. image: {
  27681. source: "./media/characters/maxene-sita/hellhound.svg",
  27682. extra: 1600 / 1545,
  27683. bottom: 81 / 1681
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(5 + 6 / 12, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27697. {
  27698. front: {
  27699. height: math.unit(3 + 4 / 12, "feet"),
  27700. weight: math.unit(70, "lb"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/maia/front.svg",
  27704. extra: 227 / 219.5,
  27705. bottom: 40 / 267
  27706. }
  27707. },
  27708. back: {
  27709. height: math.unit(3 + 4 / 12, "feet"),
  27710. weight: math.unit(70, "lb"),
  27711. name: "Back",
  27712. image: {
  27713. source: "./media/characters/maia/back.svg",
  27714. extra: 237 / 225
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(3 + 4 / 12, "feet"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. weight: math.unit(197, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/jabaro/front.svg",
  27735. extra: 225 / 216,
  27736. bottom: 5.06 / 230
  27737. }
  27738. },
  27739. back: {
  27740. height: math.unit(5 + 10 / 12, "feet"),
  27741. weight: math.unit(197, "lb"),
  27742. name: "Back",
  27743. image: {
  27744. source: "./media/characters/jabaro/back.svg",
  27745. extra: 225 / 219,
  27746. bottom: 1.9 / 227
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(5 + 10 / 12, "feet"),
  27754. default: true
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(5 + 8 / 12, "feet"),
  27763. weight: math.unit(139, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/risa/front.svg",
  27767. extra: 270 / 260,
  27768. bottom: 11.2 / 282
  27769. }
  27770. },
  27771. back: {
  27772. height: math.unit(5 + 8 / 12, "feet"),
  27773. weight: math.unit(139, "lb"),
  27774. name: "Back",
  27775. image: {
  27776. source: "./media/characters/risa/back.svg",
  27777. extra: 264 / 255,
  27778. bottom: 4 / 268
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(5 + 8 / 12, "feet"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(2 + 11 / 12, "feet"),
  27795. weight: math.unit(30, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/weatley/front.svg",
  27799. bottom: 10.7 / 414,
  27800. extra: 403.5 / 362
  27801. }
  27802. },
  27803. back: {
  27804. height: math.unit(2 + 11 / 12, "feet"),
  27805. weight: math.unit(30, "lb"),
  27806. name: "Back",
  27807. image: {
  27808. source: "./media/characters/weatley/back.svg",
  27809. bottom: 10.7 / 414,
  27810. extra: 403.5 / 362
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(2 + 11 / 12, "feet"),
  27818. default: true
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(5 + 2 / 12, "feet"),
  27827. weight: math.unit(50, "kg"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/mercury-crescent/front.svg",
  27831. extra: 1088 / 1033,
  27832. bottom: 18.9 / 1109
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(5 + 2 / 12, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(2, "feet"),
  27849. weight: math.unit(15, "kg"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/diamond-jones/front.svg",
  27853. extra: 727/723,
  27854. bottom: 46/773
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(2, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(3, "feet"),
  27871. weight: math.unit(30, "kg"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/sweet-bit/front.svg",
  27875. extra: 675 / 567,
  27876. bottom: 27.7 / 703
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(3, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27890. {
  27891. side: {
  27892. height: math.unit(9.178, "feet"),
  27893. weight: math.unit(500, "lb"),
  27894. name: "Side",
  27895. image: {
  27896. source: "./media/characters/umbrazen/side.svg",
  27897. extra: 1730 / 1473,
  27898. bottom: 34.6 / 1765
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(9.178, "feet"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(10, "feet"),
  27915. weight: math.unit(750, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/arlist/front.svg",
  27919. extra: 961 / 778,
  27920. bottom: 6.2 / 986
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(10, "feet"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(5 + 1 / 12, "feet"),
  27937. weight: math.unit(110, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/aradel/front.svg",
  27941. extra: 324 / 303,
  27942. bottom: 3.6 / 329.4
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(5 + 1 / 12, "feet"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27956. {
  27957. dressed: {
  27958. height: math.unit(3 + 8 / 12, "feet"),
  27959. weight: math.unit(50, "lb"),
  27960. name: "Dressed",
  27961. image: {
  27962. source: "./media/characters/serryn/dressed.svg",
  27963. extra: 1792 / 1656,
  27964. bottom: 43.5 / 1840
  27965. }
  27966. },
  27967. nude: {
  27968. height: math.unit(3 + 8 / 12, "feet"),
  27969. weight: math.unit(50, "lb"),
  27970. name: "Nude",
  27971. image: {
  27972. source: "./media/characters/serryn/nude.svg",
  27973. extra: 1792 / 1656,
  27974. bottom: 43.5 / 1840
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Normal",
  27981. height: math.unit(3 + 8 / 12, "feet"),
  27982. default: true
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27988. {
  27989. front: {
  27990. height: math.unit(7 + 10 / 12, "feet"),
  27991. weight: math.unit(255, "lb"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/xavier-thyme/front.svg",
  27995. extra: 3733 / 3642,
  27996. bottom: 131 / 3869
  27997. }
  27998. },
  27999. frontRaven: {
  28000. height: math.unit(7 + 10 / 12, "feet"),
  28001. weight: math.unit(255, "lb"),
  28002. name: "Front (Raven)",
  28003. image: {
  28004. source: "./media/characters/xavier-thyme/front-raven.svg",
  28005. extra: 4385 / 3642,
  28006. bottom: 131 / 4517
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(7 + 10 / 12, "feet"),
  28014. default: true
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(1.6, "m"),
  28023. weight: math.unit(50, "kg"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/kiki/front.svg",
  28027. extra: 4682 / 3610,
  28028. bottom: 115 / 4777
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(1.6, "meters"),
  28036. default: true
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(50, "m"),
  28045. weight: math.unit(500, "tonnes"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/ryoko/front.svg",
  28049. extra: 4632 / 3926,
  28050. bottom: 193 / 4823
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Normal",
  28057. height: math.unit(50, "meters"),
  28058. default: true
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(30, "m"),
  28067. weight: math.unit(22, "tonnes"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/elio/front.svg",
  28071. extra: 4582 / 3720,
  28072. bottom: 236 / 4828
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Normal",
  28079. height: math.unit(30, "meters"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(6 + 3 / 12, "feet"),
  28089. weight: math.unit(120, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/azura/front.svg",
  28093. extra: 1149 / 1135,
  28094. bottom: 45 / 1194
  28095. }
  28096. },
  28097. frontClothed: {
  28098. height: math.unit(6 + 3 / 12, "feet"),
  28099. weight: math.unit(120, "lb"),
  28100. name: "Front (Clothed)",
  28101. image: {
  28102. source: "./media/characters/azura/front-clothed.svg",
  28103. extra: 1149 / 1135,
  28104. bottom: 45 / 1194
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(6 + 3 / 12, "feet"),
  28112. default: true
  28113. },
  28114. {
  28115. name: "Macro",
  28116. height: math.unit(20 + 6 / 12, "feet")
  28117. },
  28118. {
  28119. name: "Megamacro",
  28120. height: math.unit(12, "miles")
  28121. },
  28122. {
  28123. name: "Gigamacro",
  28124. height: math.unit(10000, "miles")
  28125. },
  28126. {
  28127. name: "Teramacro",
  28128. height: math.unit(900000, "miles")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(12, "feet"),
  28137. weight: math.unit(1, "ton"),
  28138. capacity: math.unit(660000, "gallons"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/zeus/front.svg",
  28142. extra: 5005 / 4717,
  28143. bottom: 363 / 5388
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(12, "feet")
  28151. },
  28152. {
  28153. name: "Preferred Size",
  28154. height: math.unit(0.5, "miles"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Giga Horse",
  28159. height: math.unit(300, "miles")
  28160. },
  28161. {
  28162. name: "Riding Planets",
  28163. height: math.unit(30, "megameters")
  28164. },
  28165. {
  28166. name: "Cosmic Giant",
  28167. height: math.unit(3, "zettameters")
  28168. },
  28169. {
  28170. name: "Breeding God",
  28171. height: math.unit(9.92e22, "yottameters")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28177. {
  28178. side: {
  28179. height: math.unit(9, "feet"),
  28180. weight: math.unit(1500, "kg"),
  28181. name: "Side",
  28182. image: {
  28183. source: "./media/characters/fang/side.svg",
  28184. extra: 924 / 866,
  28185. bottom: 47.5 / 972.3
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(9, "feet"),
  28193. default: true
  28194. },
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(75 + 6 / 12, "feet")
  28198. },
  28199. {
  28200. name: "Teramacro",
  28201. height: math.unit(50000, "miles")
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(10, "feet"),
  28210. weight: math.unit(2, "tons"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/rekhit/front.svg",
  28214. extra: 2796 / 2590,
  28215. bottom: 225 / 3022
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(10, "feet"),
  28223. default: true
  28224. },
  28225. {
  28226. name: "Macro",
  28227. height: math.unit(500, "feet")
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(7 + 6.451 / 12, "feet"),
  28236. weight: math.unit(310, "lb"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/dahlia-verrick/front.svg",
  28240. extra: 1488 / 1365,
  28241. bottom: 6.2 / 1495
  28242. }
  28243. },
  28244. back: {
  28245. height: math.unit(7 + 6.451 / 12, "feet"),
  28246. weight: math.unit(310, "lb"),
  28247. name: "Back",
  28248. image: {
  28249. source: "./media/characters/dahlia-verrick/back.svg",
  28250. extra: 1472 / 1351,
  28251. bottom: 5.28 / 1477
  28252. }
  28253. },
  28254. frontBusiness: {
  28255. height: math.unit(7 + 6.451 / 12, "feet"),
  28256. weight: math.unit(200, "lb"),
  28257. name: "Front (Business)",
  28258. image: {
  28259. source: "./media/characters/dahlia-verrick/front-business.svg",
  28260. extra: 1478 / 1381,
  28261. bottom: 5.5 / 1484
  28262. }
  28263. },
  28264. frontCasual: {
  28265. height: math.unit(7 + 6.451 / 12, "feet"),
  28266. weight: math.unit(200, "lb"),
  28267. name: "Front (Casual)",
  28268. image: {
  28269. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28270. extra: 1478 / 1381,
  28271. bottom: 5.5 / 1484
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Travel-Sized",
  28278. height: math.unit(7.45, "inches")
  28279. },
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(7 + 6.451 / 12, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Hitting the Town",
  28287. height: math.unit(37 + 8 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Stomp in the Suburbs",
  28291. height: math.unit(964 + 9.728 / 12, "feet")
  28292. },
  28293. {
  28294. name: "Sit on the City",
  28295. height: math.unit(61747 + 10.592 / 12, "feet")
  28296. },
  28297. {
  28298. name: "Glomp the Globe",
  28299. height: math.unit(252919327 + 4.832 / 12, "feet")
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(6 + 4 / 12, "feet"),
  28308. weight: math.unit(320, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/balina-mahigan/front.svg",
  28312. extra: 447 / 428,
  28313. bottom: 18 / 466
  28314. }
  28315. },
  28316. back: {
  28317. height: math.unit(6 + 4 / 12, "feet"),
  28318. weight: math.unit(320, "lb"),
  28319. name: "Back",
  28320. image: {
  28321. source: "./media/characters/balina-mahigan/back.svg",
  28322. extra: 445 / 428,
  28323. bottom: 4.07 / 448
  28324. }
  28325. },
  28326. arm: {
  28327. height: math.unit(1.88, "feet"),
  28328. name: "Arm",
  28329. image: {
  28330. source: "./media/characters/balina-mahigan/arm.svg"
  28331. }
  28332. },
  28333. backPort: {
  28334. height: math.unit(0.685, "feet"),
  28335. name: "Back Port",
  28336. image: {
  28337. source: "./media/characters/balina-mahigan/back-port.svg"
  28338. }
  28339. },
  28340. hoofpaw: {
  28341. height: math.unit(1.41, "feet"),
  28342. name: "Hoofpaw",
  28343. image: {
  28344. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28345. }
  28346. },
  28347. leftHandBack: {
  28348. height: math.unit(0.938, "feet"),
  28349. name: "Left Hand (Back)",
  28350. image: {
  28351. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28352. }
  28353. },
  28354. leftHandFront: {
  28355. height: math.unit(0.938, "feet"),
  28356. name: "Left Hand (Front)",
  28357. image: {
  28358. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28359. }
  28360. },
  28361. rightHandBack: {
  28362. height: math.unit(0.95, "feet"),
  28363. name: "Right Hand (Back)",
  28364. image: {
  28365. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28366. }
  28367. },
  28368. rightHandFront: {
  28369. height: math.unit(0.95, "feet"),
  28370. name: "Right Hand (Front)",
  28371. image: {
  28372. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(6 + 4 / 12, "feet"),
  28380. default: true
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(6, "feet"),
  28389. weight: math.unit(320, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/balina-mejeri/front.svg",
  28393. extra: 517 / 488,
  28394. bottom: 44.2 / 561
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(6 + 4 / 12, "feet")
  28402. },
  28403. {
  28404. name: "Business",
  28405. height: math.unit(155, "feet"),
  28406. default: true
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28412. {
  28413. kneeling: {
  28414. height: math.unit(6 + 4 / 12, "feet"),
  28415. weight: math.unit(300 * 20, "lb"),
  28416. name: "Kneeling",
  28417. image: {
  28418. source: "./media/characters/balbarian/kneeling.svg",
  28419. extra: 922 / 862,
  28420. bottom: 42.4 / 965
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Normal",
  28427. height: math.unit(6 + 4 / 12, "feet")
  28428. },
  28429. {
  28430. name: "Treasured",
  28431. height: math.unit(18 + 9 / 12, "feet"),
  28432. default: true
  28433. },
  28434. {
  28435. name: "Macro",
  28436. height: math.unit(900, "feet")
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(6 + 4 / 12, "feet"),
  28445. weight: math.unit(325, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/balina-amarini/front.svg",
  28449. extra: 415 / 403,
  28450. bottom: 19 / 433.4
  28451. }
  28452. },
  28453. back: {
  28454. height: math.unit(6 + 4 / 12, "feet"),
  28455. weight: math.unit(325, "lb"),
  28456. name: "Back",
  28457. image: {
  28458. source: "./media/characters/balina-amarini/back.svg",
  28459. extra: 415 / 403,
  28460. bottom: 13.5 / 432
  28461. }
  28462. },
  28463. overdrive: {
  28464. height: math.unit(6 + 4 / 12, "feet"),
  28465. weight: math.unit(400, "lb"),
  28466. name: "Overdrive",
  28467. image: {
  28468. source: "./media/characters/balina-amarini/overdrive.svg",
  28469. extra: 269 / 259,
  28470. bottom: 12 / 282
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Boom",
  28477. height: math.unit(9 + 10 / 12, "feet"),
  28478. default: true
  28479. },
  28480. {
  28481. name: "Macro",
  28482. height: math.unit(280, "feet")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28488. {
  28489. goddess: {
  28490. height: math.unit(600, "feet"),
  28491. weight: math.unit(2000000, "tons"),
  28492. name: "Goddess",
  28493. image: {
  28494. source: "./media/characters/lady-kubwa/goddess.svg",
  28495. extra: 1240.5 / 1223,
  28496. bottom: 22 / 1263
  28497. }
  28498. },
  28499. goddesser: {
  28500. height: math.unit(900, "feet"),
  28501. weight: math.unit(20000000, "lb"),
  28502. name: "Goddess-er",
  28503. image: {
  28504. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28505. extra: 899 / 888,
  28506. bottom: 12.6 / 912
  28507. }
  28508. },
  28509. },
  28510. [
  28511. {
  28512. name: "Macro",
  28513. height: math.unit(600, "feet"),
  28514. default: true
  28515. },
  28516. {
  28517. name: "Megamacro",
  28518. height: math.unit(250, "miles")
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(7 + 7 / 12, "feet"),
  28527. weight: math.unit(250, "lb"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/tala-grovehorn/front.svg",
  28531. extra: 2636 / 2525,
  28532. bottom: 147 / 2781
  28533. }
  28534. },
  28535. back: {
  28536. height: math.unit(7 + 7 / 12, "feet"),
  28537. weight: math.unit(250, "lb"),
  28538. name: "Back",
  28539. image: {
  28540. source: "./media/characters/tala-grovehorn/back.svg",
  28541. extra: 2635 / 2539,
  28542. bottom: 100 / 2732.8
  28543. }
  28544. },
  28545. mouth: {
  28546. height: math.unit(1.15, "feet"),
  28547. name: "Mouth",
  28548. image: {
  28549. source: "./media/characters/tala-grovehorn/mouth.svg"
  28550. }
  28551. },
  28552. dick: {
  28553. height: math.unit(2.36, "feet"),
  28554. name: "Dick",
  28555. image: {
  28556. source: "./media/characters/tala-grovehorn/dick.svg"
  28557. }
  28558. },
  28559. slit: {
  28560. height: math.unit(0.61, "feet"),
  28561. name: "Slit",
  28562. image: {
  28563. source: "./media/characters/tala-grovehorn/slit.svg"
  28564. }
  28565. },
  28566. },
  28567. [
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(7 + 7 / 12, "feet"),
  28575. weight: math.unit(225, "lb"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/epona/front.svg",
  28579. extra: 2445 / 2290,
  28580. bottom: 251 / 2696
  28581. }
  28582. },
  28583. back: {
  28584. height: math.unit(7 + 7 / 12, "feet"),
  28585. weight: math.unit(225, "lb"),
  28586. name: "Back",
  28587. image: {
  28588. source: "./media/characters/epona/back.svg",
  28589. extra: 2546 / 2408,
  28590. bottom: 44 / 2589
  28591. }
  28592. },
  28593. genitals: {
  28594. height: math.unit(1.5, "feet"),
  28595. name: "Genitals",
  28596. image: {
  28597. source: "./media/characters/epona/genitals.svg"
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(7 + 7 / 12, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(7, "feet"),
  28614. weight: math.unit(518, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/avia-bloodbourn/front.svg",
  28618. extra: 1466 / 1350,
  28619. bottom: 65 / 1527
  28620. }
  28621. },
  28622. },
  28623. [
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(9.35, "feet"),
  28631. weight: math.unit(600, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/amera/front.svg",
  28635. extra: 891 / 818,
  28636. bottom: 30 / 922.7
  28637. }
  28638. },
  28639. back: {
  28640. height: math.unit(9.35, "feet"),
  28641. weight: math.unit(600, "lb"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/amera/back.svg",
  28645. extra: 876 / 824,
  28646. bottom: 6.8 / 884
  28647. }
  28648. },
  28649. dick: {
  28650. height: math.unit(2.14, "feet"),
  28651. name: "Dick",
  28652. image: {
  28653. source: "./media/characters/amera/dick.svg"
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(9.35, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28667. {
  28668. kneeling: {
  28669. height: math.unit(3 + 4 / 12, "feet"),
  28670. weight: math.unit(90, "lb"),
  28671. name: "Kneeling",
  28672. image: {
  28673. source: "./media/characters/rosewen/kneeling.svg",
  28674. extra: 1835 / 1571,
  28675. bottom: 27.7 / 1862
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(3 + 4 / 12, "feet"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(5 + 10 / 12, "feet"),
  28692. weight: math.unit(200, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/sabah/front.svg",
  28696. extra: 849 / 763,
  28697. bottom: 33.9 / 881
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(5 + 10 / 12, "feet"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28711. {
  28712. front: {
  28713. height: math.unit(3 + 5 / 12, "feet"),
  28714. weight: math.unit(40, "kg"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/purple-flame/front.svg",
  28718. extra: 1577 / 1412,
  28719. bottom: 97 / 1694
  28720. }
  28721. },
  28722. frontDressed: {
  28723. height: math.unit(3 + 5 / 12, "feet"),
  28724. weight: math.unit(40, "kg"),
  28725. name: "Front (Dressed)",
  28726. image: {
  28727. source: "./media/characters/purple-flame/front-dressed.svg",
  28728. extra: 1577 / 1412,
  28729. bottom: 97 / 1694
  28730. }
  28731. },
  28732. headphones: {
  28733. height: math.unit(0.85, "feet"),
  28734. name: "Headphones",
  28735. image: {
  28736. source: "./media/characters/purple-flame/headphones.svg"
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Really Small",
  28743. height: math.unit(5, "cm")
  28744. },
  28745. {
  28746. name: "Micro",
  28747. height: math.unit(1 + 5 / 12, "feet")
  28748. },
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(3 + 5 / 12, "feet"),
  28752. default: true
  28753. },
  28754. {
  28755. name: "Minimacro",
  28756. height: math.unit(125, "feet")
  28757. },
  28758. {
  28759. name: "Macro",
  28760. height: math.unit(0.5, "miles")
  28761. },
  28762. {
  28763. name: "Megamacro",
  28764. height: math.unit(50, "miles")
  28765. },
  28766. {
  28767. name: "Gigantic",
  28768. height: math.unit(750, "miles")
  28769. },
  28770. {
  28771. name: "Planetary",
  28772. height: math.unit(15000, "miles")
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(14, "feet"),
  28781. weight: math.unit(959, "lb"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/arsenal/front.svg",
  28785. extra: 2357 / 2157,
  28786. bottom: 93 / 2458
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(14, "feet"),
  28794. default: true
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(6, "feet"),
  28803. weight: math.unit(150, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/adira/front.svg",
  28807. extra: 1078 / 1029,
  28808. bottom: 87 / 1166
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Micro",
  28815. height: math.unit(4, "inches"),
  28816. default: true
  28817. },
  28818. {
  28819. name: "Macro",
  28820. height: math.unit(50, "feet")
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(16, "feet"),
  28829. weight: math.unit(1000, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/grim/front.svg",
  28833. extra: 622 / 614,
  28834. bottom: 18.1 / 642
  28835. }
  28836. },
  28837. back: {
  28838. height: math.unit(16, "feet"),
  28839. weight: math.unit(1000, "lb"),
  28840. name: "Back",
  28841. image: {
  28842. source: "./media/characters/grim/back.svg",
  28843. extra: 610.6 / 602,
  28844. bottom: 40.8 / 652
  28845. }
  28846. },
  28847. hunched: {
  28848. height: math.unit(9.75, "feet"),
  28849. weight: math.unit(1000, "lb"),
  28850. name: "Hunched",
  28851. image: {
  28852. source: "./media/characters/grim/hunched.svg",
  28853. extra: 304 / 297,
  28854. bottom: 35.4 / 394
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Normal",
  28861. height: math.unit(16, "feet"),
  28862. default: true
  28863. },
  28864. ]
  28865. ))
  28866. characterMakers.push(() => makeCharacter(
  28867. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28868. {
  28869. front: {
  28870. height: math.unit(2.3, "meters"),
  28871. weight: math.unit(300, "lb"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/sinja/front-sfw.svg",
  28875. extra: 1393 / 1294,
  28876. bottom: 70 / 1463
  28877. }
  28878. },
  28879. frontNsfw: {
  28880. height: math.unit(2.3, "meters"),
  28881. weight: math.unit(300, "lb"),
  28882. name: "Front (NSFW)",
  28883. image: {
  28884. source: "./media/characters/sinja/front-nsfw.svg",
  28885. extra: 1393 / 1294,
  28886. bottom: 70 / 1463
  28887. }
  28888. },
  28889. back: {
  28890. height: math.unit(2.3, "meters"),
  28891. weight: math.unit(300, "lb"),
  28892. name: "Back",
  28893. image: {
  28894. source: "./media/characters/sinja/back.svg",
  28895. extra: 1393 / 1294,
  28896. bottom: 70 / 1463
  28897. }
  28898. },
  28899. head: {
  28900. height: math.unit(1.771, "feet"),
  28901. name: "Head",
  28902. image: {
  28903. source: "./media/characters/sinja/head.svg"
  28904. }
  28905. },
  28906. slit: {
  28907. height: math.unit(0.8, "feet"),
  28908. name: "Slit",
  28909. image: {
  28910. source: "./media/characters/sinja/slit.svg"
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(2.3, "meters")
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(91, "meters"),
  28922. default: true
  28923. },
  28924. {
  28925. name: "Megamacro",
  28926. height: math.unit(91440, "meters")
  28927. },
  28928. {
  28929. name: "Gigamacro",
  28930. height: math.unit(60960000, "meters")
  28931. },
  28932. {
  28933. name: "Teramacro",
  28934. height: math.unit(9144000000, "meters")
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(1.7, "meters"),
  28943. weight: math.unit(130, "lb"),
  28944. name: "Front",
  28945. image: {
  28946. source: "./media/characters/kyu/front.svg",
  28947. extra: 415 / 395,
  28948. bottom: 5 / 420
  28949. }
  28950. },
  28951. head: {
  28952. height: math.unit(1.75, "feet"),
  28953. name: "Head",
  28954. image: {
  28955. source: "./media/characters/kyu/head.svg"
  28956. }
  28957. },
  28958. foot: {
  28959. height: math.unit(0.81, "feet"),
  28960. name: "Foot",
  28961. image: {
  28962. source: "./media/characters/kyu/foot.svg"
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(1.7, "meters")
  28970. },
  28971. {
  28972. name: "Macro",
  28973. height: math.unit(131, "feet"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Megamacro",
  28978. height: math.unit(91440, "meters")
  28979. },
  28980. {
  28981. name: "Gigamacro",
  28982. height: math.unit(60960000, "meters")
  28983. },
  28984. {
  28985. name: "Teramacro",
  28986. height: math.unit(9144000000, "meters")
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(7 + 1 / 12, "feet"),
  28995. weight: math.unit(250, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/joey/front.svg",
  28999. extra: 1791 / 1537,
  29000. bottom: 28 / 1816
  29001. }
  29002. },
  29003. },
  29004. [
  29005. {
  29006. name: "Micro",
  29007. height: math.unit(3, "inches")
  29008. },
  29009. {
  29010. name: "Normal",
  29011. height: math.unit(7 + 1 / 12, "feet"),
  29012. default: true
  29013. },
  29014. ]
  29015. ))
  29016. characterMakers.push(() => makeCharacter(
  29017. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29018. {
  29019. front: {
  29020. height: math.unit(165, "cm"),
  29021. weight: math.unit(140, "lb"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/sam-evans/front.svg",
  29025. extra: 3417 / 3230,
  29026. bottom: 41.3 / 3417
  29027. }
  29028. },
  29029. frontSixTails: {
  29030. height: math.unit(165, "cm"),
  29031. weight: math.unit(140, "lb"),
  29032. name: "Front-six-tails",
  29033. image: {
  29034. source: "./media/characters/sam-evans/front-six-tails.svg",
  29035. extra: 3417 / 3230,
  29036. bottom: 41.3 / 3417
  29037. }
  29038. },
  29039. back: {
  29040. height: math.unit(165, "cm"),
  29041. weight: math.unit(140, "lb"),
  29042. name: "Back",
  29043. image: {
  29044. source: "./media/characters/sam-evans/back.svg",
  29045. extra: 3227 / 3032,
  29046. bottom: 6.8 / 3234
  29047. }
  29048. },
  29049. face: {
  29050. height: math.unit(0.68, "feet"),
  29051. name: "Face",
  29052. image: {
  29053. source: "./media/characters/sam-evans/face.svg"
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(165, "cm"),
  29061. default: true
  29062. },
  29063. {
  29064. name: "Macro",
  29065. height: math.unit(100, "meters")
  29066. },
  29067. {
  29068. name: "Macro+",
  29069. height: math.unit(800, "meters")
  29070. },
  29071. {
  29072. name: "Macro++",
  29073. height: math.unit(3, "km")
  29074. },
  29075. {
  29076. name: "Macro+++",
  29077. height: math.unit(30, "km")
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(10, "feet"),
  29086. weight: math.unit(750, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/juliet-a/front.svg",
  29090. extra: 1766 / 1720,
  29091. bottom: 43 / 1809
  29092. }
  29093. },
  29094. back: {
  29095. height: math.unit(10, "feet"),
  29096. weight: math.unit(750, "lb"),
  29097. name: "Back",
  29098. image: {
  29099. source: "./media/characters/juliet-a/back.svg",
  29100. extra: 1781 / 1734,
  29101. bottom: 35 / 1810,
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Normal",
  29108. height: math.unit(10, "feet"),
  29109. default: true
  29110. },
  29111. {
  29112. name: "Dragon Form",
  29113. height: math.unit(250, "feet")
  29114. },
  29115. {
  29116. name: "Macro",
  29117. height: math.unit(1000, "feet")
  29118. },
  29119. {
  29120. name: "Megamacro",
  29121. height: math.unit(10000, "feet")
  29122. }
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29127. {
  29128. regular: {
  29129. height: math.unit(7 + 3 / 12, "feet"),
  29130. weight: math.unit(260, "lb"),
  29131. name: "Regular",
  29132. image: {
  29133. source: "./media/characters/wild/regular.svg",
  29134. extra: 97.45 / 92,
  29135. bottom: 6.8 / 104.3
  29136. }
  29137. },
  29138. biggums: {
  29139. height: math.unit(8 + 6 / 12, "feet"),
  29140. weight: math.unit(425, "lb"),
  29141. name: "Biggums",
  29142. image: {
  29143. source: "./media/characters/wild/biggums.svg",
  29144. extra: 97.45 / 92,
  29145. bottom: 7.5 / 132.34
  29146. }
  29147. },
  29148. mawRegular: {
  29149. height: math.unit(1.24, "feet"),
  29150. name: "Maw (Regular)",
  29151. image: {
  29152. source: "./media/characters/wild/maw.svg"
  29153. }
  29154. },
  29155. mawBiggums: {
  29156. height: math.unit(1.47, "feet"),
  29157. name: "Maw (Biggums)",
  29158. image: {
  29159. source: "./media/characters/wild/maw.svg"
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(7 + 3 / 12, "feet"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29173. {
  29174. front: {
  29175. height: math.unit(2.5, "meters"),
  29176. weight: math.unit(200, "kg"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/vidar/front.svg",
  29180. extra: 2994 / 2795,
  29181. bottom: 56 / 3061
  29182. }
  29183. },
  29184. back: {
  29185. height: math.unit(2.5, "meters"),
  29186. weight: math.unit(200, "kg"),
  29187. name: "Back",
  29188. image: {
  29189. source: "./media/characters/vidar/back.svg",
  29190. extra: 3131 / 2928,
  29191. bottom: 13.5 / 3141.5
  29192. }
  29193. },
  29194. feral: {
  29195. height: math.unit(2.5, "meters"),
  29196. weight: math.unit(2000, "kg"),
  29197. name: "Feral",
  29198. image: {
  29199. source: "./media/characters/vidar/feral.svg",
  29200. extra: 2790 / 1765,
  29201. bottom: 6 / 2796
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(2.5, "meters"),
  29209. default: true
  29210. },
  29211. {
  29212. name: "Macro",
  29213. height: math.unit(100, "meters")
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(5 + 9 / 12, "feet"),
  29222. weight: math.unit(120, "lb"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/ash/front.svg",
  29226. extra: 2189 / 1961,
  29227. bottom: 5.2 / 2194
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(5 + 9 / 12, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(9, "feet"),
  29244. weight: math.unit(10000, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/gygabite/front.svg",
  29248. bottom: 31.7 / 537.8,
  29249. extra: 505 / 370
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(9, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(12, "feet"),
  29266. weight: math.unit(4000, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/p0tat0/front.svg",
  29270. extra: 1065 / 921,
  29271. bottom: 55.7 / 1121.25
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(12, "feet"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29285. {
  29286. side: {
  29287. height: math.unit(6.5, "feet"),
  29288. weight: math.unit(800, "lb"),
  29289. name: "Side",
  29290. image: {
  29291. source: "./media/characters/dusk/side.svg",
  29292. extra: 615 / 373,
  29293. bottom: 53 / 664
  29294. }
  29295. },
  29296. sitting: {
  29297. height: math.unit(7, "feet"),
  29298. weight: math.unit(800, "lb"),
  29299. name: "Sitting",
  29300. image: {
  29301. source: "./media/characters/dusk/sitting.svg",
  29302. extra: 753 / 425,
  29303. bottom: 33 / 774
  29304. }
  29305. },
  29306. head: {
  29307. height: math.unit(6.1, "feet"),
  29308. name: "Head",
  29309. image: {
  29310. source: "./media/characters/dusk/head.svg"
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(7, "feet"),
  29318. default: true
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(15, "feet"),
  29327. weight: math.unit(7000, "lb"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/jay-direwolf/front.svg",
  29331. extra: 1810 / 1732,
  29332. bottom: 66 / 1892
  29333. }
  29334. },
  29335. },
  29336. [
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(15, "feet"),
  29340. default: true
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(4 + 9 / 12, "feet"),
  29349. weight: math.unit(130, "lb"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/anchovie/front.svg",
  29353. extra: 382 / 350,
  29354. bottom: 25 / 409
  29355. }
  29356. },
  29357. back: {
  29358. height: math.unit(4 + 9 / 12, "feet"),
  29359. weight: math.unit(130, "lb"),
  29360. name: "Back",
  29361. image: {
  29362. source: "./media/characters/anchovie/back.svg",
  29363. extra: 385 / 352,
  29364. bottom: 16.6 / 402
  29365. }
  29366. },
  29367. frontDressed: {
  29368. height: math.unit(4 + 9 / 12, "feet"),
  29369. weight: math.unit(130, "lb"),
  29370. name: "Front (Dressed)",
  29371. image: {
  29372. source: "./media/characters/anchovie/front-dressed.svg",
  29373. extra: 382 / 350,
  29374. bottom: 25 / 409
  29375. }
  29376. },
  29377. backDressed: {
  29378. height: math.unit(4 + 9 / 12, "feet"),
  29379. weight: math.unit(130, "lb"),
  29380. name: "Back (Dressed)",
  29381. image: {
  29382. source: "./media/characters/anchovie/back-dressed.svg",
  29383. extra: 385 / 352,
  29384. bottom: 16.6 / 402
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Micro",
  29391. height: math.unit(6.4, "inches")
  29392. },
  29393. {
  29394. name: "Normal",
  29395. height: math.unit(4 + 9 / 12, "feet"),
  29396. default: true
  29397. },
  29398. ]
  29399. ))
  29400. characterMakers.push(() => makeCharacter(
  29401. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29402. {
  29403. front: {
  29404. height: math.unit(2, "meters"),
  29405. weight: math.unit(180, "lb"),
  29406. name: "Front",
  29407. image: {
  29408. source: "./media/characters/acidrenamon/front.svg",
  29409. extra: 987 / 890,
  29410. bottom: 22.8 / 1009
  29411. }
  29412. },
  29413. back: {
  29414. height: math.unit(2, "meters"),
  29415. weight: math.unit(180, "lb"),
  29416. name: "Back",
  29417. image: {
  29418. source: "./media/characters/acidrenamon/back.svg",
  29419. extra: 983 / 891,
  29420. bottom: 8.4 / 992
  29421. }
  29422. },
  29423. head: {
  29424. height: math.unit(1.92, "feet"),
  29425. name: "Head",
  29426. image: {
  29427. source: "./media/characters/acidrenamon/head.svg"
  29428. }
  29429. },
  29430. rump: {
  29431. height: math.unit(1.72, "feet"),
  29432. name: "Rump",
  29433. image: {
  29434. source: "./media/characters/acidrenamon/rump.svg"
  29435. }
  29436. },
  29437. tail: {
  29438. height: math.unit(4.2, "feet"),
  29439. name: "Tail",
  29440. image: {
  29441. source: "./media/characters/acidrenamon/tail.svg"
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Normal",
  29448. height: math.unit(2, "meters"),
  29449. default: true
  29450. },
  29451. {
  29452. name: "Minimacro",
  29453. height: math.unit(7, "meters")
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(200, "meters")
  29458. },
  29459. {
  29460. name: "Gigamacro",
  29461. height: math.unit(0.2, "earths")
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(152, "feet"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/kenzie-lee/front.svg",
  29473. extra: 1869/1774,
  29474. bottom: 128/1997
  29475. }
  29476. },
  29477. side: {
  29478. height: math.unit(86, "feet"),
  29479. name: "Side",
  29480. image: {
  29481. source: "./media/characters/kenzie-lee/side.svg",
  29482. extra: 930/815,
  29483. bottom: 177/1107
  29484. }
  29485. },
  29486. paw: {
  29487. height: math.unit(15, "feet"),
  29488. name: "Paw",
  29489. image: {
  29490. source: "./media/characters/kenzie-lee/paw.svg"
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Kenzie Flea",
  29497. height: math.unit(2, "mm"),
  29498. default: true
  29499. },
  29500. {
  29501. name: "Micro",
  29502. height: math.unit(2, "inches")
  29503. },
  29504. {
  29505. name: "Normal",
  29506. height: math.unit(152, "feet")
  29507. },
  29508. {
  29509. name: "Megamacro",
  29510. height: math.unit(7, "miles")
  29511. },
  29512. {
  29513. name: "Gigamacro",
  29514. height: math.unit(8000, "miles")
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(6, "feet"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/withers/front.svg",
  29526. extra: 1935/1760,
  29527. bottom: 72/2007
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(6, "feet"),
  29532. name: "Back",
  29533. image: {
  29534. source: "./media/characters/withers/back.svg",
  29535. extra: 1944/1792,
  29536. bottom: 12/1956
  29537. }
  29538. },
  29539. dressed: {
  29540. height: math.unit(6, "feet"),
  29541. name: "Dressed",
  29542. image: {
  29543. source: "./media/characters/withers/dressed.svg",
  29544. extra: 1937/1765,
  29545. bottom: 73/2010
  29546. }
  29547. },
  29548. phase1: {
  29549. height: math.unit(1.1, "feet"),
  29550. name: "Phase 1",
  29551. image: {
  29552. source: "./media/characters/withers/phase-1.svg",
  29553. extra: 1885/1232,
  29554. bottom: 0/1885
  29555. }
  29556. },
  29557. phase2: {
  29558. height: math.unit(1.05, "feet"),
  29559. name: "Phase 2",
  29560. image: {
  29561. source: "./media/characters/withers/phase-2.svg",
  29562. extra: 1792/1090,
  29563. bottom: 0/1792
  29564. }
  29565. },
  29566. partyWipe: {
  29567. height: math.unit(1.1, "feet"),
  29568. name: "Party Wipe",
  29569. image: {
  29570. source: "./media/characters/withers/party-wipe.svg",
  29571. extra: 1864/1207,
  29572. bottom: 0/1864
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(167, "feet"),
  29580. default: true
  29581. },
  29582. {
  29583. name: "Megamacro",
  29584. height: math.unit(15, "miles")
  29585. }
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29590. {
  29591. front: {
  29592. height: math.unit(6 + 7 / 12, "feet"),
  29593. weight: math.unit(250, "lb"),
  29594. name: "Front",
  29595. image: {
  29596. source: "./media/characters/nemoskii/front.svg",
  29597. extra: 2270 / 1734,
  29598. bottom: 86 / 2354
  29599. }
  29600. },
  29601. back: {
  29602. height: math.unit(6 + 7 / 12, "feet"),
  29603. weight: math.unit(250, "lb"),
  29604. name: "Back",
  29605. image: {
  29606. source: "./media/characters/nemoskii/back.svg",
  29607. extra: 1845 / 1788,
  29608. bottom: 10.5 / 1852
  29609. }
  29610. },
  29611. head: {
  29612. height: math.unit(1.31, "feet"),
  29613. name: "Head",
  29614. image: {
  29615. source: "./media/characters/nemoskii/head.svg"
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Micro",
  29622. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29623. },
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(6 + 7 / 12, "feet"),
  29627. default: true
  29628. },
  29629. {
  29630. name: "Macro",
  29631. height: math.unit((6 + 7 / 12) * 150, "feet")
  29632. },
  29633. {
  29634. name: "Macro+",
  29635. height: math.unit((6 + 7 / 12) * 500, "feet")
  29636. },
  29637. {
  29638. name: "Megamacro",
  29639. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29645. {
  29646. front: {
  29647. height: math.unit(1, "mile"),
  29648. weight: math.unit(265261.9, "lb"),
  29649. name: "Front",
  29650. image: {
  29651. source: "./media/characters/shui/front.svg",
  29652. extra: 1633 / 1564,
  29653. bottom: 91.5 / 1726
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Macro",
  29660. height: math.unit(1, "mile"),
  29661. default: true
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(12 + 6 / 12, "feet"),
  29670. weight: math.unit(1342, "lb"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/arokh-takakura/front.svg",
  29674. extra: 1089 / 1043,
  29675. bottom: 77.4 / 1176.7
  29676. }
  29677. },
  29678. back: {
  29679. height: math.unit(12 + 6 / 12, "feet"),
  29680. weight: math.unit(1342, "lb"),
  29681. name: "Back",
  29682. image: {
  29683. source: "./media/characters/arokh-takakura/back.svg",
  29684. extra: 1046 / 1019,
  29685. bottom: 102 / 1150
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Big",
  29692. height: math.unit(12 + 6 / 12, "feet"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(5 + 6 / 12, "feet"),
  29702. weight: math.unit(150, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/theo/front.svg",
  29706. extra: 1184 / 1131,
  29707. bottom: 7.4 / 1191
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Micro",
  29714. height: math.unit(5, "inches")
  29715. },
  29716. {
  29717. name: "Normal",
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(5 + 9 / 12, "feet"),
  29728. weight: math.unit(130, "lb"),
  29729. name: "Front",
  29730. image: {
  29731. source: "./media/characters/cecelia-swift/front.svg",
  29732. extra: 502 / 484,
  29733. bottom: 23 / 523
  29734. }
  29735. },
  29736. back: {
  29737. height: math.unit(5 + 9 / 12, "feet"),
  29738. weight: math.unit(130, "lb"),
  29739. name: "Back",
  29740. image: {
  29741. source: "./media/characters/cecelia-swift/back.svg",
  29742. extra: 499 / 485,
  29743. bottom: 12 / 511
  29744. }
  29745. },
  29746. head: {
  29747. height: math.unit(0.90, "feet"),
  29748. name: "Head",
  29749. image: {
  29750. source: "./media/characters/cecelia-swift/head.svg"
  29751. }
  29752. },
  29753. rump: {
  29754. height: math.unit(1.75, "feet"),
  29755. name: "Rump",
  29756. image: {
  29757. source: "./media/characters/cecelia-swift/rump.svg"
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(5 + 9 / 12, "feet"),
  29765. default: true
  29766. },
  29767. {
  29768. name: "Big",
  29769. height: math.unit(50, "feet")
  29770. },
  29771. {
  29772. name: "Macro",
  29773. height: math.unit(100, "feet")
  29774. },
  29775. {
  29776. name: "Macro+",
  29777. height: math.unit(500, "feet")
  29778. },
  29779. {
  29780. name: "Macro++",
  29781. height: math.unit(1000, "feet")
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(6, "feet"),
  29790. weight: math.unit(150, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/kaunan/front.svg",
  29794. extra: 2890 / 2523,
  29795. bottom: 49 / 2939
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(150, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29809. {
  29810. dressed: {
  29811. height: math.unit(175, "cm"),
  29812. weight: math.unit(60, "kg"),
  29813. name: "Dressed",
  29814. image: {
  29815. source: "./media/characters/fei/dressed.svg",
  29816. extra: 1402/1278,
  29817. bottom: 27/1429
  29818. }
  29819. },
  29820. nude: {
  29821. height: math.unit(175, "cm"),
  29822. weight: math.unit(60, "kg"),
  29823. name: "Nude",
  29824. image: {
  29825. source: "./media/characters/fei/nude.svg",
  29826. extra: 1402/1278,
  29827. bottom: 27/1429
  29828. }
  29829. },
  29830. heels: {
  29831. height: math.unit(0.466, "feet"),
  29832. name: "Heels",
  29833. image: {
  29834. source: "./media/characters/fei/heels.svg",
  29835. extra: 156/152,
  29836. bottom: 28/184
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Mortal",
  29843. height: math.unit(175, "cm")
  29844. },
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(3500, "m")
  29848. },
  29849. {
  29850. name: "Stroll",
  29851. height: math.unit(18.4, "km"),
  29852. default: true
  29853. },
  29854. {
  29855. name: "Showoff",
  29856. height: math.unit(175, "km")
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29862. {
  29863. front: {
  29864. height: math.unit(7, "feet"),
  29865. weight: math.unit(1000, "kg"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/edrax/front.svg",
  29869. extra: 2838 / 2550,
  29870. bottom: 130 / 2968
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Small",
  29877. height: math.unit(7, "feet")
  29878. },
  29879. {
  29880. name: "Normal",
  29881. height: math.unit(1500, "meters")
  29882. },
  29883. {
  29884. name: "Mega",
  29885. height: math.unit(12000000, "km"),
  29886. default: true
  29887. },
  29888. {
  29889. name: "Megamacro",
  29890. height: math.unit(10600000, "lightyears")
  29891. },
  29892. {
  29893. name: "Hypermacro",
  29894. height: math.unit(256, "yottameters")
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(10, "feet"),
  29903. weight: math.unit(750, "lb"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/clove/front.svg",
  29907. extra: 1918/1751,
  29908. bottom: 52/1970
  29909. }
  29910. },
  29911. back: {
  29912. height: math.unit(10, "feet"),
  29913. weight: math.unit(750, "lb"),
  29914. name: "Back",
  29915. image: {
  29916. source: "./media/characters/clove/back.svg",
  29917. extra: 1912/1747,
  29918. bottom: 50/1962
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(10, "feet"),
  29926. default: true
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(4, "feet"),
  29935. weight: math.unit(50, "lb"),
  29936. name: "Front",
  29937. image: {
  29938. source: "./media/characters/alex-rabbit/front.svg",
  29939. extra: 507 / 458,
  29940. bottom: 18.5 / 527
  29941. }
  29942. },
  29943. back: {
  29944. height: math.unit(4, "feet"),
  29945. weight: math.unit(50, "lb"),
  29946. name: "Back",
  29947. image: {
  29948. source: "./media/characters/alex-rabbit/back.svg",
  29949. extra: 502 / 460,
  29950. bottom: 18.9 / 521
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Normal",
  29957. height: math.unit(4, "feet"),
  29958. default: true
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(1 + 3 / 12, "feet"),
  29967. weight: math.unit(80, "lb"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/zander-rose/front.svg",
  29971. extra: 916 / 797,
  29972. bottom: 17 / 933
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(1 + 3 / 12, "feet"),
  29977. weight: math.unit(80, "lb"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/zander-rose/back.svg",
  29981. extra: 903 / 779,
  29982. bottom: 31 / 934
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(1 + 3 / 12, "feet"),
  29990. default: true
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29996. {
  29997. anthro: {
  29998. height: math.unit(6, "feet"),
  29999. weight: math.unit(150, "lb"),
  30000. name: "Anthro",
  30001. image: {
  30002. source: "./media/characters/razz/anthro.svg",
  30003. extra: 1437 / 1343,
  30004. bottom: 48 / 1485
  30005. }
  30006. },
  30007. feral: {
  30008. height: math.unit(6, "feet"),
  30009. weight: math.unit(150, "lb"),
  30010. name: "Feral",
  30011. image: {
  30012. source: "./media/characters/razz/feral.svg",
  30013. extra: 2569 / 1385,
  30014. bottom: 95 / 2664
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(6, "feet"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(9 + 4 / 12, "feet"),
  30031. weight: math.unit(500, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/morrigan/front.svg",
  30035. extra: 2707 / 2579,
  30036. bottom: 156 / 2863
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(9 + 4 / 12, "feet"),
  30044. default: true
  30045. },
  30046. ]
  30047. ))
  30048. characterMakers.push(() => makeCharacter(
  30049. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30050. {
  30051. front: {
  30052. height: math.unit(5, "stories"),
  30053. weight: math.unit(4000, "lb"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/jenene/front.svg",
  30057. extra: 1780 / 1710,
  30058. bottom: 57 / 1837
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Normal",
  30065. height: math.unit(5, "stories"),
  30066. default: true
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30072. {
  30073. taurSfw: {
  30074. height: math.unit(10, "meters"),
  30075. weight: math.unit(17500, "kg"),
  30076. name: "Taur",
  30077. image: {
  30078. source: "./media/characters/faey/taur-sfw.svg",
  30079. extra: 1200 / 968,
  30080. bottom: 41 / 1241
  30081. }
  30082. },
  30083. chestmaw: {
  30084. height: math.unit(2.01, "meters"),
  30085. name: "Chestmaw",
  30086. image: {
  30087. source: "./media/characters/faey/chestmaw.svg"
  30088. }
  30089. },
  30090. foot: {
  30091. height: math.unit(2.43, "meters"),
  30092. name: "Foot",
  30093. image: {
  30094. source: "./media/characters/faey/foot.svg"
  30095. }
  30096. },
  30097. jaws: {
  30098. height: math.unit(1.66, "meters"),
  30099. name: "Jaws",
  30100. image: {
  30101. source: "./media/characters/faey/jaws.svg"
  30102. }
  30103. },
  30104. tongues: {
  30105. height: math.unit(2.01, "meters"),
  30106. name: "Tongues",
  30107. image: {
  30108. source: "./media/characters/faey/tongues.svg"
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Small",
  30115. height: math.unit(10, "meters"),
  30116. default: true
  30117. },
  30118. {
  30119. name: "Big",
  30120. height: math.unit(500000, "km")
  30121. },
  30122. ]
  30123. ))
  30124. characterMakers.push(() => makeCharacter(
  30125. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30126. {
  30127. front: {
  30128. height: math.unit(7, "feet"),
  30129. weight: math.unit(275, "lb"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/roku/front.svg",
  30133. extra: 903 / 878,
  30134. bottom: 37 / 940
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Normal",
  30141. height: math.unit(7, "feet"),
  30142. default: true
  30143. },
  30144. {
  30145. name: "Macro",
  30146. height: math.unit(500, "feet")
  30147. },
  30148. {
  30149. name: "Megamacro",
  30150. height: math.unit(200, "miles")
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(6 + 2 / 12, "feet"),
  30159. weight: math.unit(150, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/lira/front.svg",
  30163. extra: 1727 / 1605,
  30164. bottom: 26 / 1753
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(6 + 2 / 12, "feet"),
  30169. weight: math.unit(150, "lb"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/lira/back.svg",
  30173. extra: 1713/1621,
  30174. bottom: 20/1733
  30175. }
  30176. },
  30177. hand: {
  30178. height: math.unit(0.75, "feet"),
  30179. name: "Hand",
  30180. image: {
  30181. source: "./media/characters/lira/hand.svg"
  30182. }
  30183. },
  30184. maw: {
  30185. height: math.unit(0.65, "feet"),
  30186. name: "Maw",
  30187. image: {
  30188. source: "./media/characters/lira/maw.svg"
  30189. }
  30190. },
  30191. pawDigi: {
  30192. height: math.unit(1.6, "feet"),
  30193. name: "Paw Digi",
  30194. image: {
  30195. source: "./media/characters/lira/paw-digi.svg"
  30196. }
  30197. },
  30198. pawPlanti: {
  30199. height: math.unit(1.4, "feet"),
  30200. name: "Paw Planti",
  30201. image: {
  30202. source: "./media/characters/lira/paw-planti.svg"
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(6 + 2 / 12, "feet"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(100, "feet")
  30215. },
  30216. {
  30217. name: "Macro²",
  30218. height: math.unit(1600, "feet")
  30219. },
  30220. {
  30221. name: "Planetary",
  30222. height: math.unit(20, "earths")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30228. {
  30229. front: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Front",
  30233. image: {
  30234. source: "./media/characters/hadjet/front.svg",
  30235. extra: 1480 / 1346,
  30236. bottom: 26 / 1506
  30237. }
  30238. },
  30239. frontNsfw: {
  30240. height: math.unit(6, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Front (NSFW)",
  30243. image: {
  30244. source: "./media/characters/hadjet/front-nsfw.svg",
  30245. extra: 1440 / 1358,
  30246. bottom: 52 / 1492
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(10, "stories"),
  30254. default: true
  30255. },
  30256. {
  30257. name: "Megamacro",
  30258. height: math.unit(1.5, "miles")
  30259. },
  30260. {
  30261. name: "Megamacro+",
  30262. height: math.unit(5, "miles")
  30263. },
  30264. ]
  30265. ))
  30266. characterMakers.push(() => makeCharacter(
  30267. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30268. {
  30269. side: {
  30270. height: math.unit(106, "feet"),
  30271. weight: math.unit(500, "tonnes"),
  30272. name: "Side",
  30273. image: {
  30274. source: "./media/characters/kodran/side.svg",
  30275. extra: 553 / 480,
  30276. bottom: 33 / 586
  30277. }
  30278. },
  30279. front: {
  30280. height: math.unit(132, "feet"),
  30281. weight: math.unit(500, "tonnes"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/kodran/front.svg",
  30285. extra: 667 / 643,
  30286. bottom: 42 / 709
  30287. }
  30288. },
  30289. flying: {
  30290. height: math.unit(350, "feet"),
  30291. weight: math.unit(500, "tonnes"),
  30292. name: "Flying",
  30293. image: {
  30294. source: "./media/characters/kodran/flying.svg"
  30295. }
  30296. },
  30297. foot: {
  30298. height: math.unit(33, "feet"),
  30299. name: "Foot",
  30300. image: {
  30301. source: "./media/characters/kodran/foot.svg"
  30302. }
  30303. },
  30304. footFront: {
  30305. height: math.unit(19, "feet"),
  30306. name: "Foot (Front)",
  30307. image: {
  30308. source: "./media/characters/kodran/foot-front.svg",
  30309. extra: 261 / 261,
  30310. bottom: 91 / 352
  30311. }
  30312. },
  30313. headFront: {
  30314. height: math.unit(53, "feet"),
  30315. name: "Head (Front)",
  30316. image: {
  30317. source: "./media/characters/kodran/head-front.svg"
  30318. }
  30319. },
  30320. headSide: {
  30321. height: math.unit(65, "feet"),
  30322. name: "Head (Side)",
  30323. image: {
  30324. source: "./media/characters/kodran/head-side.svg"
  30325. }
  30326. },
  30327. throat: {
  30328. height: math.unit(79, "feet"),
  30329. name: "Throat",
  30330. image: {
  30331. source: "./media/characters/kodran/throat.svg"
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Large",
  30338. height: math.unit(106, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30345. {
  30346. side: {
  30347. height: math.unit(11, "feet"),
  30348. weight: math.unit(150, "lb"),
  30349. name: "Side",
  30350. image: {
  30351. source: "./media/characters/pyxaron/side.svg",
  30352. extra: 305 / 195,
  30353. bottom: 17 / 322
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(11, "feet"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30367. {
  30368. front: {
  30369. height: math.unit(6, "feet"),
  30370. weight: math.unit(150, "lb"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/meep/front.svg",
  30374. extra: 88 / 80,
  30375. bottom: 6 / 94
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Fun Sized",
  30382. height: math.unit(2, "inches"),
  30383. default: true
  30384. },
  30385. {
  30386. name: "Friend Sized",
  30387. height: math.unit(8, "inches")
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(15, "feet"),
  30396. weight: math.unit(2500, "lb"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/holly-rabbit/front.svg",
  30400. extra: 1433 / 1233,
  30401. bottom: 125 / 1558
  30402. }
  30403. },
  30404. dick: {
  30405. height: math.unit(4.6, "feet"),
  30406. name: "Dick",
  30407. image: {
  30408. source: "./media/characters/holly-rabbit/dick.svg"
  30409. }
  30410. },
  30411. },
  30412. [
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(15, "feet"),
  30416. default: true
  30417. },
  30418. {
  30419. name: "Macro",
  30420. height: math.unit(250, "feet")
  30421. },
  30422. {
  30423. name: "Macro+",
  30424. height: math.unit(2500, "feet")
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30430. {
  30431. front: {
  30432. height: math.unit(3.02, "meters"),
  30433. weight: math.unit(500, "kg"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/drena/front.svg",
  30437. extra: 282 / 243,
  30438. bottom: 8 / 290
  30439. }
  30440. },
  30441. side: {
  30442. height: math.unit(3.02, "meters"),
  30443. weight: math.unit(500, "kg"),
  30444. name: "Side",
  30445. image: {
  30446. source: "./media/characters/drena/side.svg",
  30447. extra: 280 / 245,
  30448. bottom: 10 / 290
  30449. }
  30450. },
  30451. back: {
  30452. height: math.unit(3.02, "meters"),
  30453. weight: math.unit(500, "kg"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/drena/back.svg",
  30457. extra: 278 / 243,
  30458. bottom: 2 / 280
  30459. }
  30460. },
  30461. foot: {
  30462. height: math.unit(0.75, "meters"),
  30463. name: "Foot",
  30464. image: {
  30465. source: "./media/characters/drena/foot.svg"
  30466. }
  30467. },
  30468. maw: {
  30469. height: math.unit(0.82, "meters"),
  30470. name: "Maw",
  30471. image: {
  30472. source: "./media/characters/drena/maw.svg"
  30473. }
  30474. },
  30475. eating: {
  30476. height: math.unit(0.75, "meters"),
  30477. name: "Eating",
  30478. image: {
  30479. source: "./media/characters/drena/eating.svg"
  30480. }
  30481. },
  30482. rump: {
  30483. height: math.unit(0.93, "meters"),
  30484. name: "Rump",
  30485. image: {
  30486. source: "./media/characters/drena/rump.svg"
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(3.02, "meters"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(6 + 4 / 12, "feet"),
  30503. weight: math.unit(250, "lb"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/remmyzilla/front.svg",
  30507. extra: 4033 / 3588,
  30508. bottom: 123 / 4156
  30509. }
  30510. },
  30511. back: {
  30512. height: math.unit(6 + 4 / 12, "feet"),
  30513. weight: math.unit(250, "lb"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/remmyzilla/back.svg",
  30517. extra: 2687 / 2555,
  30518. bottom: 48 / 2735
  30519. }
  30520. },
  30521. paw: {
  30522. height: math.unit(1.73, "feet"),
  30523. name: "Paw",
  30524. image: {
  30525. source: "./media/characters/remmyzilla/paw.svg"
  30526. },
  30527. extraAttributes: {
  30528. "toeSize": {
  30529. name: "Toe Size",
  30530. power: 2,
  30531. type: "area",
  30532. base: math.unit(0.0035, "m^2")
  30533. },
  30534. "padSize": {
  30535. name: "Pad Size",
  30536. power: 2,
  30537. type: "area",
  30538. base: math.unit(0.015, "m^2")
  30539. },
  30540. "pawsize": {
  30541. name: "Paw Size",
  30542. power: 2,
  30543. type: "area",
  30544. base: math.unit(0.072, "m^2")
  30545. },
  30546. }
  30547. },
  30548. maw: {
  30549. height: math.unit(1.73, "feet"),
  30550. name: "Maw",
  30551. image: {
  30552. source: "./media/characters/remmyzilla/maw.svg"
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(6 + 4 / 12, "feet")
  30560. },
  30561. {
  30562. name: "Minimacro",
  30563. height: math.unit(12 + 8 / 12, "feet")
  30564. },
  30565. {
  30566. name: "Normal",
  30567. height: math.unit(640, "feet"),
  30568. default: true
  30569. },
  30570. {
  30571. name: "Megamacro",
  30572. height: math.unit(6400, "feet")
  30573. },
  30574. {
  30575. name: "Gigamacro",
  30576. height: math.unit(64000, "miles")
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30582. {
  30583. front: {
  30584. height: math.unit(2.5, "meters"),
  30585. weight: math.unit(300, "lb"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/lawrence/front.svg",
  30589. extra: 357 / 335,
  30590. bottom: 30 / 387
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(2.5, "meters"),
  30595. weight: math.unit(300, "lb"),
  30596. name: "Back",
  30597. image: {
  30598. source: "./media/characters/lawrence/back.svg",
  30599. extra: 357 / 338,
  30600. bottom: 16 / 373
  30601. }
  30602. },
  30603. head: {
  30604. height: math.unit(0.9, "meter"),
  30605. name: "Head",
  30606. image: {
  30607. source: "./media/characters/lawrence/head.svg"
  30608. }
  30609. },
  30610. maw: {
  30611. height: math.unit(0.7, "meter"),
  30612. name: "Maw",
  30613. image: {
  30614. source: "./media/characters/lawrence/maw.svg"
  30615. }
  30616. },
  30617. footBottom: {
  30618. height: math.unit(0.5, "meter"),
  30619. name: "Foot (Bottom)",
  30620. image: {
  30621. source: "./media/characters/lawrence/foot-bottom.svg"
  30622. }
  30623. },
  30624. footTop: {
  30625. height: math.unit(0.5, "meter"),
  30626. name: "Foot (Top)",
  30627. image: {
  30628. source: "./media/characters/lawrence/foot-top.svg"
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(2.5, "meters"),
  30636. default: true
  30637. },
  30638. {
  30639. name: "Macro",
  30640. height: math.unit(95, "meters")
  30641. },
  30642. {
  30643. name: "Megamacro",
  30644. height: math.unit(150, "km")
  30645. },
  30646. ]
  30647. ))
  30648. characterMakers.push(() => makeCharacter(
  30649. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30650. {
  30651. front: {
  30652. height: math.unit(4.2, "meters"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/sydney/front.svg",
  30656. extra: 1323 / 1277,
  30657. bottom: 111 / 1434
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Normal",
  30664. height: math.unit(4.2, "meters"),
  30665. default: true
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30671. {
  30672. back: {
  30673. height: math.unit(201, "feet"),
  30674. name: "Back",
  30675. image: {
  30676. source: "./media/characters/jessica/back.svg",
  30677. extra: 273 / 259,
  30678. bottom: 7 / 280
  30679. }
  30680. },
  30681. },
  30682. [
  30683. {
  30684. name: "Normal",
  30685. height: math.unit(201, "feet"),
  30686. default: true
  30687. },
  30688. {
  30689. name: "Megamacro",
  30690. height: math.unit(8, "miles")
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30696. {
  30697. side: {
  30698. height: math.unit(5.6, "m"),
  30699. weight: math.unit(8000, "kg"),
  30700. name: "Side",
  30701. image: {
  30702. source: "./media/characters/victoria/side.svg",
  30703. extra: 1542/1229,
  30704. bottom: 124/1666
  30705. }
  30706. },
  30707. maw: {
  30708. height: math.unit(7.14, "feet"),
  30709. name: "Maw",
  30710. image: {
  30711. source: "./media/characters/victoria/maw.svg"
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(5.6, "m"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30725. {
  30726. front: {
  30727. height: math.unit(5 + 6 / 12, "feet"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/cat/front.svg",
  30731. extra: 1449/1295,
  30732. bottom: 34/1483
  30733. },
  30734. form: "cat",
  30735. default: true
  30736. },
  30737. back: {
  30738. height: math.unit(5 + 6 / 12, "feet"),
  30739. name: "Back",
  30740. image: {
  30741. source: "./media/characters/cat/back.svg",
  30742. extra: 1466/1301,
  30743. bottom: 19/1485
  30744. },
  30745. form: "cat"
  30746. },
  30747. taur: {
  30748. height: math.unit(7, "feet"),
  30749. name: "Taur",
  30750. image: {
  30751. source: "./media/characters/cat/taur.svg",
  30752. extra: 1389/1233,
  30753. bottom: 83/1472
  30754. },
  30755. form: "taur",
  30756. default: true
  30757. },
  30758. lucarioFront: {
  30759. height: math.unit(4, "feet"),
  30760. name: "Lucario (Front)",
  30761. image: {
  30762. source: "./media/characters/cat/lucario-front.svg",
  30763. extra: 1149/1019,
  30764. bottom: 84/1233
  30765. },
  30766. form: "lucario",
  30767. default: true
  30768. },
  30769. lucarioBack: {
  30770. height: math.unit(4, "feet"),
  30771. name: "Lucario (Back)",
  30772. image: {
  30773. source: "./media/characters/cat/lucario-back.svg",
  30774. extra: 1190/1059,
  30775. bottom: 33/1223
  30776. },
  30777. form: "lucario"
  30778. },
  30779. megaLucario: {
  30780. height: math.unit(4, "feet"),
  30781. name: "Mega Lucario",
  30782. image: {
  30783. source: "./media/characters/cat/mega-lucario.svg",
  30784. extra: 1515 / 1319,
  30785. bottom: 63 / 1578
  30786. },
  30787. form: "lucario"
  30788. },
  30789. nickit: {
  30790. height: math.unit(2, "feet"),
  30791. name: "Nickit",
  30792. image: {
  30793. source: "./media/characters/cat/nickit.svg",
  30794. extra: 1980 / 1585,
  30795. bottom: 102 / 2082
  30796. },
  30797. form: "nickit",
  30798. default: true
  30799. },
  30800. lopunnyFront: {
  30801. height: math.unit(5, "feet"),
  30802. name: "Lopunny (Front)",
  30803. image: {
  30804. source: "./media/characters/cat/lopunny-front.svg",
  30805. extra: 1782 / 1469,
  30806. bottom: 38 / 1820
  30807. },
  30808. form: "lopunny",
  30809. default: true
  30810. },
  30811. lopunnyBack: {
  30812. height: math.unit(5, "feet"),
  30813. name: "Lopunny (Back)",
  30814. image: {
  30815. source: "./media/characters/cat/lopunny-back.svg",
  30816. extra: 1660 / 1490,
  30817. bottom: 25 / 1685
  30818. },
  30819. form: "lopunny"
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Really small",
  30825. height: math.unit(1, "nm")
  30826. },
  30827. {
  30828. name: "Micro",
  30829. height: math.unit(5, "inches")
  30830. },
  30831. {
  30832. name: "Normal",
  30833. height: math.unit(5 + 6 / 12, "feet"),
  30834. default: true
  30835. },
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(50, "feet")
  30839. },
  30840. {
  30841. name: "Macro+",
  30842. height: math.unit(150, "feet")
  30843. },
  30844. {
  30845. name: "Megamacro",
  30846. height: math.unit(100, "miles")
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30852. {
  30853. front: {
  30854. height: math.unit(63.4, "meters"),
  30855. weight: math.unit(3.28349e+6, "kilograms"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/kirina-violet/front.svg",
  30859. extra: 2812 / 2725,
  30860. bottom: 0 / 2812
  30861. }
  30862. },
  30863. back: {
  30864. height: math.unit(63.4, "meters"),
  30865. weight: math.unit(3.28349e+6, "kilograms"),
  30866. name: "Back",
  30867. image: {
  30868. source: "./media/characters/kirina-violet/back.svg",
  30869. extra: 2812 / 2725,
  30870. bottom: 0 / 2812
  30871. }
  30872. },
  30873. mouth: {
  30874. height: math.unit(4.35, "meters"),
  30875. name: "Mouth",
  30876. image: {
  30877. source: "./media/characters/kirina-violet/mouth.svg"
  30878. }
  30879. },
  30880. paw: {
  30881. height: math.unit(5.6, "meters"),
  30882. name: "Paw",
  30883. image: {
  30884. source: "./media/characters/kirina-violet/paw.svg"
  30885. }
  30886. },
  30887. tail: {
  30888. height: math.unit(18, "meters"),
  30889. name: "Tail",
  30890. image: {
  30891. source: "./media/characters/kirina-violet/tail.svg"
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Macro",
  30898. height: math.unit(63.4, "meters"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(75, "feet"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/cat-gigachu/front.svg",
  30911. extra: 1239/1027,
  30912. bottom: 32/1271
  30913. }
  30914. },
  30915. back: {
  30916. height: math.unit(75, "feet"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/cat-gigachu/back.svg",
  30920. extra: 1229/1030,
  30921. bottom: 9/1238
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Dynamax",
  30928. height: math.unit(75, "feet"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(6, "feet"),
  30938. weight: math.unit(150, "lb"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/sfaiyan/front.svg",
  30942. extra: 999 / 978,
  30943. bottom: 5 / 1004
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Normal",
  30950. height: math.unit(1.82, "meters")
  30951. },
  30952. {
  30953. name: "Giant",
  30954. height: math.unit(2.27, "km"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(179, "cm"),
  30964. weight: math.unit(100, "kg"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/raunehkeli/front.svg",
  30968. extra: 1934 / 1926,
  30969. bottom: 0 / 1934
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(179, "cm")
  30977. },
  30978. {
  30979. name: "Maximum",
  30980. height: math.unit(575, "meters"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30987. {
  30988. front: {
  30989. height: math.unit(6, "feet"),
  30990. weight: math.unit(150, "lb"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30994. extra: 2625 / 2518,
  30995. bottom: 60 / 2685
  30996. }
  30997. },
  30998. },
  30999. [
  31000. {
  31001. name: "Normal",
  31002. height: math.unit(6 + 2 / 12, "feet")
  31003. },
  31004. {
  31005. name: "Macro",
  31006. height: math.unit(1180, "feet"),
  31007. default: true
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(5 + 6 / 12, "feet"),
  31016. weight: math.unit(108, "lb"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/lilith-zott/front.svg",
  31020. extra: 2510 / 2238,
  31021. bottom: 100 / 2610
  31022. }
  31023. },
  31024. frontDressed: {
  31025. height: math.unit(5 + 6 / 12, "feet"),
  31026. weight: math.unit(108, "lb"),
  31027. name: "Front (Dressed)",
  31028. image: {
  31029. source: "./media/characters/lilith-zott/front-dressed.svg",
  31030. extra: 2510 / 2238,
  31031. bottom: 100 / 2610
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(5 + 6 / 12, "feet")
  31039. },
  31040. {
  31041. name: "Macro",
  31042. height: math.unit(1030, "feet"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31049. {
  31050. front: {
  31051. height: math.unit(6, "feet"),
  31052. weight: math.unit(150, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31056. extra: 2567 / 2435,
  31057. bottom: 39 / 2606
  31058. }
  31059. },
  31060. frontSuper: {
  31061. height: math.unit(6, "feet"),
  31062. name: "Front (Super)",
  31063. image: {
  31064. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31065. extra: 2567 / 2435,
  31066. bottom: 39 / 2606
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(5 + 10 / 12, "feet")
  31074. },
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(1100, "feet"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(100, "miles"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/sona/front.svg",
  31090. extra: 2433 / 2201,
  31091. bottom: 53 / 2486
  31092. }
  31093. },
  31094. foot: {
  31095. height: math.unit(16.1, "miles"),
  31096. name: "Foot",
  31097. image: {
  31098. source: "./media/characters/sona/foot.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Macro",
  31105. height: math.unit(100, "miles"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(150, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/bailey/front.svg",
  31119. extra: 1778 / 1724,
  31120. bottom: 30 / 1808
  31121. }
  31122. },
  31123. },
  31124. [
  31125. {
  31126. name: "Micro",
  31127. height: math.unit(4, "inches")
  31128. },
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(5 + 5 / 12, "feet"),
  31132. default: true
  31133. },
  31134. {
  31135. name: "Macro",
  31136. height: math.unit(250, "feet")
  31137. },
  31138. {
  31139. name: "Megamacro",
  31140. height: math.unit(100, "miles")
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(5 + 2 / 12, "feet"),
  31149. weight: math.unit(120, "lb"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/snaps/front.svg",
  31153. extra: 2370 / 2177,
  31154. bottom: 48 / 2418
  31155. }
  31156. },
  31157. back: {
  31158. height: math.unit(5 + 2 / 12, "feet"),
  31159. weight: math.unit(120, "lb"),
  31160. name: "Back",
  31161. image: {
  31162. source: "./media/characters/snaps/back.svg",
  31163. extra: 2408 / 2258,
  31164. bottom: 15 / 2423
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Micro",
  31171. height: math.unit(9, "inches")
  31172. },
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(5 + 2 / 12, "feet"),
  31176. default: true
  31177. },
  31178. {
  31179. name: "Mini Macro",
  31180. height: math.unit(10, "feet")
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(1.8, "meters"),
  31189. weight: math.unit(85, "kg"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/azteck/front.svg",
  31193. extra: 2815 / 2625,
  31194. bottom: 89 / 2904
  31195. }
  31196. },
  31197. back: {
  31198. height: math.unit(1.8, "meters"),
  31199. weight: math.unit(85, "kg"),
  31200. name: "Back",
  31201. image: {
  31202. source: "./media/characters/azteck/back.svg",
  31203. extra: 2856 / 2648,
  31204. bottom: 85 / 2941
  31205. }
  31206. },
  31207. frontDressed: {
  31208. height: math.unit(1.8, "meters"),
  31209. weight: math.unit(85, "kg"),
  31210. name: "Front (Dressed)",
  31211. image: {
  31212. source: "./media/characters/azteck/front-dressed.svg",
  31213. extra: 2147 / 2003,
  31214. bottom: 68 / 2215
  31215. }
  31216. },
  31217. head: {
  31218. height: math.unit(0.47, "meters"),
  31219. weight: math.unit(85, "kg"),
  31220. name: "Head",
  31221. image: {
  31222. source: "./media/characters/azteck/head.svg"
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Bite sized",
  31229. height: math.unit(16, "cm")
  31230. },
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(1.8, "meters"),
  31234. default: true
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/pidge/front.svg",
  31247. extra: 1936/1820,
  31248. bottom: 0/1936
  31249. }
  31250. },
  31251. back: {
  31252. height: math.unit(6, "feet"),
  31253. weight: math.unit(150, "lb"),
  31254. name: "Back",
  31255. image: {
  31256. source: "./media/characters/pidge/back.svg",
  31257. extra: 1938/1843,
  31258. bottom: 0/1938
  31259. }
  31260. },
  31261. casual: {
  31262. height: math.unit(6, "feet"),
  31263. weight: math.unit(150, "lb"),
  31264. name: "Casual",
  31265. image: {
  31266. source: "./media/characters/pidge/casual.svg",
  31267. extra: 1936/1820,
  31268. bottom: 0/1936
  31269. }
  31270. },
  31271. tech: {
  31272. height: math.unit(6, "feet"),
  31273. weight: math.unit(150, "lb"),
  31274. name: "Tech",
  31275. image: {
  31276. source: "./media/characters/pidge/tech.svg",
  31277. extra: 1802/1682,
  31278. bottom: 0/1802
  31279. }
  31280. },
  31281. head: {
  31282. height: math.unit(1.61, "feet"),
  31283. name: "Head",
  31284. image: {
  31285. source: "./media/characters/pidge/head.svg"
  31286. }
  31287. },
  31288. collar: {
  31289. height: math.unit(0.82, "feet"),
  31290. name: "Collar",
  31291. image: {
  31292. source: "./media/characters/pidge/collar.svg"
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Macro",
  31299. height: math.unit(2, "mile"),
  31300. default: true
  31301. },
  31302. {
  31303. name: "PUPPY",
  31304. height: math.unit(20, "miles")
  31305. },
  31306. ]
  31307. ))
  31308. characterMakers.push(() => makeCharacter(
  31309. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31310. {
  31311. front: {
  31312. height: math.unit(6, "feet"),
  31313. weight: math.unit(150, "lb"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/en/front.svg",
  31317. extra: 1697 / 1563,
  31318. bottom: 103 / 1800
  31319. }
  31320. },
  31321. back: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(150, "lb"),
  31324. name: "Back",
  31325. image: {
  31326. source: "./media/characters/en/back.svg",
  31327. extra: 1700 / 1570,
  31328. bottom: 51 / 1751
  31329. }
  31330. },
  31331. frontDressed: {
  31332. height: math.unit(6, "feet"),
  31333. weight: math.unit(150, "lb"),
  31334. name: "Front (Dressed)",
  31335. image: {
  31336. source: "./media/characters/en/front-dressed.svg",
  31337. extra: 1697 / 1563,
  31338. bottom: 103 / 1800
  31339. }
  31340. },
  31341. backDressed: {
  31342. height: math.unit(6, "feet"),
  31343. weight: math.unit(150, "lb"),
  31344. name: "Back (Dressed)",
  31345. image: {
  31346. source: "./media/characters/en/back-dressed.svg",
  31347. extra: 1700 / 1570,
  31348. bottom: 51 / 1751
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Macro",
  31355. height: math.unit(210, "feet"),
  31356. default: true
  31357. },
  31358. ]
  31359. ))
  31360. characterMakers.push(() => makeCharacter(
  31361. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31362. {
  31363. front: {
  31364. height: math.unit(6, "feet"),
  31365. weight: math.unit(150, "lb"),
  31366. name: "Front",
  31367. image: {
  31368. source: "./media/characters/haze-orris/front.svg",
  31369. extra: 3975 / 3525,
  31370. bottom: 137 / 4112
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Micro",
  31377. height: math.unit(150, "mm"),
  31378. default: true
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31384. {
  31385. front: {
  31386. height: math.unit(6, "feet"),
  31387. weight: math.unit(150, "lb"),
  31388. name: "Front",
  31389. image: {
  31390. source: "./media/characters/casselene-yaro/front.svg",
  31391. extra: 4721 / 4541,
  31392. bottom: 82 / 4803
  31393. }
  31394. },
  31395. back: {
  31396. height: math.unit(6, "feet"),
  31397. weight: math.unit(150, "lb"),
  31398. name: "Back",
  31399. image: {
  31400. source: "./media/characters/casselene-yaro/back.svg",
  31401. extra: 4569 / 4377,
  31402. bottom: 69 / 4638
  31403. }
  31404. },
  31405. dressed: {
  31406. height: math.unit(6, "feet"),
  31407. weight: math.unit(150, "lb"),
  31408. name: "Dressed",
  31409. image: {
  31410. source: "./media/characters/casselene-yaro/dressed.svg",
  31411. extra: 4721 / 4541,
  31412. bottom: 82 / 4803
  31413. }
  31414. },
  31415. maw: {
  31416. height: math.unit(1, "feet"),
  31417. name: "Maw",
  31418. image: {
  31419. source: "./media/characters/casselene-yaro/maw.svg"
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Macro",
  31426. height: math.unit(190, "feet"),
  31427. default: true
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(10, "feet"),
  31436. weight: math.unit(15015, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/platine/front.svg",
  31440. extra: 1741/1650,
  31441. bottom: 84/1825
  31442. }
  31443. },
  31444. side: {
  31445. height: math.unit(10, "feet"),
  31446. weight: math.unit(15015, "lb"),
  31447. name: "Side",
  31448. image: {
  31449. source: "./media/characters/platine/side.svg",
  31450. extra: 1790/1705,
  31451. bottom: 29/1819
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(10, "feet"),
  31459. default: true
  31460. },
  31461. {
  31462. name: "Macro",
  31463. height: math.unit(100, "feet")
  31464. },
  31465. {
  31466. name: "Megamacro",
  31467. height: math.unit(1000, "feet")
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31473. {
  31474. front: {
  31475. height: math.unit(15 + 5 / 12, "feet"),
  31476. weight: math.unit(4600, "lb"),
  31477. name: "Front",
  31478. image: {
  31479. source: "./media/characters/neapolitan-ananassa/front.svg",
  31480. extra: 2903 / 2736,
  31481. bottom: 0 / 2903
  31482. }
  31483. },
  31484. side: {
  31485. height: math.unit(15 + 5 / 12, "feet"),
  31486. weight: math.unit(4600, "lb"),
  31487. name: "Side",
  31488. image: {
  31489. source: "./media/characters/neapolitan-ananassa/side.svg",
  31490. extra: 2925 / 2719,
  31491. bottom: 0 / 2925
  31492. }
  31493. },
  31494. back: {
  31495. height: math.unit(15 + 5 / 12, "feet"),
  31496. weight: math.unit(4600, "lb"),
  31497. name: "Back",
  31498. image: {
  31499. source: "./media/characters/neapolitan-ananassa/back.svg",
  31500. extra: 2903 / 2736,
  31501. bottom: 0 / 2903
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Normal",
  31508. height: math.unit(15 + 5 / 12, "feet"),
  31509. default: true
  31510. },
  31511. {
  31512. name: "Post-Millenium",
  31513. height: math.unit(35 + 5 / 12, "feet")
  31514. },
  31515. {
  31516. name: "Post-Era",
  31517. height: math.unit(450 + 5 / 12, "feet")
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(300, "meters"),
  31526. weight: math.unit(125000, "tonnes"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/pazuzu/front.svg",
  31530. extra: 877 / 794,
  31531. bottom: 47 / 924
  31532. }
  31533. },
  31534. },
  31535. [
  31536. {
  31537. name: "Macro",
  31538. height: math.unit(300, "meters"),
  31539. default: true
  31540. },
  31541. ]
  31542. ))
  31543. characterMakers.push(() => makeCharacter(
  31544. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31545. {
  31546. side: {
  31547. height: math.unit(10 + 7 / 12, "feet"),
  31548. weight: math.unit(2.5, "tons"),
  31549. name: "Side",
  31550. image: {
  31551. source: "./media/characters/aasha/side.svg",
  31552. extra: 1345 / 1245,
  31553. bottom: 111 / 1456
  31554. }
  31555. },
  31556. back: {
  31557. height: math.unit(10 + 7 / 12, "feet"),
  31558. weight: math.unit(2.5, "tons"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/aasha/back.svg",
  31562. extra: 1133 / 1057,
  31563. bottom: 257 / 1390
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(10 + 7 / 12, "feet"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(6 + 3 / 12, "feet"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/nevan/front.svg",
  31583. extra: 704 / 704,
  31584. bottom: 28 / 732
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(6 + 3 / 12, "feet"),
  31589. name: "Back",
  31590. image: {
  31591. source: "./media/characters/nevan/back.svg",
  31592. extra: 714 / 714,
  31593. bottom: 21 / 735
  31594. }
  31595. },
  31596. frontFlaccid: {
  31597. height: math.unit(6 + 3 / 12, "feet"),
  31598. name: "Front (Flaccid)",
  31599. image: {
  31600. source: "./media/characters/nevan/front-flaccid.svg",
  31601. extra: 704 / 704,
  31602. bottom: 28 / 732
  31603. }
  31604. },
  31605. frontErect: {
  31606. height: math.unit(6 + 3 / 12, "feet"),
  31607. name: "Front (Erect)",
  31608. image: {
  31609. source: "./media/characters/nevan/front-erect.svg",
  31610. extra: 704 / 704,
  31611. bottom: 28 / 732
  31612. }
  31613. },
  31614. backFlaccid: {
  31615. height: math.unit(6 + 3 / 12, "feet"),
  31616. name: "Back (Flaccid)",
  31617. image: {
  31618. source: "./media/characters/nevan/back-flaccid.svg",
  31619. extra: 714 / 714,
  31620. bottom: 21 / 735
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(6 + 3 / 12, "feet"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(4, "feet"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/arhan/front.svg",
  31640. extra: 3368 / 3133,
  31641. bottom: 0 / 3368
  31642. }
  31643. },
  31644. side: {
  31645. height: math.unit(4, "feet"),
  31646. name: "Side",
  31647. image: {
  31648. source: "./media/characters/arhan/side.svg",
  31649. extra: 3347 / 3105,
  31650. bottom: 0 / 3347
  31651. }
  31652. },
  31653. tongue: {
  31654. height: math.unit(1.42, "feet"),
  31655. name: "Tongue",
  31656. image: {
  31657. source: "./media/characters/arhan/tongue.svg"
  31658. }
  31659. },
  31660. head: {
  31661. height: math.unit(0.85, "feet"),
  31662. name: "Head",
  31663. image: {
  31664. source: "./media/characters/arhan/head.svg"
  31665. }
  31666. },
  31667. },
  31668. [
  31669. {
  31670. name: "Normal",
  31671. height: math.unit(4, "feet"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(5 + 7.5 / 12, "feet"),
  31681. weight: math.unit(120, "lb"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/digi-duncan/front.svg",
  31685. extra: 330 / 326,
  31686. bottom: 16 / 346
  31687. }
  31688. },
  31689. side: {
  31690. height: math.unit(5 + 7.5 / 12, "feet"),
  31691. weight: math.unit(120, "lb"),
  31692. name: "Side",
  31693. image: {
  31694. source: "./media/characters/digi-duncan/side.svg",
  31695. extra: 341 / 337,
  31696. bottom: 1 / 342
  31697. }
  31698. },
  31699. back: {
  31700. height: math.unit(5 + 7.5 / 12, "feet"),
  31701. weight: math.unit(120, "lb"),
  31702. name: "Back",
  31703. image: {
  31704. source: "./media/characters/digi-duncan/back.svg",
  31705. extra: 330 / 326,
  31706. bottom: 12 / 342
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Speck",
  31713. height: math.unit(0.25, "mm")
  31714. },
  31715. {
  31716. name: "Micro",
  31717. height: math.unit(5, "mm")
  31718. },
  31719. {
  31720. name: "Tiny",
  31721. height: math.unit(0.5, "inches"),
  31722. default: true
  31723. },
  31724. {
  31725. name: "Human",
  31726. height: math.unit(5 + 7.5 / 12, "feet")
  31727. },
  31728. {
  31729. name: "Minigiant",
  31730. height: math.unit(8 + 5.25, "feet")
  31731. },
  31732. {
  31733. name: "Giant",
  31734. height: math.unit(2000, "feet")
  31735. },
  31736. {
  31737. name: "Mega",
  31738. height: math.unit(371.1, "miles")
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(2, "meters"),
  31747. weight: math.unit(350, "kg"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31751. extra: 898 / 838,
  31752. bottom: 9 / 907
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Micro",
  31759. height: math.unit(8, "meters")
  31760. },
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(50, "meters"),
  31764. default: true
  31765. },
  31766. {
  31767. name: "Macro",
  31768. height: math.unit(500, "meters")
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(6 + 6 / 12, "feet"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/khardesh/front.svg",
  31780. extra: 1788/1596,
  31781. bottom: 66/1854
  31782. }
  31783. },
  31784. back: {
  31785. height: math.unit(6 + 6 / 12, "feet"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/khardesh/back.svg",
  31789. extra: 1781/1584,
  31790. bottom: 68/1849
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Normal",
  31797. height: math.unit(6 + 6 / 12, "feet"),
  31798. default: true
  31799. },
  31800. {
  31801. name: "Normal+",
  31802. height: math.unit(4, "meters")
  31803. },
  31804. {
  31805. name: "Macro",
  31806. height: math.unit(50, "meters")
  31807. },
  31808. {
  31809. name: "Macro+",
  31810. height: math.unit(100, "meters")
  31811. },
  31812. {
  31813. name: "Megamacro",
  31814. height: math.unit(20, "km")
  31815. },
  31816. ]
  31817. ))
  31818. characterMakers.push(() => makeCharacter(
  31819. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31820. {
  31821. front: {
  31822. height: math.unit(6, "feet"),
  31823. weight: math.unit(150, "lb"),
  31824. name: "Front",
  31825. image: {
  31826. source: "./media/characters/kosho/front.svg",
  31827. extra: 1847 / 1847,
  31828. bottom: 86 / 1933
  31829. }
  31830. },
  31831. },
  31832. [
  31833. {
  31834. name: "Second-stage micro",
  31835. height: math.unit(0.5, "inches")
  31836. },
  31837. {
  31838. name: "First-stage micro",
  31839. height: math.unit(6, "inches")
  31840. },
  31841. {
  31842. name: "Normal",
  31843. height: math.unit(6, "feet"),
  31844. default: true
  31845. },
  31846. {
  31847. name: "First-stage macro",
  31848. height: math.unit(72, "feet")
  31849. },
  31850. {
  31851. name: "Second-stage macro",
  31852. height: math.unit(864, "feet")
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31858. {
  31859. normal: {
  31860. height: math.unit(4 + 6 / 12, "feet"),
  31861. name: "Normal",
  31862. image: {
  31863. source: "./media/characters/hydra/normal.svg",
  31864. extra: 2833 / 2634,
  31865. bottom: 68 / 2901
  31866. }
  31867. },
  31868. smol: {
  31869. height: math.unit(0.705, "inches"),
  31870. name: "Smol",
  31871. image: {
  31872. source: "./media/characters/hydra/smol.svg",
  31873. extra: 2715 / 2540,
  31874. bottom: 0 / 2715
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(4 + 6 / 12, "feet"),
  31882. default: true
  31883. }
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(0.6, "cm"),
  31891. name: "Front",
  31892. image: {
  31893. source: "./media/characters/daz/front.svg",
  31894. extra: 1682 / 1164,
  31895. bottom: 42 / 1724
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(0.6, "cm"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(6, "feet"),
  31912. weight: math.unit(235, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/theo-pangolin/front.svg",
  31916. extra: 1996 / 1969,
  31917. bottom: 115 / 2111
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(6, "feet"),
  31922. weight: math.unit(235, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/theo-pangolin/back.svg",
  31926. extra: 1979 / 1979,
  31927. bottom: 40 / 2019
  31928. }
  31929. },
  31930. feral: {
  31931. height: math.unit(2, "feet"),
  31932. weight: math.unit(30, "lb"),
  31933. name: "Feral",
  31934. image: {
  31935. source: "./media/characters/theo-pangolin/feral.svg",
  31936. extra: 803 / 791,
  31937. bottom: 181 / 984
  31938. }
  31939. },
  31940. footFive: {
  31941. height: math.unit(1.43, "feet"),
  31942. name: "Foot (Five Toes)",
  31943. image: {
  31944. source: "./media/characters/theo-pangolin/foot-five.svg"
  31945. }
  31946. },
  31947. footFour: {
  31948. height: math.unit(1.43, "feet"),
  31949. name: "Foot (Four Toes)",
  31950. image: {
  31951. source: "./media/characters/theo-pangolin/foot-four.svg"
  31952. }
  31953. },
  31954. handFour: {
  31955. height: math.unit(0.81, "feet"),
  31956. name: "Hand (Four Fingers)",
  31957. image: {
  31958. source: "./media/characters/theo-pangolin/hand-four.svg"
  31959. }
  31960. },
  31961. handThree: {
  31962. height: math.unit(0.81, "feet"),
  31963. name: "Hand (Three Fingers)",
  31964. image: {
  31965. source: "./media/characters/theo-pangolin/hand-three.svg"
  31966. }
  31967. },
  31968. headFront: {
  31969. height: math.unit(1.37, "feet"),
  31970. name: "Head (Front)",
  31971. image: {
  31972. source: "./media/characters/theo-pangolin/head-front.svg"
  31973. }
  31974. },
  31975. headSide: {
  31976. height: math.unit(1.43, "feet"),
  31977. name: "Head (Side)",
  31978. image: {
  31979. source: "./media/characters/theo-pangolin/head-side.svg"
  31980. }
  31981. },
  31982. tongue: {
  31983. height: math.unit(2.29, "feet"),
  31984. name: "Tongue",
  31985. image: {
  31986. source: "./media/characters/theo-pangolin/tongue.svg"
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Normal",
  31993. height: math.unit(6, "feet")
  31994. },
  31995. {
  31996. name: "Macro",
  31997. height: math.unit(400, "feet"),
  31998. default: true
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(6, "inches"),
  32007. weight: math.unit(0.036, "kg"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/renée/front.svg",
  32011. extra: 900 / 886,
  32012. bottom: 8 / 908
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Nano",
  32019. height: math.unit(1, "nm")
  32020. },
  32021. {
  32022. name: "Micro",
  32023. height: math.unit(1, "mm")
  32024. },
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(6, "inches")
  32028. },
  32029. {
  32030. name: "Macro",
  32031. height: math.unit(2000, "feet"),
  32032. default: true
  32033. },
  32034. {
  32035. name: "Megamacro",
  32036. height: math.unit(2, "km")
  32037. },
  32038. {
  32039. name: "Gigamacro",
  32040. height: math.unit(2000, "km")
  32041. },
  32042. {
  32043. name: "Teramacro",
  32044. height: math.unit(250000, "km")
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(4, "meters"),
  32053. weight: math.unit(150, "kg"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/caledvwlch/front.svg",
  32057. extra: 1757/1537,
  32058. bottom: 31/1788
  32059. }
  32060. },
  32061. side: {
  32062. height: math.unit(4, "meters"),
  32063. weight: math.unit(150, "kg"),
  32064. name: "Side",
  32065. image: {
  32066. source: "./media/characters/caledvwlch/side.svg",
  32067. extra: 1605 / 1536,
  32068. bottom: 31 / 1636
  32069. }
  32070. },
  32071. back: {
  32072. height: math.unit(4, "meters"),
  32073. weight: math.unit(150, "kg"),
  32074. name: "Back",
  32075. image: {
  32076. source: "./media/characters/caledvwlch/back.svg",
  32077. extra: 1635 / 1565,
  32078. bottom: 27 / 1662
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "\"Incognito\"",
  32085. height: math.unit(4, "meters")
  32086. },
  32087. {
  32088. name: "Small rampage",
  32089. height: math.unit(600, "meters")
  32090. },
  32091. {
  32092. name: "Mega",
  32093. height: math.unit(30, "km")
  32094. },
  32095. {
  32096. name: "Home-size",
  32097. height: math.unit(50, "km"),
  32098. default: true
  32099. },
  32100. {
  32101. name: "Giga",
  32102. height: math.unit(300, "km")
  32103. },
  32104. {
  32105. name: "Lounging",
  32106. height: math.unit(11000, "km")
  32107. },
  32108. {
  32109. name: "Planet snacking",
  32110. height: math.unit(2000000, "km")
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32116. {
  32117. front: {
  32118. height: math.unit(6, "feet"),
  32119. weight: math.unit(215, "lb"),
  32120. name: "Front",
  32121. image: {
  32122. source: "./media/characters/sapphire-svell/front.svg",
  32123. extra: 495 / 455,
  32124. bottom: 20 / 515
  32125. }
  32126. },
  32127. back: {
  32128. height: math.unit(6, "feet"),
  32129. weight: math.unit(216, "lb"),
  32130. name: "Back",
  32131. image: {
  32132. source: "./media/characters/sapphire-svell/back.svg",
  32133. extra: 497 / 477,
  32134. bottom: 7 / 504
  32135. }
  32136. },
  32137. maw: {
  32138. height: math.unit(1.57, "feet"),
  32139. name: "Maw",
  32140. image: {
  32141. source: "./media/characters/sapphire-svell/maw.svg"
  32142. }
  32143. },
  32144. foot: {
  32145. height: math.unit(1.07, "feet"),
  32146. name: "Foot",
  32147. image: {
  32148. source: "./media/characters/sapphire-svell/foot.svg"
  32149. }
  32150. },
  32151. toering: {
  32152. height: math.unit(1.7, "inch"),
  32153. name: "Toering",
  32154. image: {
  32155. source: "./media/characters/sapphire-svell/toering.svg"
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(300, "feet"),
  32163. default: true
  32164. },
  32165. {
  32166. name: "Augmented",
  32167. height: math.unit(1250, "feet")
  32168. },
  32169. {
  32170. name: "Unleashed",
  32171. height: math.unit(3000, "feet")
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32177. {
  32178. side: {
  32179. height: math.unit(2 + 3 / 12, "feet"),
  32180. weight: math.unit(110, "lb"),
  32181. name: "Side",
  32182. image: {
  32183. source: "./media/characters/glitch-flux/side.svg",
  32184. extra: 997 / 805,
  32185. bottom: 20 / 1017
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(2 + 3 / 12, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(4, "meters"),
  32202. name: "Front",
  32203. image: {
  32204. source: "./media/characters/mid/front.svg",
  32205. extra: 507 / 476,
  32206. bottom: 17 / 524
  32207. }
  32208. },
  32209. back: {
  32210. height: math.unit(4, "meters"),
  32211. name: "Back",
  32212. image: {
  32213. source: "./media/characters/mid/back.svg",
  32214. extra: 519 / 487,
  32215. bottom: 7 / 526
  32216. }
  32217. },
  32218. stuck: {
  32219. height: math.unit(2.2, "meters"),
  32220. name: "Stuck",
  32221. image: {
  32222. source: "./media/characters/mid/stuck.svg",
  32223. extra: 1951 / 1869,
  32224. bottom: 88 / 2039
  32225. }
  32226. }
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(4, "meters"),
  32232. default: true
  32233. },
  32234. {
  32235. name: "Big",
  32236. height: math.unit(10, "meters")
  32237. },
  32238. {
  32239. name: "Macro",
  32240. height: math.unit(800, "meters")
  32241. },
  32242. {
  32243. name: "Megamacro",
  32244. height: math.unit(100, "km")
  32245. },
  32246. {
  32247. name: "Overgrown",
  32248. height: math.unit(1, "parsec")
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32254. {
  32255. front: {
  32256. height: math.unit(2.5, "meters"),
  32257. weight: math.unit(225, "kg"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/iris/front.svg",
  32261. extra: 3348 / 3251,
  32262. bottom: 205 / 3553
  32263. }
  32264. },
  32265. maw: {
  32266. height: math.unit(0.56, "meter"),
  32267. name: "Maw",
  32268. image: {
  32269. source: "./media/characters/iris/maw.svg"
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Mewter cat",
  32276. height: math.unit(1.2, "meters")
  32277. },
  32278. {
  32279. name: "Normal",
  32280. height: math.unit(2.5, "meters"),
  32281. default: true
  32282. },
  32283. {
  32284. name: "Minimacro",
  32285. height: math.unit(18, "feet")
  32286. },
  32287. {
  32288. name: "Macro",
  32289. height: math.unit(140, "feet")
  32290. },
  32291. {
  32292. name: "Macro+",
  32293. height: math.unit(180, "meters")
  32294. },
  32295. {
  32296. name: "Megamacro",
  32297. height: math.unit(2746, "meters")
  32298. },
  32299. ]
  32300. ))
  32301. characterMakers.push(() => makeCharacter(
  32302. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32303. {
  32304. front: {
  32305. height: math.unit(6, "feet"),
  32306. weight: math.unit(135, "lb"),
  32307. name: "Front",
  32308. image: {
  32309. source: "./media/characters/axel/front.svg",
  32310. extra: 908 / 908,
  32311. bottom: 58 / 966
  32312. }
  32313. },
  32314. side: {
  32315. height: math.unit(6, "feet"),
  32316. weight: math.unit(135, "lb"),
  32317. name: "Side",
  32318. image: {
  32319. source: "./media/characters/axel/side.svg",
  32320. extra: 958 / 958,
  32321. bottom: 11 / 969
  32322. }
  32323. },
  32324. back: {
  32325. height: math.unit(6, "feet"),
  32326. weight: math.unit(135, "lb"),
  32327. name: "Back",
  32328. image: {
  32329. source: "./media/characters/axel/back.svg",
  32330. extra: 887 / 887,
  32331. bottom: 34 / 921
  32332. }
  32333. },
  32334. head: {
  32335. height: math.unit(1.07, "feet"),
  32336. name: "Head",
  32337. image: {
  32338. source: "./media/characters/axel/head.svg"
  32339. }
  32340. },
  32341. beak: {
  32342. height: math.unit(1.4, "feet"),
  32343. name: "Beak",
  32344. image: {
  32345. source: "./media/characters/axel/beak.svg"
  32346. }
  32347. },
  32348. beakSide: {
  32349. height: math.unit(1.4, "feet"),
  32350. name: "Beak Side",
  32351. image: {
  32352. source: "./media/characters/axel/beak-side.svg"
  32353. }
  32354. },
  32355. sheath: {
  32356. height: math.unit(0.5, "feet"),
  32357. name: "Sheath",
  32358. image: {
  32359. source: "./media/characters/axel/sheath.svg"
  32360. }
  32361. },
  32362. dick: {
  32363. height: math.unit(0.98, "feet"),
  32364. name: "Dick",
  32365. image: {
  32366. source: "./media/characters/axel/dick.svg"
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Macro",
  32373. height: math.unit(68, "meters"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(3.5, "meters"),
  32383. weight: math.unit(1200, "kg"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/joanna/front.svg",
  32387. extra: 1596 / 1488,
  32388. bottom: 29 / 1625
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(3.5, "meters"),
  32393. weight: math.unit(1200, "kg"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/joanna/back.svg",
  32397. extra: 1594 / 1495,
  32398. bottom: 26 / 1620
  32399. }
  32400. },
  32401. frontShorts: {
  32402. height: math.unit(3.5, "meters"),
  32403. weight: math.unit(1200, "kg"),
  32404. name: "Front (Shorts)",
  32405. image: {
  32406. source: "./media/characters/joanna/front-shorts.svg",
  32407. extra: 1596 / 1488,
  32408. bottom: 29 / 1625
  32409. }
  32410. },
  32411. frontBiker: {
  32412. height: math.unit(3.5, "meters"),
  32413. weight: math.unit(1200, "kg"),
  32414. name: "Front (Biker)",
  32415. image: {
  32416. source: "./media/characters/joanna/front-biker.svg",
  32417. extra: 1596 / 1488,
  32418. bottom: 29 / 1625
  32419. }
  32420. },
  32421. backBiker: {
  32422. height: math.unit(3.5, "meters"),
  32423. weight: math.unit(1200, "kg"),
  32424. name: "Back (Biker)",
  32425. image: {
  32426. source: "./media/characters/joanna/back-biker.svg",
  32427. extra: 1594 / 1495,
  32428. bottom: 88 / 1682
  32429. }
  32430. },
  32431. bikeLeft: {
  32432. height: math.unit(2.4, "meters"),
  32433. weight: math.unit(1600, "kg"),
  32434. name: "Bike (Left)",
  32435. image: {
  32436. source: "./media/characters/joanna/bike-left.svg",
  32437. extra: 720 / 720,
  32438. bottom: 8 / 728
  32439. }
  32440. },
  32441. bikeRight: {
  32442. height: math.unit(2.4, "meters"),
  32443. weight: math.unit(1600, "kg"),
  32444. name: "Bike (Right)",
  32445. image: {
  32446. source: "./media/characters/joanna/bike-right.svg",
  32447. extra: 720 / 720,
  32448. bottom: 8 / 728
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Incognito",
  32455. height: math.unit(3.5, "meters")
  32456. },
  32457. {
  32458. name: "Casual Big",
  32459. height: math.unit(200, "meters")
  32460. },
  32461. {
  32462. name: "Macro",
  32463. height: math.unit(600, "meters")
  32464. },
  32465. {
  32466. name: "Original",
  32467. height: math.unit(20, "km"),
  32468. default: true
  32469. },
  32470. {
  32471. name: "Giga",
  32472. height: math.unit(400, "km")
  32473. },
  32474. {
  32475. name: "Lounging",
  32476. height: math.unit(1500, "km")
  32477. },
  32478. {
  32479. name: "Planetary",
  32480. height: math.unit(200000, "km")
  32481. },
  32482. ]
  32483. ))
  32484. characterMakers.push(() => makeCharacter(
  32485. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32486. {
  32487. front: {
  32488. height: math.unit(6, "feet"),
  32489. weight: math.unit(150, "lb"),
  32490. name: "Front",
  32491. image: {
  32492. source: "./media/characters/hugo-sigil/front.svg",
  32493. extra: 522 / 500,
  32494. bottom: 2 / 524
  32495. }
  32496. },
  32497. back: {
  32498. height: math.unit(6, "feet"),
  32499. weight: math.unit(150, "lb"),
  32500. name: "Back",
  32501. image: {
  32502. source: "./media/characters/hugo-sigil/back.svg",
  32503. extra: 519 / 495,
  32504. bottom: 5 / 524
  32505. }
  32506. },
  32507. maw: {
  32508. height: math.unit(1.4, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Maw",
  32511. image: {
  32512. source: "./media/characters/hugo-sigil/maw.svg"
  32513. }
  32514. },
  32515. feet: {
  32516. height: math.unit(1.56, "feet"),
  32517. weight: math.unit(150, "lb"),
  32518. name: "Feet",
  32519. image: {
  32520. source: "./media/characters/hugo-sigil/feet.svg",
  32521. extra: 177 / 177,
  32522. bottom: 12 / 189
  32523. }
  32524. },
  32525. },
  32526. [
  32527. {
  32528. name: "Normal",
  32529. height: math.unit(6, "feet")
  32530. },
  32531. {
  32532. name: "Macro",
  32533. height: math.unit(200, "feet"),
  32534. default: true
  32535. },
  32536. ]
  32537. ))
  32538. characterMakers.push(() => makeCharacter(
  32539. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32540. {
  32541. front: {
  32542. height: math.unit(6, "feet"),
  32543. weight: math.unit(150, "lb"),
  32544. name: "Front",
  32545. image: {
  32546. source: "./media/characters/peri/front.svg",
  32547. extra: 2354 / 2233,
  32548. bottom: 49 / 2403
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Really Small",
  32555. height: math.unit(1, "nm")
  32556. },
  32557. {
  32558. name: "Micro",
  32559. height: math.unit(4, "inches")
  32560. },
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(7, "inches"),
  32564. default: true
  32565. },
  32566. {
  32567. name: "Macro",
  32568. height: math.unit(400, "feet")
  32569. },
  32570. {
  32571. name: "Megamacro",
  32572. height: math.unit(100, "miles")
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32578. {
  32579. frontSlim: {
  32580. height: math.unit(7, "feet"),
  32581. name: "Front (Slim)",
  32582. image: {
  32583. source: "./media/characters/issilora/front-slim.svg",
  32584. extra: 529 / 449,
  32585. bottom: 53 / 582
  32586. }
  32587. },
  32588. sideSlim: {
  32589. height: math.unit(7, "feet"),
  32590. name: "Side (Slim)",
  32591. image: {
  32592. source: "./media/characters/issilora/side-slim.svg",
  32593. extra: 570 / 480,
  32594. bottom: 30 / 600
  32595. }
  32596. },
  32597. backSlim: {
  32598. height: math.unit(7, "feet"),
  32599. name: "Back (Slim)",
  32600. image: {
  32601. source: "./media/characters/issilora/back-slim.svg",
  32602. extra: 537 / 455,
  32603. bottom: 46 / 583
  32604. }
  32605. },
  32606. frontBuff: {
  32607. height: math.unit(7, "feet"),
  32608. name: "Front (Buff)",
  32609. image: {
  32610. source: "./media/characters/issilora/front-buff.svg",
  32611. extra: 2310 / 2035,
  32612. bottom: 335 / 2645
  32613. }
  32614. },
  32615. head: {
  32616. height: math.unit(1.94, "feet"),
  32617. name: "Head",
  32618. image: {
  32619. source: "./media/characters/issilora/head.svg"
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Minimum",
  32626. height: math.unit(7, "feet")
  32627. },
  32628. {
  32629. name: "Comfortable",
  32630. height: math.unit(17, "feet")
  32631. },
  32632. {
  32633. name: "Fun Size",
  32634. height: math.unit(47, "feet")
  32635. },
  32636. {
  32637. name: "Natural Macro",
  32638. height: math.unit(137, "feet"),
  32639. default: true
  32640. },
  32641. {
  32642. name: "Maximum Kaiju",
  32643. height: math.unit(397, "feet")
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32649. {
  32650. front: {
  32651. height: math.unit(50 + 9/12, "feet"),
  32652. weight: math.unit(32.8, "tons"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/irb'iiritaahn/front.svg",
  32656. extra: 1878/1826,
  32657. bottom: 326/2204
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(50 + 9/12, "feet"),
  32662. weight: math.unit(32.8, "tons"),
  32663. name: "Back",
  32664. image: {
  32665. source: "./media/characters/irb'iiritaahn/back.svg",
  32666. extra: 2052/2018,
  32667. bottom: 152/2204
  32668. }
  32669. },
  32670. head: {
  32671. height: math.unit(12.86, "feet"),
  32672. name: "Head",
  32673. image: {
  32674. source: "./media/characters/irb'iiritaahn/head.svg"
  32675. }
  32676. },
  32677. maw: {
  32678. height: math.unit(9.66, "feet"),
  32679. name: "Maw",
  32680. image: {
  32681. source: "./media/characters/irb'iiritaahn/maw.svg"
  32682. }
  32683. },
  32684. frontDick: {
  32685. height: math.unit(8.78461, "feet"),
  32686. name: "Front Dick",
  32687. image: {
  32688. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32689. }
  32690. },
  32691. rearDick: {
  32692. height: math.unit(8.78461, "feet"),
  32693. name: "Rear Dick",
  32694. image: {
  32695. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32696. }
  32697. },
  32698. rearDickUnfolded: {
  32699. height: math.unit(8.78, "feet"),
  32700. name: "Rear Dick (Unfolded)",
  32701. image: {
  32702. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32703. }
  32704. },
  32705. wings: {
  32706. height: math.unit(43, "feet"),
  32707. name: "Wings",
  32708. image: {
  32709. source: "./media/characters/irb'iiritaahn/wings.svg"
  32710. }
  32711. },
  32712. },
  32713. [
  32714. {
  32715. name: "Macro",
  32716. height: math.unit(50 + 9/12, "feet"),
  32717. default: true
  32718. },
  32719. ]
  32720. ))
  32721. characterMakers.push(() => makeCharacter(
  32722. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32723. {
  32724. front: {
  32725. height: math.unit(205, "cm"),
  32726. weight: math.unit(102, "kg"),
  32727. name: "Front",
  32728. image: {
  32729. source: "./media/characters/irbisgreif/front.svg",
  32730. extra: 785/706,
  32731. bottom: 13/798
  32732. }
  32733. },
  32734. back: {
  32735. height: math.unit(205, "cm"),
  32736. weight: math.unit(102, "kg"),
  32737. name: "Back",
  32738. image: {
  32739. source: "./media/characters/irbisgreif/back.svg",
  32740. extra: 713/701,
  32741. bottom: 26/739
  32742. }
  32743. },
  32744. frontDressed: {
  32745. height: math.unit(216, "cm"),
  32746. weight: math.unit(102, "kg"),
  32747. name: "Front-dressed",
  32748. image: {
  32749. source: "./media/characters/irbisgreif/front-dressed.svg",
  32750. extra: 902/776,
  32751. bottom: 14/916
  32752. }
  32753. },
  32754. sideDressed: {
  32755. height: math.unit(195, "cm"),
  32756. weight: math.unit(102, "kg"),
  32757. name: "Side-dressed",
  32758. image: {
  32759. source: "./media/characters/irbisgreif/side-dressed.svg",
  32760. extra: 788/688,
  32761. bottom: 21/809
  32762. }
  32763. },
  32764. backDressed: {
  32765. height: math.unit(216, "cm"),
  32766. weight: math.unit(102, "kg"),
  32767. name: "Back-dressed",
  32768. image: {
  32769. source: "./media/characters/irbisgreif/back-dressed.svg",
  32770. extra: 901/783,
  32771. bottom: 10/911
  32772. }
  32773. },
  32774. dick: {
  32775. height: math.unit(0.49, "feet"),
  32776. name: "Dick",
  32777. image: {
  32778. source: "./media/characters/irbisgreif/dick.svg"
  32779. }
  32780. },
  32781. wingTop: {
  32782. height: math.unit(1.93 , "feet"),
  32783. name: "Wing-top",
  32784. image: {
  32785. source: "./media/characters/irbisgreif/wing-top.svg"
  32786. }
  32787. },
  32788. wingBottom: {
  32789. height: math.unit(1.93 , "feet"),
  32790. name: "Wing-bottom",
  32791. image: {
  32792. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(216, "cm"),
  32800. default: true
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32806. {
  32807. front: {
  32808. height: math.unit(6, "feet"),
  32809. weight: math.unit(150, "lb"),
  32810. name: "Front",
  32811. image: {
  32812. source: "./media/characters/pride/front.svg",
  32813. extra: 1299/1230,
  32814. bottom: 18/1317
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(7, "feet")
  32822. },
  32823. {
  32824. name: "Mini-macro",
  32825. height: math.unit(11, "feet")
  32826. },
  32827. {
  32828. name: "Macro",
  32829. height: math.unit(15, "meters"),
  32830. default: true
  32831. },
  32832. {
  32833. name: "Macro+",
  32834. height: math.unit(40, "meters")
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32840. {
  32841. front: {
  32842. height: math.unit(4 + 2 / 12, "feet"),
  32843. weight: math.unit(95, "lb"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/vaelophis-nyx/front.svg",
  32847. extra: 2532/2330,
  32848. bottom: 0/2532
  32849. }
  32850. },
  32851. back: {
  32852. height: math.unit(4 + 2 / 12, "feet"),
  32853. weight: math.unit(95, "lb"),
  32854. name: "Back",
  32855. image: {
  32856. source: "./media/characters/vaelophis-nyx/back.svg",
  32857. extra: 2484/2361,
  32858. bottom: 0/2484
  32859. }
  32860. },
  32861. feralSide: {
  32862. height: math.unit(2 + 1/12, "feet"),
  32863. weight: math.unit(20, "lb"),
  32864. name: "Feral (Side)",
  32865. image: {
  32866. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32867. extra: 1721/1581,
  32868. bottom: 70/1791
  32869. }
  32870. },
  32871. feralLazing: {
  32872. height: math.unit(1.08, "feet"),
  32873. weight: math.unit(20, "lb"),
  32874. name: "Feral (Lazing)",
  32875. image: {
  32876. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32877. extra: 822/822,
  32878. bottom: 248/1070
  32879. }
  32880. },
  32881. ear: {
  32882. height: math.unit(0.416, "feet"),
  32883. name: "Ear",
  32884. image: {
  32885. source: "./media/characters/vaelophis-nyx/ear.svg"
  32886. }
  32887. },
  32888. eye: {
  32889. height: math.unit(0.0748, "feet"),
  32890. name: "Eye",
  32891. image: {
  32892. source: "./media/characters/vaelophis-nyx/eye.svg"
  32893. }
  32894. },
  32895. mouth: {
  32896. height: math.unit(0.378, "feet"),
  32897. name: "Mouth",
  32898. image: {
  32899. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32900. }
  32901. },
  32902. spade: {
  32903. height: math.unit(0.55, "feet"),
  32904. name: "Spade",
  32905. image: {
  32906. source: "./media/characters/vaelophis-nyx/spade.svg"
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Normal",
  32913. height: math.unit(4 + 2/12, "feet"),
  32914. default: true
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32920. {
  32921. front: {
  32922. height: math.unit(7, "feet"),
  32923. weight: math.unit(231, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/flux/front.svg",
  32927. extra: 919/871,
  32928. bottom: 0/919
  32929. }
  32930. },
  32931. back: {
  32932. height: math.unit(7, "feet"),
  32933. weight: math.unit(231, "lb"),
  32934. name: "Back",
  32935. image: {
  32936. source: "./media/characters/flux/back.svg",
  32937. extra: 1040/992,
  32938. bottom: 0/1040
  32939. }
  32940. },
  32941. frontDressed: {
  32942. height: math.unit(7, "feet"),
  32943. weight: math.unit(231, "lb"),
  32944. name: "Front (Dressed)",
  32945. image: {
  32946. source: "./media/characters/flux/front-dressed.svg",
  32947. extra: 919/871,
  32948. bottom: 0/919
  32949. }
  32950. },
  32951. feralSide: {
  32952. height: math.unit(5, "feet"),
  32953. weight: math.unit(150, "lb"),
  32954. name: "Feral (Side)",
  32955. image: {
  32956. source: "./media/characters/flux/feral-side.svg",
  32957. extra: 598/528,
  32958. bottom: 28/626
  32959. }
  32960. },
  32961. head: {
  32962. height: math.unit(1.585, "feet"),
  32963. name: "Head",
  32964. image: {
  32965. source: "./media/characters/flux/head.svg"
  32966. }
  32967. },
  32968. headSide: {
  32969. height: math.unit(1.74, "feet"),
  32970. name: "Head (Side)",
  32971. image: {
  32972. source: "./media/characters/flux/head-side.svg"
  32973. }
  32974. },
  32975. headSideFire: {
  32976. height: math.unit(1.76, "feet"),
  32977. name: "Head (Side, Fire)",
  32978. image: {
  32979. source: "./media/characters/flux/head-side-fire.svg"
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(7, "feet"),
  32987. default: true
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32993. {
  32994. front: {
  32995. height: math.unit(9, "feet"),
  32996. weight: math.unit(1012, "lb"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/ulfra-lupae/front.svg",
  33000. extra: 1083/1011,
  33001. bottom: 67/1150
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Micro",
  33008. height: math.unit(6, "inches")
  33009. },
  33010. {
  33011. name: "Socializing",
  33012. height: math.unit(6 + 5/12, "feet")
  33013. },
  33014. {
  33015. name: "Normal",
  33016. height: math.unit(9, "feet"),
  33017. default: true
  33018. },
  33019. {
  33020. name: "Macro",
  33021. height: math.unit(150, "feet")
  33022. },
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33027. {
  33028. front: {
  33029. height: math.unit(5 + 2/12, "feet"),
  33030. weight: math.unit(120, "lb"),
  33031. name: "Front",
  33032. image: {
  33033. source: "./media/characters/timber/front.svg",
  33034. extra: 2814/2705,
  33035. bottom: 181/2995
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Normal",
  33042. height: math.unit(5 + 2/12, "feet"),
  33043. default: true
  33044. },
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33049. {
  33050. front: {
  33051. height: math.unit(9, "feet"),
  33052. name: "Front",
  33053. image: {
  33054. source: "./media/characters/nicki/front.svg",
  33055. extra: 1240/990,
  33056. bottom: 45/1285
  33057. },
  33058. form: "anthro",
  33059. default: true
  33060. },
  33061. side: {
  33062. height: math.unit(9, "feet"),
  33063. name: "Side",
  33064. image: {
  33065. source: "./media/characters/nicki/side.svg",
  33066. extra: 1047/973,
  33067. bottom: 61/1108
  33068. },
  33069. form: "anthro"
  33070. },
  33071. back: {
  33072. height: math.unit(9, "feet"),
  33073. name: "Back",
  33074. image: {
  33075. source: "./media/characters/nicki/back.svg",
  33076. extra: 1006/965,
  33077. bottom: 39/1045
  33078. },
  33079. form: "anthro"
  33080. },
  33081. taur: {
  33082. height: math.unit(15, "feet"),
  33083. name: "Taur",
  33084. image: {
  33085. source: "./media/characters/nicki/taur.svg",
  33086. extra: 1592/1347,
  33087. bottom: 0/1592
  33088. },
  33089. form: "taur",
  33090. default: true
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(9, "feet"),
  33097. form: "anthro",
  33098. default: true
  33099. },
  33100. {
  33101. name: "Normal",
  33102. height: math.unit(15, "feet"),
  33103. form: "taur",
  33104. default: true
  33105. }
  33106. ],
  33107. {
  33108. "anthro": {
  33109. name: "Anthro",
  33110. default: true
  33111. },
  33112. "taur": {
  33113. name: "Taur"
  33114. }
  33115. }
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33119. {
  33120. front: {
  33121. height: math.unit(7 + 10/12, "feet"),
  33122. weight: math.unit(3.5, "tons"),
  33123. name: "Front",
  33124. image: {
  33125. source: "./media/characters/lee/front.svg",
  33126. extra: 1773/1615,
  33127. bottom: 86/1859
  33128. }
  33129. },
  33130. hand: {
  33131. height: math.unit(1.78, "feet"),
  33132. name: "Hand",
  33133. image: {
  33134. source: "./media/characters/lee/hand.svg"
  33135. }
  33136. },
  33137. maw: {
  33138. height: math.unit(1.18, "feet"),
  33139. name: "Maw",
  33140. image: {
  33141. source: "./media/characters/lee/maw.svg"
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Normal",
  33148. height: math.unit(7 + 10/12, "feet"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33155. {
  33156. front: {
  33157. height: math.unit(9, "feet"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/guti/front.svg",
  33161. extra: 4551/4355,
  33162. bottom: 123/4674
  33163. }
  33164. },
  33165. tongue: {
  33166. height: math.unit(1, "feet"),
  33167. name: "Tongue",
  33168. image: {
  33169. source: "./media/characters/guti/tongue.svg"
  33170. }
  33171. },
  33172. paw: {
  33173. height: math.unit(1.18, "feet"),
  33174. name: "Paw",
  33175. image: {
  33176. source: "./media/characters/guti/paw.svg"
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(9, "feet"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33190. {
  33191. side: {
  33192. height: math.unit(5, "meters"),
  33193. name: "Side",
  33194. image: {
  33195. source: "./media/characters/vesper/side.svg",
  33196. extra: 1605/1518,
  33197. bottom: 0/1605
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Small",
  33204. height: math.unit(5, "meters")
  33205. },
  33206. {
  33207. name: "Sage",
  33208. height: math.unit(100, "meters"),
  33209. default: true
  33210. },
  33211. {
  33212. name: "Fun Size",
  33213. height: math.unit(600, "meters")
  33214. },
  33215. {
  33216. name: "Goddess",
  33217. height: math.unit(20000, "km")
  33218. },
  33219. {
  33220. name: "Maximum",
  33221. height: math.unit(5, "galaxies")
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33227. {
  33228. front: {
  33229. height: math.unit(6 + 3/12, "feet"),
  33230. weight: math.unit(190, "lb"),
  33231. name: "Front",
  33232. image: {
  33233. source: "./media/characters/gawain/front.svg",
  33234. extra: 2222/2139,
  33235. bottom: 90/2312
  33236. }
  33237. },
  33238. back: {
  33239. height: math.unit(6 + 3/12, "feet"),
  33240. weight: math.unit(190, "lb"),
  33241. name: "Back",
  33242. image: {
  33243. source: "./media/characters/gawain/back.svg",
  33244. extra: 2199/2111,
  33245. bottom: 73/2272
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Normal",
  33252. height: math.unit(6 + 3/12, "feet"),
  33253. default: true
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33259. {
  33260. side: {
  33261. height: math.unit(3.5, "meters"),
  33262. weight: math.unit(16000, "lb"),
  33263. name: "Side",
  33264. image: {
  33265. source: "./media/characters/dascalti/side.svg",
  33266. extra: 392/273,
  33267. bottom: 47/439
  33268. }
  33269. },
  33270. breath: {
  33271. height: math.unit(7.4, "feet"),
  33272. name: "Breath",
  33273. image: {
  33274. source: "./media/characters/dascalti/breath.svg"
  33275. }
  33276. },
  33277. fed: {
  33278. height: math.unit(3.6, "meters"),
  33279. weight: math.unit(16000, "lb"),
  33280. name: "Fed",
  33281. image: {
  33282. source: "./media/characters/dascalti/fed.svg",
  33283. extra: 1419/820,
  33284. bottom: 95/1514
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Normal",
  33291. height: math.unit(3.5, "meters"),
  33292. default: true
  33293. },
  33294. ]
  33295. ))
  33296. characterMakers.push(() => makeCharacter(
  33297. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33298. {
  33299. front: {
  33300. height: math.unit(3 + 5/12, "feet"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/mauve/front.svg",
  33304. extra: 1126/1033,
  33305. bottom: 65/1191
  33306. }
  33307. },
  33308. side: {
  33309. height: math.unit(3 + 5/12, "feet"),
  33310. name: "Side",
  33311. image: {
  33312. source: "./media/characters/mauve/side.svg",
  33313. extra: 1089/1001,
  33314. bottom: 29/1118
  33315. }
  33316. },
  33317. back: {
  33318. height: math.unit(3 + 5/12, "feet"),
  33319. name: "Back",
  33320. image: {
  33321. source: "./media/characters/mauve/back.svg",
  33322. extra: 1173/1053,
  33323. bottom: 109/1282
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(3 + 5/12, "feet"),
  33331. default: true
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(6 + 3/12, "feet"),
  33340. weight: math.unit(430, "lb"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/carlos/front.svg",
  33344. extra: 1964/1913,
  33345. bottom: 70/2034
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Normal",
  33352. height: math.unit(6 + 3/12, "feet"),
  33353. default: true
  33354. },
  33355. ]
  33356. ))
  33357. characterMakers.push(() => makeCharacter(
  33358. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33359. {
  33360. back: {
  33361. height: math.unit(5 + 10/12, "feet"),
  33362. weight: math.unit(200, "lb"),
  33363. name: "Back",
  33364. image: {
  33365. source: "./media/characters/jax/back.svg",
  33366. extra: 764/739,
  33367. bottom: 25/789
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Normal",
  33374. height: math.unit(5 + 10/12, "feet"),
  33375. default: true
  33376. },
  33377. ]
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(8, "feet"),
  33384. weight: math.unit(250, "lb"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/eikthynir/front.svg",
  33388. extra: 1332/1166,
  33389. bottom: 82/1414
  33390. }
  33391. },
  33392. back: {
  33393. height: math.unit(8, "feet"),
  33394. weight: math.unit(250, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/eikthynir/back.svg",
  33398. extra: 1342/1190,
  33399. bottom: 19/1361
  33400. }
  33401. },
  33402. dick: {
  33403. height: math.unit(2.35, "feet"),
  33404. name: "Dick",
  33405. image: {
  33406. source: "./media/characters/eikthynir/dick.svg"
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(8, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(99, "meters"),
  33423. weight: math.unit(13000, "tons"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/zlmos/front.svg",
  33427. extra: 2202/1992,
  33428. bottom: 315/2517
  33429. }
  33430. },
  33431. },
  33432. [
  33433. {
  33434. name: "Macro",
  33435. height: math.unit(99, "meters"),
  33436. default: true
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(6 + 5/12, "feet"),
  33445. name: "Front",
  33446. image: {
  33447. source: "./media/characters/purri/front.svg",
  33448. extra: 1698/1610,
  33449. bottom: 32/1730
  33450. }
  33451. },
  33452. frontAlt: {
  33453. height: math.unit(6 + 5/12, "feet"),
  33454. name: "Front (Alt)",
  33455. image: {
  33456. source: "./media/characters/purri/front-alt.svg",
  33457. extra: 450/420,
  33458. bottom: 26/476
  33459. }
  33460. },
  33461. boots: {
  33462. height: math.unit(5.5, "feet"),
  33463. name: "Boots",
  33464. image: {
  33465. source: "./media/characters/purri/boots.svg",
  33466. extra: 905/853,
  33467. bottom: 18/923
  33468. }
  33469. },
  33470. lying: {
  33471. height: math.unit(2, "feet"),
  33472. name: "Lying",
  33473. image: {
  33474. source: "./media/characters/purri/lying.svg",
  33475. extra: 940/843,
  33476. bottom: 146/1086
  33477. }
  33478. },
  33479. devious: {
  33480. height: math.unit(1.77, "feet"),
  33481. name: "Devious",
  33482. image: {
  33483. source: "./media/characters/purri/devious.svg",
  33484. extra: 1440/1155,
  33485. bottom: 147/1587
  33486. }
  33487. },
  33488. bean: {
  33489. height: math.unit(1.94, "feet"),
  33490. name: "Bean",
  33491. image: {
  33492. source: "./media/characters/purri/bean.svg"
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Micro",
  33499. height: math.unit(1, "mm")
  33500. },
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(6 + 5/12, "feet"),
  33504. default: true
  33505. },
  33506. {
  33507. name: "Macro :3c",
  33508. height: math.unit(2, "miles")
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(6 + 2/12, "feet"),
  33517. weight: math.unit(250, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/moonlight/front.svg",
  33521. extra: 1044/908,
  33522. bottom: 56/1100
  33523. }
  33524. },
  33525. feral: {
  33526. height: math.unit(3 + 1/12, "feet"),
  33527. weight: math.unit(50, "kg"),
  33528. name: "Feral",
  33529. image: {
  33530. source: "./media/characters/moonlight/feral.svg",
  33531. extra: 3705/2791,
  33532. bottom: 145/3850
  33533. }
  33534. },
  33535. paw: {
  33536. height: math.unit(1, "feet"),
  33537. name: "Paw",
  33538. image: {
  33539. source: "./media/characters/moonlight/paw.svg"
  33540. }
  33541. },
  33542. paws: {
  33543. height: math.unit(0.98, "feet"),
  33544. name: "Paws",
  33545. image: {
  33546. source: "./media/characters/moonlight/paws.svg",
  33547. extra: 939/939,
  33548. bottom: 50/989
  33549. }
  33550. },
  33551. mouth: {
  33552. height: math.unit(0.48, "feet"),
  33553. name: "Mouth",
  33554. image: {
  33555. source: "./media/characters/moonlight/mouth.svg"
  33556. }
  33557. },
  33558. dick: {
  33559. height: math.unit(1.46, "feet"),
  33560. name: "Dick",
  33561. image: {
  33562. source: "./media/characters/moonlight/dick.svg"
  33563. }
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(6 + 2/12, "feet"),
  33570. default: true
  33571. },
  33572. {
  33573. name: "Macro",
  33574. height: math.unit(300, "feet")
  33575. },
  33576. {
  33577. name: "Macro+",
  33578. height: math.unit(1, "mile")
  33579. },
  33580. {
  33581. name: "Mt. Moon",
  33582. height: math.unit(5, "miles")
  33583. },
  33584. {
  33585. name: "Megamacro",
  33586. height: math.unit(15, "miles")
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33592. {
  33593. back: {
  33594. height: math.unit(6, "feet"),
  33595. weight: math.unit(150, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/sylen/back.svg",
  33599. extra: 1335/1273,
  33600. bottom: 107/1442
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(5 + 5/12, "feet")
  33608. },
  33609. {
  33610. name: "Megamacro",
  33611. height: math.unit(3, "miles"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(190, "lb"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/huttser/front.svg",
  33625. extra: 1152/1058,
  33626. bottom: 23/1175
  33627. }
  33628. },
  33629. side: {
  33630. height: math.unit(6, "feet"),
  33631. weight: math.unit(190, "lb"),
  33632. name: "Side",
  33633. image: {
  33634. source: "./media/characters/huttser/side.svg",
  33635. extra: 1174/1065,
  33636. bottom: 18/1192
  33637. }
  33638. },
  33639. back: {
  33640. height: math.unit(6, "feet"),
  33641. weight: math.unit(190, "lb"),
  33642. name: "Back",
  33643. image: {
  33644. source: "./media/characters/huttser/back.svg",
  33645. extra: 1158/1056,
  33646. bottom: 12/1170
  33647. }
  33648. },
  33649. },
  33650. [
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33655. {
  33656. side: {
  33657. height: math.unit(12 + 9/12, "feet"),
  33658. weight: math.unit(15000, "lb"),
  33659. name: "Side",
  33660. image: {
  33661. source: "./media/characters/faan/side.svg",
  33662. extra: 2747/2697,
  33663. bottom: 0/2747
  33664. }
  33665. },
  33666. front: {
  33667. height: math.unit(12 + 9/12, "feet"),
  33668. weight: math.unit(15000, "lb"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/faan/front.svg",
  33672. extra: 607/571,
  33673. bottom: 24/631
  33674. }
  33675. },
  33676. head: {
  33677. height: math.unit(2.85, "feet"),
  33678. name: "Head",
  33679. image: {
  33680. source: "./media/characters/faan/head.svg"
  33681. }
  33682. },
  33683. headAlt: {
  33684. height: math.unit(3.13, "feet"),
  33685. name: "Head-alt",
  33686. image: {
  33687. source: "./media/characters/faan/head-alt.svg"
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(12 + 9/12, "feet"),
  33695. default: true
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33701. {
  33702. front: {
  33703. height: math.unit(6, "feet"),
  33704. weight: math.unit(300, "lb"),
  33705. name: "Front",
  33706. image: {
  33707. source: "./media/characters/tanio/front.svg",
  33708. extra: 711/673,
  33709. bottom: 25/736
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Normal",
  33716. height: math.unit(6, "feet"),
  33717. default: true
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33723. {
  33724. front: {
  33725. height: math.unit(3, "inches"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/noboru/front.svg",
  33729. extra: 1039/932,
  33730. bottom: 18/1057
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Micro",
  33737. height: math.unit(3, "inches"),
  33738. default: true
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33744. {
  33745. front: {
  33746. height: math.unit(1.85, "meters"),
  33747. weight: math.unit(80, "kg"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/daniel-barrett/front.svg",
  33751. extra: 355/337,
  33752. bottom: 9/364
  33753. }
  33754. },
  33755. },
  33756. [
  33757. {
  33758. name: "Pico",
  33759. height: math.unit(0.0433, "mm")
  33760. },
  33761. {
  33762. name: "Nano",
  33763. height: math.unit(1.5, "mm")
  33764. },
  33765. {
  33766. name: "Micro",
  33767. height: math.unit(5.3, "cm"),
  33768. default: true
  33769. },
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(1.85, "meters")
  33773. },
  33774. {
  33775. name: "Macro",
  33776. height: math.unit(64.7, "meters")
  33777. },
  33778. {
  33779. name: "Megamacro",
  33780. height: math.unit(2.26, "km")
  33781. },
  33782. {
  33783. name: "Gigamacro",
  33784. height: math.unit(79, "km")
  33785. },
  33786. {
  33787. name: "Teramacro",
  33788. height: math.unit(2765, "km")
  33789. },
  33790. {
  33791. name: "Petamacro",
  33792. height: math.unit(96678, "km")
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(30, "meters"),
  33801. weight: math.unit(400, "tons"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/zeel/front.svg",
  33805. extra: 2599/2599,
  33806. bottom: 226/2825
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Macro",
  33813. height: math.unit(30, "meters"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(6 + 7/12, "feet"),
  33823. weight: math.unit(210, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/tarn/front.svg",
  33827. extra: 3517/3220,
  33828. bottom: 91/3608
  33829. }
  33830. },
  33831. back: {
  33832. height: math.unit(6 + 7/12, "feet"),
  33833. weight: math.unit(210, "lb"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/tarn/back.svg",
  33837. extra: 3566/3241,
  33838. bottom: 34/3600
  33839. }
  33840. },
  33841. dick: {
  33842. height: math.unit(1.65, "feet"),
  33843. name: "Dick",
  33844. image: {
  33845. source: "./media/characters/tarn/dick.svg"
  33846. }
  33847. },
  33848. paw: {
  33849. height: math.unit(1.80, "feet"),
  33850. name: "Paw",
  33851. image: {
  33852. source: "./media/characters/tarn/paw.svg"
  33853. }
  33854. },
  33855. tongue: {
  33856. height: math.unit(0.97, "feet"),
  33857. name: "Tongue",
  33858. image: {
  33859. source: "./media/characters/tarn/tongue.svg"
  33860. }
  33861. },
  33862. },
  33863. [
  33864. {
  33865. name: "Micro",
  33866. height: math.unit(4, "inches")
  33867. },
  33868. {
  33869. name: "Normal",
  33870. height: math.unit(6 + 7/12, "feet"),
  33871. default: true
  33872. },
  33873. {
  33874. name: "Macro",
  33875. height: math.unit(300, "feet")
  33876. },
  33877. ]
  33878. ))
  33879. characterMakers.push(() => makeCharacter(
  33880. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33881. {
  33882. front: {
  33883. height: math.unit(5 + 7/12, "feet"),
  33884. weight: math.unit(80, "kg"),
  33885. name: "Front",
  33886. image: {
  33887. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33888. extra: 3023/2865,
  33889. bottom: 33/3056
  33890. }
  33891. },
  33892. back: {
  33893. height: math.unit(5 + 7/12, "feet"),
  33894. weight: math.unit(80, "kg"),
  33895. name: "Back",
  33896. image: {
  33897. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33898. extra: 3020/2886,
  33899. bottom: 30/3050
  33900. }
  33901. },
  33902. dick: {
  33903. height: math.unit(0.98, "feet"),
  33904. name: "Dick",
  33905. image: {
  33906. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33907. }
  33908. },
  33909. anatomy: {
  33910. height: math.unit(2.86, "feet"),
  33911. name: "Anatomy",
  33912. image: {
  33913. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Really Small",
  33920. height: math.unit(2, "inches")
  33921. },
  33922. {
  33923. name: "Micro",
  33924. height: math.unit(5.583, "inches")
  33925. },
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(5 + 7/12, "feet"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Macro",
  33933. height: math.unit(67, "feet")
  33934. },
  33935. {
  33936. name: "Megamacro",
  33937. height: math.unit(134, "feet")
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33943. {
  33944. front: {
  33945. height: math.unit(9, "feet"),
  33946. weight: math.unit(120, "lb"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/sally/front.svg",
  33950. extra: 1506/1349,
  33951. bottom: 66/1572
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(9, "feet"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(8, "feet"),
  33968. weight: math.unit(900, "lb"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/owen/front.svg",
  33972. extra: 1761/1657,
  33973. bottom: 74/1835
  33974. }
  33975. },
  33976. side: {
  33977. height: math.unit(8, "feet"),
  33978. weight: math.unit(900, "lb"),
  33979. name: "Side",
  33980. image: {
  33981. source: "./media/characters/owen/side.svg",
  33982. extra: 1797/1734,
  33983. bottom: 30/1827
  33984. }
  33985. },
  33986. back: {
  33987. height: math.unit(8, "feet"),
  33988. weight: math.unit(900, "lb"),
  33989. name: "Back",
  33990. image: {
  33991. source: "./media/characters/owen/back.svg",
  33992. extra: 1796/1706,
  33993. bottom: 59/1855
  33994. }
  33995. },
  33996. maw: {
  33997. height: math.unit(1.76, "feet"),
  33998. name: "Maw",
  33999. image: {
  34000. source: "./media/characters/owen/maw.svg"
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Normal",
  34007. height: math.unit(8, "feet"),
  34008. default: true
  34009. },
  34010. ]
  34011. ))
  34012. characterMakers.push(() => makeCharacter(
  34013. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34014. {
  34015. front: {
  34016. height: math.unit(4, "feet"),
  34017. weight: math.unit(400, "lb"),
  34018. name: "Front",
  34019. image: {
  34020. source: "./media/characters/ryth/front.svg",
  34021. extra: 1920/1748,
  34022. bottom: 42/1962
  34023. }
  34024. },
  34025. back: {
  34026. height: math.unit(4, "feet"),
  34027. weight: math.unit(400, "lb"),
  34028. name: "Back",
  34029. image: {
  34030. source: "./media/characters/ryth/back.svg",
  34031. extra: 1897/1690,
  34032. bottom: 89/1986
  34033. }
  34034. },
  34035. mouth: {
  34036. height: math.unit(1.39, "feet"),
  34037. name: "Mouth",
  34038. image: {
  34039. source: "./media/characters/ryth/mouth.svg"
  34040. }
  34041. },
  34042. tailmaw: {
  34043. height: math.unit(1.23, "feet"),
  34044. name: "Tailmaw",
  34045. image: {
  34046. source: "./media/characters/ryth/tailmaw.svg"
  34047. }
  34048. },
  34049. goia: {
  34050. height: math.unit(4, "meters"),
  34051. weight: math.unit(10800, "lb"),
  34052. name: "Goia",
  34053. image: {
  34054. source: "./media/characters/ryth/goia.svg",
  34055. extra: 745/640,
  34056. bottom: 107/852
  34057. }
  34058. },
  34059. goiaFront: {
  34060. height: math.unit(4, "meters"),
  34061. weight: math.unit(10800, "lb"),
  34062. name: "Goia (Front)",
  34063. image: {
  34064. source: "./media/characters/ryth/goia-front.svg",
  34065. extra: 750/586,
  34066. bottom: 114/864
  34067. }
  34068. },
  34069. goiaMaw: {
  34070. height: math.unit(5.55, "feet"),
  34071. name: "Goia Maw",
  34072. image: {
  34073. source: "./media/characters/ryth/goia-maw.svg"
  34074. }
  34075. },
  34076. goiaForepaw: {
  34077. height: math.unit(3.5, "feet"),
  34078. name: "Goia Forepaw",
  34079. image: {
  34080. source: "./media/characters/ryth/goia-forepaw.svg"
  34081. }
  34082. },
  34083. goiaHindpaw: {
  34084. height: math.unit(5.55, "feet"),
  34085. name: "Goia Hindpaw",
  34086. image: {
  34087. source: "./media/characters/ryth/goia-hindpaw.svg"
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(4, "feet"),
  34095. default: true
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(7, "feet"),
  34104. weight: math.unit(180, "lb"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/necrolance/front.svg",
  34108. extra: 1062/947,
  34109. bottom: 41/1103
  34110. }
  34111. },
  34112. back: {
  34113. height: math.unit(7, "feet"),
  34114. weight: math.unit(180, "lb"),
  34115. name: "Back",
  34116. image: {
  34117. source: "./media/characters/necrolance/back.svg",
  34118. extra: 1045/984,
  34119. bottom: 14/1059
  34120. }
  34121. },
  34122. wing: {
  34123. height: math.unit(2.67, "feet"),
  34124. name: "Wing",
  34125. image: {
  34126. source: "./media/characters/necrolance/wing.svg"
  34127. }
  34128. },
  34129. },
  34130. [
  34131. {
  34132. name: "Normal",
  34133. height: math.unit(7, "feet"),
  34134. default: true
  34135. },
  34136. ]
  34137. ))
  34138. characterMakers.push(() => makeCharacter(
  34139. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34140. {
  34141. front: {
  34142. height: math.unit(76, "meters"),
  34143. weight: math.unit(30000, "tons"),
  34144. name: "Front",
  34145. image: {
  34146. source: "./media/characters/tyler/front.svg",
  34147. extra: 1640/1640,
  34148. bottom: 114/1754
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Macro",
  34155. height: math.unit(76, "meters"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34162. {
  34163. front: {
  34164. height: math.unit(4 + 11/12, "feet"),
  34165. weight: math.unit(132, "lb"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/icey/front.svg",
  34169. extra: 2750/2550,
  34170. bottom: 33/2783
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(4 + 11/12, "feet"),
  34175. weight: math.unit(132, "lb"),
  34176. name: "Back",
  34177. image: {
  34178. source: "./media/characters/icey/back.svg",
  34179. extra: 2624/2481,
  34180. bottom: 35/2659
  34181. }
  34182. },
  34183. },
  34184. [
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(4 + 11/12, "feet"),
  34188. default: true
  34189. },
  34190. ]
  34191. ))
  34192. characterMakers.push(() => makeCharacter(
  34193. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34194. {
  34195. front: {
  34196. height: math.unit(100, "feet"),
  34197. weight: math.unit(0, "lb"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/smile/front.svg",
  34201. extra: 2983/2912,
  34202. bottom: 162/3145
  34203. }
  34204. },
  34205. back: {
  34206. height: math.unit(100, "feet"),
  34207. weight: math.unit(0, "lb"),
  34208. name: "Back",
  34209. image: {
  34210. source: "./media/characters/smile/back.svg",
  34211. extra: 3143/3031,
  34212. bottom: 91/3234
  34213. }
  34214. },
  34215. head: {
  34216. height: math.unit(26.3, "feet"),
  34217. weight: math.unit(0, "lb"),
  34218. name: "Head",
  34219. image: {
  34220. source: "./media/characters/smile/head.svg"
  34221. }
  34222. },
  34223. collar: {
  34224. height: math.unit(5.3, "feet"),
  34225. weight: math.unit(0, "lb"),
  34226. name: "Collar",
  34227. image: {
  34228. source: "./media/characters/smile/collar.svg"
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Macro",
  34235. height: math.unit(100, "feet"),
  34236. default: true
  34237. },
  34238. ]
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34242. {
  34243. dragon: {
  34244. height: math.unit(26, "feet"),
  34245. weight: math.unit(36, "tons"),
  34246. name: "Dragon",
  34247. image: {
  34248. source: "./media/characters/arimphae/dragon.svg",
  34249. extra: 1574/983,
  34250. bottom: 357/1931
  34251. }
  34252. },
  34253. drake: {
  34254. height: math.unit(9, "feet"),
  34255. weight: math.unit(1.5, "tons"),
  34256. name: "Drake",
  34257. image: {
  34258. source: "./media/characters/arimphae/drake.svg",
  34259. extra: 1120/925,
  34260. bottom: 435/1555
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Small",
  34267. height: math.unit(26*5/9, "feet")
  34268. },
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(26, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(8 + 9/12, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/xander/front.svg",
  34284. extra: 1237/974,
  34285. bottom: 94/1331
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(8 + 9/12, "feet"),
  34293. default: true
  34294. },
  34295. {
  34296. name: "Gaze Grabber",
  34297. height: math.unit(13 + 8/12, "feet")
  34298. },
  34299. {
  34300. name: "Jaw Dropper",
  34301. height: math.unit(27, "feet")
  34302. },
  34303. {
  34304. name: "Show Stopper",
  34305. height: math.unit(136, "feet")
  34306. },
  34307. {
  34308. name: "Superstar",
  34309. height: math.unit(1.9e6, "miles")
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34315. {
  34316. side: {
  34317. height: math.unit(2100, "feet"),
  34318. name: "Side",
  34319. image: {
  34320. source: "./media/characters/osiris/side.svg",
  34321. extra: 1105/939,
  34322. bottom: 167/1272
  34323. }
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Macro",
  34329. height: math.unit(2100, "feet"),
  34330. default: true
  34331. },
  34332. ]
  34333. ))
  34334. characterMakers.push(() => makeCharacter(
  34335. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34336. {
  34337. front: {
  34338. height: math.unit(6 + 8/12, "feet"),
  34339. weight: math.unit(225, "lb"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/rhys-londe/front.svg",
  34343. extra: 2258/2141,
  34344. bottom: 188/2446
  34345. }
  34346. },
  34347. back: {
  34348. height: math.unit(6 + 8/12, "feet"),
  34349. weight: math.unit(225, "lb"),
  34350. name: "Back",
  34351. image: {
  34352. source: "./media/characters/rhys-londe/back.svg",
  34353. extra: 2237/2137,
  34354. bottom: 63/2300
  34355. }
  34356. },
  34357. frontNsfw: {
  34358. height: math.unit(6 + 8/12, "feet"),
  34359. weight: math.unit(225, "lb"),
  34360. name: "Front (NSFW)",
  34361. image: {
  34362. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34363. extra: 2258/2141,
  34364. bottom: 188/2446
  34365. }
  34366. },
  34367. backNsfw: {
  34368. height: math.unit(6 + 8/12, "feet"),
  34369. weight: math.unit(225, "lb"),
  34370. name: "Back (NSFW)",
  34371. image: {
  34372. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34373. extra: 2237/2137,
  34374. bottom: 63/2300
  34375. }
  34376. },
  34377. dick: {
  34378. height: math.unit(30, "inches"),
  34379. name: "Dick",
  34380. image: {
  34381. source: "./media/characters/rhys-londe/dick.svg"
  34382. }
  34383. },
  34384. maw: {
  34385. height: math.unit(1.6, "feet"),
  34386. name: "Maw",
  34387. image: {
  34388. source: "./media/characters/rhys-londe/maw.svg"
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(6 + 8/12, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(3 + 10/12, "feet"),
  34405. weight: math.unit(90, "lb"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/taivas-ensim/front.svg",
  34409. extra: 1327/1216,
  34410. bottom: 96/1423
  34411. }
  34412. },
  34413. back: {
  34414. height: math.unit(3 + 10/12, "feet"),
  34415. weight: math.unit(90, "lb"),
  34416. name: "Back",
  34417. image: {
  34418. source: "./media/characters/taivas-ensim/back.svg",
  34419. extra: 1355/1247,
  34420. bottom: 11/1366
  34421. }
  34422. },
  34423. frontNsfw: {
  34424. height: math.unit(3 + 10/12, "feet"),
  34425. weight: math.unit(90, "lb"),
  34426. name: "Front (NSFW)",
  34427. image: {
  34428. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34429. extra: 1327/1216,
  34430. bottom: 96/1423
  34431. }
  34432. },
  34433. backNsfw: {
  34434. height: math.unit(3 + 10/12, "feet"),
  34435. weight: math.unit(90, "lb"),
  34436. name: "Back (NSFW)",
  34437. image: {
  34438. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34439. extra: 1355/1247,
  34440. bottom: 11/1366
  34441. }
  34442. },
  34443. },
  34444. [
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(3 + 10/12, "feet"),
  34448. default: true
  34449. },
  34450. ]
  34451. ))
  34452. characterMakers.push(() => makeCharacter(
  34453. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34454. {
  34455. front: {
  34456. height: math.unit(9 + 6/12, "feet"),
  34457. weight: math.unit(940, "lb"),
  34458. name: "Front",
  34459. image: {
  34460. source: "./media/characters/byliss/front.svg",
  34461. extra: 1327/1290,
  34462. bottom: 82/1409
  34463. }
  34464. },
  34465. back: {
  34466. height: math.unit(9 + 6/12, "feet"),
  34467. weight: math.unit(940, "lb"),
  34468. name: "Back",
  34469. image: {
  34470. source: "./media/characters/byliss/back.svg",
  34471. extra: 1376/1349,
  34472. bottom: 9/1385
  34473. }
  34474. },
  34475. frontNsfw: {
  34476. height: math.unit(9 + 6/12, "feet"),
  34477. weight: math.unit(940, "lb"),
  34478. name: "Front (NSFW)",
  34479. image: {
  34480. source: "./media/characters/byliss/front-nsfw.svg",
  34481. extra: 1327/1290,
  34482. bottom: 82/1409
  34483. }
  34484. },
  34485. backNsfw: {
  34486. height: math.unit(9 + 6/12, "feet"),
  34487. weight: math.unit(940, "lb"),
  34488. name: "Back (NSFW)",
  34489. image: {
  34490. source: "./media/characters/byliss/back-nsfw.svg",
  34491. extra: 1376/1349,
  34492. bottom: 9/1385
  34493. }
  34494. },
  34495. },
  34496. [
  34497. {
  34498. name: "Normal",
  34499. height: math.unit(9 + 6/12, "feet"),
  34500. default: true
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34506. {
  34507. front: {
  34508. height: math.unit(5 + 2/12, "feet"),
  34509. weight: math.unit(200, "lb"),
  34510. name: "Front",
  34511. image: {
  34512. source: "./media/characters/noraly/front.svg",
  34513. extra: 4985/4773,
  34514. bottom: 150/5135
  34515. }
  34516. },
  34517. full: {
  34518. height: math.unit(5 + 2/12, "feet"),
  34519. weight: math.unit(164, "lb"),
  34520. name: "Full",
  34521. image: {
  34522. source: "./media/characters/noraly/full.svg",
  34523. extra: 1114/1059,
  34524. bottom: 35/1149
  34525. }
  34526. },
  34527. fuller: {
  34528. height: math.unit(5 + 2/12, "feet"),
  34529. weight: math.unit(230, "lb"),
  34530. name: "Fuller",
  34531. image: {
  34532. source: "./media/characters/noraly/fuller.svg",
  34533. extra: 1114/1059,
  34534. bottom: 35/1149
  34535. }
  34536. },
  34537. fullest: {
  34538. height: math.unit(5 + 2/12, "feet"),
  34539. weight: math.unit(300, "lb"),
  34540. name: "Fullest",
  34541. image: {
  34542. source: "./media/characters/noraly/fullest.svg",
  34543. extra: 1114/1059,
  34544. bottom: 35/1149
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(5 + 2/12, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34558. {
  34559. front: {
  34560. height: math.unit(5 + 2/12, "feet"),
  34561. weight: math.unit(210, "lb"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/pera/front.svg",
  34565. extra: 1560/1531,
  34566. bottom: 165/1725
  34567. }
  34568. },
  34569. back: {
  34570. height: math.unit(5 + 2/12, "feet"),
  34571. weight: math.unit(210, "lb"),
  34572. name: "Back",
  34573. image: {
  34574. source: "./media/characters/pera/back.svg",
  34575. extra: 1523/1493,
  34576. bottom: 152/1675
  34577. }
  34578. },
  34579. dick: {
  34580. height: math.unit(2.4, "feet"),
  34581. name: "Dick",
  34582. image: {
  34583. source: "./media/characters/pera/dick.svg"
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(5 + 2/12, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34597. {
  34598. front: {
  34599. height: math.unit(12, "feet"),
  34600. weight: math.unit(3200, "lb"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/julian/front.svg",
  34604. extra: 2962/2701,
  34605. bottom: 184/3146
  34606. }
  34607. },
  34608. maw: {
  34609. height: math.unit(5.35, "feet"),
  34610. name: "Maw",
  34611. image: {
  34612. source: "./media/characters/julian/maw.svg"
  34613. }
  34614. },
  34615. paw: {
  34616. height: math.unit(3.07, "feet"),
  34617. name: "Paw",
  34618. image: {
  34619. source: "./media/characters/julian/paw.svg"
  34620. }
  34621. },
  34622. },
  34623. [
  34624. {
  34625. name: "Default",
  34626. height: math.unit(12, "feet"),
  34627. default: true
  34628. },
  34629. {
  34630. name: "Big",
  34631. height: math.unit(50, "feet")
  34632. },
  34633. {
  34634. name: "Really Big",
  34635. height: math.unit(1, "mile")
  34636. },
  34637. {
  34638. name: "Extremely Big",
  34639. height: math.unit(100, "miles")
  34640. },
  34641. {
  34642. name: "Planet Hugger",
  34643. height: math.unit(200, "megameters")
  34644. },
  34645. {
  34646. name: "Unreasonably Big",
  34647. height: math.unit(1e300, "meters")
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34653. {
  34654. solgooleo: {
  34655. height: math.unit(4, "meters"),
  34656. weight: math.unit(6000*1.5, "kg"),
  34657. volume: math.unit(6000, "liters"),
  34658. name: "Solgooleo",
  34659. image: {
  34660. source: "./media/characters/pi/solgooleo.svg",
  34661. extra: 388/331,
  34662. bottom: 29/417
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(4, "meters"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(8, "feet"),
  34679. weight: math.unit(4, "tons"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/shaun/front.svg",
  34683. extra: 503/495,
  34684. bottom: 20/523
  34685. }
  34686. },
  34687. back: {
  34688. height: math.unit(8, "feet"),
  34689. weight: math.unit(4, "tons"),
  34690. name: "Back",
  34691. image: {
  34692. source: "./media/characters/shaun/back.svg",
  34693. extra: 487/480,
  34694. bottom: 20/507
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Lorg",
  34701. height: math.unit(8, "feet"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34708. {
  34709. frontAnthro: {
  34710. height: math.unit(7, "feet"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/sini/front-anthro.svg",
  34714. extra: 726/678,
  34715. bottom: 35/761
  34716. },
  34717. form: "anthro",
  34718. default: true
  34719. },
  34720. backAnthro: {
  34721. height: math.unit(7, "feet"),
  34722. name: "Back",
  34723. image: {
  34724. source: "./media/characters/sini/back-anthro.svg",
  34725. extra: 743/701,
  34726. bottom: 12/755
  34727. },
  34728. form: "anthro",
  34729. },
  34730. frontAnthroNsfw: {
  34731. height: math.unit(7, "feet"),
  34732. name: "Front (NSFW)",
  34733. image: {
  34734. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34735. extra: 726/678,
  34736. bottom: 35/761
  34737. },
  34738. form: "anthro"
  34739. },
  34740. backAnthroNsfw: {
  34741. height: math.unit(7, "feet"),
  34742. name: "Back (NSFW)",
  34743. image: {
  34744. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34745. extra: 743/701,
  34746. bottom: 12/755
  34747. },
  34748. form: "anthro",
  34749. },
  34750. mawAnthro: {
  34751. height: math.unit(2.14, "feet"),
  34752. name: "Maw",
  34753. image: {
  34754. source: "./media/characters/sini/maw-anthro.svg"
  34755. },
  34756. form: "anthro"
  34757. },
  34758. dick: {
  34759. height: math.unit(1.45, "feet"),
  34760. name: "Dick",
  34761. image: {
  34762. source: "./media/characters/sini/dick-anthro.svg"
  34763. },
  34764. form: "anthro"
  34765. },
  34766. feral: {
  34767. height: math.unit(16, "feet"),
  34768. name: "Feral",
  34769. image: {
  34770. source: "./media/characters/sini/feral.svg",
  34771. extra: 814/605,
  34772. bottom: 11/825
  34773. },
  34774. form: "feral",
  34775. default: true
  34776. },
  34777. feralNsfw: {
  34778. height: math.unit(16, "feet"),
  34779. name: "Feral (NSFW)",
  34780. image: {
  34781. source: "./media/characters/sini/feral-nsfw.svg",
  34782. extra: 814/605,
  34783. bottom: 11/825
  34784. },
  34785. form: "feral"
  34786. },
  34787. mawFeral: {
  34788. height: math.unit(5.66, "feet"),
  34789. name: "Maw",
  34790. image: {
  34791. source: "./media/characters/sini/maw-feral.svg"
  34792. },
  34793. form: "feral",
  34794. },
  34795. pawFeral: {
  34796. height: math.unit(5.17, "feet"),
  34797. name: "Paw",
  34798. image: {
  34799. source: "./media/characters/sini/paw-feral.svg"
  34800. },
  34801. form: "feral",
  34802. },
  34803. rumpFeral: {
  34804. height: math.unit(13.11, "feet"),
  34805. name: "Rump",
  34806. image: {
  34807. source: "./media/characters/sini/rump-feral.svg"
  34808. },
  34809. form: "feral",
  34810. },
  34811. dickFeral: {
  34812. height: math.unit(1, "feet"),
  34813. name: "Dick",
  34814. image: {
  34815. source: "./media/characters/sini/dick-feral.svg"
  34816. },
  34817. form: "feral",
  34818. },
  34819. eyeFeral: {
  34820. height: math.unit(1.23, "feet"),
  34821. name: "Eye",
  34822. image: {
  34823. source: "./media/characters/sini/eye-feral.svg"
  34824. },
  34825. form: "feral",
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(7, "feet"),
  34832. default: true,
  34833. form: "anthro"
  34834. },
  34835. {
  34836. name: "Normal",
  34837. height: math.unit(16, "feet"),
  34838. default: true,
  34839. form: "feral"
  34840. },
  34841. ],
  34842. {
  34843. "anthro": {
  34844. name: "Anthro",
  34845. default: true
  34846. },
  34847. "feral": {
  34848. name: "Feral",
  34849. }
  34850. }
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34854. {
  34855. side: {
  34856. height: math.unit(47.2, "meters"),
  34857. weight: math.unit(10000, "tons"),
  34858. name: "Side",
  34859. image: {
  34860. source: "./media/characters/raylldo/side.svg",
  34861. extra: 2363/642,
  34862. bottom: 221/2584
  34863. }
  34864. },
  34865. top: {
  34866. height: math.unit(240, "meters"),
  34867. weight: math.unit(10000, "tons"),
  34868. name: "Top",
  34869. image: {
  34870. source: "./media/characters/raylldo/top.svg"
  34871. }
  34872. },
  34873. bottom: {
  34874. height: math.unit(240, "meters"),
  34875. weight: math.unit(10000, "tons"),
  34876. name: "Bottom",
  34877. image: {
  34878. source: "./media/characters/raylldo/bottom.svg"
  34879. }
  34880. },
  34881. head: {
  34882. height: math.unit(38.6, "meters"),
  34883. name: "Head",
  34884. image: {
  34885. source: "./media/characters/raylldo/head.svg",
  34886. extra: 1335/1112,
  34887. bottom: 0/1335
  34888. }
  34889. },
  34890. maw: {
  34891. height: math.unit(16.37, "meters"),
  34892. name: "Maw",
  34893. image: {
  34894. source: "./media/characters/raylldo/maw.svg",
  34895. extra: 883/660,
  34896. bottom: 0/883
  34897. },
  34898. extraAttributes: {
  34899. preyCapacity: {
  34900. name: "Capacity",
  34901. power: 3,
  34902. type: "volume",
  34903. base: math.unit(1000, "people")
  34904. },
  34905. tongueSize: {
  34906. name: "Tongue Size",
  34907. power: 2,
  34908. type: "area",
  34909. base: math.unit(21, "m^2")
  34910. }
  34911. }
  34912. },
  34913. forepaw: {
  34914. height: math.unit(18, "meters"),
  34915. name: "Forepaw",
  34916. image: {
  34917. source: "./media/characters/raylldo/forepaw.svg"
  34918. }
  34919. },
  34920. hindpaw: {
  34921. height: math.unit(23, "meters"),
  34922. name: "Hindpaw",
  34923. image: {
  34924. source: "./media/characters/raylldo/hindpaw.svg"
  34925. }
  34926. },
  34927. genitals: {
  34928. height: math.unit(42, "meters"),
  34929. name: "Genitals",
  34930. image: {
  34931. source: "./media/characters/raylldo/genitals.svg"
  34932. }
  34933. },
  34934. },
  34935. [
  34936. {
  34937. name: "Normal",
  34938. height: math.unit(47.2, "meters"),
  34939. default: true
  34940. },
  34941. ]
  34942. ))
  34943. characterMakers.push(() => makeCharacter(
  34944. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34945. {
  34946. anthroFront: {
  34947. height: math.unit(9, "feet"),
  34948. weight: math.unit(600, "lb"),
  34949. name: "Anthro (Front)",
  34950. image: {
  34951. source: "./media/characters/glint/anthro-front.svg",
  34952. extra: 1097/1018,
  34953. bottom: 28/1125
  34954. }
  34955. },
  34956. anthroBack: {
  34957. height: math.unit(9, "feet"),
  34958. weight: math.unit(600, "lb"),
  34959. name: "Anthro (Back)",
  34960. image: {
  34961. source: "./media/characters/glint/anthro-back.svg",
  34962. extra: 1154/997,
  34963. bottom: 36/1190
  34964. }
  34965. },
  34966. feral: {
  34967. height: math.unit(11, "feet"),
  34968. weight: math.unit(50000, "lb"),
  34969. name: "Feral",
  34970. image: {
  34971. source: "./media/characters/glint/feral.svg",
  34972. extra: 3035/1585,
  34973. bottom: 1169/4204
  34974. }
  34975. },
  34976. dickAnthro: {
  34977. height: math.unit(0.7, "meters"),
  34978. name: "Dick (Anthro)",
  34979. image: {
  34980. source: "./media/characters/glint/dick-anthro.svg"
  34981. }
  34982. },
  34983. dickFeral: {
  34984. height: math.unit(2.65, "meters"),
  34985. name: "Dick (Feral)",
  34986. image: {
  34987. source: "./media/characters/glint/dick-feral.svg"
  34988. }
  34989. },
  34990. slitHidden: {
  34991. height: math.unit(5.85, "meters"),
  34992. name: "Slit (Hidden)",
  34993. image: {
  34994. source: "./media/characters/glint/slit-hidden.svg"
  34995. }
  34996. },
  34997. slitErect: {
  34998. height: math.unit(5.85, "meters"),
  34999. name: "Slit (Erect)",
  35000. image: {
  35001. source: "./media/characters/glint/slit-erect.svg"
  35002. }
  35003. },
  35004. mawAnthro: {
  35005. height: math.unit(0.63, "meters"),
  35006. name: "Maw (Anthro)",
  35007. image: {
  35008. source: "./media/characters/glint/maw.svg"
  35009. }
  35010. },
  35011. mawFeral: {
  35012. height: math.unit(2.89, "meters"),
  35013. name: "Maw (Feral)",
  35014. image: {
  35015. source: "./media/characters/glint/maw.svg"
  35016. }
  35017. },
  35018. },
  35019. [
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(9, "feet"),
  35023. default: true
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35029. {
  35030. side: {
  35031. height: math.unit(15, "feet"),
  35032. weight: math.unit(5000, "kg"),
  35033. name: "Side",
  35034. image: {
  35035. source: "./media/characters/kairne/side.svg",
  35036. extra: 979/811,
  35037. bottom: 13/992
  35038. }
  35039. },
  35040. front: {
  35041. height: math.unit(15, "feet"),
  35042. weight: math.unit(5000, "kg"),
  35043. name: "Front",
  35044. image: {
  35045. source: "./media/characters/kairne/front.svg",
  35046. extra: 908/814,
  35047. bottom: 26/934
  35048. }
  35049. },
  35050. sideNsfw: {
  35051. height: math.unit(15, "feet"),
  35052. weight: math.unit(5000, "kg"),
  35053. name: "Side (NSFW)",
  35054. image: {
  35055. source: "./media/characters/kairne/side-nsfw.svg",
  35056. extra: 979/811,
  35057. bottom: 13/992
  35058. }
  35059. },
  35060. frontNsfw: {
  35061. height: math.unit(15, "feet"),
  35062. weight: math.unit(5000, "kg"),
  35063. name: "Front (NSFW)",
  35064. image: {
  35065. source: "./media/characters/kairne/front-nsfw.svg",
  35066. extra: 908/814,
  35067. bottom: 26/934
  35068. }
  35069. },
  35070. dickCaged: {
  35071. height: math.unit(0.65, "meters"),
  35072. name: "Dick-caged",
  35073. image: {
  35074. source: "./media/characters/kairne/dick-caged.svg"
  35075. }
  35076. },
  35077. dick: {
  35078. height: math.unit(0.79, "meters"),
  35079. name: "Dick",
  35080. image: {
  35081. source: "./media/characters/kairne/dick.svg"
  35082. }
  35083. },
  35084. genitals: {
  35085. height: math.unit(1.29, "meters"),
  35086. name: "Genitals",
  35087. image: {
  35088. source: "./media/characters/kairne/genitals.svg"
  35089. }
  35090. },
  35091. maw: {
  35092. height: math.unit(1.73, "meters"),
  35093. name: "Maw",
  35094. image: {
  35095. source: "./media/characters/kairne/maw.svg"
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(15, "feet"),
  35103. default: true
  35104. },
  35105. ]
  35106. ))
  35107. characterMakers.push(() => makeCharacter(
  35108. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35109. {
  35110. front: {
  35111. height: math.unit(5 + 8/12, "feet"),
  35112. weight: math.unit(139, "lb"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/biscuit-jackal/front.svg",
  35116. extra: 2106/1961,
  35117. bottom: 58/2164
  35118. }
  35119. },
  35120. back: {
  35121. height: math.unit(5 + 8/12, "feet"),
  35122. weight: math.unit(139, "lb"),
  35123. name: "Back",
  35124. image: {
  35125. source: "./media/characters/biscuit-jackal/back.svg",
  35126. extra: 2132/1976,
  35127. bottom: 57/2189
  35128. }
  35129. },
  35130. werejackal: {
  35131. height: math.unit(6 + 3/12, "feet"),
  35132. weight: math.unit(188, "lb"),
  35133. name: "Werejackal",
  35134. image: {
  35135. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35136. extra: 2373/2178,
  35137. bottom: 53/2426
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(5 + 8/12, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(140, "cm"),
  35154. weight: math.unit(45, "kg"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/tayra-white/front.svg",
  35158. extra: 2229/2192,
  35159. bottom: 75/2304
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(140, "cm"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(4 + 5/12, "feet"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/scoop/front.svg",
  35179. extra: 1257/1136,
  35180. bottom: 69/1326
  35181. }
  35182. },
  35183. back: {
  35184. height: math.unit(4 + 5/12, "feet"),
  35185. name: "Back",
  35186. image: {
  35187. source: "./media/characters/scoop/back.svg",
  35188. extra: 1321/1152,
  35189. bottom: 32/1353
  35190. }
  35191. },
  35192. maw: {
  35193. height: math.unit(0.68, "feet"),
  35194. name: "Maw",
  35195. image: {
  35196. source: "./media/characters/scoop/maw.svg"
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Really Small",
  35203. height: math.unit(1, "mm")
  35204. },
  35205. {
  35206. name: "Micro",
  35207. height: math.unit(1, "inch")
  35208. },
  35209. {
  35210. name: "Normal",
  35211. height: math.unit(4 + 5/12, "feet"),
  35212. default: true
  35213. },
  35214. {
  35215. name: "Macro",
  35216. height: math.unit(200, "feet")
  35217. },
  35218. {
  35219. name: "Megamacro",
  35220. height: math.unit(3240, "feet")
  35221. },
  35222. {
  35223. name: "Teramacro",
  35224. height: math.unit(2500, "miles")
  35225. },
  35226. ]
  35227. ))
  35228. characterMakers.push(() => makeCharacter(
  35229. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35230. {
  35231. front: {
  35232. height: math.unit(15 + 7/12, "feet"),
  35233. weight: math.unit(1150, "tons"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/saphinara/front.svg",
  35237. extra: 1837/1643,
  35238. bottom: 84/1921
  35239. },
  35240. form: "normal",
  35241. default: true
  35242. },
  35243. side: {
  35244. height: math.unit(15 + 7/12, "feet"),
  35245. weight: math.unit(1150, "tons"),
  35246. name: "Side",
  35247. image: {
  35248. source: "./media/characters/saphinara/side.svg",
  35249. extra: 605/547,
  35250. bottom: 6/611
  35251. },
  35252. form: "normal"
  35253. },
  35254. back: {
  35255. height: math.unit(15 + 7/12, "feet"),
  35256. weight: math.unit(1150, "tons"),
  35257. name: "Back",
  35258. image: {
  35259. source: "./media/characters/saphinara/back.svg",
  35260. extra: 591/531,
  35261. bottom: 13/604
  35262. },
  35263. form: "normal"
  35264. },
  35265. frontTail: {
  35266. height: math.unit(15 + 7/12, "feet"),
  35267. weight: math.unit(1150, "tons"),
  35268. name: "Front (Full Tail)",
  35269. image: {
  35270. source: "./media/characters/saphinara/front-tail.svg",
  35271. extra: 2256/1630,
  35272. bottom: 261/2517
  35273. },
  35274. form: "normal"
  35275. },
  35276. insides: {
  35277. height: math.unit(11.92, "feet"),
  35278. name: "Insides",
  35279. image: {
  35280. source: "./media/characters/saphinara/insides.svg"
  35281. },
  35282. form: "normal"
  35283. },
  35284. head: {
  35285. height: math.unit(4.17, "feet"),
  35286. name: "Head",
  35287. image: {
  35288. source: "./media/characters/saphinara/head.svg"
  35289. },
  35290. form: "normal"
  35291. },
  35292. tongue: {
  35293. height: math.unit(4.60, "feet"),
  35294. name: "Tongue",
  35295. image: {
  35296. source: "./media/characters/saphinara/tongue.svg"
  35297. },
  35298. form: "normal"
  35299. },
  35300. headEnraged: {
  35301. height: math.unit(5.55, "feet"),
  35302. name: "Head (Enraged)",
  35303. image: {
  35304. source: "./media/characters/saphinara/head-enraged.svg"
  35305. },
  35306. form: "normal"
  35307. },
  35308. wings: {
  35309. height: math.unit(11.95, "feet"),
  35310. name: "Wings",
  35311. image: {
  35312. source: "./media/characters/saphinara/wings.svg"
  35313. },
  35314. form: "normal"
  35315. },
  35316. feathers: {
  35317. height: math.unit(8.92, "feet"),
  35318. name: "Feathers",
  35319. image: {
  35320. source: "./media/characters/saphinara/feathers.svg"
  35321. },
  35322. form: "normal"
  35323. },
  35324. shackles: {
  35325. height: math.unit(2, "feet"),
  35326. name: "Shackles",
  35327. image: {
  35328. source: "./media/characters/saphinara/shackles.svg"
  35329. },
  35330. form: "normal"
  35331. },
  35332. eyes: {
  35333. height: math.unit(1.331, "feet"),
  35334. name: "Eyes",
  35335. image: {
  35336. source: "./media/characters/saphinara/eyes.svg"
  35337. },
  35338. form: "normal"
  35339. },
  35340. eyesEnraged: {
  35341. height: math.unit(1.331, "feet"),
  35342. name: "Eyes (Enraged)",
  35343. image: {
  35344. source: "./media/characters/saphinara/eyes-enraged.svg"
  35345. },
  35346. form: "normal"
  35347. },
  35348. trueFormSide: {
  35349. height: math.unit(200, "feet"),
  35350. weight: math.unit(1e7, "tons"),
  35351. name: "Side",
  35352. image: {
  35353. source: "./media/characters/saphinara/true-form-side.svg",
  35354. extra: 1399/770,
  35355. bottom: 97/1496
  35356. },
  35357. form: "true-form",
  35358. default: true
  35359. },
  35360. trueFormMaw: {
  35361. height: math.unit(71.5, "feet"),
  35362. name: "Maw",
  35363. image: {
  35364. source: "./media/characters/saphinara/true-form-maw.svg",
  35365. extra: 2302/1453,
  35366. bottom: 0/2302
  35367. },
  35368. form: "true-form"
  35369. },
  35370. meowberusSide: {
  35371. height: math.unit(75, "feet"),
  35372. weight: math.unit(180000, "kg"),
  35373. preyCapacity: math.unit(50000, "people"),
  35374. name: "Side",
  35375. image: {
  35376. source: "./media/characters/saphinara/meowberus-side.svg",
  35377. extra: 1400/711,
  35378. bottom: 126/1526
  35379. },
  35380. form: "meowberus",
  35381. extraAttributes: {
  35382. "pawArea": {
  35383. name: "Paw Size",
  35384. power: 2,
  35385. type: "area",
  35386. base: math.unit(35, "m^2")
  35387. }
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(15 + 7/12, "feet"),
  35395. default: true,
  35396. form: "normal"
  35397. },
  35398. {
  35399. name: "Angry",
  35400. height: math.unit(30 + 6/12, "feet"),
  35401. form: "normal"
  35402. },
  35403. {
  35404. name: "Enraged",
  35405. height: math.unit(102 + 1/12, "feet"),
  35406. form: "normal"
  35407. },
  35408. {
  35409. name: "True",
  35410. height: math.unit(200, "feet"),
  35411. default: true,
  35412. form: "true-form"
  35413. },
  35414. {
  35415. name: "Normal",
  35416. height: math.unit(75, "feet"),
  35417. default: true,
  35418. form: "meowberus"
  35419. },
  35420. ],
  35421. {
  35422. "normal": {
  35423. name: "Normal",
  35424. default: true
  35425. },
  35426. "true-form": {
  35427. name: "True Form"
  35428. },
  35429. "meowberus": {
  35430. name: "Meowberus",
  35431. },
  35432. }
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(6 + 8/12, "feet"),
  35439. weight: math.unit(300, "lb"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/jrain/front.svg",
  35443. extra: 3039/2865,
  35444. bottom: 399/3438
  35445. }
  35446. },
  35447. back: {
  35448. height: math.unit(6 + 8/12, "feet"),
  35449. weight: math.unit(300, "lb"),
  35450. name: "Back",
  35451. image: {
  35452. source: "./media/characters/jrain/back.svg",
  35453. extra: 3089/2938,
  35454. bottom: 172/3261
  35455. }
  35456. },
  35457. head: {
  35458. height: math.unit(2.14, "feet"),
  35459. name: "Head",
  35460. image: {
  35461. source: "./media/characters/jrain/head.svg"
  35462. }
  35463. },
  35464. maw: {
  35465. height: math.unit(1.77, "feet"),
  35466. name: "Maw",
  35467. image: {
  35468. source: "./media/characters/jrain/maw.svg"
  35469. }
  35470. },
  35471. leftHand: {
  35472. height: math.unit(1.1, "feet"),
  35473. name: "Left Hand",
  35474. image: {
  35475. source: "./media/characters/jrain/left-hand.svg"
  35476. }
  35477. },
  35478. rightHand: {
  35479. height: math.unit(1.1, "feet"),
  35480. name: "Right Hand",
  35481. image: {
  35482. source: "./media/characters/jrain/right-hand.svg"
  35483. }
  35484. },
  35485. eye: {
  35486. height: math.unit(0.35, "feet"),
  35487. name: "Eye",
  35488. image: {
  35489. source: "./media/characters/jrain/eye.svg"
  35490. }
  35491. },
  35492. },
  35493. [
  35494. {
  35495. name: "Normal",
  35496. height: math.unit(6 + 8/12, "feet"),
  35497. default: true
  35498. },
  35499. {
  35500. name: "Casually Large",
  35501. height: math.unit(25, "feet")
  35502. },
  35503. {
  35504. name: "Giant",
  35505. height: math.unit(100, "feet")
  35506. },
  35507. {
  35508. name: "Kaiju",
  35509. height: math.unit(300, "feet")
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35515. {
  35516. dragon: {
  35517. height: math.unit(5, "meters"),
  35518. name: "Dragon",
  35519. image: {
  35520. source: "./media/characters/sabrina/dragon.svg",
  35521. extra: 3670 / 2365,
  35522. bottom: 333 / 4003
  35523. }
  35524. },
  35525. gryphon: {
  35526. height: math.unit(3, "meters"),
  35527. name: "Gryphon",
  35528. image: {
  35529. source: "./media/characters/sabrina/gryphon.svg",
  35530. extra: 1576 / 945,
  35531. bottom: 71 / 1647
  35532. }
  35533. },
  35534. snake: {
  35535. height: math.unit(12, "meters"),
  35536. name: "Snake",
  35537. image: {
  35538. source: "./media/characters/sabrina/snake.svg",
  35539. extra: 1758 / 1320,
  35540. bottom: 186 / 1944
  35541. }
  35542. },
  35543. collar: {
  35544. height: math.unit(1.86, "meters"),
  35545. name: "Collar",
  35546. image: {
  35547. source: "./media/characters/sabrina/collar.svg"
  35548. }
  35549. },
  35550. eye: {
  35551. height: math.unit(0.53, "meters"),
  35552. name: "Eye",
  35553. image: {
  35554. source: "./media/characters/sabrina/eye.svg"
  35555. }
  35556. },
  35557. foot: {
  35558. height: math.unit(1.86, "meters"),
  35559. name: "Foot",
  35560. image: {
  35561. source: "./media/characters/sabrina/foot.svg"
  35562. }
  35563. },
  35564. hand: {
  35565. height: math.unit(1.32, "meters"),
  35566. name: "Hand",
  35567. image: {
  35568. source: "./media/characters/sabrina/hand.svg"
  35569. }
  35570. },
  35571. head: {
  35572. height: math.unit(2.44, "meters"),
  35573. name: "Head",
  35574. image: {
  35575. source: "./media/characters/sabrina/head.svg"
  35576. }
  35577. },
  35578. headAngry: {
  35579. height: math.unit(2.44, "meters"),
  35580. name: "Head (Angry))",
  35581. image: {
  35582. source: "./media/characters/sabrina/head-angry.svg"
  35583. }
  35584. },
  35585. maw: {
  35586. height: math.unit(1.65, "meters"),
  35587. name: "Maw",
  35588. image: {
  35589. source: "./media/characters/sabrina/maw.svg"
  35590. }
  35591. },
  35592. spikes: {
  35593. height: math.unit(1.69, "meters"),
  35594. name: "Spikes",
  35595. image: {
  35596. source: "./media/characters/sabrina/spikes.svg"
  35597. }
  35598. },
  35599. stomach: {
  35600. height: math.unit(1.15, "meters"),
  35601. name: "Stomach",
  35602. image: {
  35603. source: "./media/characters/sabrina/stomach.svg"
  35604. }
  35605. },
  35606. tongue: {
  35607. height: math.unit(1.27, "meters"),
  35608. name: "Tongue",
  35609. image: {
  35610. source: "./media/characters/sabrina/tongue.svg"
  35611. }
  35612. },
  35613. wingDorsal: {
  35614. height: math.unit(4.85, "meters"),
  35615. name: "Wing (Dorsal)",
  35616. image: {
  35617. source: "./media/characters/sabrina/wing-dorsal.svg"
  35618. }
  35619. },
  35620. wingVentral: {
  35621. height: math.unit(4.85, "meters"),
  35622. name: "Wing (Ventral)",
  35623. image: {
  35624. source: "./media/characters/sabrina/wing-ventral.svg"
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(5, "meters"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35638. {
  35639. frontMaid: {
  35640. height: math.unit(5 + 5/12, "feet"),
  35641. weight: math.unit(130, "lb"),
  35642. name: "Front (Maid)",
  35643. image: {
  35644. source: "./media/characters/midnight-tales/front-maid.svg",
  35645. extra: 489/454,
  35646. bottom: 61/550
  35647. }
  35648. },
  35649. frontFormal: {
  35650. height: math.unit(5 + 5/12, "feet"),
  35651. weight: math.unit(130, "lb"),
  35652. name: "Front (Formal)",
  35653. image: {
  35654. source: "./media/characters/midnight-tales/front-formal.svg",
  35655. extra: 489/454,
  35656. bottom: 61/550
  35657. }
  35658. },
  35659. back: {
  35660. height: math.unit(5 + 5/12, "feet"),
  35661. weight: math.unit(130, "lb"),
  35662. name: "Back",
  35663. image: {
  35664. source: "./media/characters/midnight-tales/back.svg",
  35665. extra: 498/456,
  35666. bottom: 33/531
  35667. }
  35668. },
  35669. frontBeast: {
  35670. height: math.unit(40, "feet"),
  35671. weight: math.unit(64000, "lb"),
  35672. name: "Front (Beast)",
  35673. image: {
  35674. source: "./media/characters/midnight-tales/front-beast.svg",
  35675. extra: 927/860,
  35676. bottom: 53/980
  35677. }
  35678. },
  35679. backBeast: {
  35680. height: math.unit(40, "feet"),
  35681. weight: math.unit(64000, "lb"),
  35682. name: "Back (Beast)",
  35683. image: {
  35684. source: "./media/characters/midnight-tales/back-beast.svg",
  35685. extra: 929/855,
  35686. bottom: 16/945
  35687. }
  35688. },
  35689. footBeast: {
  35690. height: math.unit(6.7, "feet"),
  35691. name: "Foot (Beast)",
  35692. image: {
  35693. source: "./media/characters/midnight-tales/foot-beast.svg"
  35694. }
  35695. },
  35696. headBeast: {
  35697. height: math.unit(8, "feet"),
  35698. name: "Head (Beast)",
  35699. image: {
  35700. source: "./media/characters/midnight-tales/head-beast.svg"
  35701. }
  35702. },
  35703. },
  35704. [
  35705. {
  35706. name: "Normal",
  35707. height: math.unit(5 + 5 / 12, "feet"),
  35708. default: true
  35709. },
  35710. {
  35711. name: "Macro",
  35712. height: math.unit(25, "feet")
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35718. {
  35719. front: {
  35720. height: math.unit(5 + 10/12, "feet"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/argon/front.svg",
  35724. extra: 2009/1935,
  35725. bottom: 118/2127
  35726. }
  35727. },
  35728. back: {
  35729. height: math.unit(5 + 10/12, "feet"),
  35730. name: "Back",
  35731. image: {
  35732. source: "./media/characters/argon/back.svg",
  35733. extra: 2047/1992,
  35734. bottom: 20/2067
  35735. }
  35736. },
  35737. frontDressed: {
  35738. height: math.unit(5 + 10/12, "feet"),
  35739. name: "Front (Dressed)",
  35740. image: {
  35741. source: "./media/characters/argon/front-dressed.svg",
  35742. extra: 2009/1935,
  35743. bottom: 118/2127
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(5 + 10/12, "feet"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35757. {
  35758. front: {
  35759. height: math.unit(8 + 6/12, "feet"),
  35760. weight: math.unit(1150, "lb"),
  35761. name: "Front",
  35762. image: {
  35763. source: "./media/characters/kichi/front.svg",
  35764. extra: 1267/1164,
  35765. bottom: 61/1328
  35766. }
  35767. },
  35768. back: {
  35769. height: math.unit(8 + 6/12, "feet"),
  35770. weight: math.unit(1150, "lb"),
  35771. name: "Back",
  35772. image: {
  35773. source: "./media/characters/kichi/back.svg",
  35774. extra: 1273/1166,
  35775. bottom: 33/1306
  35776. }
  35777. },
  35778. },
  35779. [
  35780. {
  35781. name: "Normal",
  35782. height: math.unit(8 + 6/12, "feet"),
  35783. default: true
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(6, "feet"),
  35792. weight: math.unit(210, "lb"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/manetel-greyscale/front.svg",
  35796. extra: 350/312,
  35797. bottom: 8/358
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Micro",
  35804. height: math.unit(2, "inches")
  35805. },
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(6, "feet"),
  35809. default: true
  35810. },
  35811. {
  35812. name: "Minimacro",
  35813. height: math.unit(17, "feet")
  35814. },
  35815. {
  35816. name: "Macro",
  35817. height: math.unit(117, "feet")
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35823. {
  35824. side: {
  35825. height: math.unit(5 + 1/12, "feet"),
  35826. weight: math.unit(418, "lb"),
  35827. name: "Side",
  35828. image: {
  35829. source: "./media/characters/softpurr/side.svg",
  35830. extra: 1993/1945,
  35831. bottom: 134/2127
  35832. }
  35833. },
  35834. front: {
  35835. height: math.unit(5 + 1/12, "feet"),
  35836. weight: math.unit(418, "lb"),
  35837. name: "Front",
  35838. image: {
  35839. source: "./media/characters/softpurr/front.svg",
  35840. extra: 1950/1856,
  35841. bottom: 174/2124
  35842. }
  35843. },
  35844. paw: {
  35845. height: math.unit(1, "feet"),
  35846. name: "Paw",
  35847. image: {
  35848. source: "./media/characters/softpurr/paw.svg"
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Normal",
  35855. height: math.unit(5 + 1/12, "feet"),
  35856. default: true
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(260, "meters"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/anahita/front.svg",
  35868. extra: 665/635,
  35869. bottom: 89/754
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Macro",
  35876. height: math.unit(260, "meters"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(4 + 10/12, "feet"),
  35886. weight: math.unit(160, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/chip-mouse/front.svg",
  35890. extra: 3528/3408,
  35891. bottom: 0/3528
  35892. }
  35893. },
  35894. frontNsfw: {
  35895. height: math.unit(4 + 10/12, "feet"),
  35896. weight: math.unit(160, "lb"),
  35897. name: "Front (NSFW)",
  35898. image: {
  35899. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35900. extra: 3528/3408,
  35901. bottom: 0/3528
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(4 + 10/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35915. {
  35916. side: {
  35917. height: math.unit(10, "feet"),
  35918. weight: math.unit(14000, "lb"),
  35919. name: "Side",
  35920. image: {
  35921. source: "./media/characters/kremm/side.svg",
  35922. extra: 1390/1053,
  35923. bottom: 90/1480
  35924. }
  35925. },
  35926. gut: {
  35927. height: math.unit(5.8, "feet"),
  35928. name: "Gut",
  35929. image: {
  35930. source: "./media/characters/kremm/gut.svg"
  35931. }
  35932. },
  35933. ass: {
  35934. height: math.unit(6.1, "feet"),
  35935. name: "Ass",
  35936. image: {
  35937. source: "./media/characters/kremm/ass.svg"
  35938. }
  35939. },
  35940. jaws: {
  35941. height: math.unit(2.2, "feet"),
  35942. name: "Jaws",
  35943. image: {
  35944. source: "./media/characters/kremm/jaws.svg"
  35945. }
  35946. },
  35947. dick: {
  35948. height: math.unit(4.26, "feet"),
  35949. name: "Dick",
  35950. image: {
  35951. source: "./media/characters/kremm/dick.svg"
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(10, "feet"),
  35959. default: true
  35960. },
  35961. ]
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35965. {
  35966. front: {
  35967. height: math.unit(30, "stories"),
  35968. name: "Front",
  35969. image: {
  35970. source: "./media/characters/kai/front.svg",
  35971. extra: 1892/1718,
  35972. bottom: 162/2054
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Macro",
  35979. height: math.unit(30, "stories"),
  35980. default: true
  35981. },
  35982. ]
  35983. ))
  35984. characterMakers.push(() => makeCharacter(
  35985. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35986. {
  35987. front: {
  35988. height: math.unit(6 + 4/12, "feet"),
  35989. weight: math.unit(145, "lb"),
  35990. name: "Front",
  35991. image: {
  35992. source: "./media/characters/sykes/front.svg",
  35993. extra: 1321 / 1187,
  35994. bottom: 66 / 1387
  35995. }
  35996. },
  35997. back: {
  35998. height: math.unit(6 + 4/12, "feet"),
  35999. weight: math.unit(145, "lb"),
  36000. name: "Back",
  36001. image: {
  36002. source: "./media/characters/sykes/back.svg",
  36003. extra: 1326/1181,
  36004. bottom: 31/1357
  36005. }
  36006. },
  36007. traditionalOutfit: {
  36008. height: math.unit(6 + 4/12, "feet"),
  36009. weight: math.unit(145, "lb"),
  36010. name: "Traditional Outfit",
  36011. image: {
  36012. source: "./media/characters/sykes/traditional-outfit.svg",
  36013. extra: 1321 / 1187,
  36014. bottom: 66 / 1387
  36015. }
  36016. },
  36017. adventureOutfit: {
  36018. height: math.unit(6 + 4/12, "feet"),
  36019. weight: math.unit(145, "lb"),
  36020. name: "Adventure Outfit",
  36021. image: {
  36022. source: "./media/characters/sykes/adventure-outfit.svg",
  36023. extra: 1321 / 1187,
  36024. bottom: 66 / 1387
  36025. }
  36026. },
  36027. handLeft: {
  36028. height: math.unit(0.9, "feet"),
  36029. name: "Hand (Left)",
  36030. image: {
  36031. source: "./media/characters/sykes/hand-left.svg"
  36032. }
  36033. },
  36034. handRight: {
  36035. height: math.unit(0.839, "feet"),
  36036. name: "Hand (Right)",
  36037. image: {
  36038. source: "./media/characters/sykes/hand-right.svg"
  36039. }
  36040. },
  36041. leftFoot: {
  36042. height: math.unit(1.2, "feet"),
  36043. name: "Foot (Left)",
  36044. image: {
  36045. source: "./media/characters/sykes/foot-left.svg"
  36046. }
  36047. },
  36048. rightFoot: {
  36049. height: math.unit(1.2, "feet"),
  36050. name: "Foot (Right)",
  36051. image: {
  36052. source: "./media/characters/sykes/foot-right.svg"
  36053. }
  36054. },
  36055. maw: {
  36056. height: math.unit(1.93, "feet"),
  36057. name: "Maw",
  36058. image: {
  36059. source: "./media/characters/sykes/maw.svg"
  36060. }
  36061. },
  36062. teeth: {
  36063. height: math.unit(0.51, "feet"),
  36064. name: "Teeth",
  36065. image: {
  36066. source: "./media/characters/sykes/teeth.svg"
  36067. }
  36068. },
  36069. tongue: {
  36070. height: math.unit(2.13, "feet"),
  36071. name: "Tongue",
  36072. image: {
  36073. source: "./media/characters/sykes/tongue.svg"
  36074. }
  36075. },
  36076. uvula: {
  36077. height: math.unit(0.16, "feet"),
  36078. name: "Uvula",
  36079. image: {
  36080. source: "./media/characters/sykes/uvula.svg"
  36081. }
  36082. },
  36083. collar: {
  36084. height: math.unit(0.287, "feet"),
  36085. name: "Collar",
  36086. image: {
  36087. source: "./media/characters/sykes/collar.svg"
  36088. }
  36089. },
  36090. tail: {
  36091. height: math.unit(3.8, "feet"),
  36092. name: "Tail",
  36093. image: {
  36094. source: "./media/characters/sykes/tail.svg"
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Shrunken",
  36101. height: math.unit(5, "inches")
  36102. },
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(6 + 4 / 12, "feet"),
  36106. default: true
  36107. },
  36108. {
  36109. name: "Big",
  36110. height: math.unit(15, "feet")
  36111. },
  36112. ]
  36113. ))
  36114. characterMakers.push(() => makeCharacter(
  36115. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36116. {
  36117. front: {
  36118. height: math.unit(5 + 8/12, "feet"),
  36119. weight: math.unit(190, "lb"),
  36120. name: "Front",
  36121. image: {
  36122. source: "./media/characters/oven-otter/front.svg",
  36123. extra: 1809/1740,
  36124. bottom: 181/1990
  36125. }
  36126. },
  36127. back: {
  36128. height: math.unit(5 + 8/12, "feet"),
  36129. weight: math.unit(190, "lb"),
  36130. name: "Back",
  36131. image: {
  36132. source: "./media/characters/oven-otter/back.svg",
  36133. extra: 1709/1635,
  36134. bottom: 118/1827
  36135. }
  36136. },
  36137. hand: {
  36138. height: math.unit(1.07, "feet"),
  36139. name: "Hand",
  36140. image: {
  36141. source: "./media/characters/oven-otter/hand.svg"
  36142. }
  36143. },
  36144. beans: {
  36145. height: math.unit(1.74, "feet"),
  36146. name: "Beans",
  36147. image: {
  36148. source: "./media/characters/oven-otter/beans.svg"
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Micro",
  36155. height: math.unit(0.5, "inches")
  36156. },
  36157. {
  36158. name: "Normal",
  36159. height: math.unit(5 + 8/12, "feet"),
  36160. default: true
  36161. },
  36162. {
  36163. name: "Macro",
  36164. height: math.unit(250, "feet")
  36165. },
  36166. {
  36167. name: "Really High",
  36168. height: math.unit(420, "feet")
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36174. {
  36175. front: {
  36176. height: math.unit(5, "meters"),
  36177. weight: math.unit(292000000000000, "kg"),
  36178. name: "Front",
  36179. image: {
  36180. source: "./media/characters/devourer/front.svg",
  36181. extra: 1800/1733,
  36182. bottom: 211/2011
  36183. }
  36184. },
  36185. maw: {
  36186. height: math.unit(1.1, "meter"),
  36187. name: "Maw",
  36188. image: {
  36189. source: "./media/characters/devourer/maw.svg"
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Small",
  36196. height: math.unit(3, "meters")
  36197. },
  36198. {
  36199. name: "Large",
  36200. height: math.unit(5, "meters"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36207. {
  36208. front: {
  36209. height: math.unit(6, "feet"),
  36210. weight: math.unit(400, "lb"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/ellarby/front.svg",
  36214. extra: 1909/1763,
  36215. bottom: 80/1989
  36216. }
  36217. },
  36218. back: {
  36219. height: math.unit(6, "feet"),
  36220. weight: math.unit(400, "lb"),
  36221. name: "Back",
  36222. image: {
  36223. source: "./media/characters/ellarby/back.svg",
  36224. extra: 1914/1784,
  36225. bottom: 172/2086
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Mischief",
  36232. height: math.unit(18, "inches")
  36233. },
  36234. {
  36235. name: "Trouble",
  36236. height: math.unit(12, "feet")
  36237. },
  36238. {
  36239. name: "Havoc",
  36240. height: math.unit(200, "feet"),
  36241. default: true
  36242. },
  36243. {
  36244. name: "Pandemonium",
  36245. height: math.unit(1, "mile")
  36246. },
  36247. {
  36248. name: "Catastrophe",
  36249. height: math.unit(100, "miles")
  36250. },
  36251. ]
  36252. ))
  36253. characterMakers.push(() => makeCharacter(
  36254. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36255. {
  36256. front: {
  36257. height: math.unit(4.7, "meters"),
  36258. weight: math.unit(6500, "kg"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/vex/front.svg",
  36262. extra: 1288/1140,
  36263. bottom: 100/1388
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(4.7, "meters"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36277. {
  36278. normal: {
  36279. height: math.unit(6, "feet"),
  36280. weight: math.unit(350, "lb"),
  36281. name: "Normal",
  36282. image: {
  36283. source: "./media/characters/teshy/normal.svg",
  36284. extra: 1795/1735,
  36285. bottom: 16/1811
  36286. }
  36287. },
  36288. monsterFront: {
  36289. height: math.unit(12, "feet"),
  36290. weight: math.unit(4700, "lb"),
  36291. name: "Monster (Front)",
  36292. image: {
  36293. source: "./media/characters/teshy/monster-front.svg",
  36294. extra: 2042/2034,
  36295. bottom: 128/2170
  36296. }
  36297. },
  36298. monsterSide: {
  36299. height: math.unit(12, "feet"),
  36300. weight: math.unit(4700, "lb"),
  36301. name: "Monster (Side)",
  36302. image: {
  36303. source: "./media/characters/teshy/monster-side.svg",
  36304. extra: 2067/2056,
  36305. bottom: 70/2137
  36306. }
  36307. },
  36308. monsterBack: {
  36309. height: math.unit(12, "feet"),
  36310. weight: math.unit(4700, "lb"),
  36311. name: "Monster (Back)",
  36312. image: {
  36313. source: "./media/characters/teshy/monster-back.svg",
  36314. extra: 1921/1914,
  36315. bottom: 171/2092
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(6, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(6, "feet"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/ramey/front.svg",
  36335. extra: 790/787,
  36336. bottom: 27/817
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(6, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(5 + 5/12, "feet"),
  36353. weight: math.unit(120, "lb"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/phirae/front.svg",
  36357. extra: 2491/2436,
  36358. bottom: 38/2529
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(5 + 5/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36372. {
  36373. front: {
  36374. height: math.unit(5 + 3/12, "feet"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/stagglas/front.svg",
  36378. extra: 962/882,
  36379. bottom: 53/1015
  36380. }
  36381. },
  36382. feral: {
  36383. height: math.unit(335, "cm"),
  36384. name: "Feral",
  36385. image: {
  36386. source: "./media/characters/stagglas/feral.svg",
  36387. extra: 1732/1090,
  36388. bottom: 48/1780
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(5 + 3/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(5 + 4/12, "feet"),
  36405. weight: math.unit(145, "lb"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/starra/front.svg",
  36409. extra: 1790/1691,
  36410. bottom: 91/1881
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(5 + 4/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(2.2, "meters"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36430. extra: 1248/972,
  36431. bottom: 38/1286
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(2.2, "meters"),
  36439. default: true
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36445. {
  36446. side: {
  36447. height: math.unit(8 + 2/12, "feet"),
  36448. weight: math.unit(1240, "lb"),
  36449. name: "Side",
  36450. image: {
  36451. source: "./media/characters/mika-valentine/side.svg",
  36452. extra: 2670/2501,
  36453. bottom: 250/2920
  36454. }
  36455. },
  36456. },
  36457. [
  36458. {
  36459. name: "Normal",
  36460. height: math.unit(8 + 2/12, "feet"),
  36461. default: true
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(7 + 2/12, "feet"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/xoltol/front.svg",
  36473. extra: 2212/2124,
  36474. bottom: 84/2296
  36475. }
  36476. },
  36477. side: {
  36478. height: math.unit(7 + 2/12, "feet"),
  36479. name: "Side",
  36480. image: {
  36481. source: "./media/characters/xoltol/side.svg",
  36482. extra: 2273/2197,
  36483. bottom: 26/2299
  36484. }
  36485. },
  36486. hand: {
  36487. height: math.unit(2.5, "feet"),
  36488. name: "Hand",
  36489. image: {
  36490. source: "./media/characters/xoltol/hand.svg"
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Small-ish",
  36497. height: math.unit(5 + 11/12, "feet")
  36498. },
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(7 + 2/12, "feet")
  36502. },
  36503. {
  36504. name: "\"Macro\"",
  36505. height: math.unit(14 + 9/12, "feet"),
  36506. default: true
  36507. },
  36508. {
  36509. name: "Alternate Height",
  36510. height: math.unit(20, "feet")
  36511. },
  36512. {
  36513. name: "Actually Macro",
  36514. height: math.unit(100, "feet")
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(5 + 2/12, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/kotetsu-redwood/front.svg",
  36526. extra: 1053/942,
  36527. bottom: 60/1113
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 2/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(2.4, "meters"),
  36544. weight: math.unit(125, "kg"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/lilith/front.svg",
  36548. extra: 1590/1513,
  36549. bottom: 203/1793
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Humanoid",
  36556. height: math.unit(2.4, "meters")
  36557. },
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(6, "meters"),
  36561. default: true
  36562. },
  36563. {
  36564. name: "Largest",
  36565. height: math.unit(55, "meters")
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(8 + 4/12, "feet"),
  36574. weight: math.unit(535, "lb"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/beh'kah-bolger/front.svg",
  36578. extra: 1660/1603,
  36579. bottom: 37/1697
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(8 + 4/12, "feet"),
  36587. default: true
  36588. },
  36589. {
  36590. name: "Kaiju",
  36591. height: math.unit(250, "feet")
  36592. },
  36593. {
  36594. name: "Still Growing",
  36595. height: math.unit(10, "miles")
  36596. },
  36597. {
  36598. name: "Continental",
  36599. height: math.unit(5000, "miles")
  36600. },
  36601. {
  36602. name: "Final Form",
  36603. height: math.unit(2500000, "miles")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(7 + 2/12, "feet"),
  36612. weight: math.unit(230, "kg"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/tatyana-milewska/front.svg",
  36616. extra: 1199/1150,
  36617. bottom: 86/1285
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(7 + 2/12, "feet"),
  36625. default: true
  36626. },
  36627. {
  36628. name: "Big",
  36629. height: math.unit(12, "feet")
  36630. },
  36631. {
  36632. name: "Minimacro",
  36633. height: math.unit(20, "feet")
  36634. },
  36635. {
  36636. name: "Macro",
  36637. height: math.unit(120, "feet")
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36643. {
  36644. front: {
  36645. height: math.unit(7 + 8/12, "feet"),
  36646. weight: math.unit(152, "kg"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/helen-arri/front.svg",
  36650. extra: 440/423,
  36651. bottom: 14/454
  36652. }
  36653. },
  36654. back: {
  36655. height: math.unit(7 + 8/12, "feet"),
  36656. weight: math.unit(152, "kg"),
  36657. name: "Back",
  36658. image: {
  36659. source: "./media/characters/helen-arri/back.svg",
  36660. extra: 443/426,
  36661. bottom: 8/451
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(7 + 8/12, "feet"),
  36669. default: true
  36670. },
  36671. {
  36672. name: "Big",
  36673. height: math.unit(14, "feet")
  36674. },
  36675. {
  36676. name: "Minimacro",
  36677. height: math.unit(24, "feet")
  36678. },
  36679. {
  36680. name: "Macro",
  36681. height: math.unit(140, "feet")
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36687. {
  36688. front: {
  36689. height: math.unit(6, "meters"),
  36690. name: "Front",
  36691. image: {
  36692. source: "./media/characters/ehanu-rehu/front.svg",
  36693. extra: 1800/1800,
  36694. bottom: 59/1859
  36695. }
  36696. },
  36697. },
  36698. [
  36699. {
  36700. name: "Normal",
  36701. height: math.unit(6, "meters"),
  36702. default: true
  36703. },
  36704. ]
  36705. ))
  36706. characterMakers.push(() => makeCharacter(
  36707. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36708. {
  36709. front: {
  36710. height: math.unit(7 + 3/12, "feet"),
  36711. name: "Front",
  36712. image: {
  36713. source: "./media/characters/renholder/front.svg",
  36714. extra: 3096/2960,
  36715. bottom: 250/3346
  36716. }
  36717. },
  36718. },
  36719. [
  36720. {
  36721. name: "Normal Bat",
  36722. height: math.unit(7 + 3/12, "feet"),
  36723. default: true
  36724. },
  36725. {
  36726. name: "Slightly Tall Bat",
  36727. height: math.unit(100, "feet")
  36728. },
  36729. {
  36730. name: "Big Bat",
  36731. height: math.unit(1000, "feet")
  36732. },
  36733. {
  36734. name: "City-Sized Bat",
  36735. height: math.unit(200000, "feet")
  36736. },
  36737. {
  36738. name: "Bigger Bat",
  36739. height: math.unit(10000, "miles")
  36740. },
  36741. {
  36742. name: "Solar Sized Bat",
  36743. height: math.unit(100, "AU")
  36744. },
  36745. {
  36746. name: "Galactic Bat",
  36747. height: math.unit(200000, "lightyears")
  36748. },
  36749. {
  36750. name: "Universally Known Bat",
  36751. height: math.unit(1, "universe")
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(6 + 11/12, "feet"),
  36760. weight: math.unit(250, "lb"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/cookiecat/front.svg",
  36764. extra: 893/827,
  36765. bottom: 14/907
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Micro",
  36772. height: math.unit(3, "inches")
  36773. },
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(6 + 11/12, "feet"),
  36777. default: true
  36778. },
  36779. {
  36780. name: "Macro",
  36781. height: math.unit(100, "feet")
  36782. },
  36783. {
  36784. name: "Macro+",
  36785. height: math.unit(404, "feet")
  36786. },
  36787. {
  36788. name: "Megamacro",
  36789. height: math.unit(165, "miles")
  36790. },
  36791. {
  36792. name: "Planetary",
  36793. height: math.unit(4600, "miles")
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(10 + 3/12, "feet"),
  36802. weight: math.unit(1500, "lb"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/tux-kusanagi/front.svg",
  36806. extra: 944/840,
  36807. bottom: 39/983
  36808. }
  36809. },
  36810. back: {
  36811. height: math.unit(10 + 3/12, "feet"),
  36812. weight: math.unit(1500, "lb"),
  36813. name: "Back",
  36814. image: {
  36815. source: "./media/characters/tux-kusanagi/back.svg",
  36816. extra: 941/842,
  36817. bottom: 28/969
  36818. }
  36819. },
  36820. rump: {
  36821. height: math.unit(5.25, "feet"),
  36822. name: "Rump",
  36823. image: {
  36824. source: "./media/characters/tux-kusanagi/rump.svg"
  36825. }
  36826. },
  36827. beak: {
  36828. height: math.unit(1.54, "feet"),
  36829. name: "Beak",
  36830. image: {
  36831. source: "./media/characters/tux-kusanagi/beak.svg"
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(10 + 3/12, "feet"),
  36839. default: true
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(58, "feet"),
  36848. weight: math.unit(200, "tons"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/uzarmazari/front.svg",
  36852. extra: 1575/1455,
  36853. bottom: 152/1727
  36854. }
  36855. },
  36856. back: {
  36857. height: math.unit(58, "feet"),
  36858. weight: math.unit(200, "tons"),
  36859. name: "Back",
  36860. image: {
  36861. source: "./media/characters/uzarmazari/back.svg",
  36862. extra: 1585/1510,
  36863. bottom: 157/1742
  36864. }
  36865. },
  36866. head: {
  36867. height: math.unit(26, "feet"),
  36868. name: "Head",
  36869. image: {
  36870. source: "./media/characters/uzarmazari/head.svg"
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(58, "feet"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36884. {
  36885. side: {
  36886. height: math.unit(15, "feet"),
  36887. name: "Side",
  36888. image: {
  36889. source: "./media/characters/akitu/side.svg",
  36890. extra: 1421/1321,
  36891. bottom: 157/1578
  36892. }
  36893. },
  36894. front: {
  36895. height: math.unit(15, "feet"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/akitu/front.svg",
  36899. extra: 1435/1326,
  36900. bottom: 232/1667
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(15, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(10 + 8/12, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/azalie-croixland/front.svg",
  36920. extra: 1972/1856,
  36921. bottom: 31/2003
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Original Height",
  36928. height: math.unit(5 + 4/12, "feet")
  36929. },
  36930. {
  36931. name: "Normal Height",
  36932. height: math.unit(10 + 8/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36939. {
  36940. side: {
  36941. height: math.unit(7 + 1/12, "feet"),
  36942. weight: math.unit(245, "lb"),
  36943. name: "Side",
  36944. image: {
  36945. source: "./media/characters/kavus-kazian/side.svg",
  36946. extra: 349/342,
  36947. bottom: 15/364
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(7 + 1/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36961. {
  36962. normalFront: {
  36963. height: math.unit(5 + 11/12, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/moonlight-rose/normal-front.svg",
  36967. extra: 1980/1825,
  36968. bottom: 18/1998
  36969. },
  36970. form: "normal",
  36971. default: true
  36972. },
  36973. normalBack: {
  36974. height: math.unit(5 + 11/12, "feet"),
  36975. name: "Back",
  36976. image: {
  36977. source: "./media/characters/moonlight-rose/normal-back.svg",
  36978. extra: 2010/1839,
  36979. bottom: 10/2020
  36980. },
  36981. form: "normal"
  36982. },
  36983. demonFront: {
  36984. height: math.unit(1.5, "earths"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/moonlight-rose/demon.svg",
  36988. extra: 1400/1294,
  36989. bottom: 45/1445
  36990. },
  36991. form: "demon",
  36992. default: true
  36993. },
  36994. terraFront: {
  36995. height: math.unit(1.5, "earths"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/moonlight-rose/terra.svg"
  36999. },
  37000. form: "terra",
  37001. default: true
  37002. },
  37003. jupiterFront: {
  37004. height: math.unit(69911*2, "km"),
  37005. name: "Front",
  37006. image: {
  37007. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37008. extra: 1367/1286,
  37009. bottom: 55/1422
  37010. },
  37011. form: "jupiter",
  37012. default: true
  37013. },
  37014. neptuneFront: {
  37015. height: math.unit(24622*2, "feet"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37019. extra: 1851/1712,
  37020. bottom: 0/1851
  37021. },
  37022. form: "neptune",
  37023. default: true
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "\"Natural\" Height",
  37029. height: math.unit(5 + 11/12, "feet"),
  37030. form: "normal"
  37031. },
  37032. {
  37033. name: "Smallest comfortable size",
  37034. height: math.unit(40, "meters"),
  37035. form: "normal"
  37036. },
  37037. {
  37038. name: "Common size",
  37039. height: math.unit(50, "km"),
  37040. form: "normal",
  37041. default: true
  37042. },
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(1.5, "earths"),
  37046. form: "demon",
  37047. default: true
  37048. },
  37049. {
  37050. name: "Universal",
  37051. height: math.unit(15, "universes"),
  37052. form: "demon"
  37053. },
  37054. {
  37055. name: "Earth",
  37056. height: math.unit(1.5, "earths"),
  37057. form: "terra",
  37058. default: true
  37059. },
  37060. {
  37061. name: "Super Earth",
  37062. height: math.unit(67.5, "earths"),
  37063. form: "terra"
  37064. },
  37065. {
  37066. name: "Doesn't fit in a solar system...",
  37067. height: math.unit(1, "galaxy"),
  37068. form: "terra"
  37069. },
  37070. {
  37071. name: "Saturn",
  37072. height: math.unit(58232*2, "km"),
  37073. form: "jupiter"
  37074. },
  37075. {
  37076. name: "Jupiter",
  37077. height: math.unit(69911*2, "km"),
  37078. form: "jupiter",
  37079. default: true
  37080. },
  37081. {
  37082. name: "HD 100546 b",
  37083. height: math.unit(482938, "km"),
  37084. form: "jupiter"
  37085. },
  37086. {
  37087. name: "Enceladus",
  37088. height: math.unit(513*2, "km"),
  37089. form: "neptune"
  37090. },
  37091. {
  37092. name: "Europe",
  37093. height: math.unit(1560*2, "km"),
  37094. form: "neptune"
  37095. },
  37096. {
  37097. name: "Neptune",
  37098. height: math.unit(24622*2, "km"),
  37099. form: "neptune",
  37100. default: true
  37101. },
  37102. {
  37103. name: "CoRoT-9b",
  37104. height: math.unit(75067*2, "km"),
  37105. form: "neptune"
  37106. },
  37107. ],
  37108. {
  37109. "normal": {
  37110. name: "Normal",
  37111. default: true
  37112. },
  37113. "demon": {
  37114. name: "Demon"
  37115. },
  37116. "terra": {
  37117. name: "Terra"
  37118. },
  37119. "jupiter": {
  37120. name: "Jupiter"
  37121. },
  37122. "neptune": {
  37123. name: "Neptune"
  37124. }
  37125. }
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(16, "feet"),
  37132. weight: math.unit(610, "kg"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/huckle/front.svg",
  37136. extra: 1731/1625,
  37137. bottom: 33/1764
  37138. }
  37139. },
  37140. back: {
  37141. height: math.unit(16, "feet"),
  37142. weight: math.unit(610, "kg"),
  37143. name: "Back",
  37144. image: {
  37145. source: "./media/characters/huckle/back.svg",
  37146. extra: 1738/1651,
  37147. bottom: 37/1775
  37148. }
  37149. },
  37150. laughing: {
  37151. height: math.unit(3.75, "feet"),
  37152. name: "Laughing",
  37153. image: {
  37154. source: "./media/characters/huckle/laughing.svg"
  37155. }
  37156. },
  37157. angry: {
  37158. height: math.unit(4.15, "feet"),
  37159. name: "Angry",
  37160. image: {
  37161. source: "./media/characters/huckle/angry.svg"
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(16, "feet"),
  37169. default: true
  37170. },
  37171. {
  37172. name: "Mini Macro",
  37173. height: math.unit(463, "feet")
  37174. },
  37175. {
  37176. name: "Macro",
  37177. height: math.unit(1680, "meters")
  37178. },
  37179. {
  37180. name: "Mega Macro",
  37181. height: math.unit(175, "km")
  37182. },
  37183. {
  37184. name: "Terra Macro",
  37185. height: math.unit(32, "gigameters")
  37186. },
  37187. {
  37188. name: "Multiverse+",
  37189. height: math.unit(2.56e23, "yottameters")
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(6 + 9/12, "feet"),
  37198. weight: math.unit(280, "lb"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/candy/front.svg",
  37202. extra: 234/217,
  37203. bottom: 11/245
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Really Small",
  37210. height: math.unit(0.1, "nm")
  37211. },
  37212. {
  37213. name: "Micro",
  37214. height: math.unit(2, "inches")
  37215. },
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(6 + 9/12, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Small Macro",
  37223. height: math.unit(69, "feet")
  37224. },
  37225. {
  37226. name: "Macro",
  37227. height: math.unit(160, "feet")
  37228. },
  37229. {
  37230. name: "Megamacro",
  37231. height: math.unit(22000, "miles")
  37232. },
  37233. {
  37234. name: "Gigamacro",
  37235. height: math.unit(50000, "miles")
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37241. {
  37242. front: {
  37243. height: math.unit(4, "feet"),
  37244. weight: math.unit(90, "lb"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/joey-mcdonald/front.svg",
  37248. extra: 1059/852,
  37249. bottom: 33/1092
  37250. }
  37251. },
  37252. back: {
  37253. height: math.unit(4, "feet"),
  37254. weight: math.unit(90, "lb"),
  37255. name: "Back",
  37256. image: {
  37257. source: "./media/characters/joey-mcdonald/back.svg",
  37258. extra: 1077/879,
  37259. bottom: 5/1082
  37260. }
  37261. },
  37262. frontKobold: {
  37263. height: math.unit(4, "feet"),
  37264. weight: math.unit(100, "lb"),
  37265. name: "Front-kobold",
  37266. image: {
  37267. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37268. extra: 1480/1367,
  37269. bottom: 0/1480
  37270. }
  37271. },
  37272. backKobold: {
  37273. height: math.unit(4, "feet"),
  37274. weight: math.unit(100, "lb"),
  37275. name: "Back-kobold",
  37276. image: {
  37277. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37278. extra: 1449/1361,
  37279. bottom: 0/1449
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(4, "feet"),
  37287. default: true
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(12 + 6/12, "feet"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/kass-lockheed/front.svg",
  37299. extra: 354/343,
  37300. bottom: 9/363
  37301. }
  37302. },
  37303. back: {
  37304. height: math.unit(12 + 6/12, "feet"),
  37305. name: "Back",
  37306. image: {
  37307. source: "./media/characters/kass-lockheed/back.svg",
  37308. extra: 364/352,
  37309. bottom: 3/367
  37310. }
  37311. },
  37312. dick: {
  37313. height: math.unit(3.12, "feet"),
  37314. name: "Dick",
  37315. image: {
  37316. source: "./media/characters/kass-lockheed/dick.svg"
  37317. }
  37318. },
  37319. head: {
  37320. height: math.unit(2.6, "feet"),
  37321. name: "Head",
  37322. image: {
  37323. source: "./media/characters/kass-lockheed/head.svg"
  37324. }
  37325. },
  37326. bleh: {
  37327. height: math.unit(2.85, "feet"),
  37328. name: "Bleh",
  37329. image: {
  37330. source: "./media/characters/kass-lockheed/bleh.svg"
  37331. }
  37332. },
  37333. smug: {
  37334. height: math.unit(2.85, "feet"),
  37335. name: "Smug",
  37336. image: {
  37337. source: "./media/characters/kass-lockheed/smug.svg"
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(12 + 6/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(6 + 2/12, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/taylor/front.svg",
  37357. extra: 639/495,
  37358. bottom: 12/651
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(6 + 2/12, "feet"),
  37366. default: true
  37367. },
  37368. {
  37369. name: "Big",
  37370. height: math.unit(15, "feet")
  37371. },
  37372. {
  37373. name: "Lorg",
  37374. height: math.unit(80, "feet")
  37375. },
  37376. {
  37377. name: "Too Lorg",
  37378. height: math.unit(120, "feet")
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(15, "feet"),
  37387. name: "Front",
  37388. image: {
  37389. source: "./media/characters/kaizer/front.svg",
  37390. extra: 1612/1436,
  37391. bottom: 43/1655
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(15, "feet"),
  37399. default: true
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(2, "feet"),
  37408. weight: math.unit(30, "lb"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/sandy/front.svg",
  37412. extra: 1439/1307,
  37413. bottom: 194/1633
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(2, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(3, "feet"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/mellvi/front.svg",
  37433. extra: 1831/1630,
  37434. bottom: 58/1889
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(3, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(5 + 11/12, "feet"),
  37451. weight: math.unit(200, "lb"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/shirou/front.svg",
  37455. extra: 2491/2383,
  37456. bottom: 189/2680
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(5 + 11/12, "feet"),
  37461. weight: math.unit(200, "lb"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/shirou/back.svg",
  37465. extra: 2554/2450,
  37466. bottom: 76/2630
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(5 + 11/12, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(6 + 3/12, "feet"),
  37483. weight: math.unit(177, "lb"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/noryu/front.svg",
  37487. extra: 973/885,
  37488. bottom: 10/983
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Normal",
  37495. height: math.unit(6 + 3/12, "feet"),
  37496. default: true
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(5 + 6/12, "feet"),
  37505. weight: math.unit(170, "lb"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/mevolas-rubenido/front.svg",
  37509. extra: 2109/1901,
  37510. bottom: 96/2205
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(5 + 6/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(100, "feet"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/dee/front.svg",
  37530. extra: 2153/2036,
  37531. bottom: 59/2212
  37532. }
  37533. },
  37534. back: {
  37535. height: math.unit(100, "feet"),
  37536. name: "Back",
  37537. image: {
  37538. source: "./media/characters/dee/back.svg",
  37539. extra: 2183/2058,
  37540. bottom: 75/2258
  37541. }
  37542. },
  37543. foot: {
  37544. height: math.unit(19.43, "feet"),
  37545. name: "Foot",
  37546. image: {
  37547. source: "./media/characters/dee/foot.svg"
  37548. }
  37549. },
  37550. hoof: {
  37551. height: math.unit(20.6, "feet"),
  37552. name: "Hoof",
  37553. image: {
  37554. source: "./media/characters/dee/hoof.svg"
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Macro",
  37561. height: math.unit(100, "feet"),
  37562. default: true
  37563. },
  37564. ]
  37565. ))
  37566. characterMakers.push(() => makeCharacter(
  37567. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37568. {
  37569. front: {
  37570. height: math.unit(5 + 6/12, "feet"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/teh/front.svg",
  37574. extra: 1002/847,
  37575. bottom: 62/1064
  37576. }
  37577. },
  37578. },
  37579. [
  37580. {
  37581. name: "Normal",
  37582. height: math.unit(5 + 6/12, "feet"),
  37583. default: true
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37589. {
  37590. side: {
  37591. height: math.unit(6 + 1/12, "feet"),
  37592. weight: math.unit(204, "lb"),
  37593. name: "Side",
  37594. image: {
  37595. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37596. extra: 974/775,
  37597. bottom: 169/1143
  37598. }
  37599. },
  37600. sitting: {
  37601. height: math.unit(6 + 2/12, "feet"),
  37602. weight: math.unit(204, "lb"),
  37603. name: "Sitting",
  37604. image: {
  37605. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37606. extra: 1175/964,
  37607. bottom: 378/1553
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(6 + 1/12, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37621. {
  37622. front: {
  37623. height: math.unit(6, "inches"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/tululi/front.svg",
  37627. extra: 1997/1876,
  37628. bottom: 20/2017
  37629. }
  37630. },
  37631. },
  37632. [
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(6, "inches"),
  37636. default: true
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(4 + 1/12, "feet"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/star/front.svg",
  37648. extra: 1493/1189,
  37649. bottom: 48/1541
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(4 + 1/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(6 + 3/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/comet/front.svg",
  37669. extra: 1681/1462,
  37670. bottom: 26/1707
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(6 + 3/12, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(950, "feet"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/vortex/front.svg",
  37690. extra: 1497/1434,
  37691. bottom: 56/1553
  37692. }
  37693. },
  37694. maw: {
  37695. height: math.unit(285, "feet"),
  37696. name: "Maw",
  37697. image: {
  37698. source: "./media/characters/vortex/maw.svg"
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Macro",
  37705. height: math.unit(950, "feet"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(600, "feet"),
  37715. weight: math.unit(0.02, "grams"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/doodle/front.svg",
  37719. extra: 1578/1413,
  37720. bottom: 37/1615
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Macro",
  37727. height: math.unit(600, "feet"),
  37728. default: true
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(6 + 6/12, "feet"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/jai/front.svg",
  37740. extra: 1645/1534,
  37741. bottom: 115/1760
  37742. }
  37743. },
  37744. },
  37745. [
  37746. {
  37747. name: "Normal",
  37748. height: math.unit(6 + 6/12, "feet"),
  37749. default: true
  37750. },
  37751. ]
  37752. ))
  37753. characterMakers.push(() => makeCharacter(
  37754. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37755. {
  37756. front: {
  37757. height: math.unit(6 + 8/12, "feet"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/pixel/front.svg",
  37761. extra: 1900/1735,
  37762. bottom: 63/1963
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(6 + 8/12, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37776. {
  37777. back: {
  37778. height: math.unit(4 + 1/12, "feet"),
  37779. weight: math.unit(75, "lb"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/rhett/back.svg",
  37783. extra: 930/878,
  37784. bottom: 25/955
  37785. }
  37786. },
  37787. front: {
  37788. height: math.unit(4 + 1/12, "feet"),
  37789. weight: math.unit(75, "lb"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/rhett/front.svg",
  37793. extra: 1682/1586,
  37794. bottom: 92/1774
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Micro",
  37801. height: math.unit(8, "inches")
  37802. },
  37803. {
  37804. name: "Tiny",
  37805. height: math.unit(2, "feet")
  37806. },
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(4 + 1/12, "feet"),
  37810. default: true
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(3 + 3/12, "feet"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/penny/front.svg",
  37822. extra: 1406/1311,
  37823. bottom: 26/1432
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(3 + 3/12, "feet"),
  37831. default: true
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(4 + 11/12, "feet"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/monty/front.svg",
  37843. extra: 1479/1209,
  37844. bottom: 0/1479
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(4 + 11/12, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(8 + 4/12, "feet"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/sterling/front.svg",
  37864. extra: 1420/1236,
  37865. bottom: 27/1447
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(8 + 4/12, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(15, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/marble/front.svg",
  37885. extra: 973/937,
  37886. bottom: 32/1005
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(15, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37900. {
  37901. front: {
  37902. height: math.unit(3, "inches"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/powder/front.svg",
  37906. extra: 1504/1334,
  37907. bottom: 518/2022
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Normal",
  37914. height: math.unit(3, "inches"),
  37915. default: true
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(4 + 5/12, "feet"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/joey-raccoon/front.svg",
  37927. extra: 1273/1197,
  37928. bottom: 0/1273
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(4 + 5/12, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(8 + 4/12, "feet"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/vick/front.svg",
  37948. extra: 2187/2118,
  37949. bottom: 47/2234
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(8 + 4/12, "feet"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(5 + 5/12, "feet"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/mitsy/front.svg",
  37969. extra: 1842/1695,
  37970. bottom: 0/1842
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(5 + 5/12, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37984. {
  37985. front: {
  37986. height: math.unit(6 + 3/12, "feet"),
  37987. name: "Front",
  37988. image: {
  37989. source: "./media/characters/silvy/front.svg",
  37990. extra: 1995/1836,
  37991. bottom: 225/2220
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(6 + 3/12, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(3 + 8/12, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/rodney/front.svg",
  38011. extra: 1956/1747,
  38012. bottom: 31/1987
  38013. }
  38014. },
  38015. frontDressed: {
  38016. height: math.unit(2.9, "feet"),
  38017. name: "Front (Dressed)",
  38018. image: {
  38019. source: "./media/characters/rodney/front-dressed.svg",
  38020. extra: 1382/1241,
  38021. bottom: 385/1767
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(3 + 8/12, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(5 + 9/12, "feet"),
  38038. weight: math.unit(194, "lbs"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/zakail-sudekai/front.svg",
  38042. extra: 2696/2533,
  38043. bottom: 248/2944
  38044. }
  38045. },
  38046. maw: {
  38047. height: math.unit(1.35, "feet"),
  38048. name: "Maw",
  38049. image: {
  38050. source: "./media/characters/zakail-sudekai/maw.svg"
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(5 + 9/12, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(8 + 4/12, "feet"),
  38067. weight: math.unit(1200, "lb"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/eleanor/front.svg",
  38071. extra: 1226/1192,
  38072. bottom: 52/1278
  38073. }
  38074. },
  38075. back: {
  38076. height: math.unit(8 + 4/12, "feet"),
  38077. weight: math.unit(1200, "lb"),
  38078. name: "Back",
  38079. image: {
  38080. source: "./media/characters/eleanor/back.svg",
  38081. extra: 1242/1184,
  38082. bottom: 60/1302
  38083. }
  38084. },
  38085. head: {
  38086. height: math.unit(2.62, "feet"),
  38087. name: "Head",
  38088. image: {
  38089. source: "./media/characters/eleanor/head.svg"
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(8 + 4/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(8 + 4/12, "feet"),
  38106. weight: math.unit(750, "lb"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/tanya/front.svg",
  38110. extra: 1749/1615,
  38111. bottom: 33/1782
  38112. }
  38113. },
  38114. },
  38115. [
  38116. {
  38117. name: "Normal",
  38118. height: math.unit(8 + 4/12, "feet"),
  38119. default: true
  38120. },
  38121. ]
  38122. ))
  38123. characterMakers.push(() => makeCharacter(
  38124. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38125. {
  38126. front: {
  38127. height: math.unit(5, "feet"),
  38128. weight: math.unit(225, "lb"),
  38129. name: "Front",
  38130. image: {
  38131. source: "./media/characters/cindy/front.svg",
  38132. extra: 1320/1250,
  38133. bottom: 42/1362
  38134. }
  38135. },
  38136. frontDressed: {
  38137. height: math.unit(5, "feet"),
  38138. weight: math.unit(225, "lb"),
  38139. name: "Front (Dressed)",
  38140. image: {
  38141. source: "./media/characters/cindy/front-dressed.svg",
  38142. extra: 1320/1250,
  38143. bottom: 42/1362
  38144. }
  38145. },
  38146. back: {
  38147. height: math.unit(5, "feet"),
  38148. weight: math.unit(225, "lb"),
  38149. name: "Back",
  38150. image: {
  38151. source: "./media/characters/cindy/back.svg",
  38152. extra: 1384/1346,
  38153. bottom: 14/1398
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Normal",
  38160. height: math.unit(5, "feet"),
  38161. default: true
  38162. },
  38163. ]
  38164. ))
  38165. characterMakers.push(() => makeCharacter(
  38166. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38167. {
  38168. front: {
  38169. height: math.unit(6 + 9/12, "feet"),
  38170. weight: math.unit(440, "lb"),
  38171. name: "Front",
  38172. image: {
  38173. source: "./media/characters/wilbur-owen/front.svg",
  38174. extra: 1575/1448,
  38175. bottom: 72/1647
  38176. }
  38177. },
  38178. back: {
  38179. height: math.unit(6 + 9/12, "feet"),
  38180. weight: math.unit(440, "lb"),
  38181. name: "Back",
  38182. image: {
  38183. source: "./media/characters/wilbur-owen/back.svg",
  38184. extra: 1578/1445,
  38185. bottom: 36/1614
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(6 + 9/12, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(6 + 5/12, "feet"),
  38202. weight: math.unit(650, "lb"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/keegan/front.svg",
  38206. extra: 2387/2198,
  38207. bottom: 33/2420
  38208. }
  38209. },
  38210. side: {
  38211. height: math.unit(6 + 5/12, "feet"),
  38212. weight: math.unit(650, "lb"),
  38213. name: "Side",
  38214. image: {
  38215. source: "./media/characters/keegan/side.svg",
  38216. extra: 2390/2202,
  38217. bottom: 47/2437
  38218. }
  38219. },
  38220. back: {
  38221. height: math.unit(6 + 5/12, "feet"),
  38222. weight: math.unit(650, "lb"),
  38223. name: "Back",
  38224. image: {
  38225. source: "./media/characters/keegan/back.svg",
  38226. extra: 2418/2268,
  38227. bottom: 15/2433
  38228. }
  38229. },
  38230. frontSfw: {
  38231. height: math.unit(6 + 5/12, "feet"),
  38232. weight: math.unit(650, "lb"),
  38233. name: "Front (SFW)",
  38234. image: {
  38235. source: "./media/characters/keegan/front-sfw.svg",
  38236. extra: 2387/2198,
  38237. bottom: 33/2420
  38238. }
  38239. },
  38240. beans: {
  38241. height: math.unit(1.85, "feet"),
  38242. name: "Beans",
  38243. image: {
  38244. source: "./media/characters/keegan/beans.svg"
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Normal",
  38251. height: math.unit(6 + 5/12, "feet"),
  38252. default: true
  38253. },
  38254. ]
  38255. ))
  38256. characterMakers.push(() => makeCharacter(
  38257. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38258. {
  38259. front: {
  38260. height: math.unit(9, "feet"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/colton/front.svg",
  38264. extra: 1589/1326,
  38265. bottom: 139/1728
  38266. }
  38267. },
  38268. },
  38269. [
  38270. {
  38271. name: "Normal",
  38272. height: math.unit(9, "feet"),
  38273. default: true
  38274. },
  38275. ]
  38276. ))
  38277. characterMakers.push(() => makeCharacter(
  38278. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38279. {
  38280. front: {
  38281. height: math.unit(2 + 9/12, "feet"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/bora/front.svg",
  38285. extra: 1265/1250,
  38286. bottom: 24/1289
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(2 + 9/12, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(8, "feet"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/myu-myu/front.svg",
  38306. extra: 1949/1857,
  38307. bottom: 90/2039
  38308. }
  38309. },
  38310. },
  38311. [
  38312. {
  38313. name: "Normal",
  38314. height: math.unit(8, "feet"),
  38315. default: true
  38316. },
  38317. {
  38318. name: "Big",
  38319. height: math.unit(15, "feet")
  38320. },
  38321. {
  38322. name: "BIG",
  38323. height: math.unit(25, "feet")
  38324. },
  38325. ]
  38326. ))
  38327. characterMakers.push(() => makeCharacter(
  38328. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38329. {
  38330. side: {
  38331. height: math.unit(7 + 5/12, "feet"),
  38332. weight: math.unit(2800, "lb"),
  38333. name: "Side",
  38334. image: {
  38335. source: "./media/characters/haloren/side.svg",
  38336. extra: 1793/409,
  38337. bottom: 59/1852
  38338. }
  38339. },
  38340. frontPaw: {
  38341. height: math.unit(2.36, "feet"),
  38342. name: "Front paw",
  38343. image: {
  38344. source: "./media/characters/haloren/front-paw.svg"
  38345. }
  38346. },
  38347. hindPaw: {
  38348. height: math.unit(3.18, "feet"),
  38349. name: "Hind paw",
  38350. image: {
  38351. source: "./media/characters/haloren/hind-paw.svg"
  38352. }
  38353. },
  38354. maw: {
  38355. height: math.unit(5.05, "feet"),
  38356. name: "Maw",
  38357. image: {
  38358. source: "./media/characters/haloren/maw.svg"
  38359. }
  38360. },
  38361. dick: {
  38362. height: math.unit(2.90, "feet"),
  38363. name: "Dick",
  38364. image: {
  38365. source: "./media/characters/haloren/dick.svg"
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(7 + 5/12, "feet"),
  38373. default: true
  38374. },
  38375. {
  38376. name: "Enhanced",
  38377. height: math.unit(14 + 3/12, "feet")
  38378. },
  38379. ]
  38380. ))
  38381. characterMakers.push(() => makeCharacter(
  38382. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38383. {
  38384. front: {
  38385. height: math.unit(171, "cm"),
  38386. name: "Front",
  38387. image: {
  38388. source: "./media/characters/kimmy/front.svg",
  38389. extra: 1491/1435,
  38390. bottom: 53/1544
  38391. }
  38392. },
  38393. },
  38394. [
  38395. {
  38396. name: "Small",
  38397. height: math.unit(9, "cm")
  38398. },
  38399. {
  38400. name: "Normal",
  38401. height: math.unit(171, "cm"),
  38402. default: true
  38403. },
  38404. ]
  38405. ))
  38406. characterMakers.push(() => makeCharacter(
  38407. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38408. {
  38409. front: {
  38410. height: math.unit(8, "feet"),
  38411. weight: math.unit(300, "lb"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/galeboomer/front.svg",
  38415. extra: 4651/4415,
  38416. bottom: 162/4813
  38417. }
  38418. },
  38419. back: {
  38420. height: math.unit(8, "feet"),
  38421. weight: math.unit(300, "lb"),
  38422. name: "Back",
  38423. image: {
  38424. source: "./media/characters/galeboomer/back.svg",
  38425. extra: 4544/4314,
  38426. bottom: 16/4560
  38427. }
  38428. },
  38429. frontAlt: {
  38430. height: math.unit(8, "feet"),
  38431. weight: math.unit(300, "lb"),
  38432. name: "Front (Alt)",
  38433. image: {
  38434. source: "./media/characters/galeboomer/front-alt.svg",
  38435. extra: 4458/4228,
  38436. bottom: 68/4526
  38437. }
  38438. },
  38439. maw: {
  38440. height: math.unit(1.2, "feet"),
  38441. name: "Maw",
  38442. image: {
  38443. source: "./media/characters/galeboomer/maw.svg"
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(8, "feet"),
  38451. default: true
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(5 + 9/12, "feet"),
  38460. weight: math.unit(120, "lb"),
  38461. name: "Front",
  38462. image: {
  38463. source: "./media/characters/chyr/front.svg",
  38464. extra: 1323/1254,
  38465. bottom: 63/1386
  38466. }
  38467. },
  38468. back: {
  38469. height: math.unit(5 + 9/12, "feet"),
  38470. weight: math.unit(120, "lb"),
  38471. name: "Back",
  38472. image: {
  38473. source: "./media/characters/chyr/back.svg",
  38474. extra: 1323/1252,
  38475. bottom: 48/1371
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Normal",
  38482. height: math.unit(5 + 9/12, "feet"),
  38483. default: true
  38484. },
  38485. ]
  38486. ))
  38487. characterMakers.push(() => makeCharacter(
  38488. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38489. {
  38490. front: {
  38491. height: math.unit(7, "feet"),
  38492. weight: math.unit(310, "lb"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/solarus/front.svg",
  38496. extra: 2415/2021,
  38497. bottom: 103/2518
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(7, "feet"),
  38502. weight: math.unit(310, "lb"),
  38503. name: "Back",
  38504. image: {
  38505. source: "./media/characters/solarus/back.svg",
  38506. extra: 2463/2089,
  38507. bottom: 79/2542
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(7, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(16, "feet"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38527. extra: 1844/1780,
  38528. bottom: 58/1902
  38529. }
  38530. },
  38531. winterCoat: {
  38532. height: math.unit(16, "feet"),
  38533. name: "Winter Coat",
  38534. image: {
  38535. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38536. extra: 1807/1775,
  38537. bottom: 69/1876
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(16, "feet"),
  38545. default: true
  38546. },
  38547. {
  38548. name: "Chicago Size",
  38549. height: math.unit(560, "feet")
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(11 + 6/12, "feet"),
  38558. weight: math.unit(1366, "lb"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/lexor/front.svg",
  38562. extra: 1560/1481,
  38563. bottom: 211/1771
  38564. }
  38565. },
  38566. back: {
  38567. height: math.unit(11 + 6/12, "feet"),
  38568. weight: math.unit(1366, "lb"),
  38569. name: "Back",
  38570. image: {
  38571. source: "./media/characters/lexor/back.svg",
  38572. extra: 1614/1533,
  38573. bottom: 76/1690
  38574. }
  38575. },
  38576. maw: {
  38577. height: math.unit(3, "feet"),
  38578. name: "Maw",
  38579. image: {
  38580. source: "./media/characters/lexor/maw.svg"
  38581. }
  38582. },
  38583. dick: {
  38584. height: math.unit(2.59, "feet"),
  38585. name: "Dick",
  38586. image: {
  38587. source: "./media/characters/lexor/dick.svg"
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(11 + 6/12, "feet"),
  38595. default: true
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38601. {
  38602. front: {
  38603. height: math.unit(5 + 8/12, "feet"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/magnum/front.svg",
  38607. extra: 942/855,
  38608. bottom: 26/968
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(5 + 8/12, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(18 + 4/12, "feet"),
  38625. weight: math.unit(1500, "kg"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/solas-sharpsman/front.svg",
  38629. extra: 1698/1589,
  38630. bottom: 0/1698
  38631. }
  38632. },
  38633. },
  38634. [
  38635. {
  38636. name: "Normal",
  38637. height: math.unit(18 + 4/12, "feet"),
  38638. default: true
  38639. },
  38640. ]
  38641. ))
  38642. characterMakers.push(() => makeCharacter(
  38643. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38644. {
  38645. front: {
  38646. height: math.unit(5 + 5/12, "feet"),
  38647. weight: math.unit(180, "lb"),
  38648. name: "Front",
  38649. image: {
  38650. source: "./media/characters/october/front.svg",
  38651. extra: 1800/1650,
  38652. bottom: 0/1800
  38653. }
  38654. },
  38655. frontNsfw: {
  38656. height: math.unit(5 + 5/12, "feet"),
  38657. weight: math.unit(180, "lb"),
  38658. name: "Front (NSFW)",
  38659. image: {
  38660. source: "./media/characters/october/front-nsfw.svg",
  38661. extra: 1392/1307,
  38662. bottom: 42/1434
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(5 + 5/12, "feet"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(8 + 6/12, "feet"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/essynkardi/front.svg",
  38682. extra: 1914/1846,
  38683. bottom: 22/1936
  38684. }
  38685. },
  38686. },
  38687. [
  38688. {
  38689. name: "Normal",
  38690. height: math.unit(8 + 6/12, "feet"),
  38691. default: true
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(6 + 6/12, "feet"),
  38700. weight: math.unit(7, "lb"),
  38701. name: "Front",
  38702. image: {
  38703. source: "./media/characters/icky/front.svg",
  38704. extra: 813/782,
  38705. bottom: 66/879
  38706. }
  38707. },
  38708. back: {
  38709. height: math.unit(6 + 6/12, "feet"),
  38710. weight: math.unit(7, "lb"),
  38711. name: "Back",
  38712. image: {
  38713. source: "./media/characters/icky/back.svg",
  38714. extra: 754/735,
  38715. bottom: 56/810
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(6 + 6/12, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(15, "feet"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/rojas/front.svg",
  38735. extra: 1462/1408,
  38736. bottom: 95/1557
  38737. }
  38738. },
  38739. back: {
  38740. height: math.unit(15, "feet"),
  38741. name: "Back",
  38742. image: {
  38743. source: "./media/characters/rojas/back.svg",
  38744. extra: 1023/954,
  38745. bottom: 28/1051
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(15, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38759. {
  38760. frontHuman: {
  38761. height: math.unit(5 + 7/12, "feet"),
  38762. name: "Front (Human)",
  38763. image: {
  38764. source: "./media/characters/alek-dryagan/front-human.svg",
  38765. extra: 1687/1667,
  38766. bottom: 69/1756
  38767. }
  38768. },
  38769. backHuman: {
  38770. height: math.unit(5 + 7/12, "feet"),
  38771. name: "Back (Human)",
  38772. image: {
  38773. source: "./media/characters/alek-dryagan/back-human.svg",
  38774. extra: 1670/1649,
  38775. bottom: 65/1735
  38776. }
  38777. },
  38778. frontDemi: {
  38779. height: math.unit(65, "feet"),
  38780. name: "Front (Demi)",
  38781. image: {
  38782. source: "./media/characters/alek-dryagan/front-demi.svg",
  38783. extra: 1669/1642,
  38784. bottom: 49/1718
  38785. }
  38786. },
  38787. backDemi: {
  38788. height: math.unit(65, "feet"),
  38789. name: "Back (Demi)",
  38790. image: {
  38791. source: "./media/characters/alek-dryagan/back-demi.svg",
  38792. extra: 1658/1637,
  38793. bottom: 40/1698
  38794. }
  38795. },
  38796. mawHuman: {
  38797. height: math.unit(0.3, "feet"),
  38798. name: "Maw (Human)",
  38799. image: {
  38800. source: "./media/characters/alek-dryagan/maw-human.svg"
  38801. }
  38802. },
  38803. mawDemi: {
  38804. height: math.unit(3.8, "feet"),
  38805. name: "Maw (Demi)",
  38806. image: {
  38807. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(5 + 7/12, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38821. {
  38822. frontHuman: {
  38823. height: math.unit(5 + 2/12, "feet"),
  38824. name: "Front (Human)",
  38825. image: {
  38826. source: "./media/characters/gen/front-human.svg",
  38827. extra: 1627/1538,
  38828. bottom: 71/1698
  38829. }
  38830. },
  38831. backHuman: {
  38832. height: math.unit(5 + 2/12, "feet"),
  38833. name: "Back (Human)",
  38834. image: {
  38835. source: "./media/characters/gen/back-human.svg",
  38836. extra: 1638/1548,
  38837. bottom: 69/1707
  38838. }
  38839. },
  38840. frontDemi: {
  38841. height: math.unit(5 + 2/12, "feet"),
  38842. name: "Front (Demi)",
  38843. image: {
  38844. source: "./media/characters/gen/front-demi.svg",
  38845. extra: 1627/1538,
  38846. bottom: 71/1698
  38847. }
  38848. },
  38849. backDemi: {
  38850. height: math.unit(5 + 2/12, "feet"),
  38851. name: "Back (Demi)",
  38852. image: {
  38853. source: "./media/characters/gen/back-demi.svg",
  38854. extra: 1638/1548,
  38855. bottom: 69/1707
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(5 + 2/12, "feet"),
  38863. default: true
  38864. },
  38865. ]
  38866. ))
  38867. characterMakers.push(() => makeCharacter(
  38868. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38869. {
  38870. frontImp: {
  38871. height: math.unit(1 + 11/12, "feet"),
  38872. name: "Front (Imp)",
  38873. image: {
  38874. source: "./media/characters/max-kobold/front-imp.svg",
  38875. extra: 1238/1134,
  38876. bottom: 81/1319
  38877. }
  38878. },
  38879. backImp: {
  38880. height: math.unit(1 + 11/12, "feet"),
  38881. name: "Back (Imp)",
  38882. image: {
  38883. source: "./media/characters/max-kobold/back-imp.svg",
  38884. extra: 1334/1175,
  38885. bottom: 34/1368
  38886. }
  38887. },
  38888. frontDemi: {
  38889. height: math.unit(5 + 9/12, "feet"),
  38890. name: "Front (Demi)",
  38891. image: {
  38892. source: "./media/characters/max-kobold/front-demi.svg",
  38893. extra: 1715/1685,
  38894. bottom: 54/1769
  38895. }
  38896. },
  38897. backDemi: {
  38898. height: math.unit(5 + 9/12, "feet"),
  38899. name: "Back (Demi)",
  38900. image: {
  38901. source: "./media/characters/max-kobold/back-demi.svg",
  38902. extra: 1752/1729,
  38903. bottom: 41/1793
  38904. }
  38905. },
  38906. handImp: {
  38907. height: math.unit(0.45, "feet"),
  38908. name: "Hand (Imp)",
  38909. image: {
  38910. source: "./media/characters/max-kobold/hand.svg"
  38911. }
  38912. },
  38913. pawImp: {
  38914. height: math.unit(0.46, "feet"),
  38915. name: "Paw (Imp)",
  38916. image: {
  38917. source: "./media/characters/max-kobold/paw.svg"
  38918. }
  38919. },
  38920. handDemi: {
  38921. height: math.unit(0.80, "feet"),
  38922. name: "Hand (Demi)",
  38923. image: {
  38924. source: "./media/characters/max-kobold/hand.svg"
  38925. }
  38926. },
  38927. pawDemi: {
  38928. height: math.unit(1.1, "feet"),
  38929. name: "Paw (Demi)",
  38930. image: {
  38931. source: "./media/characters/max-kobold/paw.svg"
  38932. }
  38933. },
  38934. headImp: {
  38935. height: math.unit(1.33, "feet"),
  38936. name: "Head (Imp)",
  38937. image: {
  38938. source: "./media/characters/max-kobold/head-imp.svg"
  38939. }
  38940. },
  38941. mawImp: {
  38942. height: math.unit(0.75, "feet"),
  38943. name: "Maw (Imp)",
  38944. image: {
  38945. source: "./media/characters/max-kobold/maw-imp.svg"
  38946. }
  38947. },
  38948. mawDemi: {
  38949. height: math.unit(0.42, "feet"),
  38950. name: "Maw (Demi)",
  38951. image: {
  38952. source: "./media/characters/max-kobold/maw-demi.svg"
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Normal",
  38959. height: math.unit(1 + 11/12, "feet"),
  38960. default: true
  38961. },
  38962. ]
  38963. ))
  38964. characterMakers.push(() => makeCharacter(
  38965. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38966. {
  38967. front: {
  38968. height: math.unit(7 + 5/12, "feet"),
  38969. name: "Front",
  38970. image: {
  38971. source: "./media/characters/carbon/front.svg",
  38972. extra: 1754/1689,
  38973. bottom: 65/1819
  38974. }
  38975. },
  38976. back: {
  38977. height: math.unit(7 + 5/12, "feet"),
  38978. name: "Back",
  38979. image: {
  38980. source: "./media/characters/carbon/back.svg",
  38981. extra: 1762/1695,
  38982. bottom: 24/1786
  38983. }
  38984. },
  38985. frontGigantamax: {
  38986. height: math.unit(150, "feet"),
  38987. name: "Front (Gigantamax)",
  38988. image: {
  38989. source: "./media/characters/carbon/front-gigantamax.svg",
  38990. extra: 1826/1669,
  38991. bottom: 59/1885
  38992. }
  38993. },
  38994. backGigantamax: {
  38995. height: math.unit(150, "feet"),
  38996. name: "Back (Gigantamax)",
  38997. image: {
  38998. source: "./media/characters/carbon/back-gigantamax.svg",
  38999. extra: 1796/1653,
  39000. bottom: 53/1849
  39001. }
  39002. },
  39003. maw: {
  39004. height: math.unit(0.48, "feet"),
  39005. name: "Maw",
  39006. image: {
  39007. source: "./media/characters/carbon/maw.svg"
  39008. }
  39009. },
  39010. mawGigantamax: {
  39011. height: math.unit(7.5, "feet"),
  39012. name: "Maw (Gigantamax)",
  39013. image: {
  39014. source: "./media/characters/carbon/maw-gigantamax.svg"
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(7 + 5/12, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(6, "feet"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/maverick/front.svg",
  39034. extra: 1672/1661,
  39035. bottom: 85/1757
  39036. }
  39037. },
  39038. back: {
  39039. height: math.unit(6, "feet"),
  39040. name: "Back",
  39041. image: {
  39042. source: "./media/characters/maverick/back.svg",
  39043. extra: 1642/1631,
  39044. bottom: 38/1680
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(6, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(15, "feet"),
  39061. weight: math.unit(615, "lb"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/grockle/front.svg",
  39065. extra: 1535/1427,
  39066. bottom: 56/1591
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(15, "feet"),
  39074. default: true
  39075. },
  39076. {
  39077. name: "Large",
  39078. height: math.unit(150, "feet")
  39079. },
  39080. {
  39081. name: "Macro",
  39082. height: math.unit(1876, "feet")
  39083. },
  39084. {
  39085. name: "Mega Macro",
  39086. height: math.unit(121940, "feet")
  39087. },
  39088. {
  39089. name: "Giga Macro",
  39090. height: math.unit(750, "km")
  39091. },
  39092. {
  39093. name: "Tera Macro",
  39094. height: math.unit(750000, "km")
  39095. },
  39096. {
  39097. name: "Galactic",
  39098. height: math.unit(1.4e5, "km")
  39099. },
  39100. {
  39101. name: "Godlike",
  39102. height: math.unit(9.8e280, "galaxies")
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39108. {
  39109. front: {
  39110. height: math.unit(11, "meters"),
  39111. weight: math.unit(20, "tonnes"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/alistair/front.svg",
  39115. extra: 1265/1009,
  39116. bottom: 93/1358
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Normal",
  39123. height: math.unit(11, "meters"),
  39124. default: true
  39125. },
  39126. ]
  39127. ))
  39128. characterMakers.push(() => makeCharacter(
  39129. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39130. {
  39131. front: {
  39132. height: math.unit(5 + 8/12, "feet"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/haruka/front.svg",
  39136. extra: 2012/1952,
  39137. bottom: 0/2012
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(5 + 8/12, "feet"),
  39145. default: true
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39151. {
  39152. back: {
  39153. height: math.unit(9, "feet"),
  39154. name: "Back",
  39155. image: {
  39156. source: "./media/characters/vivian-sylveon/back.svg",
  39157. extra: 1853/1714,
  39158. bottom: 0/1853
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Normal",
  39165. height: math.unit(9, "feet"),
  39166. default: true
  39167. },
  39168. {
  39169. name: "Macro",
  39170. height: math.unit(500, "feet")
  39171. },
  39172. {
  39173. name: "Megamacro",
  39174. height: math.unit(600, "miles")
  39175. },
  39176. {
  39177. name: "Gigamacro",
  39178. height: math.unit(30000, "miles")
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39184. {
  39185. anthro: {
  39186. height: math.unit(5 + 10/12, "feet"),
  39187. weight: math.unit(100, "lb"),
  39188. name: "Anthro",
  39189. image: {
  39190. source: "./media/characters/daiki/anthro.svg",
  39191. extra: 1115/1027,
  39192. bottom: 69/1184
  39193. }
  39194. },
  39195. feral: {
  39196. height: math.unit(200, "feet"),
  39197. name: "Feral",
  39198. image: {
  39199. source: "./media/characters/daiki/feral.svg",
  39200. extra: 1256/313,
  39201. bottom: 39/1295
  39202. }
  39203. },
  39204. feralHead: {
  39205. height: math.unit(171, "feet"),
  39206. name: "Feral Head",
  39207. image: {
  39208. source: "./media/characters/daiki/feral-head.svg"
  39209. }
  39210. },
  39211. manaDragon: {
  39212. height: math.unit(170, "meters"),
  39213. name: "Mana-dragon",
  39214. image: {
  39215. source: "./media/characters/daiki/mana-dragon.svg",
  39216. extra: 763/420,
  39217. bottom: 97/860
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(5 + 10/12, "feet"),
  39225. default: true
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39231. {
  39232. fullyEquippedFront: {
  39233. height: math.unit(3 + 1/12, "feet"),
  39234. weight: math.unit(24, "lb"),
  39235. name: "Fully Equipped (Front)",
  39236. image: {
  39237. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39238. extra: 687/605,
  39239. bottom: 18/705
  39240. }
  39241. },
  39242. fullyEquippedBack: {
  39243. height: math.unit(3 + 1/12, "feet"),
  39244. weight: math.unit(24, "lb"),
  39245. name: "Fully Equipped (Back)",
  39246. image: {
  39247. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39248. extra: 689/590,
  39249. bottom: 18/707
  39250. }
  39251. },
  39252. dailyWear: {
  39253. height: math.unit(3 + 1/12, "feet"),
  39254. weight: math.unit(24, "lb"),
  39255. name: "Daily Wear",
  39256. image: {
  39257. source: "./media/characters/tea-spot/daily-wear.svg",
  39258. extra: 701/620,
  39259. bottom: 21/722
  39260. }
  39261. },
  39262. maidWork: {
  39263. height: math.unit(3 + 1/12, "feet"),
  39264. weight: math.unit(24, "lb"),
  39265. name: "Maid Work",
  39266. image: {
  39267. source: "./media/characters/tea-spot/maid-work.svg",
  39268. extra: 693/609,
  39269. bottom: 15/708
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(3 + 1/12, "feet"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(175, "cm"),
  39286. weight: math.unit(75, "kg"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/chee/front.svg",
  39290. extra: 1796/1740,
  39291. bottom: 40/1836
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Micro-Micro",
  39298. height: math.unit(1, "nm")
  39299. },
  39300. {
  39301. name: "Micro-erst",
  39302. height: math.unit(1, "micrometer")
  39303. },
  39304. {
  39305. name: "Micro-er",
  39306. height: math.unit(1, "cm")
  39307. },
  39308. {
  39309. name: "Normal",
  39310. height: math.unit(175, "cm"),
  39311. default: true
  39312. },
  39313. {
  39314. name: "Macro",
  39315. height: math.unit(100, "m")
  39316. },
  39317. {
  39318. name: "Macro-er",
  39319. height: math.unit(1, "km")
  39320. },
  39321. {
  39322. name: "Macro-erst",
  39323. height: math.unit(10, "km")
  39324. },
  39325. {
  39326. name: "Macro-Macro",
  39327. height: math.unit(100, "km")
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(11 + 9/12, "feet"),
  39336. weight: math.unit(935, "lb"),
  39337. name: "Front",
  39338. image: {
  39339. source: "./media/characters/kingsley/front.svg",
  39340. extra: 1803/1674,
  39341. bottom: 127/1930
  39342. }
  39343. },
  39344. frontNude: {
  39345. height: math.unit(11 + 9/12, "feet"),
  39346. weight: math.unit(935, "lb"),
  39347. name: "Front (Nude)",
  39348. image: {
  39349. source: "./media/characters/kingsley/front-nude.svg",
  39350. extra: 1803/1674,
  39351. bottom: 127/1930
  39352. }
  39353. },
  39354. },
  39355. [
  39356. {
  39357. name: "Normal",
  39358. height: math.unit(11 + 9/12, "feet"),
  39359. default: true
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39365. {
  39366. side: {
  39367. height: math.unit(9, "feet"),
  39368. name: "Side",
  39369. image: {
  39370. source: "./media/characters/rymel/side.svg",
  39371. extra: 792/469,
  39372. bottom: 121/913
  39373. }
  39374. },
  39375. maw: {
  39376. height: math.unit(2.4, "meters"),
  39377. name: "Maw",
  39378. image: {
  39379. source: "./media/characters/rymel/maw.svg"
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "House Drake",
  39386. height: math.unit(2, "feet")
  39387. },
  39388. {
  39389. name: "Reduced",
  39390. height: math.unit(4.5, "feet")
  39391. },
  39392. {
  39393. name: "Normal",
  39394. height: math.unit(9, "feet"),
  39395. default: true
  39396. },
  39397. ]
  39398. ))
  39399. characterMakers.push(() => makeCharacter(
  39400. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39401. {
  39402. front: {
  39403. height: math.unit(1.74, "meters"),
  39404. weight: math.unit(55, "kg"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/rubus/front.svg",
  39408. extra: 1894/1742,
  39409. bottom: 44/1938
  39410. }
  39411. },
  39412. },
  39413. [
  39414. {
  39415. name: "Normal",
  39416. height: math.unit(1.74, "meters"),
  39417. default: true
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39423. {
  39424. front: {
  39425. height: math.unit(5 + 2/12, "feet"),
  39426. weight: math.unit(112, "lb"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/cassie-kingston/front.svg",
  39430. extra: 1438/1390,
  39431. bottom: 47/1485
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(5 + 2/12, "feet"),
  39439. default: true
  39440. },
  39441. {
  39442. name: "Macro",
  39443. height: math.unit(128, "feet")
  39444. },
  39445. {
  39446. name: "Megamacro",
  39447. height: math.unit(2.56, "miles")
  39448. },
  39449. ]
  39450. ))
  39451. characterMakers.push(() => makeCharacter(
  39452. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39453. {
  39454. front: {
  39455. height: math.unit(7, "feet"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/fox/front.svg",
  39459. extra: 1798/1703,
  39460. bottom: 55/1853
  39461. }
  39462. },
  39463. back: {
  39464. height: math.unit(7, "feet"),
  39465. name: "Back",
  39466. image: {
  39467. source: "./media/characters/fox/back.svg",
  39468. extra: 1748/1649,
  39469. bottom: 32/1780
  39470. }
  39471. },
  39472. head: {
  39473. height: math.unit(1.95, "feet"),
  39474. name: "Head",
  39475. image: {
  39476. source: "./media/characters/fox/head.svg"
  39477. }
  39478. },
  39479. dick: {
  39480. height: math.unit(1.33, "feet"),
  39481. name: "Dick",
  39482. image: {
  39483. source: "./media/characters/fox/dick.svg"
  39484. }
  39485. },
  39486. foot: {
  39487. height: math.unit(1, "feet"),
  39488. name: "Foot",
  39489. image: {
  39490. source: "./media/characters/fox/foot.svg"
  39491. }
  39492. },
  39493. paw: {
  39494. height: math.unit(0.92, "feet"),
  39495. name: "Paw",
  39496. image: {
  39497. source: "./media/characters/fox/paw.svg"
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Small",
  39504. height: math.unit(3, "inches")
  39505. },
  39506. {
  39507. name: "\"Realistic\"",
  39508. height: math.unit(7, "feet")
  39509. },
  39510. {
  39511. name: "Normal",
  39512. height: math.unit(150, "feet"),
  39513. default: true
  39514. },
  39515. {
  39516. name: "BIG",
  39517. height: math.unit(1200, "feet")
  39518. },
  39519. {
  39520. name: "👀",
  39521. height: math.unit(5, "miles")
  39522. },
  39523. {
  39524. name: "👀👀👀",
  39525. height: math.unit(64, "miles")
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(625, "feet"),
  39534. name: "Front",
  39535. image: {
  39536. source: "./media/characters/asonja-rossa/front.svg",
  39537. extra: 1833/1686,
  39538. bottom: 24/1857
  39539. }
  39540. },
  39541. back: {
  39542. height: math.unit(625, "feet"),
  39543. name: "Back",
  39544. image: {
  39545. source: "./media/characters/asonja-rossa/back.svg",
  39546. extra: 1852/1753,
  39547. bottom: 26/1878
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Macro",
  39554. height: math.unit(625, "feet"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39561. {
  39562. side: {
  39563. height: math.unit(8, "feet"),
  39564. name: "Side",
  39565. image: {
  39566. source: "./media/characters/rezukii/side.svg",
  39567. extra: 979/542,
  39568. bottom: 87/1066
  39569. }
  39570. },
  39571. sitting: {
  39572. height: math.unit(14.6, "feet"),
  39573. name: "Sitting",
  39574. image: {
  39575. source: "./media/characters/rezukii/sitting.svg",
  39576. extra: 1023/813,
  39577. bottom: 45/1068
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Tiny",
  39584. height: math.unit(2, "feet")
  39585. },
  39586. {
  39587. name: "Smol",
  39588. height: math.unit(4, "feet")
  39589. },
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(8, "feet"),
  39593. default: true
  39594. },
  39595. {
  39596. name: "Big",
  39597. height: math.unit(12, "feet")
  39598. },
  39599. {
  39600. name: "Macro",
  39601. height: math.unit(30, "feet")
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39607. {
  39608. front: {
  39609. height: math.unit(14, "feet"),
  39610. weight: math.unit(9.5, "tonnes"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/dawnheart/front.svg",
  39614. extra: 2792/2675,
  39615. bottom: 64/2856
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(14, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39629. {
  39630. front: {
  39631. height: math.unit(1.7, "m"),
  39632. name: "Front",
  39633. image: {
  39634. source: "./media/characters/gladi/front.svg",
  39635. extra: 1460/1362,
  39636. bottom: 19/1479
  39637. }
  39638. },
  39639. back: {
  39640. height: math.unit(1.7, "m"),
  39641. name: "Back",
  39642. image: {
  39643. source: "./media/characters/gladi/back.svg",
  39644. extra: 1459/1357,
  39645. bottom: 12/1471
  39646. }
  39647. },
  39648. feral: {
  39649. height: math.unit(2.05, "m"),
  39650. name: "Feral",
  39651. image: {
  39652. source: "./media/characters/gladi/feral.svg",
  39653. extra: 821/557,
  39654. bottom: 91/912
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Shortest",
  39661. height: math.unit(70, "cm")
  39662. },
  39663. {
  39664. name: "Normal",
  39665. height: math.unit(1.7, "m")
  39666. },
  39667. {
  39668. name: "Macro",
  39669. height: math.unit(10, "m"),
  39670. default: true
  39671. },
  39672. {
  39673. name: "Tallest",
  39674. height: math.unit(200, "m")
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39680. {
  39681. front: {
  39682. height: math.unit(5 + 7/12, "feet"),
  39683. weight: math.unit(2, "tons"),
  39684. name: "Front",
  39685. image: {
  39686. source: "./media/characters/erdno/front.svg",
  39687. extra: 1234/1129,
  39688. bottom: 35/1269
  39689. }
  39690. },
  39691. angled: {
  39692. height: math.unit(5 + 7/12, "feet"),
  39693. weight: math.unit(2, "tons"),
  39694. name: "Angled",
  39695. image: {
  39696. source: "./media/characters/erdno/angled.svg",
  39697. extra: 1185/1139,
  39698. bottom: 36/1221
  39699. }
  39700. },
  39701. side: {
  39702. height: math.unit(5 + 7/12, "feet"),
  39703. weight: math.unit(2, "tons"),
  39704. name: "Side",
  39705. image: {
  39706. source: "./media/characters/erdno/side.svg",
  39707. extra: 1191/1144,
  39708. bottom: 40/1231
  39709. }
  39710. },
  39711. back: {
  39712. height: math.unit(5 + 7/12, "feet"),
  39713. weight: math.unit(2, "tons"),
  39714. name: "Back",
  39715. image: {
  39716. source: "./media/characters/erdno/back.svg",
  39717. extra: 1202/1146,
  39718. bottom: 17/1219
  39719. }
  39720. },
  39721. frontNsfw: {
  39722. height: math.unit(5 + 7/12, "feet"),
  39723. weight: math.unit(2, "tons"),
  39724. name: "Front (NSFW)",
  39725. image: {
  39726. source: "./media/characters/erdno/front-nsfw.svg",
  39727. extra: 1234/1129,
  39728. bottom: 35/1269
  39729. }
  39730. },
  39731. angledNsfw: {
  39732. height: math.unit(5 + 7/12, "feet"),
  39733. weight: math.unit(2, "tons"),
  39734. name: "Angled (NSFW)",
  39735. image: {
  39736. source: "./media/characters/erdno/angled-nsfw.svg",
  39737. extra: 1185/1139,
  39738. bottom: 36/1221
  39739. }
  39740. },
  39741. sideNsfw: {
  39742. height: math.unit(5 + 7/12, "feet"),
  39743. weight: math.unit(2, "tons"),
  39744. name: "Side (NSFW)",
  39745. image: {
  39746. source: "./media/characters/erdno/side-nsfw.svg",
  39747. extra: 1191/1144,
  39748. bottom: 40/1231
  39749. }
  39750. },
  39751. backNsfw: {
  39752. height: math.unit(5 + 7/12, "feet"),
  39753. weight: math.unit(2, "tons"),
  39754. name: "Back (NSFW)",
  39755. image: {
  39756. source: "./media/characters/erdno/back-nsfw.svg",
  39757. extra: 1202/1146,
  39758. bottom: 17/1219
  39759. }
  39760. },
  39761. frontHyper: {
  39762. height: math.unit(5 + 7/12, "feet"),
  39763. weight: math.unit(2, "tons"),
  39764. name: "Front (Hyper)",
  39765. image: {
  39766. source: "./media/characters/erdno/front-hyper.svg",
  39767. extra: 1298/1136,
  39768. bottom: 35/1333
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(5 + 7/12, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "Big",
  39780. height: math.unit(5.7, "meters")
  39781. },
  39782. {
  39783. name: "Macro",
  39784. height: math.unit(5.7, "kilometers")
  39785. },
  39786. {
  39787. name: "Megamacro",
  39788. height: math.unit(5.7, "earths")
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(5 + 10/12, "feet"),
  39797. weight: math.unit(150, "lb"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/jamie/front.svg",
  39801. extra: 1908/1768,
  39802. bottom: 19/1927
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Minimum",
  39809. height: math.unit(2, "cm")
  39810. },
  39811. {
  39812. name: "Micro",
  39813. height: math.unit(3, "inches")
  39814. },
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(5 + 10/12, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(150, "feet")
  39823. },
  39824. {
  39825. name: "Megamacro",
  39826. height: math.unit(10000, "m")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(2, "meters"),
  39835. weight: math.unit(100, "kg"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/shiron/front.svg",
  39839. extra: 2103/1985,
  39840. bottom: 98/2201
  39841. }
  39842. },
  39843. back: {
  39844. height: math.unit(2, "meters"),
  39845. weight: math.unit(100, "kg"),
  39846. name: "Back",
  39847. image: {
  39848. source: "./media/characters/shiron/back.svg",
  39849. extra: 2110/2015,
  39850. bottom: 89/2199
  39851. }
  39852. },
  39853. hand: {
  39854. height: math.unit(0.96, "feet"),
  39855. name: "Hand",
  39856. image: {
  39857. source: "./media/characters/shiron/hand.svg"
  39858. }
  39859. },
  39860. foot: {
  39861. height: math.unit(1.464, "feet"),
  39862. name: "Foot",
  39863. image: {
  39864. source: "./media/characters/shiron/foot.svg"
  39865. }
  39866. },
  39867. },
  39868. [
  39869. {
  39870. name: "Normal",
  39871. height: math.unit(2, "meters")
  39872. },
  39873. {
  39874. name: "Macro",
  39875. height: math.unit(500, "meters"),
  39876. default: true
  39877. },
  39878. {
  39879. name: "Megamacro",
  39880. height: math.unit(20, "km")
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(6, "feet"),
  39889. name: "Front",
  39890. image: {
  39891. source: "./media/characters/sam/front.svg",
  39892. extra: 849/826,
  39893. bottom: 19/868
  39894. }
  39895. },
  39896. },
  39897. [
  39898. {
  39899. name: "Normal",
  39900. height: math.unit(6, "feet"),
  39901. default: true
  39902. },
  39903. ]
  39904. ))
  39905. characterMakers.push(() => makeCharacter(
  39906. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39907. {
  39908. front: {
  39909. height: math.unit(8 + 4/12, "feet"),
  39910. weight: math.unit(122, "kg"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/namori-kurogawa/front.svg",
  39914. extra: 1894/1576,
  39915. bottom: 34/1928
  39916. }
  39917. },
  39918. },
  39919. [
  39920. {
  39921. name: "Normal",
  39922. height: math.unit(8 + 4/12, "feet"),
  39923. default: true
  39924. },
  39925. ]
  39926. ))
  39927. characterMakers.push(() => makeCharacter(
  39928. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39929. {
  39930. front: {
  39931. height: math.unit(9, "feet"),
  39932. weight: math.unit(621, "lb"),
  39933. name: "Front",
  39934. image: {
  39935. source: "./media/characters/unmru/front.svg",
  39936. extra: 1853/1747,
  39937. bottom: 73/1926
  39938. }
  39939. },
  39940. side: {
  39941. height: math.unit(9, "feet"),
  39942. weight: math.unit(621, "lb"),
  39943. name: "Side",
  39944. image: {
  39945. source: "./media/characters/unmru/side.svg",
  39946. extra: 1781/1671,
  39947. bottom: 127/1908
  39948. }
  39949. },
  39950. back: {
  39951. height: math.unit(9, "feet"),
  39952. weight: math.unit(621, "lb"),
  39953. name: "Back",
  39954. image: {
  39955. source: "./media/characters/unmru/back.svg",
  39956. extra: 1894/1765,
  39957. bottom: 75/1969
  39958. }
  39959. },
  39960. dick: {
  39961. height: math.unit(3, "feet"),
  39962. weight: math.unit(35, "lb"),
  39963. name: "Dick",
  39964. image: {
  39965. source: "./media/characters/unmru/dick.svg"
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(9, "feet")
  39973. },
  39974. {
  39975. name: "Natural",
  39976. height: math.unit(27, "feet"),
  39977. default: true
  39978. },
  39979. {
  39980. name: "Giant",
  39981. height: math.unit(90, "feet")
  39982. },
  39983. {
  39984. name: "Kaiju",
  39985. height: math.unit(270, "feet")
  39986. },
  39987. {
  39988. name: "Macro",
  39989. height: math.unit(900, "feet")
  39990. },
  39991. {
  39992. name: "Macro+",
  39993. height: math.unit(2700, "feet")
  39994. },
  39995. {
  39996. name: "Megamacro",
  39997. height: math.unit(9000, "feet")
  39998. },
  39999. {
  40000. name: "City-Crushing",
  40001. height: math.unit(27000, "feet")
  40002. },
  40003. {
  40004. name: "Mountain-Mashing",
  40005. height: math.unit(90000, "feet")
  40006. },
  40007. {
  40008. name: "Earth-Eclipsing",
  40009. height: math.unit(2.7e8, "feet")
  40010. },
  40011. {
  40012. name: "Sol-Swallowing",
  40013. height: math.unit(9e10, "feet")
  40014. },
  40015. {
  40016. name: "Majoris-Munching",
  40017. height: math.unit(2.7e13, "feet")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40023. {
  40024. front: {
  40025. height: math.unit(1, "inch"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/squeaks-mouse/front.svg",
  40029. extra: 352/308,
  40030. bottom: 25/377
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Micro",
  40037. height: math.unit(1, "inch"),
  40038. default: true
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40044. {
  40045. side: {
  40046. height: math.unit(35, "feet"),
  40047. name: "Side",
  40048. image: {
  40049. source: "./media/characters/sayko/side.svg",
  40050. extra: 1697/1021,
  40051. bottom: 82/1779
  40052. }
  40053. },
  40054. head: {
  40055. height: math.unit(16, "feet"),
  40056. name: "Head",
  40057. image: {
  40058. source: "./media/characters/sayko/head.svg"
  40059. }
  40060. },
  40061. forepaw: {
  40062. height: math.unit(7.85, "feet"),
  40063. name: "Forepaw",
  40064. image: {
  40065. source: "./media/characters/sayko/forepaw.svg"
  40066. }
  40067. },
  40068. hindpaw: {
  40069. height: math.unit(8.8, "feet"),
  40070. name: "Hindpaw",
  40071. image: {
  40072. source: "./media/characters/sayko/hindpaw.svg"
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(35, "feet"),
  40080. default: true
  40081. },
  40082. {
  40083. name: "Colossus",
  40084. height: math.unit(100, "meters")
  40085. },
  40086. {
  40087. name: "\"Small\" Deity",
  40088. height: math.unit(1, "km")
  40089. },
  40090. {
  40091. name: "\"Large\" Deity",
  40092. height: math.unit(15, "km")
  40093. },
  40094. ]
  40095. ))
  40096. characterMakers.push(() => makeCharacter(
  40097. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40098. {
  40099. front: {
  40100. height: math.unit(6, "feet"),
  40101. weight: math.unit(250, "lb"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/mukiro/front.svg",
  40105. extra: 1368/1310,
  40106. bottom: 34/1402
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Normal",
  40113. height: math.unit(6, "feet"),
  40114. default: true
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(12 + 4/12, "feet"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40126. extra: 1346/1311,
  40127. bottom: 65/1411
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Base",
  40134. height: math.unit(12 + 4/12, "feet"),
  40135. default: true
  40136. },
  40137. {
  40138. name: "Macro",
  40139. height: math.unit(150, "feet")
  40140. },
  40141. {
  40142. name: "Mega",
  40143. height: math.unit(2, "miles")
  40144. },
  40145. {
  40146. name: "Demi God",
  40147. height: math.unit(4, "AU")
  40148. },
  40149. {
  40150. name: "God Size",
  40151. height: math.unit(1, "universe")
  40152. },
  40153. ]
  40154. ))
  40155. characterMakers.push(() => makeCharacter(
  40156. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40157. {
  40158. front: {
  40159. height: math.unit(3 + 3/12, "feet"),
  40160. weight: math.unit(88, "lb"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/trey/front.svg",
  40164. extra: 1815/1509,
  40165. bottom: 60/1875
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Normal",
  40172. height: math.unit(3 + 3/12, "feet"),
  40173. default: true
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40179. {
  40180. front: {
  40181. height: math.unit(4, "meters"),
  40182. name: "Front",
  40183. image: {
  40184. source: "./media/characters/adelonda/front.svg",
  40185. extra: 1077/982,
  40186. bottom: 39/1116
  40187. }
  40188. },
  40189. back: {
  40190. height: math.unit(4, "meters"),
  40191. name: "Back",
  40192. image: {
  40193. source: "./media/characters/adelonda/back.svg",
  40194. extra: 1105/1003,
  40195. bottom: 25/1130
  40196. }
  40197. },
  40198. feral: {
  40199. height: math.unit(40/1.5, "meters"),
  40200. name: "Feral",
  40201. image: {
  40202. source: "./media/characters/adelonda/feral.svg",
  40203. extra: 597/271,
  40204. bottom: 387/984
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Normal",
  40211. height: math.unit(4, "meters"),
  40212. default: true
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40218. {
  40219. front: {
  40220. height: math.unit(8 + 4/12, "feet"),
  40221. weight: math.unit(670, "lb"),
  40222. name: "Front",
  40223. image: {
  40224. source: "./media/characters/acadiel/front.svg",
  40225. extra: 1901/1595,
  40226. bottom: 142/2043
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(8 + 4/12, "feet"),
  40234. default: true
  40235. },
  40236. {
  40237. name: "Macro",
  40238. height: math.unit(200, "feet")
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40244. {
  40245. front: {
  40246. height: math.unit(6 + 2/12, "feet"),
  40247. weight: math.unit(185, "lb"),
  40248. name: "Front",
  40249. image: {
  40250. source: "./media/characters/kayne-ein/front.svg",
  40251. extra: 1780/1560,
  40252. bottom: 81/1861
  40253. }
  40254. },
  40255. },
  40256. [
  40257. {
  40258. name: "Normal",
  40259. height: math.unit(6 + 2/12, "feet"),
  40260. default: true
  40261. },
  40262. {
  40263. name: "Transformation Stage",
  40264. height: math.unit(15, "feet")
  40265. },
  40266. {
  40267. name: "Macro",
  40268. height: math.unit(150, "feet")
  40269. },
  40270. {
  40271. name: "Earth's Shadow",
  40272. height: math.unit(6200, "miles")
  40273. },
  40274. {
  40275. name: "Universal Demon",
  40276. height: math.unit(28e9, "parsecs")
  40277. },
  40278. {
  40279. name: "Multiverse God",
  40280. height: math.unit(3, "multiverses")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(5 + 5/12, "feet"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/fawn/front.svg",
  40292. extra: 1873/1731,
  40293. bottom: 95/1968
  40294. }
  40295. },
  40296. back: {
  40297. height: math.unit(5 + 5/12, "feet"),
  40298. name: "Back",
  40299. image: {
  40300. source: "./media/characters/fawn/back.svg",
  40301. extra: 1813/1700,
  40302. bottom: 14/1827
  40303. }
  40304. },
  40305. hoof: {
  40306. height: math.unit(1.45, "feet"),
  40307. name: "Hoof",
  40308. image: {
  40309. source: "./media/characters/fawn/hoof.svg"
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(5 + 5/12, "feet"),
  40317. default: true
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(2 + 5/12, "feet"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/orion/front.svg",
  40329. extra: 1366/1304,
  40330. bottom: 43/1409
  40331. }
  40332. },
  40333. paw: {
  40334. height: math.unit(0.52, "feet"),
  40335. name: "Paw",
  40336. image: {
  40337. source: "./media/characters/orion/paw.svg"
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Normal",
  40344. height: math.unit(2 + 5/12, "feet"),
  40345. default: true
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(5 + 10/12, "feet"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/vera/front.svg",
  40357. extra: 1680/1575,
  40358. bottom: 49/1729
  40359. }
  40360. },
  40361. back: {
  40362. height: math.unit(5 + 10/12, "feet"),
  40363. name: "Back",
  40364. image: {
  40365. source: "./media/characters/vera/back.svg",
  40366. extra: 1700/1588,
  40367. bottom: 18/1718
  40368. }
  40369. },
  40370. arcanine: {
  40371. height: math.unit(6 + 8/12, "feet"),
  40372. name: "Arcanine",
  40373. image: {
  40374. source: "./media/characters/vera/arcanine.svg",
  40375. extra: 1590/1511,
  40376. bottom: 71/1661
  40377. }
  40378. },
  40379. maw: {
  40380. height: math.unit(0.82, "feet"),
  40381. name: "Maw",
  40382. image: {
  40383. source: "./media/characters/vera/maw.svg"
  40384. }
  40385. },
  40386. mawArcanine: {
  40387. height: math.unit(0.97, "feet"),
  40388. name: "Maw (Arcanine)",
  40389. image: {
  40390. source: "./media/characters/vera/maw-arcanine.svg"
  40391. }
  40392. },
  40393. paw: {
  40394. height: math.unit(0.75, "feet"),
  40395. name: "Paw",
  40396. image: {
  40397. source: "./media/characters/vera/paw.svg"
  40398. }
  40399. },
  40400. pawprint: {
  40401. height: math.unit(0.52, "feet"),
  40402. name: "Pawprint",
  40403. image: {
  40404. source: "./media/characters/vera/pawprint.svg"
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Normal",
  40411. height: math.unit(5 + 10/12, "feet"),
  40412. default: true
  40413. },
  40414. {
  40415. name: "Macro",
  40416. height: math.unit(75, "feet")
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(4, "feet"),
  40425. weight: math.unit(40, "lb"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/orvan-rabbit/front.svg",
  40429. extra: 1896/1642,
  40430. bottom: 29/1925
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(4, "feet"),
  40438. default: true
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(6, "feet"),
  40447. weight: math.unit(168, "lb"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/lisa/front.svg",
  40451. extra: 2065/1867,
  40452. bottom: 46/2111
  40453. }
  40454. },
  40455. back: {
  40456. height: math.unit(6, "feet"),
  40457. weight: math.unit(168, "lb"),
  40458. name: "Back",
  40459. image: {
  40460. source: "./media/characters/lisa/back.svg",
  40461. extra: 1982/1838,
  40462. bottom: 29/2011
  40463. }
  40464. },
  40465. maw: {
  40466. height: math.unit(0.81, "feet"),
  40467. name: "Maw",
  40468. image: {
  40469. source: "./media/characters/lisa/maw.svg"
  40470. }
  40471. },
  40472. paw: {
  40473. height: math.unit(0.9, "feet"),
  40474. name: "Paw",
  40475. image: {
  40476. source: "./media/characters/lisa/paw.svg"
  40477. }
  40478. },
  40479. caribousune: {
  40480. height: math.unit(7 + 2/12, "feet"),
  40481. weight: math.unit(268, "lb"),
  40482. name: "Caribousune",
  40483. image: {
  40484. source: "./media/characters/lisa/caribousune.svg",
  40485. extra: 1843/1633,
  40486. bottom: 29/1872
  40487. }
  40488. },
  40489. frontCaribousune: {
  40490. height: math.unit(7 + 2/12, "feet"),
  40491. weight: math.unit(268, "lb"),
  40492. name: "Front (Caribousune)",
  40493. image: {
  40494. source: "./media/characters/lisa/front-caribousune.svg",
  40495. extra: 1818/1638,
  40496. bottom: 52/1870
  40497. }
  40498. },
  40499. sideCaribousune: {
  40500. height: math.unit(7 + 2/12, "feet"),
  40501. weight: math.unit(268, "lb"),
  40502. name: "Side (Caribousune)",
  40503. image: {
  40504. source: "./media/characters/lisa/side-caribousune.svg",
  40505. extra: 1851/1635,
  40506. bottom: 16/1867
  40507. }
  40508. },
  40509. backCaribousune: {
  40510. height: math.unit(7 + 2/12, "feet"),
  40511. weight: math.unit(268, "lb"),
  40512. name: "Back (Caribousune)",
  40513. image: {
  40514. source: "./media/characters/lisa/back-caribousune.svg",
  40515. extra: 1801/1604,
  40516. bottom: 44/1845
  40517. }
  40518. },
  40519. caribou: {
  40520. height: math.unit(7 + 2/12, "feet"),
  40521. weight: math.unit(268, "lb"),
  40522. name: "Caribou",
  40523. image: {
  40524. source: "./media/characters/lisa/caribou.svg",
  40525. extra: 1843/1633,
  40526. bottom: 29/1872
  40527. }
  40528. },
  40529. frontCaribou: {
  40530. height: math.unit(7 + 2/12, "feet"),
  40531. weight: math.unit(268, "lb"),
  40532. name: "Front (Caribou)",
  40533. image: {
  40534. source: "./media/characters/lisa/front-caribou.svg",
  40535. extra: 1818/1638,
  40536. bottom: 52/1870
  40537. }
  40538. },
  40539. sideCaribou: {
  40540. height: math.unit(7 + 2/12, "feet"),
  40541. weight: math.unit(268, "lb"),
  40542. name: "Side (Caribou)",
  40543. image: {
  40544. source: "./media/characters/lisa/side-caribou.svg",
  40545. extra: 1851/1635,
  40546. bottom: 16/1867
  40547. }
  40548. },
  40549. backCaribou: {
  40550. height: math.unit(7 + 2/12, "feet"),
  40551. weight: math.unit(268, "lb"),
  40552. name: "Back (Caribou)",
  40553. image: {
  40554. source: "./media/characters/lisa/back-caribou.svg",
  40555. extra: 1801/1604,
  40556. bottom: 44/1845
  40557. }
  40558. },
  40559. mawCaribou: {
  40560. height: math.unit(1.45, "feet"),
  40561. name: "Maw (Caribou)",
  40562. image: {
  40563. source: "./media/characters/lisa/maw-caribou.svg"
  40564. }
  40565. },
  40566. mawCaribousune: {
  40567. height: math.unit(1.45, "feet"),
  40568. name: "Maw (Caribousune)",
  40569. image: {
  40570. source: "./media/characters/lisa/maw-caribousune.svg"
  40571. }
  40572. },
  40573. pawCaribousune: {
  40574. height: math.unit(1.61, "feet"),
  40575. name: "Paw (Caribou)",
  40576. image: {
  40577. source: "./media/characters/lisa/paw-caribousune.svg"
  40578. }
  40579. },
  40580. },
  40581. [
  40582. {
  40583. name: "Normal",
  40584. height: math.unit(6, "feet")
  40585. },
  40586. {
  40587. name: "God Size",
  40588. height: math.unit(72, "feet"),
  40589. default: true
  40590. },
  40591. {
  40592. name: "Towering",
  40593. height: math.unit(288, "feet")
  40594. },
  40595. {
  40596. name: "City Size",
  40597. height: math.unit(48384, "feet")
  40598. },
  40599. {
  40600. name: "Continental",
  40601. height: math.unit(4200, "miles")
  40602. },
  40603. {
  40604. name: "Planet Eater",
  40605. height: math.unit(42, "earths")
  40606. },
  40607. {
  40608. name: "Star Swallower",
  40609. height: math.unit(42, "solarradii")
  40610. },
  40611. {
  40612. name: "System Swallower",
  40613. height: math.unit(84000, "AU")
  40614. },
  40615. {
  40616. name: "Galaxy Gobbler",
  40617. height: math.unit(42, "galaxies")
  40618. },
  40619. {
  40620. name: "Universe Devourer",
  40621. height: math.unit(42, "universes")
  40622. },
  40623. {
  40624. name: "Multiverse Muncher",
  40625. height: math.unit(42, "multiverses")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(36, "feet"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/shadow-rat/front.svg",
  40637. extra: 1845/1758,
  40638. bottom: 83/1928
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Macro",
  40645. height: math.unit(36, "feet"),
  40646. default: true
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40652. {
  40653. side: {
  40654. height: math.unit(8, "feet"),
  40655. weight: math.unit(2630, "lb"),
  40656. name: "Side",
  40657. image: {
  40658. source: "./media/characters/torallia/side.svg",
  40659. extra: 2164/2021,
  40660. bottom: 371/2535
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Mortal Interaction",
  40667. height: math.unit(8, "feet")
  40668. },
  40669. {
  40670. name: "Natural",
  40671. height: math.unit(24, "feet"),
  40672. default: true
  40673. },
  40674. {
  40675. name: "Giant",
  40676. height: math.unit(80, "feet")
  40677. },
  40678. {
  40679. name: "Kaiju",
  40680. height: math.unit(240, "feet")
  40681. },
  40682. {
  40683. name: "Macro",
  40684. height: math.unit(800, "feet")
  40685. },
  40686. {
  40687. name: "Macro+",
  40688. height: math.unit(2400, "feet")
  40689. },
  40690. {
  40691. name: "Macro++",
  40692. height: math.unit(8000, "feet")
  40693. },
  40694. {
  40695. name: "City-Crushing",
  40696. height: math.unit(24000, "feet")
  40697. },
  40698. {
  40699. name: "Mountain-Mashing",
  40700. height: math.unit(80000, "feet")
  40701. },
  40702. {
  40703. name: "District Demolisher",
  40704. height: math.unit(240000, "feet")
  40705. },
  40706. {
  40707. name: "Tri-County Terror",
  40708. height: math.unit(800000, "feet")
  40709. },
  40710. {
  40711. name: "State Smasher",
  40712. height: math.unit(2.4e6, "feet")
  40713. },
  40714. {
  40715. name: "Nation Nemesis",
  40716. height: math.unit(8e6, "feet")
  40717. },
  40718. {
  40719. name: "Continent Cracker",
  40720. height: math.unit(2.4e7, "feet")
  40721. },
  40722. {
  40723. name: "Planet-Pillaging",
  40724. height: math.unit(8e7, "feet")
  40725. },
  40726. {
  40727. name: "Earth-Eclipsing",
  40728. height: math.unit(2.4e8, "feet")
  40729. },
  40730. {
  40731. name: "Jovian-Jostling",
  40732. height: math.unit(8e8, "feet")
  40733. },
  40734. {
  40735. name: "Gas Giant Gulper",
  40736. height: math.unit(2.4e9, "feet")
  40737. },
  40738. {
  40739. name: "Astral Annihilator",
  40740. height: math.unit(8e9, "feet")
  40741. },
  40742. {
  40743. name: "Celestial Conqueror",
  40744. height: math.unit(2.4e10, "feet")
  40745. },
  40746. {
  40747. name: "Sol-Swallowing",
  40748. height: math.unit(8e10, "feet")
  40749. },
  40750. {
  40751. name: "Hunter of the Heavens",
  40752. height: math.unit(2.4e13, "feet")
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(6 + 8/12, "feet"),
  40761. weight: math.unit(250, "kilograms"),
  40762. volume: math.unit(28, "liters"),
  40763. name: "Front",
  40764. image: {
  40765. source: "./media/characters/rebecca-pawlson/front.svg",
  40766. extra: 1737/1596,
  40767. bottom: 107/1844
  40768. }
  40769. },
  40770. back: {
  40771. height: math.unit(6 + 8/12, "feet"),
  40772. weight: math.unit(250, "kilograms"),
  40773. volume: math.unit(28, "liters"),
  40774. name: "Back",
  40775. image: {
  40776. source: "./media/characters/rebecca-pawlson/back.svg",
  40777. extra: 1702/1523,
  40778. bottom: 86/1788
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(6 + 8/12, "feet")
  40786. },
  40787. {
  40788. name: "Mini Macro",
  40789. height: math.unit(10, "feet"),
  40790. default: true
  40791. },
  40792. {
  40793. name: "Macro",
  40794. height: math.unit(100, "feet")
  40795. },
  40796. {
  40797. name: "Mega Macro",
  40798. height: math.unit(2500, "feet")
  40799. },
  40800. {
  40801. name: "Giga Macro",
  40802. height: math.unit(50, "miles")
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(7 + 6/12, "feet"),
  40811. weight: math.unit(600, "lb"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/moxie-nova/front.svg",
  40815. extra: 1734/1652,
  40816. bottom: 41/1775
  40817. }
  40818. },
  40819. },
  40820. [
  40821. {
  40822. name: "Normal",
  40823. height: math.unit(7 + 6/12, "feet"),
  40824. default: true
  40825. },
  40826. ]
  40827. ))
  40828. characterMakers.push(() => makeCharacter(
  40829. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40830. {
  40831. goat: {
  40832. height: math.unit(4, "feet"),
  40833. weight: math.unit(180, "lb"),
  40834. name: "Goat",
  40835. image: {
  40836. source: "./media/characters/tiffany/goat.svg",
  40837. extra: 1845/1595,
  40838. bottom: 106/1951
  40839. }
  40840. },
  40841. front: {
  40842. height: math.unit(5, "feet"),
  40843. weight: math.unit(150, "lb"),
  40844. name: "Foxcoon",
  40845. image: {
  40846. source: "./media/characters/tiffany/foxcoon.svg",
  40847. extra: 1941/1845,
  40848. bottom: 58/1999
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Normal",
  40855. height: math.unit(5, "feet"),
  40856. default: true
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(8, "feet"),
  40865. weight: math.unit(300, "lb"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/raxinath/front.svg",
  40869. extra: 1407/1309,
  40870. bottom: 39/1446
  40871. }
  40872. },
  40873. back: {
  40874. height: math.unit(8, "feet"),
  40875. weight: math.unit(300, "lb"),
  40876. name: "Back",
  40877. image: {
  40878. source: "./media/characters/raxinath/back.svg",
  40879. extra: 1405/1315,
  40880. bottom: 9/1414
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Speck",
  40887. height: math.unit(0.5, "nm")
  40888. },
  40889. {
  40890. name: "Micro",
  40891. height: math.unit(3, "inches")
  40892. },
  40893. {
  40894. name: "Kobold",
  40895. height: math.unit(3, "feet")
  40896. },
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(8, "feet"),
  40900. default: true
  40901. },
  40902. {
  40903. name: "Giant",
  40904. height: math.unit(50, "feet")
  40905. },
  40906. {
  40907. name: "Macro",
  40908. height: math.unit(1000, "feet")
  40909. },
  40910. {
  40911. name: "Megamacro",
  40912. height: math.unit(1, "mile")
  40913. },
  40914. ]
  40915. ))
  40916. characterMakers.push(() => makeCharacter(
  40917. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40918. {
  40919. front: {
  40920. height: math.unit(10, "feet"),
  40921. weight: math.unit(1442, "lb"),
  40922. name: "Front",
  40923. image: {
  40924. source: "./media/characters/mal-dragon/front.svg",
  40925. extra: 1515/1444,
  40926. bottom: 113/1628
  40927. }
  40928. },
  40929. back: {
  40930. height: math.unit(10, "feet"),
  40931. weight: math.unit(1442, "lb"),
  40932. name: "Back",
  40933. image: {
  40934. source: "./media/characters/mal-dragon/back.svg",
  40935. extra: 1527/1434,
  40936. bottom: 25/1552
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Mortal Interaction",
  40943. height: math.unit(10, "feet"),
  40944. default: true
  40945. },
  40946. {
  40947. name: "Large",
  40948. height: math.unit(30, "feet")
  40949. },
  40950. {
  40951. name: "Kaiju",
  40952. height: math.unit(300, "feet")
  40953. },
  40954. {
  40955. name: "Megamacro",
  40956. height: math.unit(10000, "feet")
  40957. },
  40958. {
  40959. name: "Continent Cracker",
  40960. height: math.unit(30000000, "feet")
  40961. },
  40962. {
  40963. name: "Sol-Swallowing",
  40964. height: math.unit(1e11, "feet")
  40965. },
  40966. {
  40967. name: "Light Universal",
  40968. height: math.unit(5, "universes")
  40969. },
  40970. {
  40971. name: "Universe Atoms",
  40972. height: math.unit(1.829e9, "universes")
  40973. },
  40974. {
  40975. name: "Light Multiversal",
  40976. height: math.unit(5, "multiverses")
  40977. },
  40978. {
  40979. name: "Multiverse Atoms",
  40980. height: math.unit(1.829e9, "multiverses")
  40981. },
  40982. {
  40983. name: "Fabric of Time",
  40984. height: math.unit(1e262, "multiverses")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(9, "feet"),
  40993. weight: math.unit(1050, "lb"),
  40994. name: "Front",
  40995. image: {
  40996. source: "./media/characters/tabitha/front.svg",
  40997. extra: 2083/1994,
  40998. bottom: 68/2151
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Baseline",
  41005. height: math.unit(9, "feet"),
  41006. default: true
  41007. },
  41008. {
  41009. name: "Giant",
  41010. height: math.unit(90, "feet")
  41011. },
  41012. {
  41013. name: "Macro",
  41014. height: math.unit(900, "feet")
  41015. },
  41016. {
  41017. name: "Megamacro",
  41018. height: math.unit(9000, "feet")
  41019. },
  41020. {
  41021. name: "City-Crushing",
  41022. height: math.unit(27000, "feet")
  41023. },
  41024. {
  41025. name: "Mountain-Mashing",
  41026. height: math.unit(90000, "feet")
  41027. },
  41028. {
  41029. name: "Nation Nemesis",
  41030. height: math.unit(9e6, "feet")
  41031. },
  41032. {
  41033. name: "Continent Cracker",
  41034. height: math.unit(27e6, "feet")
  41035. },
  41036. {
  41037. name: "Earth-Eclipsing",
  41038. height: math.unit(2.7e8, "feet")
  41039. },
  41040. {
  41041. name: "Gas Giant Gulper",
  41042. height: math.unit(2.7e9, "feet")
  41043. },
  41044. {
  41045. name: "Sol-Swallowing",
  41046. height: math.unit(9e10, "feet")
  41047. },
  41048. {
  41049. name: "Galaxy Gulper",
  41050. height: math.unit(9, "galaxies")
  41051. },
  41052. {
  41053. name: "Cosmos Churner",
  41054. height: math.unit(9, "universes")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41060. {
  41061. front: {
  41062. height: math.unit(160, "cm"),
  41063. weight: math.unit(55, "kg"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/tow/front.svg",
  41067. extra: 1751/1722,
  41068. bottom: 74/1825
  41069. }
  41070. },
  41071. },
  41072. [
  41073. {
  41074. name: "Norm",
  41075. height: math.unit(160, "cm")
  41076. },
  41077. {
  41078. name: "Casual",
  41079. height: math.unit(3200, "m"),
  41080. default: true
  41081. },
  41082. {
  41083. name: "Show-Off",
  41084. height: math.unit(160, "km")
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41090. {
  41091. front: {
  41092. height: math.unit(7 + 11/12, "feet"),
  41093. weight: math.unit(342.8, "lb"),
  41094. name: "Front",
  41095. image: {
  41096. source: "./media/characters/vivian-orca-dragon/front.svg",
  41097. extra: 1890/1865,
  41098. bottom: 28/1918
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Micro",
  41105. height: math.unit(5, "inches")
  41106. },
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(7 + 11/12, "feet"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Macro",
  41114. height: math.unit(395 + 7/12, "feet")
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41120. {
  41121. side: {
  41122. height: math.unit(10, "feet"),
  41123. weight: math.unit(1442, "lb"),
  41124. name: "Side",
  41125. image: {
  41126. source: "./media/characters/lotherakon/side.svg",
  41127. extra: 1604/1497,
  41128. bottom: 89/1693
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Mortal Interaction",
  41135. height: math.unit(10, "feet")
  41136. },
  41137. {
  41138. name: "Large",
  41139. height: math.unit(30, "feet"),
  41140. default: true
  41141. },
  41142. {
  41143. name: "Giant",
  41144. height: math.unit(100, "feet")
  41145. },
  41146. {
  41147. name: "Kaiju",
  41148. height: math.unit(300, "feet")
  41149. },
  41150. {
  41151. name: "Macro",
  41152. height: math.unit(1000, "feet")
  41153. },
  41154. {
  41155. name: "Macro+",
  41156. height: math.unit(3000, "feet")
  41157. },
  41158. {
  41159. name: "Megamacro",
  41160. height: math.unit(10000, "feet")
  41161. },
  41162. {
  41163. name: "City-Crushing",
  41164. height: math.unit(30000, "feet")
  41165. },
  41166. {
  41167. name: "Continent Cracker",
  41168. height: math.unit(30e6, "feet")
  41169. },
  41170. {
  41171. name: "Earth Eclipsing",
  41172. height: math.unit(3e8, "feet")
  41173. },
  41174. {
  41175. name: "Gas Giant Gulper",
  41176. height: math.unit(3e9, "feet")
  41177. },
  41178. {
  41179. name: "Sol-Swallowing",
  41180. height: math.unit(1e11, "feet")
  41181. },
  41182. {
  41183. name: "System Swallower",
  41184. height: math.unit(3e14, "feet")
  41185. },
  41186. {
  41187. name: "Galaxy Gulper",
  41188. height: math.unit(10, "galaxies")
  41189. },
  41190. {
  41191. name: "Light Universal",
  41192. height: math.unit(5, "universes")
  41193. },
  41194. {
  41195. name: "Universe Palm",
  41196. height: math.unit(20, "universes")
  41197. },
  41198. {
  41199. name: "Light Multiversal",
  41200. height: math.unit(5, "multiverses")
  41201. },
  41202. {
  41203. name: "Multiverse Palm",
  41204. height: math.unit(20, "multiverses")
  41205. },
  41206. {
  41207. name: "Inferno Incarnate",
  41208. height: math.unit(1e7, "multiverses")
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(8, "feet"),
  41217. weight: math.unit(1200, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/malithee/front.svg",
  41221. extra: 1675/1640,
  41222. bottom: 162/1837
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Mortal Interaction",
  41229. height: math.unit(8, "feet"),
  41230. default: true
  41231. },
  41232. {
  41233. name: "Large",
  41234. height: math.unit(24, "feet")
  41235. },
  41236. {
  41237. name: "Kaiju",
  41238. height: math.unit(240, "feet")
  41239. },
  41240. {
  41241. name: "Megamacro",
  41242. height: math.unit(8000, "feet")
  41243. },
  41244. {
  41245. name: "Continent Cracker",
  41246. height: math.unit(24e6, "feet")
  41247. },
  41248. {
  41249. name: "Earth-Eclipsing",
  41250. height: math.unit(2.4e8, "feet")
  41251. },
  41252. {
  41253. name: "Sol-Swallowing",
  41254. height: math.unit(8e10, "feet")
  41255. },
  41256. {
  41257. name: "Galaxy Gulper",
  41258. height: math.unit(8, "galaxies")
  41259. },
  41260. {
  41261. name: "Light Universal",
  41262. height: math.unit(4, "universes")
  41263. },
  41264. {
  41265. name: "Universe Atoms",
  41266. height: math.unit(1.829e9, "universes")
  41267. },
  41268. {
  41269. name: "Light Multiversal",
  41270. height: math.unit(4, "multiverses")
  41271. },
  41272. {
  41273. name: "Multiverse Atoms",
  41274. height: math.unit(1.829e9, "multiverses")
  41275. },
  41276. {
  41277. name: "Nigh-Omnipresence",
  41278. height: math.unit(8e261, "multiverses")
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41284. {
  41285. front: {
  41286. height: math.unit(10, "feet"),
  41287. weight: math.unit(1500, "lb"),
  41288. name: "Front",
  41289. image: {
  41290. source: "./media/characters/miles-thestia/front.svg",
  41291. extra: 1812/1727,
  41292. bottom: 86/1898
  41293. }
  41294. },
  41295. back: {
  41296. height: math.unit(10, "feet"),
  41297. weight: math.unit(1500, "lb"),
  41298. name: "Back",
  41299. image: {
  41300. source: "./media/characters/miles-thestia/back.svg",
  41301. extra: 1799/1690,
  41302. bottom: 47/1846
  41303. }
  41304. },
  41305. frontNsfw: {
  41306. height: math.unit(10, "feet"),
  41307. weight: math.unit(1500, "lb"),
  41308. name: "Front (NSFW)",
  41309. image: {
  41310. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41311. extra: 1812/1727,
  41312. bottom: 86/1898
  41313. }
  41314. },
  41315. },
  41316. [
  41317. {
  41318. name: "Mini-Macro",
  41319. height: math.unit(10, "feet"),
  41320. default: true
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(25, "feet"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/titan-s-wulf/front.svg",
  41332. extra: 1560/1484,
  41333. bottom: 76/1636
  41334. }
  41335. },
  41336. },
  41337. [
  41338. {
  41339. name: "Smallest",
  41340. height: math.unit(25, "feet"),
  41341. default: true
  41342. },
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(200, "feet")
  41346. },
  41347. {
  41348. name: "Macro",
  41349. height: math.unit(200000, "feet")
  41350. },
  41351. {
  41352. name: "Multiversal Original",
  41353. height: math.unit(10000, "multiverses")
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(8, "feet"),
  41362. weight: math.unit(553, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/tawendeh/front.svg",
  41366. extra: 2365/2268,
  41367. bottom: 83/2448
  41368. }
  41369. },
  41370. frontClothed: {
  41371. height: math.unit(8, "feet"),
  41372. weight: math.unit(553, "lb"),
  41373. name: "Front (Clothed)",
  41374. image: {
  41375. source: "./media/characters/tawendeh/front-clothed.svg",
  41376. extra: 2365/2268,
  41377. bottom: 83/2448
  41378. }
  41379. },
  41380. back: {
  41381. height: math.unit(8, "feet"),
  41382. weight: math.unit(553, "lb"),
  41383. name: "Back",
  41384. image: {
  41385. source: "./media/characters/tawendeh/back.svg",
  41386. extra: 2397/2294,
  41387. bottom: 42/2439
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Mortal Interaction",
  41394. height: math.unit(8, "feet"),
  41395. default: true
  41396. },
  41397. {
  41398. name: "Giant",
  41399. height: math.unit(80, "feet")
  41400. },
  41401. {
  41402. name: "Macro",
  41403. height: math.unit(800, "feet")
  41404. },
  41405. {
  41406. name: "Megamacro",
  41407. height: math.unit(8000, "feet")
  41408. },
  41409. {
  41410. name: "City-Crushing",
  41411. height: math.unit(24000, "feet")
  41412. },
  41413. {
  41414. name: "Mountain-Mashing",
  41415. height: math.unit(80000, "feet")
  41416. },
  41417. {
  41418. name: "Nation Nemesis",
  41419. height: math.unit(8e6, "feet")
  41420. },
  41421. {
  41422. name: "Continent Cracker",
  41423. height: math.unit(24e6, "feet")
  41424. },
  41425. {
  41426. name: "Earth-Eclipsing",
  41427. height: math.unit(2.4e8, "feet")
  41428. },
  41429. {
  41430. name: "Gas Giant Gulper",
  41431. height: math.unit(2.4e9, "feet")
  41432. },
  41433. {
  41434. name: "Sol-Swallowing",
  41435. height: math.unit(8e10, "feet")
  41436. },
  41437. {
  41438. name: "Galaxy Gulper",
  41439. height: math.unit(8, "galaxies")
  41440. },
  41441. {
  41442. name: "Cosmos Churner",
  41443. height: math.unit(8, "universes")
  41444. },
  41445. {
  41446. name: "Omnipotent Otter",
  41447. height: math.unit(80, "universes")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(2.6, "meters"),
  41456. weight: math.unit(900, "kg"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/neesha/front.svg",
  41460. extra: 1803/1653,
  41461. bottom: 128/1931
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(2.6, "meters"),
  41469. default: true
  41470. },
  41471. {
  41472. name: "Macro",
  41473. height: math.unit(50, "meters")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(5, "feet"),
  41482. weight: math.unit(185, "lb"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/kyera/front.svg",
  41486. extra: 1875/1790,
  41487. bottom: 96/1971
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(5, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41501. {
  41502. front: {
  41503. height: math.unit(7 + 6/12, "feet"),
  41504. weight: math.unit(540, "lb"),
  41505. name: "Front",
  41506. image: {
  41507. source: "./media/characters/yuko/front.svg",
  41508. extra: 1282/1222,
  41509. bottom: 101/1383
  41510. }
  41511. },
  41512. frontClothed: {
  41513. height: math.unit(7 + 6/12, "feet"),
  41514. weight: math.unit(540, "lb"),
  41515. name: "Front (Clothed)",
  41516. image: {
  41517. source: "./media/characters/yuko/front-clothed.svg",
  41518. extra: 1282/1222,
  41519. bottom: 101/1383
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(7 + 6/12, "feet"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(26 + 9/12, "feet")
  41532. },
  41533. {
  41534. name: "Megamacro",
  41535. height: math.unit(300, "feet")
  41536. },
  41537. {
  41538. name: "Gigamacro",
  41539. height: math.unit(5000, "feet")
  41540. },
  41541. {
  41542. name: "Planetary",
  41543. height: math.unit(10000, "miles")
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(8 + 2/12, "feet"),
  41552. weight: math.unit(600, "lb"),
  41553. name: "Front",
  41554. image: {
  41555. source: "./media/characters/deam-nitrel/front.svg",
  41556. extra: 1308/1234,
  41557. bottom: 125/1433
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(8 + 2/12, "feet"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41571. {
  41572. front: {
  41573. height: math.unit(6.1, "feet"),
  41574. weight: math.unit(180, "lb"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/skyress/front.svg",
  41578. extra: 1045/915,
  41579. bottom: 28/1073
  41580. }
  41581. },
  41582. maw: {
  41583. height: math.unit(1, "feet"),
  41584. name: "Maw",
  41585. image: {
  41586. source: "./media/characters/skyress/maw.svg"
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(6.1, "feet"),
  41594. default: true
  41595. },
  41596. {
  41597. name: "Macro",
  41598. height: math.unit(200, "feet")
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(4 + 2/12, "feet"),
  41607. weight: math.unit(40, "kg"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/amethyst-jones/front.svg",
  41611. extra: 1220/1150,
  41612. bottom: 101/1321
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(4 + 2/12, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(1.7, "m"),
  41629. weight: math.unit(135, "lb"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/jade/front.svg",
  41633. extra: 1818/1767,
  41634. bottom: 32/1850
  41635. }
  41636. },
  41637. back: {
  41638. height: math.unit(1.7, "m"),
  41639. weight: math.unit(135, "lb"),
  41640. name: "Back",
  41641. image: {
  41642. source: "./media/characters/jade/back.svg",
  41643. extra: 1869/1809,
  41644. bottom: 35/1904
  41645. }
  41646. },
  41647. hand: {
  41648. height: math.unit(0.24, "m"),
  41649. name: "Hand",
  41650. image: {
  41651. source: "./media/characters/jade/hand.svg"
  41652. }
  41653. },
  41654. foot: {
  41655. height: math.unit(0.263, "m"),
  41656. name: "Foot",
  41657. image: {
  41658. source: "./media/characters/jade/foot.svg"
  41659. }
  41660. },
  41661. dick: {
  41662. height: math.unit(0.47, "m"),
  41663. name: "Dick",
  41664. image: {
  41665. source: "./media/characters/jade/dick.svg"
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Micro",
  41672. height: math.unit(22, "cm")
  41673. },
  41674. {
  41675. name: "Normal",
  41676. height: math.unit(1.7, "m"),
  41677. default: true
  41678. },
  41679. {
  41680. name: "Macro",
  41681. height: math.unit(152, "m")
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(100, "miles"),
  41690. weight: math.unit(20000, "tons"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/cookie/front.svg",
  41694. extra: 1125/1070,
  41695. bottom: 30/1155
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Big",
  41702. height: math.unit(50, "feet")
  41703. },
  41704. {
  41705. name: "Macro",
  41706. height: math.unit(100, "miles"),
  41707. default: true
  41708. },
  41709. {
  41710. name: "Megamacro",
  41711. height: math.unit(90000, "miles")
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(6, "feet"),
  41720. weight: math.unit(145, "lb"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/farzian/front.svg",
  41724. extra: 1902/1693,
  41725. bottom: 108/2010
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Macro",
  41732. height: math.unit(500, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41739. {
  41740. front: {
  41741. height: math.unit(3 + 6/12, "feet"),
  41742. weight: math.unit(50, "lb"),
  41743. name: "Front",
  41744. image: {
  41745. source: "./media/characters/kimberly-tilson/front.svg",
  41746. extra: 1400/1322,
  41747. bottom: 36/1436
  41748. }
  41749. },
  41750. back: {
  41751. height: math.unit(3 + 6/12, "feet"),
  41752. weight: math.unit(50, "lb"),
  41753. name: "Back",
  41754. image: {
  41755. source: "./media/characters/kimberly-tilson/back.svg",
  41756. extra: 1370/1307,
  41757. bottom: 20/1390
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Normal",
  41764. height: math.unit(3 + 6/12, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(1148, "feet"),
  41774. weight: math.unit(34057, "lb"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/harthos/front.svg",
  41778. extra: 1391/1339,
  41779. bottom: 13/1404
  41780. }
  41781. },
  41782. },
  41783. [
  41784. {
  41785. name: "Macro",
  41786. height: math.unit(1148, "feet"),
  41787. default: true
  41788. },
  41789. ]
  41790. ))
  41791. characterMakers.push(() => makeCharacter(
  41792. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41793. {
  41794. front: {
  41795. height: math.unit(15, "feet"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/hypatia/front.svg",
  41799. extra: 1653/1591,
  41800. bottom: 79/1732
  41801. }
  41802. },
  41803. },
  41804. [
  41805. {
  41806. name: "Normal",
  41807. height: math.unit(15, "feet")
  41808. },
  41809. {
  41810. name: "Small",
  41811. height: math.unit(300, "feet")
  41812. },
  41813. {
  41814. name: "Macro",
  41815. height: math.unit(2500, "feet"),
  41816. default: true
  41817. },
  41818. {
  41819. name: "Mega Macro",
  41820. height: math.unit(1500, "miles")
  41821. },
  41822. {
  41823. name: "Giga Macro",
  41824. height: math.unit(1.5e6, "miles")
  41825. },
  41826. ]
  41827. ))
  41828. characterMakers.push(() => makeCharacter(
  41829. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41830. {
  41831. front: {
  41832. height: math.unit(6, "feet"),
  41833. weight: math.unit(200, "lb"),
  41834. name: "Front",
  41835. image: {
  41836. source: "./media/characters/wulver/front.svg",
  41837. extra: 1724/1632,
  41838. bottom: 130/1854
  41839. }
  41840. },
  41841. frontNsfw: {
  41842. height: math.unit(6, "feet"),
  41843. weight: math.unit(200, "lb"),
  41844. name: "Front (NSFW)",
  41845. image: {
  41846. source: "./media/characters/wulver/front-nsfw.svg",
  41847. extra: 1724/1632,
  41848. bottom: 130/1854
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Human-Sized",
  41855. height: math.unit(6, "feet")
  41856. },
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(4, "meters"),
  41860. default: true
  41861. },
  41862. {
  41863. name: "Large",
  41864. height: math.unit(6, "m")
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(7, "feet"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/maru/front.svg",
  41876. extra: 1595/1570,
  41877. bottom: 0/1595
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Normal",
  41884. height: math.unit(7, "feet"),
  41885. default: true
  41886. },
  41887. {
  41888. name: "Macro",
  41889. height: math.unit(700, "feet")
  41890. },
  41891. {
  41892. name: "Mega Macro",
  41893. height: math.unit(25, "miles")
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(6, "feet"),
  41902. weight: math.unit(170, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/xenon/front.svg",
  41906. extra: 1376/1305,
  41907. bottom: 56/1432
  41908. }
  41909. },
  41910. back: {
  41911. height: math.unit(6, "feet"),
  41912. weight: math.unit(170, "lb"),
  41913. name: "Back",
  41914. image: {
  41915. source: "./media/characters/xenon/back.svg",
  41916. extra: 1328/1259,
  41917. bottom: 95/1423
  41918. }
  41919. },
  41920. maw: {
  41921. height: math.unit(0.52, "feet"),
  41922. name: "Maw",
  41923. image: {
  41924. source: "./media/characters/xenon/maw.svg"
  41925. }
  41926. },
  41927. handLeft: {
  41928. height: math.unit(0.82 * 169 / 153, "feet"),
  41929. name: "Hand (Left)",
  41930. image: {
  41931. source: "./media/characters/xenon/hand-left.svg"
  41932. }
  41933. },
  41934. handRight: {
  41935. height: math.unit(0.82, "feet"),
  41936. name: "Hand (Right)",
  41937. image: {
  41938. source: "./media/characters/xenon/hand-right.svg"
  41939. }
  41940. },
  41941. footLeft: {
  41942. height: math.unit(1.13, "feet"),
  41943. name: "Foot (Left)",
  41944. image: {
  41945. source: "./media/characters/xenon/foot-left.svg"
  41946. }
  41947. },
  41948. footRight: {
  41949. height: math.unit(1.13 * 194 / 196, "feet"),
  41950. name: "Foot (Right)",
  41951. image: {
  41952. source: "./media/characters/xenon/foot-right.svg"
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Micro",
  41959. height: math.unit(0.8, "inches")
  41960. },
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(6, "feet")
  41964. },
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(50, "feet"),
  41968. default: true
  41969. },
  41970. {
  41971. name: "Macro+",
  41972. height: math.unit(250, "feet")
  41973. },
  41974. {
  41975. name: "Megamacro",
  41976. height: math.unit(1500, "feet")
  41977. },
  41978. ]
  41979. ))
  41980. characterMakers.push(() => makeCharacter(
  41981. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41982. {
  41983. front: {
  41984. height: math.unit(7 + 5/12, "feet"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/zane/front.svg",
  41988. extra: 1260/1203,
  41989. bottom: 94/1354
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(5.05, "feet"),
  41994. name: "Back",
  41995. image: {
  41996. source: "./media/characters/zane/back.svg",
  41997. extra: 893/829,
  41998. bottom: 30/923
  41999. }
  42000. },
  42001. werewolf: {
  42002. height: math.unit(11, "feet"),
  42003. name: "Werewolf",
  42004. image: {
  42005. source: "./media/characters/zane/werewolf.svg",
  42006. extra: 1383/1323,
  42007. bottom: 89/1472
  42008. }
  42009. },
  42010. foot: {
  42011. height: math.unit(1.46, "feet"),
  42012. name: "Foot",
  42013. image: {
  42014. source: "./media/characters/zane/foot.svg"
  42015. }
  42016. },
  42017. footFront: {
  42018. height: math.unit(0.784, "feet"),
  42019. name: "Foot (Front)",
  42020. image: {
  42021. source: "./media/characters/zane/foot-front.svg"
  42022. }
  42023. },
  42024. dick: {
  42025. height: math.unit(1.95, "feet"),
  42026. name: "Dick",
  42027. image: {
  42028. source: "./media/characters/zane/dick.svg"
  42029. }
  42030. },
  42031. dickWerewolf: {
  42032. height: math.unit(3.77, "feet"),
  42033. name: "Dick (Werewolf)",
  42034. image: {
  42035. source: "./media/characters/zane/dick.svg"
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Normal",
  42042. height: math.unit(7 + 5/12, "feet"),
  42043. default: true
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(6 + 2/12, "feet"),
  42052. weight: math.unit(284, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/benni-desparque/front.svg",
  42056. extra: 1353/1126,
  42057. bottom: 69/1422
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Civilian",
  42064. height: math.unit(6 + 2/12, "feet")
  42065. },
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(98, "feet"),
  42069. default: true
  42070. },
  42071. {
  42072. name: "Kaiju Fighter",
  42073. height: math.unit(268, "feet")
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(5, "feet"),
  42082. weight: math.unit(105, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/maxine/front.svg",
  42086. extra: 1386/1250,
  42087. bottom: 71/1457
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Normal",
  42094. height: math.unit(5, "feet"),
  42095. default: true
  42096. },
  42097. ]
  42098. ))
  42099. characterMakers.push(() => makeCharacter(
  42100. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42101. {
  42102. front: {
  42103. height: math.unit(11 + 7/12, "feet"),
  42104. weight: math.unit(9576, "lb"),
  42105. name: "Front",
  42106. image: {
  42107. source: "./media/characters/scaly/front.svg",
  42108. extra: 888/867,
  42109. bottom: 36/924
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(11 + 7/12, "feet"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42123. {
  42124. front: {
  42125. height: math.unit(6 + 3/12, "feet"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/saelria/front.svg",
  42129. extra: 1243/1138,
  42130. bottom: 46/1289
  42131. }
  42132. },
  42133. },
  42134. [
  42135. {
  42136. name: "Micro",
  42137. height: math.unit(6, "inches"),
  42138. },
  42139. {
  42140. name: "Normal",
  42141. height: math.unit(6 + 3/12, "feet"),
  42142. default: true
  42143. },
  42144. {
  42145. name: "Macro",
  42146. height: math.unit(25, "feet")
  42147. },
  42148. ]
  42149. ))
  42150. characterMakers.push(() => makeCharacter(
  42151. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42152. {
  42153. front: {
  42154. height: math.unit(80, "meters"),
  42155. weight: math.unit(7000, "tonnes"),
  42156. name: "Front",
  42157. image: {
  42158. source: "./media/characters/tef/front.svg",
  42159. extra: 2036/1991,
  42160. bottom: 54/2090
  42161. }
  42162. },
  42163. back: {
  42164. height: math.unit(80, "meters"),
  42165. weight: math.unit(7000, "tonnes"),
  42166. name: "Back",
  42167. image: {
  42168. source: "./media/characters/tef/back.svg",
  42169. extra: 2036/1991,
  42170. bottom: 54/2090
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(80, "meters"),
  42178. default: true
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(13, "feet"),
  42187. weight: math.unit(6, "tons"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/rover/front.svg",
  42191. extra: 1233/1156,
  42192. bottom: 50/1283
  42193. }
  42194. },
  42195. back: {
  42196. height: math.unit(13, "feet"),
  42197. weight: math.unit(6, "tons"),
  42198. name: "Back",
  42199. image: {
  42200. source: "./media/characters/rover/back.svg",
  42201. extra: 1327/1258,
  42202. bottom: 39/1366
  42203. }
  42204. },
  42205. },
  42206. [
  42207. {
  42208. name: "Normal",
  42209. height: math.unit(13, "feet"),
  42210. default: true
  42211. },
  42212. {
  42213. name: "Macro",
  42214. height: math.unit(1300, "feet")
  42215. },
  42216. {
  42217. name: "Megamacro",
  42218. height: math.unit(1300, "miles")
  42219. },
  42220. {
  42221. name: "Gigamacro",
  42222. height: math.unit(1300000, "miles")
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(6, "feet"),
  42231. weight: math.unit(150, "lb"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/ariz/front.svg",
  42235. extra: 1401/1346,
  42236. bottom: 5/1406
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Normal",
  42243. height: math.unit(10, "feet"),
  42244. default: true
  42245. },
  42246. ]
  42247. ))
  42248. characterMakers.push(() => makeCharacter(
  42249. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42250. {
  42251. front: {
  42252. height: math.unit(6, "feet"),
  42253. weight: math.unit(140, "lb"),
  42254. name: "Front",
  42255. image: {
  42256. source: "./media/characters/sigrun/front.svg",
  42257. extra: 1418/1359,
  42258. bottom: 27/1445
  42259. }
  42260. },
  42261. },
  42262. [
  42263. {
  42264. name: "Macro",
  42265. height: math.unit(35, "feet"),
  42266. default: true
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42272. {
  42273. front: {
  42274. height: math.unit(6, "feet"),
  42275. weight: math.unit(150, "lb"),
  42276. name: "Front",
  42277. image: {
  42278. source: "./media/characters/numin/front.svg",
  42279. extra: 1433/1388,
  42280. bottom: 12/1445
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Macro",
  42287. height: math.unit(21.5, "km"),
  42288. default: true
  42289. },
  42290. ]
  42291. ))
  42292. characterMakers.push(() => makeCharacter(
  42293. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42294. {
  42295. front: {
  42296. height: math.unit(6, "feet"),
  42297. weight: math.unit(463, "lb"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/melwa/front.svg",
  42301. extra: 1307/1248,
  42302. bottom: 93/1400
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Macro",
  42309. height: math.unit(50, "meters"),
  42310. default: true
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42316. {
  42317. front: {
  42318. height: math.unit(325, "feet"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/zorkaiju/front.svg",
  42322. extra: 1955/1814,
  42323. bottom: 40/1995
  42324. }
  42325. },
  42326. frontExtended: {
  42327. height: math.unit(325, "feet"),
  42328. name: "Front (Extended)",
  42329. image: {
  42330. source: "./media/characters/zorkaiju/front-extended.svg",
  42331. extra: 1955/1814,
  42332. bottom: 40/1995
  42333. }
  42334. },
  42335. side: {
  42336. height: math.unit(325, "feet"),
  42337. name: "Side",
  42338. image: {
  42339. source: "./media/characters/zorkaiju/side.svg",
  42340. extra: 1495/1396,
  42341. bottom: 17/1512
  42342. }
  42343. },
  42344. sideExtended: {
  42345. height: math.unit(325, "feet"),
  42346. name: "Side (Extended)",
  42347. image: {
  42348. source: "./media/characters/zorkaiju/side-extended.svg",
  42349. extra: 1495/1396,
  42350. bottom: 17/1512
  42351. }
  42352. },
  42353. back: {
  42354. height: math.unit(325, "feet"),
  42355. name: "Back",
  42356. image: {
  42357. source: "./media/characters/zorkaiju/back.svg",
  42358. extra: 1959/1821,
  42359. bottom: 31/1990
  42360. }
  42361. },
  42362. backExtended: {
  42363. height: math.unit(325, "feet"),
  42364. name: "Back (Extended)",
  42365. image: {
  42366. source: "./media/characters/zorkaiju/back-extended.svg",
  42367. extra: 1959/1821,
  42368. bottom: 31/1990
  42369. }
  42370. },
  42371. hand: {
  42372. height: math.unit(58.4, "feet"),
  42373. name: "Hand",
  42374. image: {
  42375. source: "./media/characters/zorkaiju/hand.svg"
  42376. }
  42377. },
  42378. handExtended: {
  42379. height: math.unit(61.4, "feet"),
  42380. name: "Hand (Extended)",
  42381. image: {
  42382. source: "./media/characters/zorkaiju/hand-extended.svg"
  42383. }
  42384. },
  42385. foot: {
  42386. height: math.unit(95, "feet"),
  42387. name: "Foot",
  42388. image: {
  42389. source: "./media/characters/zorkaiju/foot.svg"
  42390. }
  42391. },
  42392. leftArm: {
  42393. height: math.unit(59, "feet"),
  42394. name: "Left Arm",
  42395. image: {
  42396. source: "./media/characters/zorkaiju/left-arm.svg"
  42397. }
  42398. },
  42399. rightArm: {
  42400. height: math.unit(59, "feet"),
  42401. name: "Right Arm",
  42402. image: {
  42403. source: "./media/characters/zorkaiju/right-arm.svg"
  42404. }
  42405. },
  42406. leftArmExtended: {
  42407. height: math.unit(59 * 1.033546, "feet"),
  42408. name: "Left Arm (Extended)",
  42409. image: {
  42410. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42411. }
  42412. },
  42413. rightArmExtended: {
  42414. height: math.unit(59 * 1.0496, "feet"),
  42415. name: "Right Arm (Extended)",
  42416. image: {
  42417. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42418. }
  42419. },
  42420. tail: {
  42421. height: math.unit(104, "feet"),
  42422. name: "Tail",
  42423. image: {
  42424. source: "./media/characters/zorkaiju/tail.svg"
  42425. }
  42426. },
  42427. tailExtended: {
  42428. height: math.unit(104, "feet"),
  42429. name: "Tail (Extended)",
  42430. image: {
  42431. source: "./media/characters/zorkaiju/tail-extended.svg"
  42432. }
  42433. },
  42434. tailBottom: {
  42435. height: math.unit(104, "feet"),
  42436. name: "Tail Bottom",
  42437. image: {
  42438. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42439. }
  42440. },
  42441. crystal: {
  42442. height: math.unit(27.54, "feet"),
  42443. name: "Crystal",
  42444. image: {
  42445. source: "./media/characters/zorkaiju/crystal.svg"
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Kaiju",
  42452. height: math.unit(325, "feet"),
  42453. default: true
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(6 + 1/12, "feet"),
  42462. weight: math.unit(115, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/bailey-belfry/front.svg",
  42466. extra: 1240/1121,
  42467. bottom: 101/1341
  42468. }
  42469. },
  42470. },
  42471. [
  42472. {
  42473. name: "Normal",
  42474. height: math.unit(6 + 1/12, "feet"),
  42475. default: true
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42481. {
  42482. side: {
  42483. height: math.unit(4, "meters"),
  42484. weight: math.unit(250, "kg"),
  42485. name: "Side",
  42486. image: {
  42487. source: "./media/characters/blacky/side.svg",
  42488. extra: 1027/919,
  42489. bottom: 43/1070
  42490. }
  42491. },
  42492. maw: {
  42493. height: math.unit(1, "meters"),
  42494. name: "Maw",
  42495. image: {
  42496. source: "./media/characters/blacky/maw.svg"
  42497. }
  42498. },
  42499. paw: {
  42500. height: math.unit(1, "meters"),
  42501. name: "Paw",
  42502. image: {
  42503. source: "./media/characters/blacky/paw.svg"
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Normal",
  42510. height: math.unit(4, "meters"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(170, "cm"),
  42520. weight: math.unit(66, "kg"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/thux-ei/front.svg",
  42524. extra: 1109/1011,
  42525. bottom: 8/1117
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(170, "cm"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42539. {
  42540. front: {
  42541. height: math.unit(5, "feet"),
  42542. weight: math.unit(120, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/roxanne-voltaire/front.svg",
  42546. extra: 1901/1779,
  42547. bottom: 53/1954
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Normal",
  42554. height: math.unit(5, "feet"),
  42555. default: true
  42556. },
  42557. {
  42558. name: "Giant",
  42559. height: math.unit(50, "feet")
  42560. },
  42561. {
  42562. name: "Titan",
  42563. height: math.unit(500, "feet")
  42564. },
  42565. {
  42566. name: "Macro",
  42567. height: math.unit(5000, "feet")
  42568. },
  42569. {
  42570. name: "Megamacro",
  42571. height: math.unit(50000, "feet")
  42572. },
  42573. {
  42574. name: "Gigamacro",
  42575. height: math.unit(500000, "feet")
  42576. },
  42577. {
  42578. name: "Teramacro",
  42579. height: math.unit(5e6, "feet")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(6 + 2/12, "feet"),
  42588. name: "Front",
  42589. image: {
  42590. source: "./media/characters/squeaks/front.svg",
  42591. extra: 1823/1768,
  42592. bottom: 138/1961
  42593. }
  42594. },
  42595. },
  42596. [
  42597. {
  42598. name: "Micro",
  42599. height: math.unit(0.5, "inches")
  42600. },
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(6 + 2/12, "feet"),
  42604. default: true
  42605. },
  42606. {
  42607. name: "Macro",
  42608. height: math.unit(600, "feet")
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(1.72, "meters"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/archinger/front.svg",
  42620. extra: 1861/1675,
  42621. bottom: 125/1986
  42622. }
  42623. },
  42624. back: {
  42625. height: math.unit(1.72, "meters"),
  42626. name: "Back",
  42627. image: {
  42628. source: "./media/characters/archinger/back.svg",
  42629. extra: 1844/1701,
  42630. bottom: 104/1948
  42631. }
  42632. },
  42633. cock: {
  42634. height: math.unit(0.59, "feet"),
  42635. name: "Cock",
  42636. image: {
  42637. source: "./media/characters/archinger/cock.svg"
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(1.72, "meters"),
  42645. default: true
  42646. },
  42647. {
  42648. name: "Macro",
  42649. height: math.unit(84, "meters")
  42650. },
  42651. {
  42652. name: "Macro+",
  42653. height: math.unit(112, "meters")
  42654. },
  42655. {
  42656. name: "Macro++",
  42657. height: math.unit(960, "meters")
  42658. },
  42659. {
  42660. name: "Macro+++",
  42661. height: math.unit(4, "km")
  42662. },
  42663. {
  42664. name: "Macro++++",
  42665. height: math.unit(48, "km")
  42666. },
  42667. {
  42668. name: "Macro+++++",
  42669. height: math.unit(4500, "km")
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(5 + 5/12, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/alsnapz/front.svg",
  42681. extra: 1157/1065,
  42682. bottom: 42/1199
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Normal",
  42689. height: math.unit(5 + 5/12, "feet"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42696. {
  42697. side: {
  42698. height: math.unit(3.2, "earths"),
  42699. name: "Side",
  42700. image: {
  42701. source: "./media/characters/mag/side.svg",
  42702. extra: 1331/1008,
  42703. bottom: 52/1383
  42704. }
  42705. },
  42706. wing: {
  42707. height: math.unit(1.94, "earths"),
  42708. name: "Wing",
  42709. image: {
  42710. source: "./media/characters/mag/wing.svg"
  42711. }
  42712. },
  42713. dick: {
  42714. height: math.unit(1.8, "earths"),
  42715. name: "Dick",
  42716. image: {
  42717. source: "./media/characters/mag/dick.svg"
  42718. }
  42719. },
  42720. ass: {
  42721. height: math.unit(1.33, "earths"),
  42722. name: "Ass",
  42723. image: {
  42724. source: "./media/characters/mag/ass.svg"
  42725. }
  42726. },
  42727. head: {
  42728. height: math.unit(1.1, "earths"),
  42729. name: "Head",
  42730. image: {
  42731. source: "./media/characters/mag/head.svg"
  42732. }
  42733. },
  42734. maw: {
  42735. height: math.unit(1.62, "earths"),
  42736. name: "Maw",
  42737. image: {
  42738. source: "./media/characters/mag/maw.svg"
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Small",
  42745. height: math.unit(162, "feet")
  42746. },
  42747. {
  42748. name: "Normal",
  42749. height: math.unit(3.2, "earths"),
  42750. default: true
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(512, "feet"),
  42759. weight: math.unit(63509, "tonnes"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/vorrel-harroc/front.svg",
  42763. extra: 1075/1063,
  42764. bottom: 62/1137
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(10, "feet")
  42772. },
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(512, "feet"),
  42776. default: true
  42777. },
  42778. {
  42779. name: "Megamacro",
  42780. height: math.unit(256, "miles")
  42781. },
  42782. {
  42783. name: "Gigamacro",
  42784. height: math.unit(4096, "miles")
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42790. {
  42791. side: {
  42792. height: math.unit(50, "feet"),
  42793. name: "Side",
  42794. image: {
  42795. source: "./media/characters/froimar/side.svg",
  42796. extra: 855/638,
  42797. bottom: 99/954
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Macro",
  42804. height: math.unit(50, "feet"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(210, "miles"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/timothy/front.svg",
  42817. extra: 1007/943,
  42818. bottom: 62/1069
  42819. }
  42820. },
  42821. frontSkirt: {
  42822. height: math.unit(210, "miles"),
  42823. name: "Front (Skirt)",
  42824. image: {
  42825. source: "./media/characters/timothy/front-skirt.svg",
  42826. extra: 1007/943,
  42827. bottom: 62/1069
  42828. }
  42829. },
  42830. frontCoat: {
  42831. height: math.unit(210, "miles"),
  42832. name: "Front (Coat)",
  42833. image: {
  42834. source: "./media/characters/timothy/front-coat.svg",
  42835. extra: 1007/943,
  42836. bottom: 62/1069
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Macro",
  42843. height: math.unit(210, "miles"),
  42844. default: true
  42845. },
  42846. {
  42847. name: "Megamacro",
  42848. height: math.unit(210000, "miles")
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42854. {
  42855. front: {
  42856. height: math.unit(188, "feet"),
  42857. name: "Front",
  42858. image: {
  42859. source: "./media/characters/pyotr/front.svg",
  42860. extra: 1912/1826,
  42861. bottom: 18/1930
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Macro",
  42868. height: math.unit(188, "feet"),
  42869. default: true
  42870. },
  42871. {
  42872. name: "Megamacro",
  42873. height: math.unit(8, "miles")
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42879. {
  42880. side: {
  42881. height: math.unit(10, "feet"),
  42882. weight: math.unit(4500, "lb"),
  42883. name: "Side",
  42884. image: {
  42885. source: "./media/characters/ackart/side.svg",
  42886. extra: 1776/1668,
  42887. bottom: 116/1892
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(10, "feet"),
  42895. default: true
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42901. {
  42902. side: {
  42903. height: math.unit(21, "feet"),
  42904. name: "Side",
  42905. image: {
  42906. source: "./media/characters/nolow/side.svg",
  42907. extra: 1484/1434,
  42908. bottom: 85/1569
  42909. }
  42910. },
  42911. sideErect: {
  42912. height: math.unit(21, "feet"),
  42913. name: "Side-erect",
  42914. image: {
  42915. source: "./media/characters/nolow/side-erect.svg",
  42916. extra: 1484/1434,
  42917. bottom: 85/1569
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Regular",
  42924. height: math.unit(12, "feet")
  42925. },
  42926. {
  42927. name: "Big Chee",
  42928. height: math.unit(21, "feet"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(7, "feet"),
  42938. weight: math.unit(250, "lb"),
  42939. name: "Front",
  42940. image: {
  42941. source: "./media/characters/nines/front.svg",
  42942. extra: 1741/1607,
  42943. bottom: 41/1782
  42944. }
  42945. },
  42946. side: {
  42947. height: math.unit(7, "feet"),
  42948. weight: math.unit(250, "lb"),
  42949. name: "Side",
  42950. image: {
  42951. source: "./media/characters/nines/side.svg",
  42952. extra: 1854/1735,
  42953. bottom: 93/1947
  42954. }
  42955. },
  42956. back: {
  42957. height: math.unit(7, "feet"),
  42958. weight: math.unit(250, "lb"),
  42959. name: "Back",
  42960. image: {
  42961. source: "./media/characters/nines/back.svg",
  42962. extra: 1748/1615,
  42963. bottom: 20/1768
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Megamacro",
  42970. height: math.unit(99, "km"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(5 + 10/12, "feet"),
  42980. weight: math.unit(210, "lb"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/zenith/front.svg",
  42984. extra: 1531/1452,
  42985. bottom: 198/1729
  42986. }
  42987. },
  42988. back: {
  42989. height: math.unit(5 + 10/12, "feet"),
  42990. weight: math.unit(210, "lb"),
  42991. name: "Back",
  42992. image: {
  42993. source: "./media/characters/zenith/back.svg",
  42994. extra: 1571/1487,
  42995. bottom: 75/1646
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(5 + 10/12, "feet"),
  43003. default: true
  43004. }
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(4, "feet"),
  43012. weight: math.unit(60, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/jasper/front.svg",
  43016. extra: 1450/1379,
  43017. bottom: 19/1469
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(4, "feet"),
  43025. default: true
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(6 + 5/12, "feet"),
  43034. weight: math.unit(290, "lb"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/tiberius-thyben/front.svg",
  43038. extra: 757/739,
  43039. bottom: 39/796
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Micro",
  43046. height: math.unit(1.5, "inches")
  43047. },
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(6 + 5/12, "feet"),
  43051. default: true
  43052. },
  43053. {
  43054. name: "Macro",
  43055. height: math.unit(300, "feet")
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43061. {
  43062. front: {
  43063. height: math.unit(5 + 6/12, "feet"),
  43064. weight: math.unit(60, "kg"),
  43065. name: "Front",
  43066. image: {
  43067. source: "./media/characters/sabre/front.svg",
  43068. extra: 738/671,
  43069. bottom: 27/765
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Teeny",
  43076. height: math.unit(2, "inches")
  43077. },
  43078. {
  43079. name: "Smol",
  43080. height: math.unit(8, "inches")
  43081. },
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(5 + 6/12, "feet"),
  43085. default: true
  43086. },
  43087. {
  43088. name: "Mini-Macro",
  43089. height: math.unit(15, "feet")
  43090. },
  43091. {
  43092. name: "Macro",
  43093. height: math.unit(50, "feet")
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43099. {
  43100. front: {
  43101. height: math.unit(6 + 4/12, "feet"),
  43102. weight: math.unit(170, "lb"),
  43103. name: "Front",
  43104. image: {
  43105. source: "./media/characters/charlie/front.svg",
  43106. extra: 1348/1228,
  43107. bottom: 15/1363
  43108. }
  43109. },
  43110. },
  43111. [
  43112. {
  43113. name: "Macro",
  43114. height: math.unit(1700, "meters"),
  43115. default: true
  43116. },
  43117. {
  43118. name: "MegaMacro",
  43119. height: math.unit(20400, "meters")
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(6 + 3/12, "feet"),
  43128. weight: math.unit(185, "lb"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/susan-grant/front.svg",
  43132. extra: 1351/1327,
  43133. bottom: 26/1377
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(6 + 3/12, "feet"),
  43141. default: true
  43142. },
  43143. {
  43144. name: "Macro",
  43145. height: math.unit(225, "feet")
  43146. },
  43147. {
  43148. name: "Macro+",
  43149. height: math.unit(900, "feet")
  43150. },
  43151. {
  43152. name: "MegaMacro",
  43153. height: math.unit(14400, "feet")
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43159. {
  43160. front: {
  43161. height: math.unit(5 + 4/12, "feet"),
  43162. weight: math.unit(110, "lb"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/axel-isanov/front.svg",
  43166. extra: 1096/1065,
  43167. bottom: 13/1109
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Normal",
  43174. height: math.unit(5 + 4/12, "feet"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(9, "feet"),
  43184. weight: math.unit(467, "lb"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/necahual/front.svg",
  43188. extra: 920/873,
  43189. bottom: 26/946
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(9, "feet"),
  43194. weight: math.unit(467, "lb"),
  43195. name: "Back",
  43196. image: {
  43197. source: "./media/characters/necahual/back.svg",
  43198. extra: 930/884,
  43199. bottom: 16/946
  43200. }
  43201. },
  43202. frontUnderwear: {
  43203. height: math.unit(9, "feet"),
  43204. weight: math.unit(467, "lb"),
  43205. name: "Front (Underwear)",
  43206. image: {
  43207. source: "./media/characters/necahual/front-underwear.svg",
  43208. extra: 920/873,
  43209. bottom: 26/946
  43210. }
  43211. },
  43212. frontDressed: {
  43213. height: math.unit(9, "feet"),
  43214. weight: math.unit(467, "lb"),
  43215. name: "Front (Dressed)",
  43216. image: {
  43217. source: "./media/characters/necahual/front-dressed.svg",
  43218. extra: 920/873,
  43219. bottom: 26/946
  43220. }
  43221. },
  43222. },
  43223. [
  43224. {
  43225. name: "Comprsesed",
  43226. height: math.unit(9, "feet")
  43227. },
  43228. {
  43229. name: "Natural",
  43230. height: math.unit(15, "feet"),
  43231. default: true
  43232. },
  43233. {
  43234. name: "Boosted",
  43235. height: math.unit(50, "feet")
  43236. },
  43237. {
  43238. name: "Boosted+",
  43239. height: math.unit(150, "feet")
  43240. },
  43241. {
  43242. name: "Max",
  43243. height: math.unit(500, "feet")
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(22 + 1/12, "feet"),
  43252. weight: math.unit(3200, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/theo-acacia/front.svg",
  43256. extra: 1796/1741,
  43257. bottom: 83/1879
  43258. }
  43259. },
  43260. frontUnderwear: {
  43261. height: math.unit(22 + 1/12, "feet"),
  43262. weight: math.unit(3200, "lb"),
  43263. name: "Front (Underwear)",
  43264. image: {
  43265. source: "./media/characters/theo-acacia/front-underwear.svg",
  43266. extra: 1796/1741,
  43267. bottom: 83/1879
  43268. }
  43269. },
  43270. frontNude: {
  43271. height: math.unit(22 + 1/12, "feet"),
  43272. weight: math.unit(3200, "lb"),
  43273. name: "Front (Nude)",
  43274. image: {
  43275. source: "./media/characters/theo-acacia/front-nude.svg",
  43276. extra: 1796/1741,
  43277. bottom: 83/1879
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Normal",
  43284. height: math.unit(22 + 1/12, "feet"),
  43285. default: true
  43286. },
  43287. ]
  43288. ))
  43289. characterMakers.push(() => makeCharacter(
  43290. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43291. {
  43292. front: {
  43293. height: math.unit(20, "feet"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/astra/front.svg",
  43297. extra: 1850/1714,
  43298. bottom: 106/1956
  43299. }
  43300. },
  43301. frontUndressed: {
  43302. height: math.unit(20, "feet"),
  43303. name: "Front (Undressed)",
  43304. image: {
  43305. source: "./media/characters/astra/front-undressed.svg",
  43306. extra: 1926/1749,
  43307. bottom: 0/1926
  43308. }
  43309. },
  43310. hand: {
  43311. height: math.unit(1.53, "feet"),
  43312. name: "Hand",
  43313. image: {
  43314. source: "./media/characters/astra/hand.svg"
  43315. }
  43316. },
  43317. paw: {
  43318. height: math.unit(1.53, "feet"),
  43319. name: "Paw",
  43320. image: {
  43321. source: "./media/characters/astra/paw.svg"
  43322. }
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Smallest",
  43328. height: math.unit(20, "feet")
  43329. },
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(1e9, "miles"),
  43333. default: true
  43334. },
  43335. {
  43336. name: "Larger",
  43337. height: math.unit(5, "multiverses")
  43338. },
  43339. {
  43340. name: "Largest",
  43341. height: math.unit(1e9, "multiverses")
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(8, "feet"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/breanna/front.svg",
  43353. extra: 1912/1632,
  43354. bottom: 33/1945
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "Smallest",
  43361. height: math.unit(8, "feet")
  43362. },
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(1, "mile"),
  43366. default: true
  43367. },
  43368. {
  43369. name: "Maximum",
  43370. height: math.unit(1500000000000, "lightyears")
  43371. },
  43372. ]
  43373. ))
  43374. characterMakers.push(() => makeCharacter(
  43375. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43376. {
  43377. front: {
  43378. height: math.unit(5 + 11/12, "feet"),
  43379. weight: math.unit(155, "lb"),
  43380. name: "Front",
  43381. image: {
  43382. source: "./media/characters/cai/front.svg",
  43383. extra: 1823/1702,
  43384. bottom: 32/1855
  43385. }
  43386. },
  43387. back: {
  43388. height: math.unit(5 + 11/12, "feet"),
  43389. weight: math.unit(155, "lb"),
  43390. name: "Back",
  43391. image: {
  43392. source: "./media/characters/cai/back.svg",
  43393. extra: 1809/1708,
  43394. bottom: 31/1840
  43395. }
  43396. },
  43397. },
  43398. [
  43399. {
  43400. name: "Normal",
  43401. height: math.unit(5 + 11/12, "feet"),
  43402. default: true
  43403. },
  43404. {
  43405. name: "Big",
  43406. height: math.unit(15, "feet")
  43407. },
  43408. {
  43409. name: "Macro",
  43410. height: math.unit(200, "feet")
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(5 + 6/12, "feet"),
  43419. weight: math.unit(160, "lb"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43423. extra: 1227/1174,
  43424. bottom: 37/1264
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Macro",
  43431. height: math.unit(444, "meters"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(18 + 7/12, "feet"),
  43441. name: "Front",
  43442. image: {
  43443. source: "./media/characters/rex/front.svg",
  43444. extra: 1941/1807,
  43445. bottom: 66/2007
  43446. }
  43447. },
  43448. back: {
  43449. height: math.unit(18 + 7/12, "feet"),
  43450. name: "Back",
  43451. image: {
  43452. source: "./media/characters/rex/back.svg",
  43453. extra: 1937/1822,
  43454. bottom: 42/1979
  43455. }
  43456. },
  43457. boot: {
  43458. height: math.unit(3.45, "feet"),
  43459. name: "Boot",
  43460. image: {
  43461. source: "./media/characters/rex/boot.svg"
  43462. }
  43463. },
  43464. paw: {
  43465. height: math.unit(4.17, "feet"),
  43466. name: "Paw",
  43467. image: {
  43468. source: "./media/characters/rex/paw.svg"
  43469. }
  43470. },
  43471. head: {
  43472. height: math.unit(6.728, "feet"),
  43473. name: "Head",
  43474. image: {
  43475. source: "./media/characters/rex/head.svg"
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Nano",
  43482. height: math.unit(18 + 7/12, "feet")
  43483. },
  43484. {
  43485. name: "Micro",
  43486. height: math.unit(1.5, "megameters")
  43487. },
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(440, "megameters"),
  43491. default: true
  43492. },
  43493. {
  43494. name: "Macro",
  43495. height: math.unit(2.5, "gigameters")
  43496. },
  43497. {
  43498. name: "Gigamacro",
  43499. height: math.unit(2, "galaxies")
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43505. {
  43506. side: {
  43507. height: math.unit(32, "feet"),
  43508. weight: math.unit(250000, "lb"),
  43509. name: "Side",
  43510. image: {
  43511. source: "./media/characters/silverwing/side.svg",
  43512. extra: 1100/1019,
  43513. bottom: 204/1304
  43514. }
  43515. },
  43516. },
  43517. [
  43518. {
  43519. name: "Normal",
  43520. height: math.unit(32, "feet"),
  43521. default: true
  43522. },
  43523. ]
  43524. ))
  43525. characterMakers.push(() => makeCharacter(
  43526. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43527. {
  43528. front: {
  43529. height: math.unit(6 + 6/12, "feet"),
  43530. weight: math.unit(350, "lb"),
  43531. name: "Front",
  43532. image: {
  43533. source: "./media/characters/tristan-hawthorne/front.svg",
  43534. extra: 1159/1124,
  43535. bottom: 37/1196
  43536. },
  43537. form: "labrador",
  43538. default: true
  43539. },
  43540. skunkFront: {
  43541. height: math.unit(4 + 6/12, "feet"),
  43542. weight: math.unit(120, "lb"),
  43543. name: "Front",
  43544. image: {
  43545. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43546. extra: 1609/1551,
  43547. bottom: 169/1778
  43548. },
  43549. form: "skunk",
  43550. default: true
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(6 + 6/12, "feet"),
  43557. form: "labrador",
  43558. default: true
  43559. },
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(4 + 6/12, "feet"),
  43563. form: "skunk",
  43564. default: true
  43565. },
  43566. ],
  43567. {
  43568. "labrador": {
  43569. name: "Labrador",
  43570. default: true
  43571. },
  43572. "skunk": {
  43573. name: "Skunk"
  43574. }
  43575. }
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43579. {
  43580. front: {
  43581. height: math.unit(5 + 11/12, "feet"),
  43582. weight: math.unit(190, "lb"),
  43583. name: "Front",
  43584. image: {
  43585. source: "./media/characters/mizu/front.svg",
  43586. extra: 1988/1788,
  43587. bottom: 14/2002
  43588. }
  43589. },
  43590. },
  43591. [
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(5 + 11/12, "feet"),
  43595. default: true
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(1.7, "feet"),
  43604. weight: math.unit(50, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/dechroma/front.svg",
  43608. extra: 1095/859,
  43609. bottom: 64/1159
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Normal",
  43616. height: math.unit(1.7, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43623. {
  43624. side: {
  43625. height: math.unit(30, "feet"),
  43626. name: "Side",
  43627. image: {
  43628. source: "./media/characters/veluren-thanazel/side.svg",
  43629. extra: 1611/633,
  43630. bottom: 118/1729
  43631. }
  43632. },
  43633. front: {
  43634. height: math.unit(30, "feet"),
  43635. name: "Front",
  43636. image: {
  43637. source: "./media/characters/veluren-thanazel/front.svg",
  43638. extra: 1486/636,
  43639. bottom: 238/1724
  43640. }
  43641. },
  43642. head: {
  43643. height: math.unit(21.4, "feet"),
  43644. name: "Head",
  43645. image: {
  43646. source: "./media/characters/veluren-thanazel/head.svg"
  43647. }
  43648. },
  43649. genitals: {
  43650. height: math.unit(19.4, "feet"),
  43651. name: "Genitals",
  43652. image: {
  43653. source: "./media/characters/veluren-thanazel/genitals.svg"
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Social",
  43660. height: math.unit(6, "feet")
  43661. },
  43662. {
  43663. name: "Play",
  43664. height: math.unit(12, "feet")
  43665. },
  43666. {
  43667. name: "True",
  43668. height: math.unit(30, "feet"),
  43669. default: true
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43675. {
  43676. front: {
  43677. height: math.unit(7 + 6/12, "feet"),
  43678. weight: math.unit(500, "kg"),
  43679. name: "Front",
  43680. image: {
  43681. source: "./media/characters/arcturas/front.svg",
  43682. extra: 1700/1500,
  43683. bottom: 145/1845
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(7 + 6/12, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43697. {
  43698. side: {
  43699. height: math.unit(6, "feet"),
  43700. weight: math.unit(2, "tons"),
  43701. name: "Side",
  43702. image: {
  43703. source: "./media/characters/vitaen/side.svg",
  43704. extra: 1157/617,
  43705. bottom: 122/1279
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(6, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(19, "feet"),
  43722. name: "Front",
  43723. image: {
  43724. source: "./media/characters/fia-dreamweaver/front.svg",
  43725. extra: 1630/1504,
  43726. bottom: 25/1655
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(19, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43740. {
  43741. front: {
  43742. height: math.unit(5 + 4/12, "feet"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/artan/front.svg",
  43746. extra: 1618/1535,
  43747. bottom: 46/1664
  43748. }
  43749. },
  43750. back: {
  43751. height: math.unit(5 + 4/12, "feet"),
  43752. name: "Back",
  43753. image: {
  43754. source: "./media/characters/artan/back.svg",
  43755. extra: 1618/1543,
  43756. bottom: 31/1649
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Normal",
  43763. height: math.unit(5 + 4/12, "feet"),
  43764. default: true
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43770. {
  43771. side: {
  43772. height: math.unit(182, "cm"),
  43773. weight: math.unit(1000, "lb"),
  43774. name: "Side",
  43775. image: {
  43776. source: "./media/characters/silver-dragon/side.svg",
  43777. extra: 710/287,
  43778. bottom: 88/798
  43779. }
  43780. },
  43781. },
  43782. [
  43783. {
  43784. name: "Normal",
  43785. height: math.unit(182, "cm"),
  43786. default: true
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43792. {
  43793. side: {
  43794. height: math.unit(6 + 6/12, "feet"),
  43795. weight: math.unit(1.5, "tons"),
  43796. name: "Side",
  43797. image: {
  43798. source: "./media/characters/zephyr/side.svg",
  43799. extra: 1433/586,
  43800. bottom: 109/1542
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(6 + 6/12, "feet"),
  43808. default: true
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43814. {
  43815. side: {
  43816. height: math.unit(1, "feet"),
  43817. name: "Side",
  43818. image: {
  43819. source: "./media/characters/vixye/side.svg",
  43820. extra: 632/541,
  43821. bottom: 0/632
  43822. }
  43823. },
  43824. },
  43825. [
  43826. {
  43827. name: "Normal",
  43828. height: math.unit(1, "feet"),
  43829. default: true
  43830. },
  43831. {
  43832. name: "True",
  43833. height: math.unit(1e15, "multiverses")
  43834. },
  43835. ]
  43836. ))
  43837. characterMakers.push(() => makeCharacter(
  43838. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43839. {
  43840. front: {
  43841. height: math.unit(8 + 2/12, "feet"),
  43842. weight: math.unit(650, "lb"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43846. extra: 1174/1137,
  43847. bottom: 82/1256
  43848. }
  43849. },
  43850. back: {
  43851. height: math.unit(8 + 2/12, "feet"),
  43852. weight: math.unit(650, "lb"),
  43853. name: "Back",
  43854. image: {
  43855. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43856. extra: 1204/1157,
  43857. bottom: 46/1250
  43858. }
  43859. },
  43860. },
  43861. [
  43862. {
  43863. name: "Wildform",
  43864. height: math.unit(8 + 2/12, "feet"),
  43865. default: true
  43866. },
  43867. ]
  43868. ))
  43869. characterMakers.push(() => makeCharacter(
  43870. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43871. {
  43872. front: {
  43873. height: math.unit(18, "feet"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/cyphin/front.svg",
  43877. extra: 970/886,
  43878. bottom: 42/1012
  43879. }
  43880. },
  43881. back: {
  43882. height: math.unit(18, "feet"),
  43883. name: "Back",
  43884. image: {
  43885. source: "./media/characters/cyphin/back.svg",
  43886. extra: 1009/894,
  43887. bottom: 24/1033
  43888. }
  43889. },
  43890. head: {
  43891. height: math.unit(5.05, "feet"),
  43892. name: "Head",
  43893. image: {
  43894. source: "./media/characters/cyphin/head.svg"
  43895. }
  43896. },
  43897. tailbud: {
  43898. height: math.unit(5, "feet"),
  43899. name: "Tailbud",
  43900. image: {
  43901. source: "./media/characters/cyphin/tailbud.svg"
  43902. }
  43903. },
  43904. },
  43905. [
  43906. ]
  43907. ))
  43908. characterMakers.push(() => makeCharacter(
  43909. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43910. {
  43911. side: {
  43912. height: math.unit(10, "feet"),
  43913. weight: math.unit(6, "tons"),
  43914. name: "Side",
  43915. image: {
  43916. source: "./media/characters/raijin/side.svg",
  43917. extra: 1529/613,
  43918. bottom: 337/1866
  43919. }
  43920. },
  43921. },
  43922. [
  43923. {
  43924. name: "Normal",
  43925. height: math.unit(10, "feet"),
  43926. default: true
  43927. },
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43932. {
  43933. side: {
  43934. height: math.unit(9, "feet"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/nilghais/side.svg",
  43938. extra: 1047/744,
  43939. bottom: 91/1138
  43940. }
  43941. },
  43942. head: {
  43943. height: math.unit(3.14, "feet"),
  43944. name: "Head",
  43945. image: {
  43946. source: "./media/characters/nilghais/head.svg"
  43947. }
  43948. },
  43949. mouth: {
  43950. height: math.unit(4.6, "feet"),
  43951. name: "Mouth",
  43952. image: {
  43953. source: "./media/characters/nilghais/mouth.svg"
  43954. }
  43955. },
  43956. wings: {
  43957. height: math.unit(24, "feet"),
  43958. name: "Wings",
  43959. image: {
  43960. source: "./media/characters/nilghais/wings.svg"
  43961. }
  43962. },
  43963. ass: {
  43964. height: math.unit(6.12, "feet"),
  43965. name: "Ass",
  43966. image: {
  43967. source: "./media/characters/nilghais/ass.svg"
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(9, "feet"),
  43975. default: true
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43981. {
  43982. regular: {
  43983. height: math.unit(16 + 2/12, "feet"),
  43984. weight: math.unit(2300, "lb"),
  43985. name: "Regular",
  43986. image: {
  43987. source: "./media/characters/zolgar/regular.svg",
  43988. extra: 1246/1004,
  43989. bottom: 124/1370
  43990. }
  43991. },
  43992. boxers: {
  43993. height: math.unit(16 + 2/12, "feet"),
  43994. weight: math.unit(2300, "lb"),
  43995. name: "Boxers",
  43996. image: {
  43997. source: "./media/characters/zolgar/boxers.svg",
  43998. extra: 1246/1004,
  43999. bottom: 124/1370
  44000. }
  44001. },
  44002. armored: {
  44003. height: math.unit(16 + 2/12, "feet"),
  44004. weight: math.unit(2300, "lb"),
  44005. name: "Armored",
  44006. image: {
  44007. source: "./media/characters/zolgar/armored.svg",
  44008. extra: 1246/1004,
  44009. bottom: 124/1370
  44010. }
  44011. },
  44012. goth: {
  44013. height: math.unit(16 + 2/12, "feet"),
  44014. weight: math.unit(2300, "lb"),
  44015. name: "Goth",
  44016. image: {
  44017. source: "./media/characters/zolgar/goth.svg",
  44018. extra: 1246/1004,
  44019. bottom: 124/1370
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Shrunken Down",
  44026. height: math.unit(9 + 2/12, "feet")
  44027. },
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(16 + 2/12, "feet"),
  44031. default: true
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(6, "feet"),
  44040. weight: math.unit(168, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/luca/front.svg",
  44044. extra: 841/667,
  44045. bottom: 102/943
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44059. {
  44060. side: {
  44061. height: math.unit(7 + 3/12, "feet"),
  44062. weight: math.unit(312, "lb"),
  44063. name: "Side",
  44064. image: {
  44065. source: "./media/characters/zezo/side.svg",
  44066. extra: 1192/1067,
  44067. bottom: 63/1255
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Normal",
  44074. height: math.unit(7 + 3/12, "feet"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(5 + 5/12, "feet"),
  44084. weight: math.unit(170, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/mayso/front.svg",
  44088. extra: 1215/1108,
  44089. bottom: 16/1231
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(5 + 5/12, "feet"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(4 + 3/12, "feet"),
  44106. weight: math.unit(80, "lb"),
  44107. name: "Front",
  44108. image: {
  44109. source: "./media/characters/hess/front.svg",
  44110. extra: 1200/1123,
  44111. bottom: 16/1216
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(4 + 3/12, "feet"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44125. {
  44126. front: {
  44127. height: math.unit(1.9, "meters"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/ashgar/front.svg",
  44131. extra: 1177/1146,
  44132. bottom: 99/1276
  44133. }
  44134. },
  44135. back: {
  44136. height: math.unit(1.9, "meters"),
  44137. name: "Back",
  44138. image: {
  44139. source: "./media/characters/ashgar/back.svg",
  44140. extra: 1201/1183,
  44141. bottom: 53/1254
  44142. }
  44143. },
  44144. feral: {
  44145. height: math.unit(1.4, "meters"),
  44146. name: "Feral",
  44147. image: {
  44148. source: "./media/characters/ashgar/feral.svg",
  44149. extra: 370/345,
  44150. bottom: 45/415
  44151. }
  44152. },
  44153. },
  44154. [
  44155. {
  44156. name: "Normal",
  44157. height: math.unit(1.9, "meters"),
  44158. default: true
  44159. },
  44160. ]
  44161. ))
  44162. characterMakers.push(() => makeCharacter(
  44163. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44164. {
  44165. regular: {
  44166. height: math.unit(6, "feet"),
  44167. weight: math.unit(220, "lb"),
  44168. name: "Regular",
  44169. image: {
  44170. source: "./media/characters/phillip/regular.svg",
  44171. extra: 1373/1277,
  44172. bottom: 75/1448
  44173. }
  44174. },
  44175. dressed: {
  44176. height: math.unit(6, "feet"),
  44177. weight: math.unit(220, "lb"),
  44178. name: "Dressed",
  44179. image: {
  44180. source: "./media/characters/phillip/dressed.svg",
  44181. extra: 1373/1277,
  44182. bottom: 75/1448
  44183. }
  44184. },
  44185. paw: {
  44186. height: math.unit(1.44, "feet"),
  44187. name: "Paw",
  44188. image: {
  44189. source: "./media/characters/phillip/paw.svg"
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Normal",
  44196. height: math.unit(6, "feet"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44203. {
  44204. side: {
  44205. height: math.unit(42, "feet"),
  44206. name: "Side",
  44207. image: {
  44208. source: "./media/characters/uvula/side.svg",
  44209. extra: 683/586,
  44210. bottom: 60/743
  44211. }
  44212. },
  44213. front: {
  44214. height: math.unit(42, "feet"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/uvula/front.svg",
  44218. extra: 705/613,
  44219. bottom: 54/759
  44220. }
  44221. },
  44222. maw: {
  44223. height: math.unit(23.5, "feet"),
  44224. name: "Maw",
  44225. image: {
  44226. source: "./media/characters/uvula/maw.svg"
  44227. }
  44228. },
  44229. },
  44230. [
  44231. {
  44232. name: "Original Size",
  44233. height: math.unit(14, "inches")
  44234. },
  44235. {
  44236. name: "Human Size",
  44237. height: math.unit(6, "feet")
  44238. },
  44239. {
  44240. name: "Big",
  44241. height: math.unit(42, "feet"),
  44242. default: true
  44243. },
  44244. {
  44245. name: "Bigger",
  44246. height: math.unit(100, "feet")
  44247. },
  44248. ]
  44249. ))
  44250. characterMakers.push(() => makeCharacter(
  44251. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44252. {
  44253. front: {
  44254. height: math.unit(5 + 11/12, "feet"),
  44255. name: "Front",
  44256. image: {
  44257. source: "./media/characters/lannah/front.svg",
  44258. extra: 1208/1113,
  44259. bottom: 97/1305
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Normal",
  44266. height: math.unit(5 + 11/12, "feet"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44273. {
  44274. front: {
  44275. height: math.unit(6 + 3/12, "feet"),
  44276. weight: math.unit(3.5, "tons"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/emberflame/front.svg",
  44280. extra: 1198/672,
  44281. bottom: 82/1280
  44282. }
  44283. },
  44284. side: {
  44285. height: math.unit(6 + 3/12, "feet"),
  44286. weight: math.unit(3.5, "tons"),
  44287. name: "Side",
  44288. image: {
  44289. source: "./media/characters/emberflame/side.svg",
  44290. extra: 938/527,
  44291. bottom: 56/994
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(6 + 3/12, "feet"),
  44299. default: true
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44305. {
  44306. side: {
  44307. height: math.unit(17.5, "feet"),
  44308. weight: math.unit(35, "tons"),
  44309. name: "Side",
  44310. image: {
  44311. source: "./media/characters/sophie-ambrose/side.svg",
  44312. extra: 1573/1242,
  44313. bottom: 71/1644
  44314. }
  44315. },
  44316. maw: {
  44317. height: math.unit(7.4, "feet"),
  44318. name: "Maw",
  44319. image: {
  44320. source: "./media/characters/sophie-ambrose/maw.svg"
  44321. }
  44322. },
  44323. },
  44324. [
  44325. {
  44326. name: "Normal",
  44327. height: math.unit(17.5, "feet"),
  44328. default: true
  44329. },
  44330. ]
  44331. ))
  44332. characterMakers.push(() => makeCharacter(
  44333. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44334. {
  44335. front: {
  44336. height: math.unit(280, "feet"),
  44337. weight: math.unit(550, "tons"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/king-mugi/front.svg",
  44341. extra: 1102/947,
  44342. bottom: 104/1206
  44343. }
  44344. },
  44345. },
  44346. [
  44347. {
  44348. name: "King Mugi",
  44349. height: math.unit(280, "feet"),
  44350. default: true
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44356. {
  44357. front: {
  44358. height: math.unit(64, "meters"),
  44359. name: "Front",
  44360. image: {
  44361. source: "./media/characters/nova-fox/front.svg",
  44362. extra: 1310/1246,
  44363. bottom: 65/1375
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Macro",
  44370. height: math.unit(64, "meters"),
  44371. default: true
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44377. {
  44378. front: {
  44379. height: math.unit(6 + 3/12, "feet"),
  44380. weight: math.unit(170, "lb"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/sam-bat/front.svg",
  44384. extra: 1601/1411,
  44385. bottom: 125/1726
  44386. }
  44387. },
  44388. back: {
  44389. height: math.unit(6 + 3/12, "feet"),
  44390. weight: math.unit(170, "lb"),
  44391. name: "Back",
  44392. image: {
  44393. source: "./media/characters/sam-bat/back.svg",
  44394. extra: 1577/1405,
  44395. bottom: 58/1635
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Normal",
  44402. height: math.unit(6 + 3/12, "feet"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44409. {
  44410. front: {
  44411. height: math.unit(59, "feet"),
  44412. weight: math.unit(40000, "lb"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/inari/front.svg",
  44416. extra: 1884/1350,
  44417. bottom: 95/1979
  44418. }
  44419. },
  44420. },
  44421. [
  44422. {
  44423. name: "Gigantamax",
  44424. height: math.unit(59, "feet"),
  44425. default: true
  44426. },
  44427. ]
  44428. ))
  44429. characterMakers.push(() => makeCharacter(
  44430. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44431. {
  44432. front: {
  44433. height: math.unit(5 + 8/12, "feet"),
  44434. name: "Front",
  44435. image: {
  44436. source: "./media/characters/elizabeth/front.svg",
  44437. extra: 1395/1298,
  44438. bottom: 54/1449
  44439. }
  44440. },
  44441. mouth: {
  44442. height: math.unit(1.97, "feet"),
  44443. name: "Mouth",
  44444. image: {
  44445. source: "./media/characters/elizabeth/mouth.svg"
  44446. }
  44447. },
  44448. foot: {
  44449. height: math.unit(1.17, "feet"),
  44450. name: "Foot",
  44451. image: {
  44452. source: "./media/characters/elizabeth/foot.svg"
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(5 + 8/12, "feet"),
  44460. default: true
  44461. },
  44462. {
  44463. name: "Minimacro",
  44464. height: math.unit(18, "feet")
  44465. },
  44466. {
  44467. name: "Macro",
  44468. height: math.unit(180, "feet")
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44474. {
  44475. front: {
  44476. height: math.unit(5 + 2/12, "feet"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/october-gossamer/front.svg",
  44480. extra: 505/454,
  44481. bottom: 7/512
  44482. }
  44483. },
  44484. back: {
  44485. height: math.unit(5 + 2/12, "feet"),
  44486. name: "Back",
  44487. image: {
  44488. source: "./media/characters/october-gossamer/back.svg",
  44489. extra: 501/454,
  44490. bottom: 11/512
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(5 + 2/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(5, "feet"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/epiglottis/front.svg",
  44510. extra: 923/849,
  44511. bottom: 17/940
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Original Size",
  44518. height: math.unit(10, "inches")
  44519. },
  44520. {
  44521. name: "Human Size",
  44522. height: math.unit(5, "feet"),
  44523. default: true
  44524. },
  44525. {
  44526. name: "Big",
  44527. height: math.unit(25, "feet")
  44528. },
  44529. {
  44530. name: "Bigger",
  44531. height: math.unit(50, "feet")
  44532. },
  44533. {
  44534. name: "oh lawd",
  44535. height: math.unit(75, "feet")
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(2 + 4/12, "feet"),
  44544. weight: math.unit(60, "lb"),
  44545. name: "Front",
  44546. image: {
  44547. source: "./media/characters/lerm/front.svg",
  44548. extra: 796/790,
  44549. bottom: 79/875
  44550. }
  44551. },
  44552. },
  44553. [
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(2 + 4/12, "feet"),
  44557. default: true
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44563. {
  44564. front: {
  44565. height: math.unit(5.5, "feet"),
  44566. weight: math.unit(130, "lb"),
  44567. name: "Front",
  44568. image: {
  44569. source: "./media/characters/xena-nebadon/front.svg",
  44570. extra: 1828/1730,
  44571. bottom: 79/1907
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Tiny Puppy",
  44578. height: math.unit(3, "inches")
  44579. },
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(5.5, "feet"),
  44583. default: true
  44584. },
  44585. {
  44586. name: "Lotta Lady",
  44587. height: math.unit(12, "feet")
  44588. },
  44589. {
  44590. name: "Pretty Big",
  44591. height: math.unit(100, "feet")
  44592. },
  44593. {
  44594. name: "Big",
  44595. height: math.unit(500, "feet")
  44596. },
  44597. {
  44598. name: "Skyscraper Toys",
  44599. height: math.unit(2500, "feet")
  44600. },
  44601. {
  44602. name: "Plane Catcher",
  44603. height: math.unit(8, "miles")
  44604. },
  44605. {
  44606. name: "Planet Toys",
  44607. height: math.unit(15, "earths")
  44608. },
  44609. {
  44610. name: "Stardust",
  44611. height: math.unit(0.25, "galaxies")
  44612. },
  44613. {
  44614. name: "Snacks",
  44615. height: math.unit(70, "universes")
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(1.6, "meters"),
  44624. weight: math.unit(60, "kg"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/bounty/front.svg",
  44628. extra: 1426/1308,
  44629. bottom: 15/1441
  44630. }
  44631. },
  44632. back: {
  44633. height: math.unit(1.6, "meters"),
  44634. weight: math.unit(60, "kg"),
  44635. name: "Back",
  44636. image: {
  44637. source: "./media/characters/bounty/back.svg",
  44638. extra: 1417/1307,
  44639. bottom: 8/1425
  44640. }
  44641. },
  44642. },
  44643. [
  44644. {
  44645. name: "Normal",
  44646. height: math.unit(1.6, "meters"),
  44647. default: true
  44648. },
  44649. {
  44650. name: "Macro",
  44651. height: math.unit(300, "meters")
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44657. {
  44658. front: {
  44659. height: math.unit(2 + 8/12, "feet"),
  44660. weight: math.unit(15, "lb"),
  44661. name: "Front",
  44662. image: {
  44663. source: "./media/characters/mochi/front.svg",
  44664. extra: 1022/852,
  44665. bottom: 435/1457
  44666. }
  44667. },
  44668. back: {
  44669. height: math.unit(2 + 8/12, "feet"),
  44670. weight: math.unit(15, "lb"),
  44671. name: "Back",
  44672. image: {
  44673. source: "./media/characters/mochi/back.svg",
  44674. extra: 1335/1119,
  44675. bottom: 39/1374
  44676. }
  44677. },
  44678. bird: {
  44679. height: math.unit(2 + 8/12, "feet"),
  44680. weight: math.unit(15, "lb"),
  44681. name: "Bird",
  44682. image: {
  44683. source: "./media/characters/mochi/bird.svg",
  44684. extra: 1251/1113,
  44685. bottom: 178/1429
  44686. }
  44687. },
  44688. kaiju: {
  44689. height: math.unit(154, "feet"),
  44690. weight: math.unit(1e7, "lb"),
  44691. name: "Kaiju",
  44692. image: {
  44693. source: "./media/characters/mochi/kaiju.svg",
  44694. extra: 460/324,
  44695. bottom: 40/500
  44696. }
  44697. },
  44698. head: {
  44699. height: math.unit(1.21, "feet"),
  44700. name: "Head",
  44701. image: {
  44702. source: "./media/characters/mochi/head.svg"
  44703. }
  44704. },
  44705. alternateTail: {
  44706. height: math.unit(2 + 8/12, "feet"),
  44707. weight: math.unit(45, "lb"),
  44708. name: "Alternate Tail",
  44709. image: {
  44710. source: "./media/characters/mochi/alternate-tail.svg",
  44711. extra: 139/76,
  44712. bottom: 45/184
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "Micro",
  44719. height: math.unit(2, "inches")
  44720. },
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(2 + 8/12, "feet"),
  44724. default: true
  44725. },
  44726. {
  44727. name: "Macro",
  44728. height: math.unit(106, "feet")
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44734. {
  44735. front: {
  44736. height: math.unit(5.67, "feet"),
  44737. weight: math.unit(135, "lb"),
  44738. name: "Front",
  44739. image: {
  44740. source: "./media/characters/sarel/front.svg",
  44741. extra: 865/788,
  44742. bottom: 97/962
  44743. }
  44744. },
  44745. back: {
  44746. height: math.unit(5.67, "feet"),
  44747. weight: math.unit(135, "lb"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/sarel/back.svg",
  44751. extra: 857/777,
  44752. bottom: 32/889
  44753. }
  44754. },
  44755. chozoan: {
  44756. height: math.unit(5.67, "feet"),
  44757. weight: math.unit(135, "lb"),
  44758. name: "Chozoan",
  44759. image: {
  44760. source: "./media/characters/sarel/chozoan.svg",
  44761. extra: 865/788,
  44762. bottom: 97/962
  44763. }
  44764. },
  44765. current: {
  44766. height: math.unit(5.67, "feet"),
  44767. weight: math.unit(135, "lb"),
  44768. name: "Current",
  44769. image: {
  44770. source: "./media/characters/sarel/current.svg",
  44771. extra: 865/788,
  44772. bottom: 97/962
  44773. }
  44774. },
  44775. head: {
  44776. height: math.unit(1.77, "feet"),
  44777. name: "Head",
  44778. image: {
  44779. source: "./media/characters/sarel/head.svg"
  44780. }
  44781. },
  44782. claws: {
  44783. height: math.unit(1.8, "feet"),
  44784. name: "Claws",
  44785. image: {
  44786. source: "./media/characters/sarel/claws.svg"
  44787. }
  44788. },
  44789. clawsAlt: {
  44790. height: math.unit(1.8, "feet"),
  44791. name: "Claws-alt",
  44792. image: {
  44793. source: "./media/characters/sarel/claws-alt.svg"
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(5.67, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(5500, "feet"),
  44810. name: "Front",
  44811. image: {
  44812. source: "./media/characters/alyonia/front.svg",
  44813. extra: 1200/1135,
  44814. bottom: 29/1229
  44815. }
  44816. },
  44817. back: {
  44818. height: math.unit(5500, "feet"),
  44819. name: "Back",
  44820. image: {
  44821. source: "./media/characters/alyonia/back.svg",
  44822. extra: 1205/1138,
  44823. bottom: 10/1215
  44824. }
  44825. },
  44826. },
  44827. [
  44828. {
  44829. name: "Small",
  44830. height: math.unit(10, "feet")
  44831. },
  44832. {
  44833. name: "Macro",
  44834. height: math.unit(500, "feet")
  44835. },
  44836. {
  44837. name: "Mega Macro",
  44838. height: math.unit(5500, "feet"),
  44839. default: true
  44840. },
  44841. {
  44842. name: "Mega Macro+",
  44843. height: math.unit(500000, "feet")
  44844. },
  44845. {
  44846. name: "Giga Macro",
  44847. height: math.unit(3000, "miles")
  44848. },
  44849. {
  44850. name: "Tera Macro",
  44851. height: math.unit(2.8e6, "miles")
  44852. },
  44853. {
  44854. name: "Galactic",
  44855. height: math.unit(120000, "lightyears")
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44861. {
  44862. werewolf: {
  44863. height: math.unit(8, "feet"),
  44864. weight: math.unit(425, "lb"),
  44865. name: "Werewolf",
  44866. image: {
  44867. source: "./media/characters/autumn/werewolf.svg",
  44868. extra: 2154/2031,
  44869. bottom: 160/2314
  44870. }
  44871. },
  44872. human: {
  44873. height: math.unit(5 + 8/12, "feet"),
  44874. weight: math.unit(150, "lb"),
  44875. name: "Human",
  44876. image: {
  44877. source: "./media/characters/autumn/human.svg",
  44878. extra: 1200/1149,
  44879. bottom: 30/1230
  44880. }
  44881. },
  44882. },
  44883. [
  44884. {
  44885. name: "Normal",
  44886. height: math.unit(8, "feet"),
  44887. default: true
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44893. {
  44894. front: {
  44895. height: math.unit(8 + 5/12, "feet"),
  44896. weight: math.unit(825, "lb"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/cobalt-charizard/front.svg",
  44900. extra: 1268/1155,
  44901. bottom: 122/1390
  44902. }
  44903. },
  44904. side: {
  44905. height: math.unit(8 + 5/12, "feet"),
  44906. weight: math.unit(825, "lb"),
  44907. name: "Side",
  44908. image: {
  44909. source: "./media/characters/cobalt-charizard/side.svg",
  44910. extra: 1348/1257,
  44911. bottom: 58/1406
  44912. }
  44913. },
  44914. gMax: {
  44915. height: math.unit(134 + 11/12, "feet"),
  44916. name: "G-Max",
  44917. image: {
  44918. source: "./media/characters/cobalt-charizard/g-max.svg",
  44919. extra: 1835/1541,
  44920. bottom: 151/1986
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Normal",
  44927. height: math.unit(8 + 5/12, "feet"),
  44928. default: true
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(6 + 3/12, "feet"),
  44937. weight: math.unit(210, "lb"),
  44938. name: "Front",
  44939. image: {
  44940. source: "./media/characters/stella/front.svg",
  44941. extra: 3549/3335,
  44942. bottom: 51/3600
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Normal",
  44949. height: math.unit(6 + 3/12, "feet"),
  44950. default: true
  44951. },
  44952. ]
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44956. {
  44957. front: {
  44958. height: math.unit(5, "feet"),
  44959. weight: math.unit(90, "lb"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/riley-bishop/front.svg",
  44963. extra: 1450/1428,
  44964. bottom: 152/1602
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(5, "feet"),
  44972. default: true
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44978. {
  44979. side: {
  44980. height: math.unit(8 + 2/12, "feet"),
  44981. weight: math.unit(500, "kg"),
  44982. name: "Side",
  44983. image: {
  44984. source: "./media/characters/theo-arcanine/side.svg",
  44985. extra: 1342/1074,
  44986. bottom: 111/1453
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(8 + 2/12, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45000. {
  45001. front: {
  45002. height: math.unit(4, "feet"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/kali/front.svg",
  45006. extra: 1921/1357,
  45007. bottom: 70/1991
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(4, "feet"),
  45015. default: true
  45016. },
  45017. {
  45018. name: "Macro",
  45019. height: math.unit(32, "meters")
  45020. },
  45021. {
  45022. name: "Macro+",
  45023. height: math.unit(150, "meters")
  45024. },
  45025. {
  45026. name: "Megamacro",
  45027. height: math.unit(7500, "meters")
  45028. },
  45029. {
  45030. name: "Megamacro+",
  45031. height: math.unit(80, "kilometers")
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45037. {
  45038. side: {
  45039. height: math.unit(5 + 11/12, "feet"),
  45040. weight: math.unit(236, "lb"),
  45041. name: "Side",
  45042. image: {
  45043. source: "./media/characters/gapp/side.svg",
  45044. extra: 775/340,
  45045. bottom: 58/833
  45046. }
  45047. },
  45048. mouth: {
  45049. height: math.unit(2.98, "feet"),
  45050. name: "Mouth",
  45051. image: {
  45052. source: "./media/characters/gapp/mouth.svg"
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(5 + 1/12, "feet"),
  45060. default: true
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45066. {
  45067. front: {
  45068. height: math.unit(6, "feet"),
  45069. name: "Front",
  45070. image: {
  45071. source: "./media/characters/persephone/front.svg",
  45072. extra: 1895/1717,
  45073. bottom: 96/1991
  45074. }
  45075. },
  45076. back: {
  45077. height: math.unit(6, "feet"),
  45078. name: "Back",
  45079. image: {
  45080. source: "./media/characters/persephone/back.svg",
  45081. extra: 1868/1679,
  45082. bottom: 26/1894
  45083. }
  45084. },
  45085. casual: {
  45086. height: math.unit(6, "feet"),
  45087. name: "Casual",
  45088. image: {
  45089. source: "./media/characters/persephone/casual.svg",
  45090. extra: 1713/1541,
  45091. bottom: 76/1789
  45092. }
  45093. },
  45094. },
  45095. [
  45096. {
  45097. name: "Human Size",
  45098. height: math.unit(6, "feet")
  45099. },
  45100. {
  45101. name: "Big Steppy",
  45102. height: math.unit(600, "meters"),
  45103. default: true
  45104. },
  45105. {
  45106. name: "Galaxy Brain",
  45107. height: math.unit(1, "zettameter")
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45113. {
  45114. front: {
  45115. height: math.unit(1.85, "meters"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/riley-foxthing/front.svg",
  45119. extra: 1495/1354,
  45120. bottom: 122/1617
  45121. }
  45122. },
  45123. frontAlt: {
  45124. height: math.unit(1.85, "meters"),
  45125. name: "Front (Alt)",
  45126. image: {
  45127. source: "./media/characters/riley-foxthing/front-alt.svg",
  45128. extra: 1572/1389,
  45129. bottom: 116/1688
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Normal Sized",
  45136. height: math.unit(1.85, "meters"),
  45137. default: true
  45138. },
  45139. {
  45140. name: "Quite Sizable",
  45141. height: math.unit(5, "meters")
  45142. },
  45143. {
  45144. name: "Rather Large",
  45145. height: math.unit(20, "meters")
  45146. },
  45147. {
  45148. name: "Macro",
  45149. height: math.unit(450, "meters")
  45150. },
  45151. {
  45152. name: "Giga",
  45153. height: math.unit(5, "km")
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(6, "feet"),
  45162. weight: math.unit(200, "lb"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/blizzard/front.svg",
  45166. extra: 1136/990,
  45167. bottom: 136/1272
  45168. }
  45169. },
  45170. back: {
  45171. height: math.unit(6, "feet"),
  45172. weight: math.unit(200, "lb"),
  45173. name: "Back",
  45174. image: {
  45175. source: "./media/characters/blizzard/back.svg",
  45176. extra: 1175/1034,
  45177. bottom: 97/1272
  45178. }
  45179. },
  45180. sitting: {
  45181. height: math.unit(3.725, "feet"),
  45182. weight: math.unit(200, "lb"),
  45183. name: "Sitting",
  45184. image: {
  45185. source: "./media/characters/blizzard/sitting.svg",
  45186. extra: 581/485,
  45187. bottom: 90/671
  45188. }
  45189. },
  45190. frontWizard: {
  45191. height: math.unit(7.9, "feet"),
  45192. weight: math.unit(200, "lb"),
  45193. name: "Front (Wizard)",
  45194. image: {
  45195. source: "./media/characters/blizzard/front-wizard.svg"
  45196. }
  45197. },
  45198. backWizard: {
  45199. height: math.unit(7.9, "feet"),
  45200. weight: math.unit(200, "lb"),
  45201. name: "Back (Wizard)",
  45202. image: {
  45203. source: "./media/characters/blizzard/back-wizard.svg"
  45204. }
  45205. },
  45206. frontNsfw: {
  45207. height: math.unit(6, "feet"),
  45208. weight: math.unit(200, "lb"),
  45209. name: "Front (NSFW)",
  45210. image: {
  45211. source: "./media/characters/blizzard/front-nsfw.svg",
  45212. extra: 1136/990,
  45213. bottom: 136/1272
  45214. }
  45215. },
  45216. backNsfw: {
  45217. height: math.unit(6, "feet"),
  45218. weight: math.unit(200, "lb"),
  45219. name: "Back (NSFW)",
  45220. image: {
  45221. source: "./media/characters/blizzard/back-nsfw.svg",
  45222. extra: 1175/1034,
  45223. bottom: 97/1272
  45224. }
  45225. },
  45226. sittingNsfw: {
  45227. height: math.unit(3.725, "feet"),
  45228. weight: math.unit(200, "lb"),
  45229. name: "Sitting (NSFW)",
  45230. image: {
  45231. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45232. extra: 581/485,
  45233. bottom: 90/671
  45234. }
  45235. },
  45236. wizardFrontNsfw: {
  45237. height: math.unit(7.9, "feet"),
  45238. weight: math.unit(200, "lb"),
  45239. name: "Wizard (Front, NSFW)",
  45240. image: {
  45241. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Normal",
  45248. height: math.unit(6, "feet"),
  45249. default: true
  45250. },
  45251. ]
  45252. ))
  45253. characterMakers.push(() => makeCharacter(
  45254. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45255. {
  45256. front: {
  45257. height: math.unit(5 + 2/12, "feet"),
  45258. name: "Front",
  45259. image: {
  45260. source: "./media/characters/lumi/front.svg",
  45261. extra: 1328/1268,
  45262. bottom: 103/1431
  45263. }
  45264. },
  45265. back: {
  45266. height: math.unit(5 + 2/12, "feet"),
  45267. name: "Back",
  45268. image: {
  45269. source: "./media/characters/lumi/back.svg",
  45270. extra: 1381/1327,
  45271. bottom: 43/1424
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Normal",
  45278. height: math.unit(5 + 2/12, "feet"),
  45279. default: true
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45285. {
  45286. front: {
  45287. height: math.unit(5 + 9/12, "feet"),
  45288. name: "Front",
  45289. image: {
  45290. source: "./media/characters/aliya-cotton/front.svg",
  45291. extra: 577/564,
  45292. bottom: 29/606
  45293. }
  45294. },
  45295. },
  45296. [
  45297. {
  45298. name: "Normal",
  45299. height: math.unit(5 + 9/12, "feet"),
  45300. default: true
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(2.7, "meters"),
  45309. weight: math.unit(25000, "lb"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/noah-luxray/front.svg",
  45313. extra: 1644/825,
  45314. bottom: 339/1983
  45315. }
  45316. },
  45317. side: {
  45318. height: math.unit(2.97, "meters"),
  45319. weight: math.unit(25000, "lb"),
  45320. name: "Side",
  45321. image: {
  45322. source: "./media/characters/noah-luxray/side.svg",
  45323. extra: 1319/650,
  45324. bottom: 163/1482
  45325. }
  45326. },
  45327. dick: {
  45328. height: math.unit(7.4, "feet"),
  45329. weight: math.unit(2500, "lb"),
  45330. name: "Dick",
  45331. image: {
  45332. source: "./media/characters/noah-luxray/dick.svg"
  45333. }
  45334. },
  45335. dickAlt: {
  45336. height: math.unit(10.83, "feet"),
  45337. weight: math.unit(2500, "lb"),
  45338. name: "Dick-alt",
  45339. image: {
  45340. source: "./media/characters/noah-luxray/dick-alt.svg"
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "BIG",
  45347. height: math.unit(2.7, "meters"),
  45348. default: true
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45354. {
  45355. standing: {
  45356. height: math.unit(183, "cm"),
  45357. weight: math.unit(68, "kg"),
  45358. name: "Standing",
  45359. image: {
  45360. source: "./media/characters/arion/standing.svg",
  45361. extra: 1869/1807,
  45362. bottom: 93/1962
  45363. }
  45364. },
  45365. reclining: {
  45366. height: math.unit(70.5, "cm"),
  45367. weight: math.unit(68, "lb"),
  45368. name: "Reclining",
  45369. image: {
  45370. source: "./media/characters/arion/reclining.svg",
  45371. extra: 937/870,
  45372. bottom: 63/1000
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Colossus Size, Low",
  45379. height: math.unit(33, "meters"),
  45380. default: true
  45381. },
  45382. {
  45383. name: "Colossus Size, Mid",
  45384. height: math.unit(52, "meters")
  45385. },
  45386. {
  45387. name: "Colossus Size, High",
  45388. height: math.unit(60, "meters")
  45389. },
  45390. {
  45391. name: "Titan Size, Low",
  45392. height: math.unit(91, "meters"),
  45393. },
  45394. {
  45395. name: "Titan Size, Mid",
  45396. height: math.unit(122, "meters")
  45397. },
  45398. {
  45399. name: "Titan Size, High",
  45400. height: math.unit(162, "meters")
  45401. },
  45402. ]
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45406. {
  45407. front: {
  45408. height: math.unit(53, "meters"),
  45409. name: "Front",
  45410. image: {
  45411. source: "./media/characters/stellar-marbey/front.svg",
  45412. extra: 1913/1805,
  45413. bottom: 92/2005
  45414. }
  45415. },
  45416. back: {
  45417. height: math.unit(53, "meters"),
  45418. name: "Back",
  45419. image: {
  45420. source: "./media/characters/stellar-marbey/back.svg",
  45421. extra: 1960/1851,
  45422. bottom: 28/1988
  45423. }
  45424. },
  45425. mouth: {
  45426. height: math.unit(3.5, "meters"),
  45427. name: "Mouth",
  45428. image: {
  45429. source: "./media/characters/stellar-marbey/mouth.svg"
  45430. }
  45431. },
  45432. },
  45433. [
  45434. {
  45435. name: "Macro",
  45436. height: math.unit(53, "meters"),
  45437. default: true
  45438. },
  45439. ]
  45440. ))
  45441. characterMakers.push(() => makeCharacter(
  45442. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45443. {
  45444. front: {
  45445. height: math.unit(8 + 1/12, "feet"),
  45446. weight: math.unit(233, "lb"),
  45447. name: "Front",
  45448. image: {
  45449. source: "./media/characters/matsu/front.svg",
  45450. extra: 832/772,
  45451. bottom: 40/872
  45452. }
  45453. },
  45454. back: {
  45455. height: math.unit(8 + 1/12, "feet"),
  45456. weight: math.unit(233, "lb"),
  45457. name: "Back",
  45458. image: {
  45459. source: "./media/characters/matsu/back.svg",
  45460. extra: 839/780,
  45461. bottom: 47/886
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Normal",
  45468. height: math.unit(8 + 1/12, "feet"),
  45469. default: true
  45470. },
  45471. ]
  45472. ))
  45473. characterMakers.push(() => makeCharacter(
  45474. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45475. {
  45476. front: {
  45477. height: math.unit(4, "feet"),
  45478. weight: math.unit(148, "lb"),
  45479. name: "Front",
  45480. image: {
  45481. source: "./media/characters/thiz/front.svg",
  45482. extra: 1913/1748,
  45483. bottom: 62/1975
  45484. }
  45485. },
  45486. },
  45487. [
  45488. {
  45489. name: "Normal",
  45490. height: math.unit(4, "feet"),
  45491. default: true
  45492. },
  45493. ]
  45494. ))
  45495. characterMakers.push(() => makeCharacter(
  45496. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45497. {
  45498. front: {
  45499. height: math.unit(7 + 6/12, "feet"),
  45500. weight: math.unit(267, "lb"),
  45501. name: "Front",
  45502. image: {
  45503. source: "./media/characters/marcel/front.svg",
  45504. extra: 1221/1096,
  45505. bottom: 76/1297
  45506. }
  45507. },
  45508. },
  45509. [
  45510. {
  45511. name: "Normal",
  45512. height: math.unit(7 + 6/12, "feet"),
  45513. default: true
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45519. {
  45520. side: {
  45521. height: math.unit(42, "meters"),
  45522. name: "Side",
  45523. image: {
  45524. source: "./media/characters/flake/side.svg",
  45525. extra: 1525/1306,
  45526. bottom: 209/1734
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(42, "meters"),
  45534. default: true
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45540. {
  45541. dressed: {
  45542. height: math.unit(6 + 4/12, "feet"),
  45543. weight: math.unit(520, "lb"),
  45544. name: "Dressed",
  45545. image: {
  45546. source: "./media/characters/someonne/dressed.svg",
  45547. extra: 1020/1010,
  45548. bottom: 178/1198
  45549. }
  45550. },
  45551. undressed: {
  45552. height: math.unit(6 + 4/12, "feet"),
  45553. weight: math.unit(520, "lb"),
  45554. name: "Undressed",
  45555. image: {
  45556. source: "./media/characters/someonne/undressed.svg",
  45557. extra: 1019/1014,
  45558. bottom: 169/1188
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(6 + 4/12, "feet"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45572. {
  45573. front: {
  45574. height: math.unit(3, "feet"),
  45575. weight: math.unit(30, "lb"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/till/front.svg",
  45579. extra: 892/823,
  45580. bottom: 55/947
  45581. }
  45582. },
  45583. },
  45584. [
  45585. {
  45586. name: "Normal",
  45587. height: math.unit(3, "feet"),
  45588. default: true
  45589. },
  45590. ]
  45591. ))
  45592. characterMakers.push(() => makeCharacter(
  45593. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45594. {
  45595. front: {
  45596. height: math.unit(9 + 8/12, "feet"),
  45597. weight: math.unit(800, "lb"),
  45598. name: "Front",
  45599. image: {
  45600. source: "./media/characters/sydney-heki/front.svg",
  45601. extra: 1360/1300,
  45602. bottom: 22/1382
  45603. }
  45604. },
  45605. back: {
  45606. height: math.unit(9 + 8/12, "feet"),
  45607. weight: math.unit(800, "lb"),
  45608. name: "Back",
  45609. image: {
  45610. source: "./media/characters/sydney-heki/back.svg",
  45611. extra: 1356/1293,
  45612. bottom: 12/1368
  45613. }
  45614. },
  45615. frontDressed: {
  45616. height: math.unit(9 + 8/12, "feet"),
  45617. weight: math.unit(800, "lb"),
  45618. name: "Front-dressed",
  45619. image: {
  45620. source: "./media/characters/sydney-heki/front-dressed.svg",
  45621. extra: 1360/1300,
  45622. bottom: 22/1382
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(9 + 8/12, "feet"),
  45630. default: true
  45631. },
  45632. {
  45633. name: "Macro",
  45634. height: math.unit(500, "feet")
  45635. },
  45636. {
  45637. name: "Megamacro",
  45638. height: math.unit(3.6, "miles")
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45644. {
  45645. front: {
  45646. height: math.unit(200, "cm"),
  45647. weight: math.unit(250, "lb"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/fowler-karlsson/front.svg",
  45651. extra: 897/845,
  45652. bottom: 123/1020
  45653. }
  45654. },
  45655. back: {
  45656. height: math.unit(200, "cm"),
  45657. weight: math.unit(250, "lb"),
  45658. name: "Back",
  45659. image: {
  45660. source: "./media/characters/fowler-karlsson/back.svg",
  45661. extra: 999/944,
  45662. bottom: 26/1025
  45663. }
  45664. },
  45665. dick: {
  45666. height: math.unit(1.92, "feet"),
  45667. weight: math.unit(150, "lb"),
  45668. name: "Dick",
  45669. image: {
  45670. source: "./media/characters/fowler-karlsson/dick.svg"
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(200, "cm"),
  45678. default: true
  45679. },
  45680. {
  45681. name: "Smaller Macro",
  45682. height: math.unit(90, "m")
  45683. },
  45684. {
  45685. name: "Macro",
  45686. height: math.unit(150, "m")
  45687. },
  45688. {
  45689. name: "Bigger Macro",
  45690. height: math.unit(300, "m")
  45691. },
  45692. ]
  45693. ))
  45694. characterMakers.push(() => makeCharacter(
  45695. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45696. {
  45697. side: {
  45698. height: math.unit(8 + 2/12, "feet"),
  45699. weight: math.unit(1, "tonne"),
  45700. name: "Side",
  45701. image: {
  45702. source: "./media/characters/rylide/side.svg",
  45703. extra: 1318/1034,
  45704. bottom: 106/1424
  45705. }
  45706. },
  45707. sitting: {
  45708. height: math.unit(303, "cm"),
  45709. weight: math.unit(1, "tonne"),
  45710. name: "Sitting",
  45711. image: {
  45712. source: "./media/characters/rylide/sitting.svg",
  45713. extra: 1303/1103,
  45714. bottom: 36/1339
  45715. }
  45716. },
  45717. },
  45718. [
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(8 + 2/12, "feet"),
  45722. default: true
  45723. },
  45724. ]
  45725. ))
  45726. characterMakers.push(() => makeCharacter(
  45727. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45728. {
  45729. front: {
  45730. height: math.unit(5 + 10/12, "feet"),
  45731. weight: math.unit(160, "lb"),
  45732. name: "Front",
  45733. image: {
  45734. source: "./media/characters/pudask/front.svg",
  45735. extra: 1616/1590,
  45736. bottom: 161/1777
  45737. }
  45738. },
  45739. },
  45740. [
  45741. {
  45742. name: "Ferret Height",
  45743. height: math.unit(2 + 5/12, "feet")
  45744. },
  45745. {
  45746. name: "Canon Height",
  45747. height: math.unit(5 + 10/12, "feet"),
  45748. default: true
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45754. {
  45755. front: {
  45756. height: math.unit(3 + 6/12, "feet"),
  45757. weight: math.unit(60, "lb"),
  45758. name: "Front",
  45759. image: {
  45760. source: "./media/characters/ramita/front.svg",
  45761. extra: 1402/1232,
  45762. bottom: 62/1464
  45763. }
  45764. },
  45765. dressed: {
  45766. height: math.unit(3 + 6/12, "feet"),
  45767. weight: math.unit(60, "lb"),
  45768. name: "Dressed",
  45769. image: {
  45770. source: "./media/characters/ramita/dressed.svg",
  45771. extra: 1534/1249,
  45772. bottom: 50/1584
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Normal",
  45779. height: math.unit(3 + 6/12, "feet"),
  45780. default: true
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45786. {
  45787. front: {
  45788. height: math.unit(8, "feet"),
  45789. name: "Front",
  45790. image: {
  45791. source: "./media/characters/ark/front.svg",
  45792. extra: 772/693,
  45793. bottom: 45/817
  45794. }
  45795. },
  45796. },
  45797. [
  45798. {
  45799. name: "Normal",
  45800. height: math.unit(8, "feet"),
  45801. default: true
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(6, "feet"),
  45810. weight: math.unit(250, "lb"),
  45811. volume: math.unit(5/8, "gallons"),
  45812. name: "Front",
  45813. image: {
  45814. source: "./media/characters/ludwig-horn/front.svg",
  45815. extra: 1782/1635,
  45816. bottom: 96/1878
  45817. }
  45818. },
  45819. back: {
  45820. height: math.unit(6, "feet"),
  45821. weight: math.unit(250, "lb"),
  45822. volume: math.unit(5/8, "gallons"),
  45823. name: "Back",
  45824. image: {
  45825. source: "./media/characters/ludwig-horn/back.svg",
  45826. extra: 1874/1729,
  45827. bottom: 27/1901
  45828. }
  45829. },
  45830. dick: {
  45831. height: math.unit(1.05, "feet"),
  45832. weight: math.unit(15, "lb"),
  45833. volume: math.unit(5/8, "gallons"),
  45834. name: "Dick",
  45835. image: {
  45836. source: "./media/characters/ludwig-horn/dick.svg"
  45837. }
  45838. },
  45839. },
  45840. [
  45841. {
  45842. name: "Small",
  45843. height: math.unit(6, "feet")
  45844. },
  45845. {
  45846. name: "Typical",
  45847. height: math.unit(12, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Building",
  45852. height: math.unit(80, "feet")
  45853. },
  45854. {
  45855. name: "Town",
  45856. height: math.unit(800, "feet")
  45857. },
  45858. {
  45859. name: "Kingdom",
  45860. height: math.unit(80000, "feet")
  45861. },
  45862. {
  45863. name: "Planet",
  45864. height: math.unit(8000000, "feet")
  45865. },
  45866. {
  45867. name: "Universe",
  45868. height: math.unit(8000000000, "feet")
  45869. },
  45870. {
  45871. name: "Transcended",
  45872. height: math.unit(8e27, "feet")
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45878. {
  45879. front: {
  45880. height: math.unit(5, "feet"),
  45881. weight: math.unit(50, "kg"),
  45882. name: "Front",
  45883. image: {
  45884. source: "./media/characters/biot-avery/front.svg",
  45885. extra: 1295/1232,
  45886. bottom: 86/1381
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Normal",
  45893. height: math.unit(5, "feet"),
  45894. default: true
  45895. },
  45896. ]
  45897. ))
  45898. characterMakers.push(() => makeCharacter(
  45899. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45900. {
  45901. front: {
  45902. height: math.unit(6, "feet"),
  45903. name: "Front",
  45904. image: {
  45905. source: "./media/characters/kitsune-kiro/front.svg",
  45906. extra: 1270/1158,
  45907. bottom: 42/1312
  45908. }
  45909. },
  45910. frontAlt: {
  45911. height: math.unit(6, "feet"),
  45912. name: "Front-alt",
  45913. image: {
  45914. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45915. extra: 1130/1081,
  45916. bottom: 36/1166
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Smol",
  45923. height: math.unit(3, "feet")
  45924. },
  45925. {
  45926. name: "Normal",
  45927. height: math.unit(6, "feet"),
  45928. default: true
  45929. },
  45930. ]
  45931. ))
  45932. characterMakers.push(() => makeCharacter(
  45933. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45934. {
  45935. front: {
  45936. height: math.unit(6, "feet"),
  45937. weight: math.unit(125, "lb"),
  45938. name: "Front",
  45939. image: {
  45940. source: "./media/characters/jack-thatcher/front.svg",
  45941. extra: 1474/1370,
  45942. bottom: 26/1500
  45943. }
  45944. },
  45945. back: {
  45946. height: math.unit(6, "feet"),
  45947. weight: math.unit(125, "lb"),
  45948. name: "Back",
  45949. image: {
  45950. source: "./media/characters/jack-thatcher/back.svg",
  45951. extra: 1489/1384,
  45952. bottom: 18/1507
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(6, "feet"),
  45960. default: true
  45961. },
  45962. {
  45963. name: "Macro",
  45964. height: math.unit(75, "feet")
  45965. },
  45966. {
  45967. name: "Macro-er",
  45968. height: math.unit(250, "feet")
  45969. },
  45970. ]
  45971. ))
  45972. characterMakers.push(() => makeCharacter(
  45973. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45974. {
  45975. front: {
  45976. height: math.unit(7, "feet"),
  45977. weight: math.unit(110, "kg"),
  45978. name: "Front",
  45979. image: {
  45980. source: "./media/characters/max-hyper/front.svg",
  45981. extra: 1969/1881,
  45982. bottom: 49/2018
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Normal",
  45989. height: math.unit(7, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(5 + 5/12, "feet"),
  45999. weight: math.unit(160, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/spook/front.svg",
  46003. extra: 794/791,
  46004. bottom: 54/848
  46005. }
  46006. },
  46007. back: {
  46008. height: math.unit(5 + 5/12, "feet"),
  46009. weight: math.unit(160, "lb"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/spook/back.svg",
  46013. extra: 812/798,
  46014. bottom: 32/844
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(5 + 5/12, "feet"),
  46022. default: true
  46023. },
  46024. ]
  46025. ))
  46026. characterMakers.push(() => makeCharacter(
  46027. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46028. {
  46029. front: {
  46030. height: math.unit(18, "feet"),
  46031. name: "Front",
  46032. image: {
  46033. source: "./media/characters/xeaduulix/front.svg",
  46034. extra: 1380/1166,
  46035. bottom: 110/1490
  46036. }
  46037. },
  46038. back: {
  46039. height: math.unit(18, "feet"),
  46040. name: "Back",
  46041. image: {
  46042. source: "./media/characters/xeaduulix/back.svg",
  46043. extra: 1592/1170,
  46044. bottom: 128/1720
  46045. }
  46046. },
  46047. frontNsfw: {
  46048. height: math.unit(18, "feet"),
  46049. name: "Front (NSFW)",
  46050. image: {
  46051. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46052. extra: 1380/1166,
  46053. bottom: 110/1490
  46054. }
  46055. },
  46056. backNsfw: {
  46057. height: math.unit(18, "feet"),
  46058. name: "Back (NSFW)",
  46059. image: {
  46060. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46061. extra: 1592/1170,
  46062. bottom: 128/1720
  46063. }
  46064. },
  46065. },
  46066. [
  46067. {
  46068. name: "Normal",
  46069. height: math.unit(18, "feet"),
  46070. default: true
  46071. },
  46072. ]
  46073. ))
  46074. characterMakers.push(() => makeCharacter(
  46075. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46076. {
  46077. spreadWings: {
  46078. height: math.unit(20, "feet"),
  46079. name: "Spread Wings",
  46080. image: {
  46081. source: "./media/characters/fledge/spread-wings.svg",
  46082. extra: 693/635,
  46083. bottom: 26/719
  46084. }
  46085. },
  46086. front: {
  46087. height: math.unit(20, "feet"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/fledge/front.svg",
  46091. extra: 684/637,
  46092. bottom: 18/702
  46093. }
  46094. },
  46095. frontAlt: {
  46096. height: math.unit(20, "feet"),
  46097. name: "Front (Alt)",
  46098. image: {
  46099. source: "./media/characters/fledge/front-alt.svg",
  46100. extra: 708/664,
  46101. bottom: 13/721
  46102. }
  46103. },
  46104. back: {
  46105. height: math.unit(20, "feet"),
  46106. name: "Back",
  46107. image: {
  46108. source: "./media/characters/fledge/back.svg",
  46109. extra: 718/634,
  46110. bottom: 22/740
  46111. }
  46112. },
  46113. head: {
  46114. height: math.unit(5.55, "feet"),
  46115. name: "Head",
  46116. image: {
  46117. source: "./media/characters/fledge/head.svg"
  46118. }
  46119. },
  46120. headAlt: {
  46121. height: math.unit(5.1, "feet"),
  46122. name: "Head (Alt)",
  46123. image: {
  46124. source: "./media/characters/fledge/head-alt.svg"
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Small",
  46131. height: math.unit(6 + 2/12, "feet")
  46132. },
  46133. {
  46134. name: "Big",
  46135. height: math.unit(20, "feet"),
  46136. default: true
  46137. },
  46138. {
  46139. name: "Giant",
  46140. height: math.unit(100, "feet")
  46141. },
  46142. {
  46143. name: "Macro",
  46144. height: math.unit(200, "feet")
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(1, "meter"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/atlas-morenai/front.svg",
  46156. extra: 1275/1043,
  46157. bottom: 19/1294
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(1, "meter"),
  46162. name: "Back",
  46163. image: {
  46164. source: "./media/characters/atlas-morenai/back.svg",
  46165. extra: 1141/1001,
  46166. bottom: 25/1166
  46167. }
  46168. },
  46169. },
  46170. [
  46171. {
  46172. name: "Normal",
  46173. height: math.unit(1, "meter"),
  46174. default: true
  46175. },
  46176. {
  46177. name: "Magic-Infused",
  46178. height: math.unit(5, "meters")
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(5, "meters"),
  46187. name: "Front",
  46188. image: {
  46189. source: "./media/characters/cintia/front.svg",
  46190. extra: 1312/1228,
  46191. bottom: 38/1350
  46192. }
  46193. },
  46194. back: {
  46195. height: math.unit(5, "meters"),
  46196. name: "Back",
  46197. image: {
  46198. source: "./media/characters/cintia/back.svg",
  46199. extra: 1260/1166,
  46200. bottom: 98/1358
  46201. }
  46202. },
  46203. frontDick: {
  46204. height: math.unit(5, "meters"),
  46205. name: "Front (Dick)",
  46206. image: {
  46207. source: "./media/characters/cintia/front-dick.svg",
  46208. extra: 1312/1228,
  46209. bottom: 38/1350
  46210. }
  46211. },
  46212. backDick: {
  46213. height: math.unit(5, "meters"),
  46214. name: "Back (Dick)",
  46215. image: {
  46216. source: "./media/characters/cintia/back-dick.svg",
  46217. extra: 1260/1166,
  46218. bottom: 98/1358
  46219. }
  46220. },
  46221. bust: {
  46222. height: math.unit(1.97, "meters"),
  46223. name: "Bust",
  46224. image: {
  46225. source: "./media/characters/cintia/bust.svg",
  46226. extra: 617/565,
  46227. bottom: 0/617
  46228. }
  46229. },
  46230. },
  46231. [
  46232. {
  46233. name: "Normal",
  46234. height: math.unit(5, "meters"),
  46235. default: true
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46241. {
  46242. side: {
  46243. height: math.unit(100, "feet"),
  46244. name: "Side",
  46245. image: {
  46246. source: "./media/characters/denora/side.svg",
  46247. extra: 875/803,
  46248. bottom: 9/884
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Standard",
  46255. height: math.unit(100, "feet"),
  46256. default: true
  46257. },
  46258. {
  46259. name: "Grand",
  46260. height: math.unit(1000, "feet")
  46261. },
  46262. {
  46263. name: "Conquering",
  46264. height: math.unit(10000, "feet")
  46265. },
  46266. ]
  46267. ))
  46268. characterMakers.push(() => makeCharacter(
  46269. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46270. {
  46271. dressed: {
  46272. height: math.unit(8 + 5/12, "feet"),
  46273. weight: math.unit(700, "lb"),
  46274. name: "Dressed",
  46275. image: {
  46276. source: "./media/characters/kiva/dressed.svg",
  46277. extra: 1102/1055,
  46278. bottom: 60/1162
  46279. }
  46280. },
  46281. nude: {
  46282. height: math.unit(8 + 5/12, "feet"),
  46283. weight: math.unit(700, "lb"),
  46284. name: "Nude",
  46285. image: {
  46286. source: "./media/characters/kiva/nude.svg",
  46287. extra: 1102/1055,
  46288. bottom: 60/1162
  46289. }
  46290. },
  46291. },
  46292. [
  46293. {
  46294. name: "Base Height",
  46295. height: math.unit(8 + 5/12, "feet"),
  46296. default: true
  46297. },
  46298. {
  46299. name: "Macro",
  46300. height: math.unit(100, "feet")
  46301. },
  46302. {
  46303. name: "Max",
  46304. height: math.unit(3280, "feet")
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46310. {
  46311. front: {
  46312. height: math.unit(6 + 8/12, "feet"),
  46313. weight: math.unit(250, "lb"),
  46314. name: "Front",
  46315. image: {
  46316. source: "./media/characters/ztragon/front.svg",
  46317. extra: 1825/1684,
  46318. bottom: 98/1923
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(6 + 8/12, "feet"),
  46326. default: true
  46327. },
  46328. {
  46329. name: "Macro",
  46330. height: math.unit(80, "feet")
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46336. {
  46337. front: {
  46338. height: math.unit(10.4, "feet"),
  46339. weight: math.unit(2, "tons"),
  46340. name: "Front",
  46341. image: {
  46342. source: "./media/characters/yesenia/front.svg",
  46343. extra: 1479/1474,
  46344. bottom: 233/1712
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Normal",
  46351. height: math.unit(10.4, "feet"),
  46352. default: true
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46358. {
  46359. normal: {
  46360. height: math.unit(6 + 1/12, "feet"),
  46361. weight: math.unit(180, "lb"),
  46362. name: "Normal",
  46363. image: {
  46364. source: "./media/characters/leanne-lycheborne/normal.svg",
  46365. extra: 1748/1660,
  46366. bottom: 98/1846
  46367. }
  46368. },
  46369. were: {
  46370. height: math.unit(12, "feet"),
  46371. weight: math.unit(1600, "lb"),
  46372. name: "Were",
  46373. image: {
  46374. source: "./media/characters/leanne-lycheborne/were.svg",
  46375. extra: 1485/1432,
  46376. bottom: 66/1551
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(6 + 1/12, "feet"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46390. {
  46391. side: {
  46392. height: math.unit(13, "feet"),
  46393. name: "Side",
  46394. image: {
  46395. source: "./media/characters/kira-tyler/side.svg",
  46396. extra: 693/393,
  46397. bottom: 58/751
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(13, "feet"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(10.3, "feet"),
  46414. weight: math.unit(150, "lb"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/blaze/front.svg",
  46418. extra: 1378/1286,
  46419. bottom: 172/1550
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(10.3, "feet"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46433. {
  46434. side: {
  46435. height: math.unit(2, "meters"),
  46436. weight: math.unit(400, "kg"),
  46437. name: "Side",
  46438. image: {
  46439. source: "./media/characters/anu/side.svg",
  46440. extra: 506/394,
  46441. bottom: 18/524
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Humanoid",
  46448. height: math.unit(2, "meters")
  46449. },
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(5, "meters"),
  46453. default: true
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46459. {
  46460. front: {
  46461. height: math.unit(5 + 5/12, "feet"),
  46462. weight: math.unit(170, "lb"),
  46463. name: "Front",
  46464. image: {
  46465. source: "./media/characters/synx-the-lynx/front.svg",
  46466. extra: 1893/1745,
  46467. bottom: 17/1910
  46468. }
  46469. },
  46470. side: {
  46471. height: math.unit(5 + 5/12, "feet"),
  46472. weight: math.unit(170, "lb"),
  46473. name: "Side",
  46474. image: {
  46475. source: "./media/characters/synx-the-lynx/side.svg",
  46476. extra: 1884/1740,
  46477. bottom: 39/1923
  46478. }
  46479. },
  46480. back: {
  46481. height: math.unit(5 + 5/12, "feet"),
  46482. weight: math.unit(170, "lb"),
  46483. name: "Back",
  46484. image: {
  46485. source: "./media/characters/synx-the-lynx/back.svg",
  46486. extra: 1903/1755,
  46487. bottom: 14/1917
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(5 + 5/12, "feet"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46501. {
  46502. back: {
  46503. height: math.unit(15, "feet"),
  46504. name: "Back",
  46505. image: {
  46506. source: "./media/characters/nadezda-fex/back.svg",
  46507. extra: 1695/1481,
  46508. bottom: 25/1720
  46509. }
  46510. },
  46511. },
  46512. [
  46513. {
  46514. name: "Normal",
  46515. height: math.unit(15, "feet"),
  46516. default: true
  46517. },
  46518. {
  46519. name: "Macro",
  46520. height: math.unit(2.5, "miles")
  46521. },
  46522. {
  46523. name: "Goddess",
  46524. height: math.unit(2, "multiverses")
  46525. },
  46526. ]
  46527. ))
  46528. characterMakers.push(() => makeCharacter(
  46529. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46530. {
  46531. front: {
  46532. height: math.unit(216, "cm"),
  46533. name: "Front",
  46534. image: {
  46535. source: "./media/characters/lev/front.svg",
  46536. extra: 1728/1670,
  46537. bottom: 82/1810
  46538. }
  46539. },
  46540. back: {
  46541. height: math.unit(216, "cm"),
  46542. name: "Back",
  46543. image: {
  46544. source: "./media/characters/lev/back.svg",
  46545. extra: 1738/1675,
  46546. bottom: 24/1762
  46547. }
  46548. },
  46549. dressed: {
  46550. height: math.unit(216, "cm"),
  46551. name: "Dressed",
  46552. image: {
  46553. source: "./media/characters/lev/dressed.svg",
  46554. extra: 1397/1351,
  46555. bottom: 73/1470
  46556. }
  46557. },
  46558. head: {
  46559. height: math.unit(0.51, "meter"),
  46560. name: "Head",
  46561. image: {
  46562. source: "./media/characters/lev/head.svg"
  46563. }
  46564. },
  46565. },
  46566. [
  46567. {
  46568. name: "Normal",
  46569. height: math.unit(216, "cm"),
  46570. default: true
  46571. },
  46572. {
  46573. name: "Relatively Macro",
  46574. height: math.unit(80, "meters")
  46575. },
  46576. {
  46577. name: "Megamacro",
  46578. height: math.unit(21600, "meters")
  46579. },
  46580. {
  46581. name: "Megamacro+",
  46582. height: math.unit(64800, "meters")
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(2, "meters"),
  46591. weight: math.unit(80, "kg"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/moka/front.svg",
  46595. extra: 1337/1255,
  46596. bottom: 58/1395
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Micro",
  46603. height: math.unit(15, "cm")
  46604. },
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(2, "meters"),
  46608. default: true
  46609. },
  46610. {
  46611. name: "Macro",
  46612. height: math.unit(20, "meters"),
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46618. {
  46619. front: {
  46620. height: math.unit(9, "feet"),
  46621. weight: math.unit(240, "lb"),
  46622. name: "Front",
  46623. image: {
  46624. source: "./media/characters/kuzco/front.svg",
  46625. extra: 1593/1487,
  46626. bottom: 32/1625
  46627. }
  46628. },
  46629. side: {
  46630. height: math.unit(9, "feet"),
  46631. weight: math.unit(240, "lb"),
  46632. name: "Side",
  46633. image: {
  46634. source: "./media/characters/kuzco/side.svg",
  46635. extra: 1575/1485,
  46636. bottom: 30/1605
  46637. }
  46638. },
  46639. back: {
  46640. height: math.unit(9, "feet"),
  46641. weight: math.unit(240, "lb"),
  46642. name: "Back",
  46643. image: {
  46644. source: "./media/characters/kuzco/back.svg",
  46645. extra: 1603/1514,
  46646. bottom: 14/1617
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Normal",
  46653. height: math.unit(9, "feet"),
  46654. default: true
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46660. {
  46661. side: {
  46662. height: math.unit(2, "meters"),
  46663. weight: math.unit(300, "kg"),
  46664. name: "Side",
  46665. image: {
  46666. source: "./media/characters/ceruleus/side.svg",
  46667. extra: 1068/974,
  46668. bottom: 126/1194
  46669. }
  46670. },
  46671. },
  46672. [
  46673. {
  46674. name: "Normal",
  46675. height: math.unit(16, "meters"),
  46676. default: true
  46677. },
  46678. ]
  46679. ))
  46680. characterMakers.push(() => makeCharacter(
  46681. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46682. {
  46683. front: {
  46684. height: math.unit(9, "feet"),
  46685. weight: math.unit(500, "kg"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/acouya/front.svg",
  46689. extra: 1660/1473,
  46690. bottom: 28/1688
  46691. }
  46692. },
  46693. },
  46694. [
  46695. {
  46696. name: "Normal",
  46697. height: math.unit(9, "feet"),
  46698. default: true
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46704. {
  46705. front: {
  46706. height: math.unit(5 + 6/12, "feet"),
  46707. weight: math.unit(195, "lb"),
  46708. name: "Front",
  46709. image: {
  46710. source: "./media/characters/vant/front.svg",
  46711. extra: 1396/1320,
  46712. bottom: 20/1416
  46713. }
  46714. },
  46715. back: {
  46716. height: math.unit(5 + 6/12, "feet"),
  46717. weight: math.unit(195, "lb"),
  46718. name: "Back",
  46719. image: {
  46720. source: "./media/characters/vant/back.svg",
  46721. extra: 1396/1320,
  46722. bottom: 20/1416
  46723. }
  46724. },
  46725. maw: {
  46726. height: math.unit(0.75, "feet"),
  46727. name: "Maw",
  46728. image: {
  46729. source: "./media/characters/vant/maw.svg"
  46730. }
  46731. },
  46732. paw: {
  46733. height: math.unit(1.07, "feet"),
  46734. name: "Paw",
  46735. image: {
  46736. source: "./media/characters/vant/paw.svg"
  46737. }
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Micro",
  46743. height: math.unit(0.25, "inches")
  46744. },
  46745. {
  46746. name: "Normal",
  46747. height: math.unit(5 + 6/12, "feet"),
  46748. default: true
  46749. },
  46750. {
  46751. name: "Macro",
  46752. height: math.unit(75, "feet")
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46758. {
  46759. front: {
  46760. height: math.unit(30, "meters"),
  46761. weight: math.unit(363, "tons"),
  46762. name: "Front",
  46763. image: {
  46764. source: "./media/characters/ahra/front.svg",
  46765. extra: 1914/1814,
  46766. bottom: 46/1960
  46767. }
  46768. },
  46769. },
  46770. [
  46771. {
  46772. name: "Macro",
  46773. height: math.unit(30, "meters"),
  46774. default: true
  46775. },
  46776. ]
  46777. ))
  46778. characterMakers.push(() => makeCharacter(
  46779. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46780. {
  46781. undressed: {
  46782. height: math.unit(2, "m"),
  46783. weight: math.unit(250, "kg"),
  46784. name: "Undressed",
  46785. image: {
  46786. source: "./media/characters/coriander/undressed.svg",
  46787. extra: 1757/1606,
  46788. bottom: 107/1864
  46789. }
  46790. },
  46791. dressed: {
  46792. height: math.unit(2, "m"),
  46793. weight: math.unit(250, "kg"),
  46794. name: "Dressed",
  46795. image: {
  46796. source: "./media/characters/coriander/dressed.svg",
  46797. extra: 1757/1606,
  46798. bottom: 107/1864
  46799. }
  46800. },
  46801. },
  46802. [
  46803. {
  46804. name: "Normal",
  46805. height: math.unit(4, "meters"),
  46806. default: true
  46807. },
  46808. {
  46809. name: "XL",
  46810. height: math.unit(6, "meters")
  46811. },
  46812. {
  46813. name: "XXL",
  46814. height: math.unit(8, "meters")
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(6, "feet"),
  46823. name: "Front",
  46824. image: {
  46825. source: "./media/characters/syrinx/front.svg",
  46826. extra: 1557/1259,
  46827. bottom: 171/1728
  46828. }
  46829. },
  46830. },
  46831. [
  46832. {
  46833. name: "Normal",
  46834. height: math.unit(6 + 3/12, "feet"),
  46835. default: true
  46836. },
  46837. ]
  46838. ))
  46839. characterMakers.push(() => makeCharacter(
  46840. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46841. {
  46842. front: {
  46843. height: math.unit(11 + 6/12, "feet"),
  46844. weight: math.unit(1.5, "tons"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/bor/front.svg",
  46848. extra: 1189/1109,
  46849. bottom: 170/1359
  46850. }
  46851. },
  46852. },
  46853. [
  46854. {
  46855. name: "Normal",
  46856. height: math.unit(11 + 6/12, "feet"),
  46857. default: true
  46858. },
  46859. {
  46860. name: "Macro",
  46861. height: math.unit(32 + 9/12, "feet")
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46867. {
  46868. anthro: {
  46869. height: math.unit(9, "feet"),
  46870. weight: math.unit(2076, "lb"),
  46871. name: "Anthro",
  46872. image: {
  46873. source: "./media/characters/abacus/anthro.svg",
  46874. extra: 1540/1494,
  46875. bottom: 233/1773
  46876. }
  46877. },
  46878. pigeon: {
  46879. height: math.unit(1, "feet"),
  46880. name: "Pigeon",
  46881. image: {
  46882. source: "./media/characters/abacus/pigeon.svg",
  46883. extra: 528/525,
  46884. bottom: 46/574
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(9, "feet"),
  46892. default: true
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46898. {
  46899. side: {
  46900. height: math.unit(6, "feet"),
  46901. name: "Side",
  46902. image: {
  46903. source: "./media/characters/delkhan/side.svg",
  46904. extra: 1884/1786,
  46905. bottom: 308/2192
  46906. }
  46907. },
  46908. head: {
  46909. height: math.unit(3.38, "feet"),
  46910. name: "Head",
  46911. image: {
  46912. source: "./media/characters/delkhan/head.svg"
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(72, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Giant",
  46924. height: math.unit(172, "feet")
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46930. {
  46931. standing: {
  46932. height: math.unit(6, "feet"),
  46933. name: "Standing",
  46934. image: {
  46935. source: "./media/characters/euchidat/standing.svg",
  46936. extra: 1612/1553,
  46937. bottom: 116/1728
  46938. }
  46939. },
  46940. leaning: {
  46941. height: math.unit(6, "feet"),
  46942. name: "Leaning",
  46943. image: {
  46944. source: "./media/characters/euchidat/leaning.svg",
  46945. extra: 1719/1674,
  46946. bottom: 27/1746
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Normal",
  46953. height: math.unit(175, "feet"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Megamacro",
  46958. height: math.unit(190, "miles")
  46959. },
  46960. {
  46961. name: "Gigamacro",
  46962. height: math.unit(190000, "miles")
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46968. {
  46969. front: {
  46970. height: math.unit(6, "feet"),
  46971. weight: math.unit(150, "lb"),
  46972. name: "Front",
  46973. image: {
  46974. source: "./media/characters/rebecca-stack/front.svg",
  46975. extra: 1256/1201,
  46976. bottom: 18/1274
  46977. }
  46978. },
  46979. },
  46980. [
  46981. {
  46982. name: "Normal",
  46983. height: math.unit(5 + 8/12, "feet"),
  46984. default: true
  46985. },
  46986. {
  46987. name: "Demolitionist",
  46988. height: math.unit(200, "feet")
  46989. },
  46990. {
  46991. name: "Out of Control",
  46992. height: math.unit(2, "miles")
  46993. },
  46994. {
  46995. name: "Giga",
  46996. height: math.unit(7200, "miles")
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(6, "feet"),
  47005. weight: math.unit(150, "lb"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/jenny-cartwright/front.svg",
  47009. extra: 1384/1376,
  47010. bottom: 58/1442
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(6 + 7/12, "feet"),
  47018. default: true
  47019. },
  47020. {
  47021. name: "Librarian",
  47022. height: math.unit(55, "feet")
  47023. },
  47024. {
  47025. name: "Sightseer",
  47026. height: math.unit(50, "miles")
  47027. },
  47028. {
  47029. name: "Giga",
  47030. height: math.unit(30000, "miles")
  47031. },
  47032. ]
  47033. ))
  47034. characterMakers.push(() => makeCharacter(
  47035. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47036. {
  47037. nude: {
  47038. height: math.unit(8, "feet"),
  47039. weight: math.unit(225, "lb"),
  47040. name: "Nude",
  47041. image: {
  47042. source: "./media/characters/marvy/nude.svg",
  47043. extra: 1900/1683,
  47044. bottom: 89/1989
  47045. }
  47046. },
  47047. dressed: {
  47048. height: math.unit(8, "feet"),
  47049. weight: math.unit(225, "lb"),
  47050. name: "Dressed",
  47051. image: {
  47052. source: "./media/characters/marvy/dressed.svg",
  47053. extra: 1900/1683,
  47054. bottom: 89/1989
  47055. }
  47056. },
  47057. head: {
  47058. height: math.unit(2.85, "feet"),
  47059. name: "Head",
  47060. image: {
  47061. source: "./media/characters/marvy/head.svg"
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Normal",
  47068. height: math.unit(8, "feet"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47075. {
  47076. front: {
  47077. height: math.unit(8, "feet"),
  47078. weight: math.unit(250, "lb"),
  47079. name: "Front",
  47080. image: {
  47081. source: "./media/characters/leah/front.svg",
  47082. extra: 1257/1149,
  47083. bottom: 109/1366
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(8, "feet"),
  47091. default: true
  47092. },
  47093. {
  47094. name: "Minimacro",
  47095. height: math.unit(40, "feet")
  47096. },
  47097. {
  47098. name: "Macro",
  47099. height: math.unit(124, "feet")
  47100. },
  47101. {
  47102. name: "Megamacro",
  47103. height: math.unit(850, "feet")
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47109. {
  47110. side: {
  47111. height: math.unit(13 + 6/12, "feet"),
  47112. weight: math.unit(3200, "lb"),
  47113. name: "Side",
  47114. image: {
  47115. source: "./media/characters/alvir/side.svg",
  47116. extra: 896/589,
  47117. bottom: 26/922
  47118. }
  47119. },
  47120. },
  47121. [
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(13 + 6/12, "feet"),
  47125. default: true
  47126. },
  47127. ]
  47128. ))
  47129. characterMakers.push(() => makeCharacter(
  47130. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47131. {
  47132. front: {
  47133. height: math.unit(5 + 4/12, "feet"),
  47134. weight: math.unit(236, "lb"),
  47135. name: "Front",
  47136. image: {
  47137. source: "./media/characters/zaina-khalil/front.svg",
  47138. extra: 1533/1485,
  47139. bottom: 94/1627
  47140. }
  47141. },
  47142. side: {
  47143. height: math.unit(5 + 4/12, "feet"),
  47144. weight: math.unit(236, "lb"),
  47145. name: "Side",
  47146. image: {
  47147. source: "./media/characters/zaina-khalil/side.svg",
  47148. extra: 1537/1498,
  47149. bottom: 66/1603
  47150. }
  47151. },
  47152. back: {
  47153. height: math.unit(5 + 4/12, "feet"),
  47154. weight: math.unit(236, "lb"),
  47155. name: "Back",
  47156. image: {
  47157. source: "./media/characters/zaina-khalil/back.svg",
  47158. extra: 1546/1494,
  47159. bottom: 89/1635
  47160. }
  47161. },
  47162. },
  47163. [
  47164. {
  47165. name: "Normal",
  47166. height: math.unit(5 + 4/12, "feet"),
  47167. default: true
  47168. },
  47169. ]
  47170. ))
  47171. characterMakers.push(() => makeCharacter(
  47172. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47173. {
  47174. side: {
  47175. height: math.unit(12, "feet"),
  47176. weight: math.unit(4000, "lb"),
  47177. name: "Side",
  47178. image: {
  47179. source: "./media/characters/terry/side.svg",
  47180. extra: 1518/1439,
  47181. bottom: 149/1667
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(12, "feet"),
  47189. default: true
  47190. },
  47191. ]
  47192. ))
  47193. characterMakers.push(() => makeCharacter(
  47194. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47195. {
  47196. front: {
  47197. height: math.unit(12, "feet"),
  47198. weight: math.unit(1500, "lb"),
  47199. name: "Front",
  47200. image: {
  47201. source: "./media/characters/kahea/front.svg",
  47202. extra: 1722/1617,
  47203. bottom: 179/1901
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Normal",
  47210. height: math.unit(12, "feet"),
  47211. default: true
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47217. {
  47218. demonFront: {
  47219. height: math.unit(36, "feet"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/alex-xuria/demon-front.svg",
  47223. extra: 1705/1673,
  47224. bottom: 198/1903
  47225. },
  47226. form: "demon",
  47227. default: true
  47228. },
  47229. demonBack: {
  47230. height: math.unit(36, "feet"),
  47231. name: "Back",
  47232. image: {
  47233. source: "./media/characters/alex-xuria/demon-back.svg",
  47234. extra: 1725/1693,
  47235. bottom: 70/1795
  47236. },
  47237. form: "demon"
  47238. },
  47239. demonHead: {
  47240. height: math.unit(2.14, "meters"),
  47241. name: "Head",
  47242. image: {
  47243. source: "./media/characters/alex-xuria/demon-head.svg"
  47244. },
  47245. form: "demon"
  47246. },
  47247. demonHand: {
  47248. height: math.unit(1.61, "meters"),
  47249. name: "Hand",
  47250. image: {
  47251. source: "./media/characters/alex-xuria/demon-hand.svg"
  47252. },
  47253. form: "demon"
  47254. },
  47255. demonPaw: {
  47256. height: math.unit(1.35, "meters"),
  47257. name: "Paw",
  47258. image: {
  47259. source: "./media/characters/alex-xuria/demon-paw.svg"
  47260. },
  47261. form: "demon"
  47262. },
  47263. demonFoot: {
  47264. height: math.unit(2.2, "meters"),
  47265. name: "Foot",
  47266. image: {
  47267. source: "./media/characters/alex-xuria/demon-foot.svg"
  47268. },
  47269. form: "demon"
  47270. },
  47271. demonCock: {
  47272. height: math.unit(1.74, "meters"),
  47273. name: "Cock",
  47274. image: {
  47275. source: "./media/characters/alex-xuria/demon-cock.svg"
  47276. },
  47277. form: "demon"
  47278. },
  47279. demonTailClosed: {
  47280. height: math.unit(1.47, "meters"),
  47281. name: "Tail (Closed)",
  47282. image: {
  47283. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47284. },
  47285. form: "demon"
  47286. },
  47287. demonTailOpen: {
  47288. height: math.unit(2.85, "meters"),
  47289. name: "Tail (Open)",
  47290. image: {
  47291. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47292. },
  47293. form: "demon"
  47294. },
  47295. incubusFront: {
  47296. height: math.unit(12, "feet"),
  47297. name: "Front",
  47298. image: {
  47299. source: "./media/characters/alex-xuria/incubus-front.svg",
  47300. extra: 1754/1677,
  47301. bottom: 125/1879
  47302. },
  47303. form: "incubus",
  47304. default: true
  47305. },
  47306. incubusBack: {
  47307. height: math.unit(12, "feet"),
  47308. name: "Back",
  47309. image: {
  47310. source: "./media/characters/alex-xuria/incubus-back.svg",
  47311. extra: 1702/1647,
  47312. bottom: 30/1732
  47313. },
  47314. form: "incubus"
  47315. },
  47316. incubusHead: {
  47317. height: math.unit(3.45, "feet"),
  47318. name: "Head",
  47319. image: {
  47320. source: "./media/characters/alex-xuria/incubus-head.svg"
  47321. },
  47322. form: "incubus"
  47323. },
  47324. rabbitFront: {
  47325. height: math.unit(6, "feet"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47329. extra: 1369/1349,
  47330. bottom: 45/1414
  47331. },
  47332. form: "rabbit",
  47333. default: true
  47334. },
  47335. rabbitSide: {
  47336. height: math.unit(6, "feet"),
  47337. name: "Side",
  47338. image: {
  47339. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47340. extra: 1370/1356,
  47341. bottom: 37/1407
  47342. },
  47343. form: "rabbit"
  47344. },
  47345. rabbitBack: {
  47346. height: math.unit(6, "feet"),
  47347. name: "Back",
  47348. image: {
  47349. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47350. extra: 1375/1358,
  47351. bottom: 43/1418
  47352. },
  47353. form: "rabbit"
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(6, "feet"),
  47360. default: true,
  47361. form: "rabbit"
  47362. },
  47363. {
  47364. name: "Incubus",
  47365. height: math.unit(12, "feet"),
  47366. default: true,
  47367. form: "incubus"
  47368. },
  47369. {
  47370. name: "Demon",
  47371. height: math.unit(36, "feet"),
  47372. default: true,
  47373. form: "demon"
  47374. }
  47375. ],
  47376. {
  47377. "demon": {
  47378. name: "Demon",
  47379. default: true
  47380. },
  47381. "incubus": {
  47382. name: "Incubus",
  47383. },
  47384. "rabbit": {
  47385. name: "Rabbit"
  47386. }
  47387. }
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47391. {
  47392. front: {
  47393. height: math.unit(7 + 5/12, "feet"),
  47394. weight: math.unit(510, "lb"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/syrup/front.svg",
  47398. extra: 932/916,
  47399. bottom: 26/958
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Normal",
  47406. height: math.unit(7 + 5/12, "feet"),
  47407. default: true
  47408. },
  47409. {
  47410. name: "Big",
  47411. height: math.unit(50, "feet")
  47412. },
  47413. {
  47414. name: "Macro",
  47415. height: math.unit(300, "feet")
  47416. },
  47417. {
  47418. name: "Megamacro",
  47419. height: math.unit(1, "mile")
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(6 + 9/12, "feet"),
  47428. name: "Front",
  47429. image: {
  47430. source: "./media/characters/zeimne/front.svg",
  47431. extra: 1969/1806,
  47432. bottom: 53/2022
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Normal",
  47439. height: math.unit(6 + 9/12, "feet"),
  47440. default: true
  47441. },
  47442. {
  47443. name: "Giant",
  47444. height: math.unit(550, "feet")
  47445. },
  47446. {
  47447. name: "Mega",
  47448. height: math.unit(3, "miles")
  47449. },
  47450. {
  47451. name: "Giga",
  47452. height: math.unit(250, "miles")
  47453. },
  47454. {
  47455. name: "Tera",
  47456. height: math.unit(1, "AU")
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47462. {
  47463. front: {
  47464. height: math.unit(5 + 2/12, "feet"),
  47465. name: "Front",
  47466. image: {
  47467. source: "./media/characters/grar/front.svg",
  47468. extra: 1331/1119,
  47469. bottom: 60/1391
  47470. }
  47471. },
  47472. back: {
  47473. height: math.unit(5 + 2/12, "feet"),
  47474. name: "Back",
  47475. image: {
  47476. source: "./media/characters/grar/back.svg",
  47477. extra: 1385/1169,
  47478. bottom: 23/1408
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(5 + 2/12, "feet"),
  47486. default: true
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47492. {
  47493. front: {
  47494. height: math.unit(13 + 7/12, "feet"),
  47495. weight: math.unit(2200, "lb"),
  47496. name: "Front",
  47497. image: {
  47498. source: "./media/characters/endraya/front.svg",
  47499. extra: 1289/1215,
  47500. bottom: 50/1339
  47501. }
  47502. },
  47503. nude: {
  47504. height: math.unit(13 + 7/12, "feet"),
  47505. weight: math.unit(2200, "lb"),
  47506. name: "Nude",
  47507. image: {
  47508. source: "./media/characters/endraya/nude.svg",
  47509. extra: 1247/1171,
  47510. bottom: 40/1287
  47511. }
  47512. },
  47513. head: {
  47514. height: math.unit(2.6, "feet"),
  47515. name: "Head",
  47516. image: {
  47517. source: "./media/characters/endraya/head.svg"
  47518. }
  47519. },
  47520. slit: {
  47521. height: math.unit(3.4, "feet"),
  47522. name: "Slit",
  47523. image: {
  47524. source: "./media/characters/endraya/slit.svg"
  47525. }
  47526. },
  47527. },
  47528. [
  47529. {
  47530. name: "Normal",
  47531. height: math.unit(13 + 7/12, "feet"),
  47532. default: true
  47533. },
  47534. {
  47535. name: "Macro",
  47536. height: math.unit(200, "feet")
  47537. },
  47538. ]
  47539. ))
  47540. characterMakers.push(() => makeCharacter(
  47541. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47542. {
  47543. front: {
  47544. height: math.unit(1.81, "meters"),
  47545. weight: math.unit(69, "kg"),
  47546. name: "Front",
  47547. image: {
  47548. source: "./media/characters/rodryana/front.svg",
  47549. extra: 2002/1921,
  47550. bottom: 53/2055
  47551. }
  47552. },
  47553. back: {
  47554. height: math.unit(1.81, "meters"),
  47555. weight: math.unit(69, "kg"),
  47556. name: "Back",
  47557. image: {
  47558. source: "./media/characters/rodryana/back.svg",
  47559. extra: 1993/1926,
  47560. bottom: 48/2041
  47561. }
  47562. },
  47563. maw: {
  47564. height: math.unit(0.19769417475, "meters"),
  47565. name: "Maw",
  47566. image: {
  47567. source: "./media/characters/rodryana/maw.svg"
  47568. }
  47569. },
  47570. slit: {
  47571. height: math.unit(0.31631067961, "meters"),
  47572. name: "Slit",
  47573. image: {
  47574. source: "./media/characters/rodryana/slit.svg"
  47575. }
  47576. },
  47577. },
  47578. [
  47579. {
  47580. name: "Normal",
  47581. height: math.unit(1.81, "meters")
  47582. },
  47583. {
  47584. name: "Mini Macro",
  47585. height: math.unit(181, "meters")
  47586. },
  47587. {
  47588. name: "Macro",
  47589. height: math.unit(452, "meters"),
  47590. default: true
  47591. },
  47592. {
  47593. name: "Mega Macro",
  47594. height: math.unit(1.375, "km")
  47595. },
  47596. {
  47597. name: "Giga Macro",
  47598. height: math.unit(13.575, "km")
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47604. {
  47605. front: {
  47606. height: math.unit(6, "feet"),
  47607. weight: math.unit(1000, "lb"),
  47608. name: "Front",
  47609. image: {
  47610. source: "./media/characters/asaya/front.svg",
  47611. extra: 1460/1200,
  47612. bottom: 71/1531
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(8, "km"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47626. {
  47627. front: {
  47628. height: math.unit(3.5, "meters"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/sarzu-and-israz/front.svg",
  47632. extra: 1570/1558,
  47633. bottom: 150/1720
  47634. },
  47635. },
  47636. back: {
  47637. height: math.unit(3.5, "meters"),
  47638. name: "Back",
  47639. image: {
  47640. source: "./media/characters/sarzu-and-israz/back.svg",
  47641. extra: 1523/1509,
  47642. bottom: 132/1655
  47643. },
  47644. },
  47645. frontFemale: {
  47646. height: math.unit(3.5, "meters"),
  47647. name: "Front (Female)",
  47648. image: {
  47649. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47650. extra: 1570/1558,
  47651. bottom: 150/1720
  47652. },
  47653. },
  47654. frontHerm: {
  47655. height: math.unit(3.5, "meters"),
  47656. name: "Front (Herm)",
  47657. image: {
  47658. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47659. extra: 1570/1558,
  47660. bottom: 150/1720
  47661. },
  47662. },
  47663. },
  47664. [
  47665. {
  47666. name: "Normal",
  47667. height: math.unit(3.5, "meters"),
  47668. default: true,
  47669. },
  47670. {
  47671. name: "Macro",
  47672. height: math.unit(65.5, "meters"),
  47673. },
  47674. ],
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47678. {
  47679. front: {
  47680. height: math.unit(6, "feet"),
  47681. weight: math.unit(250, "lb"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/zenimma/front.svg",
  47685. extra: 1346/1320,
  47686. bottom: 58/1404
  47687. }
  47688. },
  47689. back: {
  47690. height: math.unit(6, "feet"),
  47691. weight: math.unit(250, "lb"),
  47692. name: "Back",
  47693. image: {
  47694. source: "./media/characters/zenimma/back.svg",
  47695. extra: 1324/1308,
  47696. bottom: 44/1368
  47697. }
  47698. },
  47699. dick: {
  47700. height: math.unit(1.44, "feet"),
  47701. name: "Dick",
  47702. image: {
  47703. source: "./media/characters/zenimma/dick.svg"
  47704. }
  47705. },
  47706. },
  47707. [
  47708. {
  47709. name: "Canon Height",
  47710. height: math.unit(66, "miles"),
  47711. default: true
  47712. },
  47713. ]
  47714. ))
  47715. characterMakers.push(() => makeCharacter(
  47716. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47717. {
  47718. nude: {
  47719. height: math.unit(6, "feet"),
  47720. weight: math.unit(150, "lb"),
  47721. name: "Nude",
  47722. image: {
  47723. source: "./media/characters/shavon/nude.svg",
  47724. extra: 1242/1096,
  47725. bottom: 98/1340
  47726. }
  47727. },
  47728. dressed: {
  47729. height: math.unit(6, "feet"),
  47730. weight: math.unit(150, "lb"),
  47731. name: "Dressed",
  47732. image: {
  47733. source: "./media/characters/shavon/dressed.svg",
  47734. extra: 1242/1096,
  47735. bottom: 98/1340
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Macro",
  47742. height: math.unit(255, "feet"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(6, "feet"),
  47752. name: "Front",
  47753. image: {
  47754. source: "./media/characters/steph/front.svg",
  47755. extra: 1430/1330,
  47756. bottom: 54/1484
  47757. }
  47758. },
  47759. },
  47760. [
  47761. {
  47762. name: "Normal",
  47763. height: math.unit(6, "feet"),
  47764. default: true
  47765. },
  47766. ]
  47767. ))
  47768. characterMakers.push(() => makeCharacter(
  47769. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47770. {
  47771. front: {
  47772. height: math.unit(9, "feet"),
  47773. weight: math.unit(400, "lb"),
  47774. name: "Front",
  47775. image: {
  47776. source: "./media/characters/kil'aman/front.svg",
  47777. extra: 1210/1159,
  47778. bottom: 109/1319
  47779. }
  47780. },
  47781. head: {
  47782. height: math.unit(2.14, "feet"),
  47783. name: "Head",
  47784. image: {
  47785. source: "./media/characters/kil'aman/head.svg"
  47786. }
  47787. },
  47788. maw: {
  47789. height: math.unit(1.21, "feet"),
  47790. name: "Maw",
  47791. image: {
  47792. source: "./media/characters/kil'aman/maw.svg"
  47793. }
  47794. },
  47795. foot: {
  47796. height: math.unit(1.7, "feet"),
  47797. name: "Foot",
  47798. image: {
  47799. source: "./media/characters/kil'aman/foot.svg"
  47800. }
  47801. },
  47802. dick: {
  47803. height: math.unit(2.1, "feet"),
  47804. name: "Dick",
  47805. image: {
  47806. source: "./media/characters/kil'aman/dick.svg"
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Normal",
  47813. height: math.unit(9, "feet")
  47814. },
  47815. {
  47816. name: "Canon Height",
  47817. height: math.unit(10, "miles"),
  47818. default: true
  47819. },
  47820. {
  47821. name: "Maximum",
  47822. height: math.unit(6e9, "miles")
  47823. },
  47824. ]
  47825. ))
  47826. characterMakers.push(() => makeCharacter(
  47827. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47828. {
  47829. front: {
  47830. height: math.unit(90, "feet"),
  47831. weight: math.unit(675000, "lb"),
  47832. name: "Front",
  47833. image: {
  47834. source: "./media/characters/qadan/front.svg",
  47835. extra: 1012/1004,
  47836. bottom: 78/1090
  47837. }
  47838. },
  47839. back: {
  47840. height: math.unit(90, "feet"),
  47841. weight: math.unit(675000, "lb"),
  47842. name: "Back",
  47843. image: {
  47844. source: "./media/characters/qadan/back.svg",
  47845. extra: 1042/1031,
  47846. bottom: 55/1097
  47847. }
  47848. },
  47849. armored: {
  47850. height: math.unit(90, "feet"),
  47851. weight: math.unit(675000, "lb"),
  47852. name: "Armored",
  47853. image: {
  47854. source: "./media/characters/qadan/armored.svg",
  47855. extra: 1047/1037,
  47856. bottom: 48/1095
  47857. }
  47858. },
  47859. },
  47860. [
  47861. {
  47862. name: "Normal",
  47863. height: math.unit(90, "feet"),
  47864. default: true
  47865. },
  47866. ]
  47867. ))
  47868. characterMakers.push(() => makeCharacter(
  47869. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47870. {
  47871. front: {
  47872. height: math.unit(6, "feet"),
  47873. weight: math.unit(225, "lb"),
  47874. name: "Front",
  47875. image: {
  47876. source: "./media/characters/brooke/front.svg",
  47877. extra: 1050/1010,
  47878. bottom: 66/1116
  47879. }
  47880. },
  47881. back: {
  47882. height: math.unit(6, "feet"),
  47883. weight: math.unit(225, "lb"),
  47884. name: "Back",
  47885. image: {
  47886. source: "./media/characters/brooke/back.svg",
  47887. extra: 1053/1013,
  47888. bottom: 41/1094
  47889. }
  47890. },
  47891. dressed: {
  47892. height: math.unit(6, "feet"),
  47893. weight: math.unit(225, "lb"),
  47894. name: "Dressed",
  47895. image: {
  47896. source: "./media/characters/brooke/dressed.svg",
  47897. extra: 1050/1010,
  47898. bottom: 66/1116
  47899. }
  47900. },
  47901. },
  47902. [
  47903. {
  47904. name: "Canon Height",
  47905. height: math.unit(500, "miles"),
  47906. default: true
  47907. },
  47908. ]
  47909. ))
  47910. characterMakers.push(() => makeCharacter(
  47911. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47912. {
  47913. front: {
  47914. height: math.unit(6 + 2/12, "feet"),
  47915. weight: math.unit(210, "lb"),
  47916. name: "Front",
  47917. image: {
  47918. source: "./media/characters/wubs/front.svg",
  47919. extra: 1345/1325,
  47920. bottom: 70/1415
  47921. }
  47922. },
  47923. back: {
  47924. height: math.unit(6 + 2/12, "feet"),
  47925. weight: math.unit(210, "lb"),
  47926. name: "Back",
  47927. image: {
  47928. source: "./media/characters/wubs/back.svg",
  47929. extra: 1296/1275,
  47930. bottom: 58/1354
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Normal",
  47937. height: math.unit(6 + 2/12, "feet"),
  47938. default: true
  47939. },
  47940. {
  47941. name: "Macro",
  47942. height: math.unit(1000, "feet")
  47943. },
  47944. {
  47945. name: "Megamacro",
  47946. height: math.unit(1, "mile")
  47947. },
  47948. ]
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47952. {
  47953. front: {
  47954. height: math.unit(4, "feet"),
  47955. weight: math.unit(120, "lb"),
  47956. name: "Front",
  47957. image: {
  47958. source: "./media/characters/blue/front.svg",
  47959. extra: 1636/1525,
  47960. bottom: 43/1679
  47961. }
  47962. },
  47963. back: {
  47964. height: math.unit(4, "feet"),
  47965. weight: math.unit(120, "lb"),
  47966. name: "Back",
  47967. image: {
  47968. source: "./media/characters/blue/back.svg",
  47969. extra: 1660/1560,
  47970. bottom: 57/1717
  47971. }
  47972. },
  47973. paws: {
  47974. height: math.unit(0.826, "feet"),
  47975. name: "Paws",
  47976. image: {
  47977. source: "./media/characters/blue/paws.svg"
  47978. }
  47979. },
  47980. },
  47981. [
  47982. {
  47983. name: "Micro",
  47984. height: math.unit(3, "inches")
  47985. },
  47986. {
  47987. name: "Normal",
  47988. height: math.unit(4, "feet"),
  47989. default: true
  47990. },
  47991. {
  47992. name: "Femenine Form",
  47993. height: math.unit(14, "feet")
  47994. },
  47995. {
  47996. name: "Werebat Form",
  47997. height: math.unit(18, "feet")
  47998. },
  47999. ]
  48000. ))
  48001. characterMakers.push(() => makeCharacter(
  48002. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48003. {
  48004. female: {
  48005. height: math.unit(7 + 4/12, "feet"),
  48006. weight: math.unit(243, "lb"),
  48007. name: "Female",
  48008. image: {
  48009. source: "./media/characters/kaya/female.svg",
  48010. extra: 975/898,
  48011. bottom: 34/1009
  48012. }
  48013. },
  48014. herm: {
  48015. height: math.unit(7 + 4/12, "feet"),
  48016. weight: math.unit(243, "lb"),
  48017. name: "Herm",
  48018. image: {
  48019. source: "./media/characters/kaya/herm.svg",
  48020. extra: 975/898,
  48021. bottom: 34/1009
  48022. }
  48023. },
  48024. },
  48025. [
  48026. {
  48027. name: "Normal",
  48028. height: math.unit(7 + 4/12, "feet"),
  48029. default: true
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48035. {
  48036. female: {
  48037. height: math.unit(9 + 4/12, "feet"),
  48038. weight: math.unit(398, "lb"),
  48039. name: "Female",
  48040. image: {
  48041. source: "./media/characters/kassandra/female.svg",
  48042. extra: 908/839,
  48043. bottom: 61/969
  48044. }
  48045. },
  48046. intersex: {
  48047. height: math.unit(9 + 4/12, "feet"),
  48048. weight: math.unit(398, "lb"),
  48049. name: "Intersex",
  48050. image: {
  48051. source: "./media/characters/kassandra/intersex.svg",
  48052. extra: 908/839,
  48053. bottom: 61/969
  48054. }
  48055. },
  48056. },
  48057. [
  48058. {
  48059. name: "Normal",
  48060. height: math.unit(9 + 4/12, "feet"),
  48061. default: true
  48062. },
  48063. ]
  48064. ))
  48065. characterMakers.push(() => makeCharacter(
  48066. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48067. {
  48068. front: {
  48069. height: math.unit(3, "meters"),
  48070. name: "Front",
  48071. image: {
  48072. source: "./media/characters/amy/front.svg",
  48073. extra: 1380/1343,
  48074. bottom: 70/1450
  48075. }
  48076. },
  48077. back: {
  48078. height: math.unit(3, "meters"),
  48079. name: "Back",
  48080. image: {
  48081. source: "./media/characters/amy/back.svg",
  48082. extra: 1380/1347,
  48083. bottom: 66/1446
  48084. }
  48085. },
  48086. },
  48087. [
  48088. {
  48089. name: "Normal",
  48090. height: math.unit(3, "meters"),
  48091. default: true
  48092. },
  48093. ]
  48094. ))
  48095. characterMakers.push(() => makeCharacter(
  48096. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48097. {
  48098. side: {
  48099. height: math.unit(47, "cm"),
  48100. weight: math.unit(10.8, "kg"),
  48101. name: "Side",
  48102. image: {
  48103. source: "./media/characters/alphaschakal/side.svg",
  48104. extra: 1058/568,
  48105. bottom: 62/1120
  48106. }
  48107. },
  48108. back: {
  48109. height: math.unit(78, "cm"),
  48110. weight: math.unit(10.8, "kg"),
  48111. name: "Back",
  48112. image: {
  48113. source: "./media/characters/alphaschakal/back.svg",
  48114. extra: 1102/942,
  48115. bottom: 185/1287
  48116. }
  48117. },
  48118. head: {
  48119. height: math.unit(28, "cm"),
  48120. name: "Head",
  48121. image: {
  48122. source: "./media/characters/alphaschakal/head.svg",
  48123. extra: 696/508,
  48124. bottom: 0/696
  48125. }
  48126. },
  48127. paw: {
  48128. height: math.unit(16, "cm"),
  48129. name: "Paw",
  48130. image: {
  48131. source: "./media/characters/alphaschakal/paw.svg"
  48132. }
  48133. },
  48134. },
  48135. [
  48136. {
  48137. name: "Normal",
  48138. height: math.unit(47, "cm"),
  48139. default: true
  48140. },
  48141. {
  48142. name: "Macro",
  48143. height: math.unit(340, "cm")
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(36, "earths"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/ecobyss/front.svg",
  48155. extra: 1282/1215,
  48156. bottom: 11/1293
  48157. }
  48158. },
  48159. back: {
  48160. height: math.unit(36, "earths"),
  48161. name: "Back",
  48162. image: {
  48163. source: "./media/characters/ecobyss/back.svg",
  48164. extra: 1291/1222,
  48165. bottom: 8/1299
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(36, "earths"),
  48173. default: true
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48179. {
  48180. front: {
  48181. height: math.unit(12, "feet"),
  48182. name: "Front",
  48183. image: {
  48184. source: "./media/characters/vasuk/front.svg",
  48185. extra: 1326/1207,
  48186. bottom: 64/1390
  48187. }
  48188. },
  48189. },
  48190. [
  48191. {
  48192. name: "Normal",
  48193. height: math.unit(12, "feet"),
  48194. default: true
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48200. {
  48201. side: {
  48202. height: math.unit(100, "feet"),
  48203. name: "Side",
  48204. image: {
  48205. source: "./media/characters/linneaus/side.svg",
  48206. extra: 987/807,
  48207. bottom: 47/1034
  48208. }
  48209. },
  48210. },
  48211. [
  48212. {
  48213. name: "Macro",
  48214. height: math.unit(100, "feet"),
  48215. default: true
  48216. },
  48217. ]
  48218. ))
  48219. characterMakers.push(() => makeCharacter(
  48220. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48221. {
  48222. front: {
  48223. height: math.unit(8, "feet"),
  48224. weight: math.unit(1200, "lb"),
  48225. name: "Front",
  48226. image: {
  48227. source: "./media/characters/nyterious-daligdig/front.svg",
  48228. extra: 1284/1094,
  48229. bottom: 84/1368
  48230. }
  48231. },
  48232. back: {
  48233. height: math.unit(8, "feet"),
  48234. weight: math.unit(1200, "lb"),
  48235. name: "Back",
  48236. image: {
  48237. source: "./media/characters/nyterious-daligdig/back.svg",
  48238. extra: 1301/1121,
  48239. bottom: 129/1430
  48240. }
  48241. },
  48242. mouth: {
  48243. height: math.unit(1.464, "feet"),
  48244. name: "Mouth",
  48245. image: {
  48246. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Small",
  48253. height: math.unit(8, "feet"),
  48254. default: true
  48255. },
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(15, "feet")
  48259. },
  48260. {
  48261. name: "Macro",
  48262. height: math.unit(90, "feet")
  48263. },
  48264. ]
  48265. ))
  48266. characterMakers.push(() => makeCharacter(
  48267. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48268. {
  48269. front: {
  48270. height: math.unit(7 + 4/12, "feet"),
  48271. weight: math.unit(252, "lb"),
  48272. name: "Front",
  48273. image: {
  48274. source: "./media/characters/bandel/front.svg",
  48275. extra: 1946/1775,
  48276. bottom: 26/1972
  48277. }
  48278. },
  48279. back: {
  48280. height: math.unit(7 + 4/12, "feet"),
  48281. weight: math.unit(252, "lb"),
  48282. name: "Back",
  48283. image: {
  48284. source: "./media/characters/bandel/back.svg",
  48285. extra: 1940/1770,
  48286. bottom: 25/1965
  48287. }
  48288. },
  48289. maw: {
  48290. height: math.unit(2.15, "feet"),
  48291. name: "Maw",
  48292. image: {
  48293. source: "./media/characters/bandel/maw.svg"
  48294. }
  48295. },
  48296. stomach: {
  48297. height: math.unit(1.95, "feet"),
  48298. name: "Stomach",
  48299. image: {
  48300. source: "./media/characters/bandel/stomach.svg"
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(7 + 4/12, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(10 + 5/12, "feet"),
  48317. weight: math.unit(773.5, "kg"),
  48318. name: "Front",
  48319. image: {
  48320. source: "./media/characters/zed/front.svg",
  48321. extra: 987/941,
  48322. bottom: 52/1039
  48323. }
  48324. },
  48325. },
  48326. [
  48327. {
  48328. name: "Short",
  48329. height: math.unit(5 + 4/12, "feet")
  48330. },
  48331. {
  48332. name: "Average",
  48333. height: math.unit(10 + 5/12, "feet"),
  48334. default: true
  48335. },
  48336. {
  48337. name: "Mini-Macro",
  48338. height: math.unit(24 + 9/12, "feet")
  48339. },
  48340. {
  48341. name: "Macro",
  48342. height: math.unit(249, "feet")
  48343. },
  48344. {
  48345. name: "Mega-Macro",
  48346. height: math.unit(12490, "feet")
  48347. },
  48348. {
  48349. name: "Giga-Macro",
  48350. height: math.unit(24.9, "miles")
  48351. },
  48352. {
  48353. name: "Tera-Macro",
  48354. height: math.unit(24900, "miles")
  48355. },
  48356. {
  48357. name: "Cosmic Scale",
  48358. height: math.unit(38.9, "lightyears")
  48359. },
  48360. {
  48361. name: "Universal Scale",
  48362. height: math.unit(138e12, "lightyears")
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48368. {
  48369. front: {
  48370. height: math.unit(1561, "inches"),
  48371. name: "Front",
  48372. image: {
  48373. source: "./media/characters/ivan/front.svg",
  48374. extra: 1126/1071,
  48375. bottom: 26/1152
  48376. }
  48377. },
  48378. back: {
  48379. height: math.unit(1561, "inches"),
  48380. name: "Back",
  48381. image: {
  48382. source: "./media/characters/ivan/back.svg",
  48383. extra: 1134/1079,
  48384. bottom: 30/1164
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(1561, "inches"),
  48392. default: true
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48398. {
  48399. front: {
  48400. height: math.unit(5 + 7/12, "feet"),
  48401. weight: math.unit(150, "lb"),
  48402. name: "Front",
  48403. image: {
  48404. source: "./media/characters/robin-arctic-hare/front.svg",
  48405. extra: 1148/974,
  48406. bottom: 20/1168
  48407. }
  48408. },
  48409. },
  48410. [
  48411. {
  48412. name: "Normal",
  48413. height: math.unit(5 + 7/12, "feet"),
  48414. default: true
  48415. },
  48416. ]
  48417. ))
  48418. characterMakers.push(() => makeCharacter(
  48419. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48420. {
  48421. side: {
  48422. height: math.unit(5, "feet"),
  48423. name: "Side",
  48424. image: {
  48425. source: "./media/characters/birch/side.svg",
  48426. extra: 985/796,
  48427. bottom: 111/1096
  48428. }
  48429. },
  48430. },
  48431. [
  48432. {
  48433. name: "Normal",
  48434. height: math.unit(5, "feet"),
  48435. default: true
  48436. },
  48437. ]
  48438. ))
  48439. characterMakers.push(() => makeCharacter(
  48440. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48441. {
  48442. front: {
  48443. height: math.unit(4, "feet"),
  48444. name: "Front",
  48445. image: {
  48446. source: "./media/characters/rasp/front.svg",
  48447. extra: 561/478,
  48448. bottom: 74/635
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Normal",
  48455. height: math.unit(4, "feet"),
  48456. default: true
  48457. },
  48458. ]
  48459. ))
  48460. characterMakers.push(() => makeCharacter(
  48461. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48462. {
  48463. front: {
  48464. height: math.unit(4 + 6/12, "feet"),
  48465. name: "Front",
  48466. image: {
  48467. source: "./media/characters/agatha/front.svg",
  48468. extra: 947/933,
  48469. bottom: 42/989
  48470. }
  48471. },
  48472. back: {
  48473. height: math.unit(4 + 6/12, "feet"),
  48474. name: "Back",
  48475. image: {
  48476. source: "./media/characters/agatha/back.svg",
  48477. extra: 935/922,
  48478. bottom: 48/983
  48479. }
  48480. },
  48481. },
  48482. [
  48483. {
  48484. name: "Normal",
  48485. height: math.unit(4 + 6 /12, "feet"),
  48486. default: true
  48487. },
  48488. {
  48489. name: "Max Size",
  48490. height: math.unit(500, "feet")
  48491. },
  48492. ]
  48493. ))
  48494. characterMakers.push(() => makeCharacter(
  48495. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48496. {
  48497. side: {
  48498. height: math.unit(30, "feet"),
  48499. name: "Side",
  48500. image: {
  48501. source: "./media/characters/roggy/side.svg",
  48502. extra: 909/643,
  48503. bottom: 63/972
  48504. }
  48505. },
  48506. lounging: {
  48507. height: math.unit(20, "feet"),
  48508. name: "Lounging",
  48509. image: {
  48510. source: "./media/characters/roggy/lounging.svg",
  48511. extra: 643/479,
  48512. bottom: 145/788
  48513. }
  48514. },
  48515. handpaw: {
  48516. height: math.unit(13.1, "feet"),
  48517. name: "Handpaw",
  48518. image: {
  48519. source: "./media/characters/roggy/handpaw.svg"
  48520. }
  48521. },
  48522. footpaw: {
  48523. height: math.unit(15.8, "feet"),
  48524. name: "Footpaw",
  48525. image: {
  48526. source: "./media/characters/roggy/footpaw.svg"
  48527. }
  48528. },
  48529. },
  48530. [
  48531. {
  48532. name: "Menacing",
  48533. height: math.unit(30, "feet"),
  48534. default: true
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(5 + 7/12, "feet"),
  48543. weight: math.unit(135, "lb"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/naomi/front.svg",
  48547. extra: 1209/1154,
  48548. bottom: 129/1338
  48549. }
  48550. },
  48551. back: {
  48552. height: math.unit(5 + 7/12, "feet"),
  48553. weight: math.unit(135, "lb"),
  48554. name: "Back",
  48555. image: {
  48556. source: "./media/characters/naomi/back.svg",
  48557. extra: 1252/1190,
  48558. bottom: 23/1275
  48559. }
  48560. },
  48561. },
  48562. [
  48563. {
  48564. name: "Normal",
  48565. height: math.unit(5 + 7 /12, "feet"),
  48566. default: true
  48567. },
  48568. ]
  48569. ))
  48570. characterMakers.push(() => makeCharacter(
  48571. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48572. {
  48573. side: {
  48574. height: math.unit(35, "meters"),
  48575. name: "Side",
  48576. image: {
  48577. source: "./media/characters/kimpi/side.svg",
  48578. extra: 419/382,
  48579. bottom: 63/482
  48580. }
  48581. },
  48582. hand: {
  48583. height: math.unit(8.96, "meters"),
  48584. name: "Hand",
  48585. image: {
  48586. source: "./media/characters/kimpi/hand.svg"
  48587. }
  48588. },
  48589. },
  48590. [
  48591. {
  48592. name: "Normal",
  48593. height: math.unit(35, "meters"),
  48594. default: true
  48595. },
  48596. ]
  48597. ))
  48598. characterMakers.push(() => makeCharacter(
  48599. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48600. {
  48601. front: {
  48602. height: math.unit(4 + 4/12, "feet"),
  48603. name: "Front",
  48604. image: {
  48605. source: "./media/characters/pepper-purrloin/front.svg",
  48606. extra: 1141/1024,
  48607. bottom: 21/1162
  48608. }
  48609. },
  48610. },
  48611. [
  48612. {
  48613. name: "Normal",
  48614. height: math.unit(4 + 4/12, "feet"),
  48615. default: true
  48616. },
  48617. ]
  48618. ))
  48619. characterMakers.push(() => makeCharacter(
  48620. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48621. {
  48622. front: {
  48623. height: math.unit(6 + 2/12, "feet"),
  48624. name: "Front",
  48625. image: {
  48626. source: "./media/characters/raphael/front.svg",
  48627. extra: 1101/962,
  48628. bottom: 59/1160
  48629. }
  48630. },
  48631. },
  48632. [
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(6 + 2/12, "feet"),
  48636. default: true
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(6, "feet"),
  48645. weight: math.unit(150, "lb"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/victor-williams/front.svg",
  48649. extra: 1894/1825,
  48650. bottom: 67/1961
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(6, "feet"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48664. {
  48665. front: {
  48666. height: math.unit(5 + 8/12, "feet"),
  48667. weight: math.unit(150, "lb"),
  48668. name: "Front",
  48669. image: {
  48670. source: "./media/characters/rachel/front.svg",
  48671. extra: 1902/1787,
  48672. bottom: 46/1948
  48673. }
  48674. },
  48675. },
  48676. [
  48677. {
  48678. name: "Base Height",
  48679. height: math.unit(5 + 8/12, "feet"),
  48680. default: true
  48681. },
  48682. {
  48683. name: "Macro",
  48684. height: math.unit(200, "feet")
  48685. },
  48686. {
  48687. name: "Mega Macro",
  48688. height: math.unit(1, "mile")
  48689. },
  48690. {
  48691. name: "Giga Macro",
  48692. height: math.unit(1500, "miles")
  48693. },
  48694. {
  48695. name: "Tera Macro",
  48696. height: math.unit(8000, "miles")
  48697. },
  48698. {
  48699. name: "Tera Macro+",
  48700. height: math.unit(2e5, "miles")
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48706. {
  48707. front: {
  48708. height: math.unit(6.5, "feet"),
  48709. name: "Front",
  48710. image: {
  48711. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48712. extra: 860/819,
  48713. bottom: 307/1167
  48714. }
  48715. },
  48716. back: {
  48717. height: math.unit(6.5, "feet"),
  48718. name: "Back",
  48719. image: {
  48720. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48721. extra: 880/837,
  48722. bottom: 395/1275
  48723. }
  48724. },
  48725. sleeping: {
  48726. height: math.unit(2.79, "feet"),
  48727. name: "Sleeping",
  48728. image: {
  48729. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48730. extra: 465/383,
  48731. bottom: 263/728
  48732. }
  48733. },
  48734. maw: {
  48735. height: math.unit(2.52, "feet"),
  48736. name: "Maw",
  48737. image: {
  48738. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48739. }
  48740. },
  48741. },
  48742. [
  48743. {
  48744. name: "Normal",
  48745. height: math.unit(6.5, "feet"),
  48746. default: true
  48747. },
  48748. ]
  48749. ))
  48750. characterMakers.push(() => makeCharacter(
  48751. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48752. {
  48753. front: {
  48754. height: math.unit(5, "feet"),
  48755. name: "Front",
  48756. image: {
  48757. source: "./media/characters/nova-nerium/front.svg",
  48758. extra: 1548/1392,
  48759. bottom: 374/1922
  48760. }
  48761. },
  48762. back: {
  48763. height: math.unit(5, "feet"),
  48764. name: "Back",
  48765. image: {
  48766. source: "./media/characters/nova-nerium/back.svg",
  48767. extra: 1658/1468,
  48768. bottom: 257/1915
  48769. }
  48770. },
  48771. },
  48772. [
  48773. {
  48774. name: "Normal",
  48775. height: math.unit(5, "feet"),
  48776. default: true
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(5 + 4/12, "feet"),
  48785. name: "Front",
  48786. image: {
  48787. source: "./media/characters/ashe-pyriph/front.svg",
  48788. extra: 1935/1747,
  48789. bottom: 60/1995
  48790. }
  48791. },
  48792. },
  48793. [
  48794. {
  48795. name: "Normal",
  48796. height: math.unit(5 + 4/12, "feet"),
  48797. default: true
  48798. },
  48799. ]
  48800. ))
  48801. characterMakers.push(() => makeCharacter(
  48802. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48803. {
  48804. front: {
  48805. height: math.unit(8.7, "feet"),
  48806. name: "Front",
  48807. image: {
  48808. source: "./media/characters/flicker-wisp/front.svg",
  48809. extra: 1835/1613,
  48810. bottom: 449/2284
  48811. }
  48812. },
  48813. side: {
  48814. height: math.unit(8.7, "feet"),
  48815. name: "Side",
  48816. image: {
  48817. source: "./media/characters/flicker-wisp/side.svg",
  48818. extra: 1841/1642,
  48819. bottom: 336/2177
  48820. },
  48821. default: true
  48822. },
  48823. maw: {
  48824. height: math.unit(3.35, "feet"),
  48825. name: "Maw",
  48826. image: {
  48827. source: "./media/characters/flicker-wisp/maw.svg",
  48828. extra: 2338/1506,
  48829. bottom: 0/2338
  48830. }
  48831. },
  48832. ovipositor: {
  48833. height: math.unit(4.95, "feet"),
  48834. name: "Ovipositor",
  48835. image: {
  48836. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48837. }
  48838. },
  48839. egg: {
  48840. height: math.unit(0.385, "feet"),
  48841. weight: math.unit(2, "lb"),
  48842. name: "Egg",
  48843. image: {
  48844. source: "./media/characters/flicker-wisp/egg.svg"
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Normal",
  48851. height: math.unit(8.7, "feet"),
  48852. default: true
  48853. },
  48854. ]
  48855. ))
  48856. characterMakers.push(() => makeCharacter(
  48857. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48858. {
  48859. side: {
  48860. height: math.unit(11, "feet"),
  48861. name: "Side",
  48862. image: {
  48863. source: "./media/characters/faefnul/side.svg",
  48864. extra: 1100/1007,
  48865. bottom: 0/1100
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(11, "feet"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(6 + 2/12, "feet"),
  48882. name: "Front",
  48883. image: {
  48884. source: "./media/characters/shady/front.svg",
  48885. extra: 502/461,
  48886. bottom: 9/511
  48887. }
  48888. },
  48889. kneeling: {
  48890. height: math.unit(4.6, "feet"),
  48891. name: "Kneeling",
  48892. image: {
  48893. source: "./media/characters/shady/kneeling.svg",
  48894. extra: 1328/1219,
  48895. bottom: 117/1445
  48896. }
  48897. },
  48898. maw: {
  48899. height: math.unit(2, "feet"),
  48900. name: "Maw",
  48901. image: {
  48902. source: "./media/characters/shady/maw.svg"
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Nano",
  48909. height: math.unit(1, "mm")
  48910. },
  48911. {
  48912. name: "Micro",
  48913. height: math.unit(12, "mm")
  48914. },
  48915. {
  48916. name: "Tiny",
  48917. height: math.unit(3, "inches")
  48918. },
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(6 + 2/12, "feet"),
  48922. default: true
  48923. },
  48924. {
  48925. name: "Big",
  48926. height: math.unit(15, "feet")
  48927. },
  48928. {
  48929. name: "Macro",
  48930. height: math.unit(150, "feet")
  48931. },
  48932. {
  48933. name: "Titanic",
  48934. height: math.unit(500, "feet")
  48935. },
  48936. ]
  48937. ))
  48938. characterMakers.push(() => makeCharacter(
  48939. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48940. {
  48941. front: {
  48942. height: math.unit(12, "feet"),
  48943. name: "Front",
  48944. image: {
  48945. source: "./media/characters/fenrir/front.svg",
  48946. extra: 968/875,
  48947. bottom: 22/990
  48948. }
  48949. },
  48950. },
  48951. [
  48952. {
  48953. name: "Big",
  48954. height: math.unit(12, "feet"),
  48955. default: true
  48956. },
  48957. ]
  48958. ))
  48959. characterMakers.push(() => makeCharacter(
  48960. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48961. {
  48962. front: {
  48963. height: math.unit(5 + 4/12, "feet"),
  48964. name: "Front",
  48965. image: {
  48966. source: "./media/characters/makar/front.svg",
  48967. extra: 1181/1112,
  48968. bottom: 78/1259
  48969. }
  48970. },
  48971. },
  48972. [
  48973. {
  48974. name: "Normal",
  48975. height: math.unit(5 + 4/12, "feet"),
  48976. default: true
  48977. },
  48978. ]
  48979. ))
  48980. characterMakers.push(() => makeCharacter(
  48981. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48982. {
  48983. front: {
  48984. height: math.unit(5 + 7/12, "feet"),
  48985. name: "Front",
  48986. image: {
  48987. source: "./media/characters/callow/front.svg",
  48988. extra: 1482/1304,
  48989. bottom: 23/1505
  48990. }
  48991. },
  48992. back: {
  48993. height: math.unit(5 + 7/12, "feet"),
  48994. name: "Back",
  48995. image: {
  48996. source: "./media/characters/callow/back.svg",
  48997. extra: 1484/1296,
  48998. bottom: 25/1509
  48999. }
  49000. },
  49001. },
  49002. [
  49003. {
  49004. name: "Micro",
  49005. height: math.unit(3, "inches"),
  49006. default: true
  49007. },
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(5 + 7/12, "feet")
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(6 + 2/12, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/natel/front.svg",
  49022. extra: 1833/1692,
  49023. bottom: 166/1999
  49024. }
  49025. },
  49026. },
  49027. [
  49028. {
  49029. name: "Normal",
  49030. height: math.unit(6 + 2/12, "feet"),
  49031. default: true
  49032. },
  49033. ]
  49034. ))
  49035. characterMakers.push(() => makeCharacter(
  49036. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49037. {
  49038. front: {
  49039. height: math.unit(1.75, "meters"),
  49040. name: "Front",
  49041. image: {
  49042. source: "./media/characters/misu/front.svg",
  49043. extra: 1690/1558,
  49044. bottom: 234/1924
  49045. }
  49046. },
  49047. back: {
  49048. height: math.unit(1.75, "meters"),
  49049. name: "Back",
  49050. image: {
  49051. source: "./media/characters/misu/back.svg",
  49052. extra: 1762/1618,
  49053. bottom: 146/1908
  49054. }
  49055. },
  49056. frontNude: {
  49057. height: math.unit(1.75, "meters"),
  49058. name: "Front (Nude)",
  49059. image: {
  49060. source: "./media/characters/misu/front-nude.svg",
  49061. extra: 1690/1558,
  49062. bottom: 234/1924
  49063. }
  49064. },
  49065. backNude: {
  49066. height: math.unit(1.75, "meters"),
  49067. name: "Back (Nude)",
  49068. image: {
  49069. source: "./media/characters/misu/back-nude.svg",
  49070. extra: 1762/1618,
  49071. bottom: 146/1908
  49072. }
  49073. },
  49074. frontErect: {
  49075. height: math.unit(1.75, "meters"),
  49076. name: "Front (Erect)",
  49077. image: {
  49078. source: "./media/characters/misu/front-erect.svg",
  49079. extra: 1690/1558,
  49080. bottom: 234/1924
  49081. }
  49082. },
  49083. maw: {
  49084. height: math.unit(0.47, "meters"),
  49085. name: "Maw",
  49086. image: {
  49087. source: "./media/characters/misu/maw.svg"
  49088. }
  49089. },
  49090. head: {
  49091. height: math.unit(0.35, "meters"),
  49092. name: "Head",
  49093. image: {
  49094. source: "./media/characters/misu/head.svg"
  49095. }
  49096. },
  49097. rear: {
  49098. height: math.unit(0.47, "meters"),
  49099. name: "Rear",
  49100. image: {
  49101. source: "./media/characters/misu/rear.svg"
  49102. }
  49103. },
  49104. },
  49105. [
  49106. {
  49107. name: "Normal",
  49108. height: math.unit(1.75, "meters")
  49109. },
  49110. {
  49111. name: "Not good for the people",
  49112. height: math.unit(42, "meters")
  49113. },
  49114. {
  49115. name: "Not good for the neighborhood",
  49116. height: math.unit(135, "meters")
  49117. },
  49118. {
  49119. name: "Bit bigger problem",
  49120. height: math.unit(380, "meters"),
  49121. default: true
  49122. },
  49123. {
  49124. name: "Not good for the city",
  49125. height: math.unit(1.5, "km")
  49126. },
  49127. {
  49128. name: "Not good for the county",
  49129. height: math.unit(5.5, "km")
  49130. },
  49131. {
  49132. name: "Not good for the state",
  49133. height: math.unit(25, "km")
  49134. },
  49135. {
  49136. name: "Not good for the country",
  49137. height: math.unit(125, "km")
  49138. },
  49139. {
  49140. name: "Not good for the continent",
  49141. height: math.unit(2100, "km")
  49142. },
  49143. {
  49144. name: "Not good for the planet",
  49145. height: math.unit(35000, "km")
  49146. },
  49147. {
  49148. name: "Just no",
  49149. height: math.unit(8.5e18, "km")
  49150. },
  49151. ]
  49152. ))
  49153. characterMakers.push(() => makeCharacter(
  49154. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49155. {
  49156. front: {
  49157. height: math.unit(6.5, "feet"),
  49158. name: "Front",
  49159. image: {
  49160. source: "./media/characters/poppy/front.svg",
  49161. extra: 1878/1812,
  49162. bottom: 43/1921
  49163. }
  49164. },
  49165. feet: {
  49166. height: math.unit(1.06, "feet"),
  49167. name: "Feet",
  49168. image: {
  49169. source: "./media/characters/poppy/feet.svg",
  49170. extra: 1083/1083,
  49171. bottom: 87/1170
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Human",
  49178. height: math.unit(6.5, "feet")
  49179. },
  49180. {
  49181. name: "Default",
  49182. height: math.unit(300, "feet"),
  49183. default: true
  49184. },
  49185. {
  49186. name: "Huge",
  49187. height: math.unit(850, "feet")
  49188. },
  49189. {
  49190. name: "Mega",
  49191. height: math.unit(8000, "feet")
  49192. },
  49193. {
  49194. name: "Giga",
  49195. height: math.unit(300, "miles")
  49196. },
  49197. ]
  49198. ))
  49199. characterMakers.push(() => makeCharacter(
  49200. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49201. {
  49202. bipedal: {
  49203. height: math.unit(7, "feet"),
  49204. name: "Bipedal",
  49205. image: {
  49206. source: "./media/characters/zener/bipedal.svg",
  49207. extra: 874/805,
  49208. bottom: 109/983
  49209. }
  49210. },
  49211. quadrupedal: {
  49212. height: math.unit(4.64, "feet"),
  49213. name: "Quadrupedal",
  49214. image: {
  49215. source: "./media/characters/zener/quadrupedal.svg",
  49216. extra: 638/507,
  49217. bottom: 190/828
  49218. }
  49219. },
  49220. cock: {
  49221. height: math.unit(18, "inches"),
  49222. name: "Cock",
  49223. image: {
  49224. source: "./media/characters/zener/cock.svg"
  49225. }
  49226. },
  49227. },
  49228. [
  49229. {
  49230. name: "Normal",
  49231. height: math.unit(7, "feet"),
  49232. default: true
  49233. },
  49234. ]
  49235. ))
  49236. characterMakers.push(() => makeCharacter(
  49237. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49238. {
  49239. nude: {
  49240. height: math.unit(5 + 6/12, "feet"),
  49241. name: "Nude",
  49242. image: {
  49243. source: "./media/characters/charlie-dog/nude.svg",
  49244. extra: 768/734,
  49245. bottom: 26/794
  49246. }
  49247. },
  49248. dressed: {
  49249. height: math.unit(5 + 6/12, "feet"),
  49250. name: "Dressed",
  49251. image: {
  49252. source: "./media/characters/charlie-dog/dressed.svg",
  49253. extra: 768/734,
  49254. bottom: 26/794
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(5 + 6/12, "feet"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. characterMakers.push(() => makeCharacter(
  49267. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49268. {
  49269. front: {
  49270. height: math.unit(6 + 4/12, "feet"),
  49271. name: "Front",
  49272. image: {
  49273. source: "./media/characters/ir'istrasz/front.svg",
  49274. extra: 1014/977,
  49275. bottom: 65/1079
  49276. }
  49277. },
  49278. back: {
  49279. height: math.unit(6 + 4/12, "feet"),
  49280. name: "Back",
  49281. image: {
  49282. source: "./media/characters/ir'istrasz/back.svg",
  49283. extra: 1024/992,
  49284. bottom: 34/1058
  49285. }
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Normal",
  49291. height: math.unit(6 + 4/12, "feet"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49298. {
  49299. front: {
  49300. height: math.unit(5 + 8/12, "feet"),
  49301. name: "Front",
  49302. image: {
  49303. source: "./media/characters/dee-ditto/front.svg",
  49304. extra: 1874/1785,
  49305. bottom: 68/1942
  49306. }
  49307. },
  49308. back: {
  49309. height: math.unit(5 + 8/12, "feet"),
  49310. name: "Back",
  49311. image: {
  49312. source: "./media/characters/dee-ditto/back.svg",
  49313. extra: 1870/1783,
  49314. bottom: 77/1947
  49315. }
  49316. },
  49317. },
  49318. [
  49319. {
  49320. name: "Normal",
  49321. height: math.unit(5 + 8/12, "feet"),
  49322. default: true
  49323. },
  49324. ]
  49325. ))
  49326. characterMakers.push(() => makeCharacter(
  49327. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49328. {
  49329. front: {
  49330. height: math.unit(7 + 6/12, "feet"),
  49331. name: "Front",
  49332. image: {
  49333. source: "./media/characters/fey/front.svg",
  49334. extra: 995/979,
  49335. bottom: 30/1025
  49336. }
  49337. },
  49338. back: {
  49339. height: math.unit(7 + 6/12, "feet"),
  49340. name: "Back",
  49341. image: {
  49342. source: "./media/characters/fey/back.svg",
  49343. extra: 1079/1008,
  49344. bottom: 5/1084
  49345. }
  49346. },
  49347. dressed: {
  49348. height: math.unit(7 + 6/12, "feet"),
  49349. name: "Dressed",
  49350. image: {
  49351. source: "./media/characters/fey/dressed.svg",
  49352. extra: 995/979,
  49353. bottom: 30/1025
  49354. }
  49355. },
  49356. },
  49357. [
  49358. {
  49359. name: "Normal",
  49360. height: math.unit(7 + 6/12, "feet"),
  49361. default: true
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49367. {
  49368. standing: {
  49369. height: math.unit(17, "feet"),
  49370. name: "Standing",
  49371. image: {
  49372. source: "./media/characters/aster/standing.svg",
  49373. extra: 1798/1598,
  49374. bottom: 117/1915
  49375. }
  49376. },
  49377. },
  49378. [
  49379. {
  49380. name: "Normal",
  49381. height: math.unit(17, "feet"),
  49382. default: true
  49383. },
  49384. {
  49385. name: "Homewrecker",
  49386. height: math.unit(95, "feet")
  49387. },
  49388. {
  49389. name: "Planet Devourer",
  49390. height: math.unit(1008000, "miles")
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(6 + 5/12, "feet"),
  49399. weight: math.unit(265, "lb"),
  49400. name: "Front",
  49401. image: {
  49402. source: "./media/characters/devon-childs/front.svg",
  49403. extra: 1795/1721,
  49404. bottom: 41/1836
  49405. }
  49406. },
  49407. side: {
  49408. height: math.unit(6 + 5/12, "feet"),
  49409. weight: math.unit(265, "lb"),
  49410. name: "Side",
  49411. image: {
  49412. source: "./media/characters/devon-childs/side.svg",
  49413. extra: 1812/1738,
  49414. bottom: 30/1842
  49415. }
  49416. },
  49417. back: {
  49418. height: math.unit(6 + 5/12, "feet"),
  49419. weight: math.unit(265, "lb"),
  49420. name: "Back",
  49421. image: {
  49422. source: "./media/characters/devon-childs/back.svg",
  49423. extra: 1808/1735,
  49424. bottom: 23/1831
  49425. }
  49426. },
  49427. hand: {
  49428. height: math.unit(1.464, "feet"),
  49429. name: "Hand",
  49430. image: {
  49431. source: "./media/characters/devon-childs/hand.svg"
  49432. }
  49433. },
  49434. foot: {
  49435. height: math.unit(1.6, "feet"),
  49436. name: "Foot",
  49437. image: {
  49438. source: "./media/characters/devon-childs/foot.svg"
  49439. }
  49440. },
  49441. },
  49442. [
  49443. {
  49444. name: "Micro",
  49445. height: math.unit(7, "cm")
  49446. },
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(6 + 5/12, "feet"),
  49450. default: true
  49451. },
  49452. {
  49453. name: "Macro",
  49454. height: math.unit(154, "feet")
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(6, "feet"),
  49463. weight: math.unit(180, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/lydemox-vir/front.svg",
  49467. extra: 1632/1435,
  49468. bottom: 58/1690
  49469. }
  49470. },
  49471. frontSFW: {
  49472. height: math.unit(6, "feet"),
  49473. weight: math.unit(180, "lb"),
  49474. name: "Front (SFW)",
  49475. image: {
  49476. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49477. extra: 1632/1435,
  49478. bottom: 58/1690
  49479. }
  49480. },
  49481. back: {
  49482. height: math.unit(6, "feet"),
  49483. weight: math.unit(180, "lb"),
  49484. name: "Back",
  49485. image: {
  49486. source: "./media/characters/lydemox-vir/back.svg",
  49487. extra: 1593/1408,
  49488. bottom: 31/1624
  49489. }
  49490. },
  49491. paw: {
  49492. height: math.unit(1.85, "feet"),
  49493. name: "Paw",
  49494. image: {
  49495. source: "./media/characters/lydemox-vir/paw.svg"
  49496. }
  49497. },
  49498. dick: {
  49499. height: math.unit(1.8, "feet"),
  49500. name: "Dick",
  49501. image: {
  49502. source: "./media/characters/lydemox-vir/dick.svg"
  49503. }
  49504. },
  49505. },
  49506. [
  49507. {
  49508. name: "Macro",
  49509. height: math.unit(100, "feet"),
  49510. default: true
  49511. },
  49512. {
  49513. name: "Teramacro",
  49514. height: math.unit(1, "earth")
  49515. },
  49516. {
  49517. name: "Planetary",
  49518. height: math.unit(20, "earths")
  49519. },
  49520. ]
  49521. ))
  49522. characterMakers.push(() => makeCharacter(
  49523. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49524. {
  49525. front: {
  49526. height: math.unit(15 + 8/12, "feet"),
  49527. weight: math.unit(1237, "kg"),
  49528. name: "Front",
  49529. image: {
  49530. source: "./media/characters/mia/front.svg",
  49531. extra: 1573/1446,
  49532. bottom: 58/1631
  49533. }
  49534. },
  49535. },
  49536. [
  49537. {
  49538. name: "Small",
  49539. height: math.unit(9 + 5/12, "feet")
  49540. },
  49541. {
  49542. name: "Normal",
  49543. height: math.unit(15 + 8/12, "feet"),
  49544. default: true
  49545. },
  49546. ]
  49547. ))
  49548. characterMakers.push(() => makeCharacter(
  49549. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49550. {
  49551. front: {
  49552. height: math.unit(10 + 6/12, "feet"),
  49553. weight: math.unit(1.3, "tons"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/mr-graves/front.svg",
  49557. extra: 1779/1695,
  49558. bottom: 198/1977
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(10 + 6 /12, "feet"),
  49566. default: true
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49572. {
  49573. dressedFront: {
  49574. height: math.unit(5 + 8/12, "feet"),
  49575. weight: math.unit(125, "lb"),
  49576. name: "Dressed (Front)",
  49577. image: {
  49578. source: "./media/characters/jess/dressed-front.svg",
  49579. extra: 1176/1152,
  49580. bottom: 42/1218
  49581. }
  49582. },
  49583. dressedSide: {
  49584. height: math.unit(5 + 8/12, "feet"),
  49585. weight: math.unit(125, "lb"),
  49586. name: "Dressed (Side)",
  49587. image: {
  49588. source: "./media/characters/jess/dressed-side.svg",
  49589. extra: 1204/1190,
  49590. bottom: 6/1210
  49591. }
  49592. },
  49593. nudeFront: {
  49594. height: math.unit(5 + 8/12, "feet"),
  49595. weight: math.unit(125, "lb"),
  49596. name: "Nude (Front)",
  49597. image: {
  49598. source: "./media/characters/jess/nude-front.svg",
  49599. extra: 1176/1152,
  49600. bottom: 42/1218
  49601. }
  49602. },
  49603. nudeSide: {
  49604. height: math.unit(5 + 8/12, "feet"),
  49605. weight: math.unit(125, "lb"),
  49606. name: "Nude (Side)",
  49607. image: {
  49608. source: "./media/characters/jess/nude-side.svg",
  49609. extra: 1204/1190,
  49610. bottom: 6/1210
  49611. }
  49612. },
  49613. organsFront: {
  49614. height: math.unit(2.83799342105, "feet"),
  49615. name: "Organs (Front)",
  49616. image: {
  49617. source: "./media/characters/jess/organs-front.svg"
  49618. }
  49619. },
  49620. organsSide: {
  49621. height: math.unit(2.64225290474, "feet"),
  49622. name: "Organs (Side)",
  49623. image: {
  49624. source: "./media/characters/jess/organs-side.svg"
  49625. }
  49626. },
  49627. digestiveTractFront: {
  49628. height: math.unit(2.8106580871, "feet"),
  49629. name: "Digestive Tract (Front)",
  49630. image: {
  49631. source: "./media/characters/jess/digestive-tract-front.svg"
  49632. }
  49633. },
  49634. digestiveTractSide: {
  49635. height: math.unit(2.54365045014, "feet"),
  49636. name: "Digestive Tract (Side)",
  49637. image: {
  49638. source: "./media/characters/jess/digestive-tract-side.svg"
  49639. }
  49640. },
  49641. respiratorySystemFront: {
  49642. height: math.unit(1.11196233456, "feet"),
  49643. name: "Respiratory System (Front)",
  49644. image: {
  49645. source: "./media/characters/jess/respiratory-system-front.svg"
  49646. }
  49647. },
  49648. respiratorySystemSide: {
  49649. height: math.unit(0.89327966297, "feet"),
  49650. name: "Respiratory System (Side)",
  49651. image: {
  49652. source: "./media/characters/jess/respiratory-system-side.svg"
  49653. }
  49654. },
  49655. urinaryTractFront: {
  49656. height: math.unit(1.16126356186, "feet"),
  49657. name: "Urinary Tract (Front)",
  49658. image: {
  49659. source: "./media/characters/jess/urinary-tract-front.svg"
  49660. }
  49661. },
  49662. urinaryTractSide: {
  49663. height: math.unit(1.20910039627, "feet"),
  49664. name: "Urinary Tract (Side)",
  49665. image: {
  49666. source: "./media/characters/jess/urinary-tract-side.svg"
  49667. }
  49668. },
  49669. reproductiveOrgansFront: {
  49670. height: math.unit(0.48422591566, "feet"),
  49671. name: "Reproductive Organs (Front)",
  49672. image: {
  49673. source: "./media/characters/jess/reproductive-organs-front.svg"
  49674. }
  49675. },
  49676. reproductiveOrgansSide: {
  49677. height: math.unit(0.61553314481, "feet"),
  49678. name: "Reproductive Organs (Side)",
  49679. image: {
  49680. source: "./media/characters/jess/reproductive-organs-side.svg"
  49681. }
  49682. },
  49683. breastsFront: {
  49684. height: math.unit(0.47690395121, "feet"),
  49685. name: "Breasts (Front)",
  49686. image: {
  49687. source: "./media/characters/jess/breasts-front.svg"
  49688. }
  49689. },
  49690. breastsSide: {
  49691. height: math.unit(0.30556998307, "feet"),
  49692. name: "Breasts (Side)",
  49693. image: {
  49694. source: "./media/characters/jess/breasts-side.svg"
  49695. }
  49696. },
  49697. heartFront: {
  49698. height: math.unit(0.53011022622, "feet"),
  49699. name: "Heart (Front)",
  49700. image: {
  49701. source: "./media/characters/jess/heart-front.svg"
  49702. }
  49703. },
  49704. heartSide: {
  49705. height: math.unit(0.51790695213, "feet"),
  49706. name: "Heart (Side)",
  49707. image: {
  49708. source: "./media/characters/jess/heart-side.svg"
  49709. }
  49710. },
  49711. earsAndNoseFront: {
  49712. height: math.unit(0.29385483995, "feet"),
  49713. name: "Ears and Nose (Front)",
  49714. image: {
  49715. source: "./media/characters/jess/ears-and-nose-front.svg"
  49716. }
  49717. },
  49718. earsAndNoseSide: {
  49719. height: math.unit(0.18109658741, "feet"),
  49720. name: "Ears and Nose (Side)",
  49721. image: {
  49722. source: "./media/characters/jess/ears-and-nose-side.svg"
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(5 + 8/12, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(6, "feet"),
  49739. weight: math.unit(6.64467e-7, "grams"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/wimpering/front.svg",
  49743. extra: 597/587,
  49744. bottom: 34/631
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Micro",
  49751. height: math.unit(0.4, "mm"),
  49752. default: true
  49753. },
  49754. ]
  49755. ))
  49756. characterMakers.push(() => makeCharacter(
  49757. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49758. {
  49759. front: {
  49760. height: math.unit(5 + 2/12, "feet"),
  49761. weight: math.unit(110, "lb"),
  49762. name: "Front",
  49763. image: {
  49764. source: "./media/characters/keltre/front.svg",
  49765. extra: 1099/1057,
  49766. bottom: 22/1121
  49767. }
  49768. },
  49769. back: {
  49770. height: math.unit(5 + 2/12, "feet"),
  49771. weight: math.unit(110, "lb"),
  49772. name: "Back",
  49773. image: {
  49774. source: "./media/characters/keltre/back.svg",
  49775. extra: 1095/1053,
  49776. bottom: 17/1112
  49777. }
  49778. },
  49779. dressed: {
  49780. height: math.unit(5 + 2/12, "feet"),
  49781. weight: math.unit(110, "lb"),
  49782. name: "Dressed",
  49783. image: {
  49784. source: "./media/characters/keltre/dressed.svg",
  49785. extra: 1099/1057,
  49786. bottom: 22/1121
  49787. }
  49788. },
  49789. winter: {
  49790. height: math.unit(5 + 2/12, "feet"),
  49791. weight: math.unit(110, "lb"),
  49792. name: "Winter",
  49793. image: {
  49794. source: "./media/characters/keltre/winter.svg",
  49795. extra: 1099/1057,
  49796. bottom: 22/1121
  49797. }
  49798. },
  49799. head: {
  49800. height: math.unit(1.61 * 0.86, "feet"),
  49801. name: "Head",
  49802. image: {
  49803. source: "./media/characters/keltre/head.svg",
  49804. extra: 534/421,
  49805. bottom: 0/534
  49806. }
  49807. },
  49808. hand: {
  49809. height: math.unit(1.3 * 0.86, "feet"),
  49810. name: "Hand",
  49811. image: {
  49812. source: "./media/characters/keltre/hand.svg"
  49813. }
  49814. },
  49815. foot: {
  49816. height: math.unit(1.8 * 0.86, "feet"),
  49817. name: "Foot",
  49818. image: {
  49819. source: "./media/characters/keltre/foot.svg"
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Fine",
  49826. height: math.unit(1, "inch")
  49827. },
  49828. {
  49829. name: "Dimnutive",
  49830. height: math.unit(4, "inches")
  49831. },
  49832. {
  49833. name: "Tiny",
  49834. height: math.unit(1, "foot")
  49835. },
  49836. {
  49837. name: "Small",
  49838. height: math.unit(3, "feet")
  49839. },
  49840. {
  49841. name: "Normal",
  49842. height: math.unit(5 + 2/12, "feet"),
  49843. default: true
  49844. },
  49845. ]
  49846. ))
  49847. characterMakers.push(() => makeCharacter(
  49848. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49849. {
  49850. front: {
  49851. height: math.unit(6 + 2/12, "feet"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/nox/front.svg",
  49855. extra: 1917/1830,
  49856. bottom: 74/1991
  49857. }
  49858. },
  49859. back: {
  49860. height: math.unit(6 + 2/12, "feet"),
  49861. name: "Back",
  49862. image: {
  49863. source: "./media/characters/nox/back.svg",
  49864. extra: 1896/1815,
  49865. bottom: 21/1917
  49866. }
  49867. },
  49868. head: {
  49869. height: math.unit(1.1, "feet"),
  49870. name: "Head",
  49871. image: {
  49872. source: "./media/characters/nox/head.svg",
  49873. extra: 874/704,
  49874. bottom: 0/874
  49875. }
  49876. },
  49877. tattoo: {
  49878. height: math.unit(0.729, "feet"),
  49879. name: "Tattoo",
  49880. image: {
  49881. source: "./media/characters/nox/tattoo.svg"
  49882. }
  49883. },
  49884. },
  49885. [
  49886. {
  49887. name: "Normal",
  49888. height: math.unit(6 + 2/12, "feet")
  49889. },
  49890. {
  49891. name: "Gigamacro",
  49892. height: math.unit(2, "earths"),
  49893. default: true
  49894. },
  49895. {
  49896. name: "Cosmic",
  49897. height: math.unit(867, "yottameters")
  49898. },
  49899. ]
  49900. ))
  49901. characterMakers.push(() => makeCharacter(
  49902. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49903. {
  49904. front: {
  49905. height: math.unit(6, "feet"),
  49906. weight: math.unit(150, "lb"),
  49907. name: "Front",
  49908. image: {
  49909. source: "./media/characters/caspian/front.svg",
  49910. extra: 1443/1359,
  49911. bottom: 0/1443
  49912. }
  49913. },
  49914. back: {
  49915. height: math.unit(6, "feet"),
  49916. weight: math.unit(150, "lb"),
  49917. name: "Back",
  49918. image: {
  49919. source: "./media/characters/caspian/back.svg",
  49920. extra: 1379/1309,
  49921. bottom: 0/1379
  49922. }
  49923. },
  49924. head: {
  49925. height: math.unit(0.9, "feet"),
  49926. name: "Head",
  49927. image: {
  49928. source: "./media/characters/caspian/head.svg",
  49929. extra: 692/492,
  49930. bottom: 0/692
  49931. }
  49932. },
  49933. headAlt: {
  49934. height: math.unit(0.95, "feet"),
  49935. name: "Head (Alt)",
  49936. image: {
  49937. source: "./media/characters/caspian/head-alt.svg",
  49938. extra: 668/508,
  49939. bottom: 0/668
  49940. }
  49941. },
  49942. hand: {
  49943. height: math.unit(0.8, "feet"),
  49944. name: "Hand",
  49945. image: {
  49946. source: "./media/characters/caspian/hand.svg"
  49947. }
  49948. },
  49949. paw: {
  49950. height: math.unit(0.95, "feet"),
  49951. name: "Paw",
  49952. image: {
  49953. source: "./media/characters/caspian/paw.svg"
  49954. }
  49955. },
  49956. },
  49957. [
  49958. {
  49959. name: "Normal",
  49960. height: math.unit(162, "feet"),
  49961. default: true
  49962. },
  49963. ]
  49964. ))
  49965. characterMakers.push(() => makeCharacter(
  49966. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49967. {
  49968. front: {
  49969. height: math.unit(6, "feet"),
  49970. name: "Front",
  49971. image: {
  49972. source: "./media/characters/myra-aisling/front.svg",
  49973. extra: 1268/1166,
  49974. bottom: 73/1341
  49975. }
  49976. },
  49977. back: {
  49978. height: math.unit(6, "feet"),
  49979. name: "Back",
  49980. image: {
  49981. source: "./media/characters/myra-aisling/back.svg",
  49982. extra: 1249/1149,
  49983. bottom: 79/1328
  49984. }
  49985. },
  49986. dressed: {
  49987. height: math.unit(6, "feet"),
  49988. name: "Dressed",
  49989. image: {
  49990. source: "./media/characters/myra-aisling/dressed.svg",
  49991. extra: 1290/1189,
  49992. bottom: 47/1337
  49993. }
  49994. },
  49995. hand: {
  49996. height: math.unit(1.1, "feet"),
  49997. name: "Hand",
  49998. image: {
  49999. source: "./media/characters/myra-aisling/hand.svg"
  50000. }
  50001. },
  50002. paw: {
  50003. height: math.unit(1.23, "feet"),
  50004. name: "Paw",
  50005. image: {
  50006. source: "./media/characters/myra-aisling/paw.svg"
  50007. }
  50008. },
  50009. },
  50010. [
  50011. {
  50012. name: "Normal",
  50013. height: math.unit(160, "feet"),
  50014. default: true
  50015. },
  50016. ]
  50017. ))
  50018. characterMakers.push(() => makeCharacter(
  50019. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50020. {
  50021. front: {
  50022. height: math.unit(6, "feet"),
  50023. name: "Front",
  50024. image: {
  50025. source: "./media/characters/tenley-sidero/front.svg",
  50026. extra: 1365/1276,
  50027. bottom: 47/1412
  50028. }
  50029. },
  50030. back: {
  50031. height: math.unit(6, "feet"),
  50032. name: "Back",
  50033. image: {
  50034. source: "./media/characters/tenley-sidero/back.svg",
  50035. extra: 1383/1283,
  50036. bottom: 35/1418
  50037. }
  50038. },
  50039. dressed: {
  50040. height: math.unit(6, "feet"),
  50041. name: "Dressed",
  50042. image: {
  50043. source: "./media/characters/tenley-sidero/dressed.svg",
  50044. extra: 1364/1275,
  50045. bottom: 42/1406
  50046. }
  50047. },
  50048. head: {
  50049. height: math.unit(1.47, "feet"),
  50050. name: "Head",
  50051. image: {
  50052. source: "./media/characters/tenley-sidero/head.svg",
  50053. extra: 610/490,
  50054. bottom: 0/610
  50055. }
  50056. },
  50057. },
  50058. [
  50059. {
  50060. name: "Normal",
  50061. height: math.unit(154, "feet"),
  50062. default: true
  50063. },
  50064. ]
  50065. ))
  50066. characterMakers.push(() => makeCharacter(
  50067. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50068. {
  50069. front: {
  50070. height: math.unit(5, "inches"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/mallory/front.svg",
  50074. extra: 1919/1678,
  50075. bottom: 29/1948
  50076. }
  50077. },
  50078. hand: {
  50079. height: math.unit(0.73, "inches"),
  50080. name: "Hand",
  50081. image: {
  50082. source: "./media/characters/mallory/hand.svg"
  50083. }
  50084. },
  50085. paw: {
  50086. height: math.unit(0.68, "inches"),
  50087. name: "Paw",
  50088. image: {
  50089. source: "./media/characters/mallory/paw.svg"
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Small",
  50096. height: math.unit(5, "inches"),
  50097. default: true
  50098. },
  50099. ]
  50100. ))
  50101. characterMakers.push(() => makeCharacter(
  50102. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50103. {
  50104. naked: {
  50105. height: math.unit(6, "feet"),
  50106. name: "Naked",
  50107. image: {
  50108. source: "./media/characters/mab/naked.svg",
  50109. extra: 1855/1757,
  50110. bottom: 208/2063
  50111. }
  50112. },
  50113. outside: {
  50114. height: math.unit(6, "feet"),
  50115. name: "Outside",
  50116. image: {
  50117. source: "./media/characters/mab/outside.svg",
  50118. extra: 1855/1757,
  50119. bottom: 208/2063
  50120. }
  50121. },
  50122. party: {
  50123. height: math.unit(6, "feet"),
  50124. name: "Party",
  50125. image: {
  50126. source: "./media/characters/mab/party.svg",
  50127. extra: 1855/1757,
  50128. bottom: 208/2063
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Normal",
  50135. height: math.unit(165, "feet"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50142. {
  50143. feral: {
  50144. height: math.unit(12, "feet"),
  50145. weight: math.unit(20000, "lb"),
  50146. name: "Side",
  50147. image: {
  50148. source: "./media/characters/winter/feral.svg",
  50149. extra: 1286/943,
  50150. bottom: 112/1398
  50151. },
  50152. form: "feral",
  50153. default: true
  50154. },
  50155. feralNsfw: {
  50156. height: math.unit(12, "feet"),
  50157. weight: math.unit(20000, "lb"),
  50158. name: "Side (NSFW)",
  50159. image: {
  50160. source: "./media/characters/winter/feral-nsfw.svg",
  50161. extra: 1286/943,
  50162. bottom: 112/1398
  50163. },
  50164. form: "feral"
  50165. },
  50166. dick: {
  50167. height: math.unit(3.79, "feet"),
  50168. name: "Dick",
  50169. image: {
  50170. source: "./media/characters/winter/dick.svg"
  50171. },
  50172. form: "feral"
  50173. },
  50174. anthro: {
  50175. height: math.unit(12, "feet"),
  50176. weight: math.unit(10, "tons"),
  50177. name: "Anthro",
  50178. image: {
  50179. source: "./media/characters/winter/anthro.svg",
  50180. extra: 1701/1553,
  50181. bottom: 64/1765
  50182. },
  50183. form: "anthro",
  50184. default: true
  50185. },
  50186. },
  50187. [
  50188. {
  50189. name: "Big",
  50190. height: math.unit(12, "feet"),
  50191. default: true,
  50192. form: "feral"
  50193. },
  50194. {
  50195. name: "Big",
  50196. height: math.unit(12, "feet"),
  50197. default: true,
  50198. form: "anthro"
  50199. },
  50200. ],
  50201. {
  50202. "feral": {
  50203. name: "Feral",
  50204. default: true
  50205. },
  50206. "anthro": {
  50207. name: "Anthro"
  50208. }
  50209. }
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50213. {
  50214. front: {
  50215. height: math.unit(4.1, "inches"),
  50216. name: "Front",
  50217. image: {
  50218. source: "./media/characters/alto/front.svg",
  50219. extra: 736/627,
  50220. bottom: 90/826
  50221. }
  50222. },
  50223. },
  50224. [
  50225. {
  50226. name: "Normal",
  50227. height: math.unit(4.1, "inches"),
  50228. default: true
  50229. },
  50230. ]
  50231. ))
  50232. characterMakers.push(() => makeCharacter(
  50233. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50234. {
  50235. sitting: {
  50236. height: math.unit(3, "feet"),
  50237. name: "Sitting",
  50238. image: {
  50239. source: "./media/characters/ratstrid-v/sitting.svg",
  50240. extra: 355/310,
  50241. bottom: 136/491
  50242. }
  50243. },
  50244. },
  50245. [
  50246. {
  50247. name: "Normal",
  50248. height: math.unit(3, "feet"),
  50249. default: true
  50250. },
  50251. ]
  50252. ))
  50253. characterMakers.push(() => makeCharacter(
  50254. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50255. {
  50256. back: {
  50257. height: math.unit(6, "feet"),
  50258. weight: math.unit(450, "lb"),
  50259. name: "Back",
  50260. image: {
  50261. source: "./media/characters/siz/back.svg",
  50262. extra: 1449/1274,
  50263. bottom: 13/1462
  50264. }
  50265. },
  50266. },
  50267. [
  50268. {
  50269. name: "Smallest",
  50270. height: math.unit(18 + 3/12, "feet")
  50271. },
  50272. {
  50273. name: "Modest",
  50274. height: math.unit(56 + 8/12, "feet"),
  50275. default: true
  50276. },
  50277. {
  50278. name: "Largest",
  50279. height: math.unit(3590, "feet")
  50280. },
  50281. ]
  50282. ))
  50283. characterMakers.push(() => makeCharacter(
  50284. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50285. {
  50286. front: {
  50287. height: math.unit(5 + 9/12, "feet"),
  50288. weight: math.unit(150, "lb"),
  50289. name: "Front",
  50290. image: {
  50291. source: "./media/characters/ven/front.svg",
  50292. extra: 1372/1320,
  50293. bottom: 73/1445
  50294. }
  50295. },
  50296. side: {
  50297. height: math.unit(5 + 9/12, "feet"),
  50298. weight: math.unit(1150, "lb"),
  50299. name: "Side",
  50300. image: {
  50301. source: "./media/characters/ven/side.svg",
  50302. extra: 1119/1070,
  50303. bottom: 42/1161
  50304. },
  50305. default: true
  50306. },
  50307. },
  50308. [
  50309. {
  50310. name: "Normal",
  50311. height: math.unit(5 + 9/12, "feet"),
  50312. default: true
  50313. },
  50314. ]
  50315. ))
  50316. characterMakers.push(() => makeCharacter(
  50317. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50318. {
  50319. front: {
  50320. height: math.unit(12, "feet"),
  50321. weight: math.unit(1000, "kg"),
  50322. name: "Front",
  50323. image: {
  50324. source: "./media/characters/maple/front.svg",
  50325. extra: 1193/1081,
  50326. bottom: 22/1215
  50327. }
  50328. },
  50329. },
  50330. [
  50331. {
  50332. name: "Compressed",
  50333. height: math.unit(7, "feet")
  50334. },
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(12, "feet"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50344. {
  50345. front: {
  50346. height: math.unit(9, "feet"),
  50347. weight: math.unit(1500, "lb"),
  50348. name: "Front",
  50349. image: {
  50350. source: "./media/characters/nora/front.svg",
  50351. extra: 1348/1286,
  50352. bottom: 218/1566
  50353. }
  50354. },
  50355. erect: {
  50356. height: math.unit(9, "feet"),
  50357. weight: math.unit(11500, "lb"),
  50358. name: "Erect",
  50359. image: {
  50360. source: "./media/characters/nora/erect.svg",
  50361. extra: 1488/1433,
  50362. bottom: 133/1621
  50363. }
  50364. },
  50365. },
  50366. [
  50367. {
  50368. name: "Normal",
  50369. height: math.unit(9, "feet"),
  50370. default: true
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50376. {
  50377. front: {
  50378. height: math.unit(25, "feet"),
  50379. weight: math.unit(27500, "lb"),
  50380. name: "Front",
  50381. image: {
  50382. source: "./media/characters/north-caudin/front.svg",
  50383. extra: 1184/1082,
  50384. bottom: 23/1207
  50385. }
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Compressed",
  50391. height: math.unit(10, "feet")
  50392. },
  50393. {
  50394. name: "Normal",
  50395. height: math.unit(25, "feet"),
  50396. default: true
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50402. {
  50403. front: {
  50404. height: math.unit(9, "feet"),
  50405. weight: math.unit(1250, "lb"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/merrian/front.svg",
  50409. extra: 2393/2304,
  50410. bottom: 40/2433
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(9, "feet"),
  50418. default: true
  50419. },
  50420. ]
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50424. {
  50425. front: {
  50426. height: math.unit(9, "feet"),
  50427. weight: math.unit(1000, "lb"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/hazel/front.svg",
  50431. extra: 2351/2298,
  50432. bottom: 38/2389
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(9, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(13, "feet"),
  50449. weight: math.unit(3200, "lb"),
  50450. name: "Front",
  50451. image: {
  50452. source: "./media/characters/emma/front.svg",
  50453. extra: 2263/2029,
  50454. bottom: 68/2331
  50455. }
  50456. },
  50457. },
  50458. [
  50459. {
  50460. name: "Normal",
  50461. height: math.unit(13, "feet"),
  50462. default: true
  50463. },
  50464. ]
  50465. ))
  50466. characterMakers.push(() => makeCharacter(
  50467. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50468. {
  50469. front: {
  50470. height: math.unit(11 + 9/12, "feet"),
  50471. weight: math.unit(2500, "lb"),
  50472. name: "Front",
  50473. image: {
  50474. source: "./media/characters/ilumina/front.svg",
  50475. extra: 2248/2209,
  50476. bottom: 164/2412
  50477. }
  50478. },
  50479. },
  50480. [
  50481. {
  50482. name: "Normal",
  50483. height: math.unit(11 + 9/12, "feet"),
  50484. default: true
  50485. },
  50486. ]
  50487. ))
  50488. characterMakers.push(() => makeCharacter(
  50489. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50490. {
  50491. front: {
  50492. height: math.unit(8 + 10/12, "feet"),
  50493. weight: math.unit(1350, "lb"),
  50494. name: "Front",
  50495. image: {
  50496. source: "./media/characters/moonshine/front.svg",
  50497. extra: 2395/2288,
  50498. bottom: 40/2435
  50499. }
  50500. },
  50501. },
  50502. [
  50503. {
  50504. name: "Normal",
  50505. height: math.unit(8 + 10/12, "feet"),
  50506. default: true
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(14, "feet"),
  50515. weight: math.unit(3400, "lb"),
  50516. name: "Front",
  50517. image: {
  50518. source: "./media/characters/aletia/front.svg",
  50519. extra: 1185/1052,
  50520. bottom: 21/1206
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Compressed",
  50527. height: math.unit(8, "feet")
  50528. },
  50529. {
  50530. name: "Normal",
  50531. height: math.unit(14, "feet"),
  50532. default: true
  50533. },
  50534. ]
  50535. ))
  50536. characterMakers.push(() => makeCharacter(
  50537. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50538. {
  50539. front: {
  50540. height: math.unit(17, "feet"),
  50541. weight: math.unit(6500, "lb"),
  50542. name: "Front",
  50543. image: {
  50544. source: "./media/characters/deidra/front.svg",
  50545. extra: 1201/1081,
  50546. bottom: 16/1217
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Compressed",
  50553. height: math.unit(9 + 6/12, "feet")
  50554. },
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(17, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(7 + 4/12, "feet"),
  50567. weight: math.unit(280, "lb"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/freki-yrmori/front.svg",
  50571. extra: 1286/1182,
  50572. bottom: 29/1315
  50573. }
  50574. },
  50575. maw: {
  50576. height: math.unit(0.9, "feet"),
  50577. name: "Maw",
  50578. image: {
  50579. source: "./media/characters/freki-yrmori/maw.svg"
  50580. }
  50581. },
  50582. },
  50583. [
  50584. {
  50585. name: "Normal",
  50586. height: math.unit(7 + 4/12, "feet"),
  50587. default: true
  50588. },
  50589. {
  50590. name: "Macro",
  50591. height: math.unit(38.5, "meters")
  50592. },
  50593. ]
  50594. ))
  50595. characterMakers.push(() => makeCharacter(
  50596. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50597. {
  50598. side: {
  50599. height: math.unit(47.2, "meters"),
  50600. weight: math.unit(10000, "tons"),
  50601. name: "Side",
  50602. image: {
  50603. source: "./media/characters/aetherios/side.svg",
  50604. extra: 2363/642,
  50605. bottom: 221/2584
  50606. }
  50607. },
  50608. top: {
  50609. height: math.unit(240, "meters"),
  50610. weight: math.unit(10000, "tons"),
  50611. name: "Top",
  50612. image: {
  50613. source: "./media/characters/aetherios/top.svg"
  50614. }
  50615. },
  50616. bottom: {
  50617. height: math.unit(240, "meters"),
  50618. weight: math.unit(10000, "tons"),
  50619. name: "Bottom",
  50620. image: {
  50621. source: "./media/characters/aetherios/bottom.svg"
  50622. }
  50623. },
  50624. head: {
  50625. height: math.unit(38.6, "meters"),
  50626. name: "Head",
  50627. image: {
  50628. source: "./media/characters/aetherios/head.svg",
  50629. extra: 1335/1112,
  50630. bottom: 0/1335
  50631. }
  50632. },
  50633. front: {
  50634. height: math.unit(29, "meters"),
  50635. name: "Front",
  50636. image: {
  50637. source: "./media/characters/aetherios/front.svg",
  50638. extra: 1266/953,
  50639. bottom: 158/1424
  50640. }
  50641. },
  50642. maw: {
  50643. height: math.unit(16.37, "meters"),
  50644. name: "Maw",
  50645. image: {
  50646. source: "./media/characters/aetherios/maw.svg",
  50647. extra: 748/637,
  50648. bottom: 0/748
  50649. },
  50650. extraAttributes: {
  50651. preyCapacity: {
  50652. name: "Capacity",
  50653. power: 3,
  50654. type: "volume",
  50655. base: math.unit(1000, "people")
  50656. },
  50657. tongueSize: {
  50658. name: "Tongue Size",
  50659. power: 2,
  50660. type: "area",
  50661. base: math.unit(21, "m^2")
  50662. }
  50663. }
  50664. },
  50665. forepaw: {
  50666. height: math.unit(18, "meters"),
  50667. name: "Forepaw",
  50668. image: {
  50669. source: "./media/characters/aetherios/forepaw.svg"
  50670. }
  50671. },
  50672. hindpaw: {
  50673. height: math.unit(23, "meters"),
  50674. name: "Hindpaw",
  50675. image: {
  50676. source: "./media/characters/aetherios/hindpaw.svg"
  50677. }
  50678. },
  50679. genitals: {
  50680. height: math.unit(42, "meters"),
  50681. name: "Genitals",
  50682. image: {
  50683. source: "./media/characters/aetherios/genitals.svg"
  50684. }
  50685. },
  50686. },
  50687. [
  50688. {
  50689. name: "Normal",
  50690. height: math.unit(47.2, "meters"),
  50691. default: true
  50692. },
  50693. {
  50694. name: "Macro",
  50695. height: math.unit(160, "meters")
  50696. },
  50697. {
  50698. name: "Mega",
  50699. height: math.unit(1.87, "km")
  50700. },
  50701. {
  50702. name: "Giga",
  50703. height: math.unit(40000, "km")
  50704. },
  50705. {
  50706. name: "Stellar",
  50707. height: math.unit(158000000, "km")
  50708. },
  50709. {
  50710. name: "Cosmic",
  50711. height: math.unit(9.46e12, "km")
  50712. },
  50713. ]
  50714. ))
  50715. characterMakers.push(() => makeCharacter(
  50716. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50717. {
  50718. front: {
  50719. height: math.unit(5 + 4/12, "feet"),
  50720. weight: math.unit(80, "lb"),
  50721. name: "Front",
  50722. image: {
  50723. source: "./media/characters/mizu-gieeg/front.svg",
  50724. extra: 850/709,
  50725. bottom: 52/902
  50726. }
  50727. },
  50728. back: {
  50729. height: math.unit(5 + 4/12, "feet"),
  50730. weight: math.unit(80, "lb"),
  50731. name: "Back",
  50732. image: {
  50733. source: "./media/characters/mizu-gieeg/back.svg",
  50734. extra: 882/745,
  50735. bottom: 25/907
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Normal",
  50742. height: math.unit(5 + 4/12, "feet"),
  50743. default: true
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50749. {
  50750. front: {
  50751. height: math.unit(6, "feet"),
  50752. name: "Front",
  50753. image: {
  50754. source: "./media/characters/roselle-st-papier/front.svg",
  50755. extra: 1430/1280,
  50756. bottom: 37/1467
  50757. }
  50758. },
  50759. back: {
  50760. height: math.unit(6, "feet"),
  50761. name: "Back",
  50762. image: {
  50763. source: "./media/characters/roselle-st-papier/back.svg",
  50764. extra: 1491/1296,
  50765. bottom: 23/1514
  50766. }
  50767. },
  50768. ear: {
  50769. height: math.unit(1.26, "feet"),
  50770. name: "Ear",
  50771. image: {
  50772. source: "./media/characters/roselle-st-papier/ear.svg"
  50773. }
  50774. },
  50775. },
  50776. [
  50777. {
  50778. name: "Normal",
  50779. height: math.unit(150, "feet"),
  50780. default: true
  50781. },
  50782. ]
  50783. ))
  50784. characterMakers.push(() => makeCharacter(
  50785. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50786. {
  50787. front: {
  50788. height: math.unit(1, "inches"),
  50789. name: "Front",
  50790. image: {
  50791. source: "./media/characters/valargent/front.svg",
  50792. extra: 1825/1694,
  50793. bottom: 62/1887
  50794. }
  50795. },
  50796. back: {
  50797. height: math.unit(1, "inches"),
  50798. name: "Back",
  50799. image: {
  50800. source: "./media/characters/valargent/back.svg",
  50801. extra: 1775/1682,
  50802. bottom: 88/1863
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Micro",
  50809. height: math.unit(1, "inch"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50816. {
  50817. front: {
  50818. height: math.unit(3.4, "meters"),
  50819. name: "Front",
  50820. image: {
  50821. source: "./media/characters/zarina/front.svg",
  50822. extra: 1733/1425,
  50823. bottom: 93/1826
  50824. }
  50825. },
  50826. squatting: {
  50827. height: math.unit(2.14, "meters"),
  50828. name: "Squatting",
  50829. image: {
  50830. source: "./media/characters/zarina/squatting.svg",
  50831. extra: 1073/788,
  50832. bottom: 63/1136
  50833. }
  50834. },
  50835. back: {
  50836. height: math.unit(2.14, "meters"),
  50837. name: "Back",
  50838. image: {
  50839. source: "./media/characters/zarina/back.svg",
  50840. extra: 1128/885,
  50841. bottom: 0/1128
  50842. }
  50843. },
  50844. },
  50845. [
  50846. {
  50847. name: "Normal",
  50848. height: math.unit(3.4, "meters"),
  50849. default: true
  50850. },
  50851. {
  50852. name: "Big",
  50853. height: math.unit(5, "meters")
  50854. },
  50855. {
  50856. name: "Macro",
  50857. height: math.unit(110, "meters")
  50858. },
  50859. ]
  50860. ))
  50861. characterMakers.push(() => makeCharacter(
  50862. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50863. {
  50864. front: {
  50865. height: math.unit(7, "feet"),
  50866. name: "Front",
  50867. image: {
  50868. source: "./media/characters/ventus-astro-fox/front.svg",
  50869. extra: 1792/1623,
  50870. bottom: 28/1820
  50871. }
  50872. },
  50873. back: {
  50874. height: math.unit(7, "feet"),
  50875. name: "Back",
  50876. image: {
  50877. source: "./media/characters/ventus-astro-fox/back.svg",
  50878. extra: 1789/1620,
  50879. bottom: 31/1820
  50880. }
  50881. },
  50882. outfit: {
  50883. height: math.unit(7, "feet"),
  50884. name: "Outfit",
  50885. image: {
  50886. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50887. extra: 1054/925,
  50888. bottom: 15/1069
  50889. }
  50890. },
  50891. head: {
  50892. height: math.unit(1.12, "feet"),
  50893. name: "Head",
  50894. image: {
  50895. source: "./media/characters/ventus-astro-fox/head.svg",
  50896. extra: 866/504,
  50897. bottom: 0/866
  50898. }
  50899. },
  50900. hand: {
  50901. height: math.unit(1, "feet"),
  50902. name: "Hand",
  50903. image: {
  50904. source: "./media/characters/ventus-astro-fox/hand.svg"
  50905. }
  50906. },
  50907. paw: {
  50908. height: math.unit(1.5, "feet"),
  50909. name: "Paw",
  50910. image: {
  50911. source: "./media/characters/ventus-astro-fox/paw.svg"
  50912. }
  50913. },
  50914. },
  50915. [
  50916. {
  50917. name: "Normal",
  50918. height: math.unit(7, "feet"),
  50919. default: true
  50920. },
  50921. {
  50922. name: "Macro",
  50923. height: math.unit(200, "feet")
  50924. },
  50925. {
  50926. name: "Cosmic",
  50927. height: math.unit(3, "universes")
  50928. },
  50929. ]
  50930. ))
  50931. characterMakers.push(() => makeCharacter(
  50932. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50933. {
  50934. front: {
  50935. height: math.unit(3, "meters"),
  50936. weight: math.unit(7000, "lb"),
  50937. name: "Front",
  50938. image: {
  50939. source: "./media/characters/core-t/front.svg",
  50940. extra: 5729/4941,
  50941. bottom: 1129/6858
  50942. }
  50943. },
  50944. },
  50945. [
  50946. {
  50947. name: "Big",
  50948. height: math.unit(3, "meters"),
  50949. default: true
  50950. },
  50951. ]
  50952. ))
  50953. characterMakers.push(() => makeCharacter(
  50954. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50955. {
  50956. normal: {
  50957. height: math.unit(6 + 6/12, "feet"),
  50958. weight: math.unit(275, "lb"),
  50959. name: "Front",
  50960. image: {
  50961. source: "./media/characters/cadbunny/normal.svg",
  50962. extra: 1129/947,
  50963. bottom: 93/1222
  50964. },
  50965. default: true,
  50966. form: "normal"
  50967. },
  50968. gigantamax: {
  50969. height: math.unit(26, "feet"),
  50970. weight: math.unit(16000, "lb"),
  50971. name: "Front",
  50972. image: {
  50973. source: "./media/characters/cadbunny/gigantamax.svg",
  50974. extra: 1133/944,
  50975. bottom: 90/1223
  50976. },
  50977. default: true,
  50978. form: "gigantamax"
  50979. },
  50980. },
  50981. [
  50982. {
  50983. name: "Normal",
  50984. height: math.unit(6 + 6/12, "feet"),
  50985. default: true,
  50986. form: "normal"
  50987. },
  50988. {
  50989. name: "Small",
  50990. height: math.unit(26, "feet"),
  50991. default: true,
  50992. form: "gigantamax"
  50993. },
  50994. {
  50995. name: "Large",
  50996. height: math.unit(78, "feet"),
  50997. form: "gigantamax"
  50998. },
  50999. ],
  51000. {
  51001. "normal": {
  51002. name: "Normal",
  51003. default: true
  51004. },
  51005. "gigantamax": {
  51006. name: "Gigantamax"
  51007. }
  51008. }
  51009. ))
  51010. characterMakers.push(() => makeCharacter(
  51011. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51012. {
  51013. anthroFront: {
  51014. height: math.unit(8, "feet"),
  51015. weight: math.unit(300, "lb"),
  51016. name: "Front",
  51017. image: {
  51018. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51019. extra: 1272/1176,
  51020. bottom: 53/1325
  51021. },
  51022. form: "anthro",
  51023. default: true
  51024. },
  51025. feralSide: {
  51026. height: math.unit(4, "feet"),
  51027. weight: math.unit(250, "lb"),
  51028. name: "Side",
  51029. image: {
  51030. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51031. extra: 731/621,
  51032. bottom: 0/731
  51033. },
  51034. form: "feral",
  51035. default: true
  51036. },
  51037. },
  51038. [
  51039. {
  51040. name: "Regular",
  51041. height: math.unit(8, "feet"),
  51042. form: "anthro"
  51043. },
  51044. {
  51045. name: "Macro",
  51046. height: math.unit(250, "feet"),
  51047. form: "anthro",
  51048. default: true
  51049. },
  51050. {
  51051. name: "Regular",
  51052. height: math.unit(4, "feet"),
  51053. form: "feral"
  51054. },
  51055. {
  51056. name: "Macro",
  51057. height: math.unit(125, "feet"),
  51058. form: "feral",
  51059. default: true
  51060. },
  51061. ],
  51062. {
  51063. "anthro": {
  51064. name: "Anthro",
  51065. default: true
  51066. },
  51067. "feral": {
  51068. name: "Feral",
  51069. },
  51070. }
  51071. ))
  51072. characterMakers.push(() => makeCharacter(
  51073. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51074. {
  51075. front: {
  51076. height: math.unit(11 + 10/12, "feet"),
  51077. weight: math.unit(1587, "kg"),
  51078. name: "Front",
  51079. image: {
  51080. source: "./media/characters/maple-javira-dragon/front.svg",
  51081. extra: 1136/744,
  51082. bottom: 73/1209
  51083. }
  51084. },
  51085. side: {
  51086. height: math.unit(11 + 10/12, "feet"),
  51087. weight: math.unit(1587, "kg"),
  51088. name: "Side",
  51089. image: {
  51090. source: "./media/characters/maple-javira-dragon/side.svg",
  51091. extra: 712/505,
  51092. bottom: 17/729
  51093. }
  51094. },
  51095. head: {
  51096. height: math.unit(8.05, "feet"),
  51097. name: "Head",
  51098. image: {
  51099. source: "./media/characters/maple-javira-dragon/head.svg",
  51100. extra: 1420/1344,
  51101. bottom: 0/1420
  51102. }
  51103. },
  51104. },
  51105. [
  51106. {
  51107. name: "Normal",
  51108. height: math.unit(11 + 10/12, "feet"),
  51109. default: true
  51110. },
  51111. ]
  51112. ))
  51113. characterMakers.push(() => makeCharacter(
  51114. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51115. {
  51116. front: {
  51117. height: math.unit(117, "cm"),
  51118. weight: math.unit(50, "kg"),
  51119. name: "Front",
  51120. image: {
  51121. source: "./media/characters/sonia-wyverntail/front.svg",
  51122. extra: 708/592,
  51123. bottom: 25/733
  51124. }
  51125. },
  51126. },
  51127. [
  51128. {
  51129. name: "Normal",
  51130. height: math.unit(117, "cm"),
  51131. default: true
  51132. },
  51133. ]
  51134. ))
  51135. characterMakers.push(() => makeCharacter(
  51136. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51137. {
  51138. front: {
  51139. height: math.unit(6 + 5/12, "feet"),
  51140. name: "Front",
  51141. image: {
  51142. source: "./media/characters/micah/front.svg",
  51143. extra: 1758/1546,
  51144. bottom: 214/1972
  51145. }
  51146. },
  51147. },
  51148. [
  51149. {
  51150. name: "Normal",
  51151. height: math.unit(6 + 5/12, "feet"),
  51152. default: true
  51153. },
  51154. ]
  51155. ))
  51156. characterMakers.push(() => makeCharacter(
  51157. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51158. {
  51159. front: {
  51160. height: math.unit(5 + 10/12, "feet"),
  51161. weight: math.unit(220, "lb"),
  51162. name: "Front",
  51163. image: {
  51164. source: "./media/characters/zarya/front.svg",
  51165. extra: 593/572,
  51166. bottom: 50/643
  51167. }
  51168. },
  51169. back: {
  51170. height: math.unit(5 + 10/12, "feet"),
  51171. weight: math.unit(220, "lb"),
  51172. name: "Back",
  51173. image: {
  51174. source: "./media/characters/zarya/back.svg",
  51175. extra: 603/582,
  51176. bottom: 38/641
  51177. }
  51178. },
  51179. },
  51180. [
  51181. {
  51182. name: "Normal",
  51183. height: math.unit(5 + 10/12, "feet"),
  51184. default: true
  51185. },
  51186. ]
  51187. ))
  51188. characterMakers.push(() => makeCharacter(
  51189. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51190. {
  51191. front: {
  51192. height: math.unit(7.5, "feet"),
  51193. name: "Front",
  51194. image: {
  51195. source: "./media/characters/sven-hatisson/front.svg",
  51196. extra: 917/857,
  51197. bottom: 42/959
  51198. }
  51199. },
  51200. back: {
  51201. height: math.unit(7.5, "feet"),
  51202. name: "Back",
  51203. image: {
  51204. source: "./media/characters/sven-hatisson/back.svg",
  51205. extra: 903/856,
  51206. bottom: 15/918
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Base Height",
  51213. height: math.unit(7.5, "feet")
  51214. },
  51215. {
  51216. name: "Usual Height",
  51217. height: math.unit(13.5, "feet"),
  51218. default: true
  51219. },
  51220. {
  51221. name: "Smaller Macro",
  51222. height: math.unit(85, "feet")
  51223. },
  51224. {
  51225. name: "Moderate Macro",
  51226. height: math.unit(320, "feet")
  51227. },
  51228. {
  51229. name: "Large Macro",
  51230. height: math.unit(1000, "feet")
  51231. },
  51232. {
  51233. name: "Largest Size",
  51234. height: math.unit(2, "miles")
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51240. {
  51241. side: {
  51242. height: math.unit(1.8, "meters"),
  51243. weight: math.unit(275, "kg"),
  51244. name: "Side",
  51245. image: {
  51246. source: "./media/characters/terra/side.svg",
  51247. extra: 1273/1147,
  51248. bottom: 0/1273
  51249. }
  51250. },
  51251. },
  51252. [
  51253. {
  51254. name: "Normal",
  51255. height: math.unit(16.2, "meters"),
  51256. default: true
  51257. },
  51258. ]
  51259. ))
  51260. characterMakers.push(() => makeCharacter(
  51261. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51262. {
  51263. borzoiFront: {
  51264. height: math.unit(6 + 9/12, "feet"),
  51265. name: "Front",
  51266. image: {
  51267. source: "./media/characters/rae/borzoi-front.svg",
  51268. extra: 1161/1098,
  51269. bottom: 31/1192
  51270. },
  51271. form: "borzoi",
  51272. default: true
  51273. },
  51274. werewolfFront: {
  51275. height: math.unit(8 + 7/12, "feet"),
  51276. name: "Front",
  51277. image: {
  51278. source: "./media/characters/rae/werewolf-front.svg",
  51279. extra: 1411/1334,
  51280. bottom: 127/1538
  51281. },
  51282. form: "werewolf",
  51283. default: true
  51284. },
  51285. },
  51286. [
  51287. {
  51288. name: "Normal",
  51289. height: math.unit(6 + 9/12, "feet"),
  51290. default: true,
  51291. form: "borzoi"
  51292. },
  51293. {
  51294. name: "Normal",
  51295. height: math.unit(8 + 7/12, "feet"),
  51296. default: true,
  51297. form: "werewolf"
  51298. },
  51299. ],
  51300. {
  51301. "borzoi": {
  51302. name: "Borzoi",
  51303. default: true
  51304. },
  51305. "werewolf": {
  51306. name: "Werewolf",
  51307. },
  51308. }
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51312. {
  51313. front: {
  51314. height: math.unit(8 + 7/12, "feet"),
  51315. weight: math.unit(482, "lb"),
  51316. name: "Front",
  51317. image: {
  51318. source: "./media/characters/kit/front.svg",
  51319. extra: 1247/1103,
  51320. bottom: 41/1288
  51321. }
  51322. },
  51323. back: {
  51324. height: math.unit(8 + 7/12, "feet"),
  51325. weight: math.unit(482, "lb"),
  51326. name: "Back",
  51327. image: {
  51328. source: "./media/characters/kit/back.svg",
  51329. extra: 1252/1123,
  51330. bottom: 21/1273
  51331. }
  51332. },
  51333. paw: {
  51334. height: math.unit(1.46, "feet"),
  51335. name: "Paw",
  51336. image: {
  51337. source: "./media/characters/kit/paw.svg"
  51338. }
  51339. },
  51340. },
  51341. [
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(2.61, "meters"),
  51345. default: true
  51346. },
  51347. {
  51348. name: "\"Tall\"",
  51349. height: math.unit(8.21, "meters")
  51350. },
  51351. {
  51352. name: "Tall",
  51353. height: math.unit(19.6, "meters")
  51354. },
  51355. {
  51356. name: "Very Tall",
  51357. height: math.unit(57.91, "meters")
  51358. },
  51359. {
  51360. name: "Semi-Macro",
  51361. height: math.unit(138.64, "meters")
  51362. },
  51363. {
  51364. name: "Macro",
  51365. height: math.unit(831.99, "meters")
  51366. },
  51367. {
  51368. name: "EX-Macro",
  51369. height: math.unit(96451121, "meters")
  51370. },
  51371. {
  51372. name: "S1-Omnipotent",
  51373. height: math.unit(4.42074e+9, "meters")
  51374. },
  51375. {
  51376. name: "S2-Omnipotent",
  51377. height: math.unit(9.42074e+17, "meters")
  51378. },
  51379. {
  51380. name: "Omnipotent",
  51381. height: math.unit(4.23112e+24, "meters")
  51382. },
  51383. {
  51384. name: "Hypergod",
  51385. height: math.unit(5.05176e+27, "meters")
  51386. },
  51387. {
  51388. name: "Hypergod-EX",
  51389. height: math.unit(9.45532e+49, "meters")
  51390. },
  51391. {
  51392. name: "Hypergod-SP",
  51393. height: math.unit(9.45532e+195, "meters")
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51399. {
  51400. side: {
  51401. height: math.unit(0.6, "meters"),
  51402. weight: math.unit(24, "kg"),
  51403. name: "Side",
  51404. image: {
  51405. source: "./media/characters/celeste/side.svg",
  51406. extra: 810/517,
  51407. bottom: 53/863
  51408. }
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Velociraptor",
  51414. height: math.unit(0.6, "meters"),
  51415. default: true
  51416. },
  51417. {
  51418. name: "Utahraptor",
  51419. height: math.unit(1.8, "meters")
  51420. },
  51421. {
  51422. name: "Gallimimus",
  51423. height: math.unit(4.0, "meters")
  51424. },
  51425. {
  51426. name: "Large",
  51427. height: math.unit(20, "meters")
  51428. },
  51429. {
  51430. name: "Planetary",
  51431. height: math.unit(50, "megameters")
  51432. },
  51433. {
  51434. name: "Stellar",
  51435. height: math.unit(1.5, "gigameters")
  51436. },
  51437. {
  51438. name: "Galactic",
  51439. height: math.unit(100, "exameters")
  51440. },
  51441. ]
  51442. ))
  51443. characterMakers.push(() => makeCharacter(
  51444. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51445. {
  51446. front: {
  51447. height: math.unit(6, "feet"),
  51448. weight: math.unit(210, "lb"),
  51449. name: "Front",
  51450. image: {
  51451. source: "./media/characters/glacia/front.svg",
  51452. extra: 958/901,
  51453. bottom: 45/1003
  51454. }
  51455. },
  51456. },
  51457. [
  51458. {
  51459. name: "Macro",
  51460. height: math.unit(1000, "meters"),
  51461. default: true
  51462. },
  51463. ]
  51464. ))
  51465. characterMakers.push(() => makeCharacter(
  51466. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51467. {
  51468. front: {
  51469. height: math.unit(4, "meters"),
  51470. name: "Front",
  51471. image: {
  51472. source: "./media/characters/giri/front.svg",
  51473. extra: 966/894,
  51474. bottom: 21/987
  51475. }
  51476. },
  51477. },
  51478. [
  51479. {
  51480. name: "Normal",
  51481. height: math.unit(4, "meters"),
  51482. default: true
  51483. },
  51484. ]
  51485. ))
  51486. characterMakers.push(() => makeCharacter(
  51487. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51488. {
  51489. back: {
  51490. height: math.unit(4, "feet"),
  51491. weight: math.unit(37, "lb"),
  51492. name: "Back",
  51493. image: {
  51494. source: "./media/characters/tin/back.svg",
  51495. extra: 845/780,
  51496. bottom: 28/873
  51497. }
  51498. },
  51499. },
  51500. [
  51501. {
  51502. name: "Normal",
  51503. height: math.unit(4, "feet"),
  51504. default: true
  51505. },
  51506. ]
  51507. ))
  51508. characterMakers.push(() => makeCharacter(
  51509. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51510. {
  51511. front: {
  51512. height: math.unit(25, "feet"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/cadenza-vivace/front.svg",
  51516. extra: 1842/1578,
  51517. bottom: 30/1872
  51518. }
  51519. },
  51520. },
  51521. [
  51522. {
  51523. name: "Macro",
  51524. height: math.unit(25, "feet"),
  51525. default: true
  51526. },
  51527. ]
  51528. ))
  51529. characterMakers.push(() => makeCharacter(
  51530. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51531. {
  51532. front: {
  51533. height: math.unit(10, "feet"),
  51534. weight: math.unit(625, "kg"),
  51535. name: "Front",
  51536. image: {
  51537. source: "./media/characters/zain/front.svg",
  51538. extra: 1682/1498,
  51539. bottom: 223/1905
  51540. }
  51541. },
  51542. back: {
  51543. height: math.unit(10, "feet"),
  51544. weight: math.unit(625, "kg"),
  51545. name: "Back",
  51546. image: {
  51547. source: "./media/characters/zain/back.svg",
  51548. extra: 1814/1657,
  51549. bottom: 152/1966
  51550. }
  51551. },
  51552. head: {
  51553. height: math.unit(10, "feet"),
  51554. weight: math.unit(625, "kg"),
  51555. name: "Head",
  51556. image: {
  51557. source: "./media/characters/zain/head.svg",
  51558. extra: 1059/762,
  51559. bottom: 0/1059
  51560. }
  51561. },
  51562. },
  51563. [
  51564. {
  51565. name: "Normal",
  51566. height: math.unit(10, "feet"),
  51567. default: true
  51568. },
  51569. ]
  51570. ))
  51571. characterMakers.push(() => makeCharacter(
  51572. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51573. {
  51574. front: {
  51575. height: math.unit(6 + 5/12, "feet"),
  51576. weight: math.unit(750, "lb"),
  51577. name: "Front",
  51578. image: {
  51579. source: "./media/characters/ruchex/front.svg",
  51580. extra: 877/820,
  51581. bottom: 17/894
  51582. },
  51583. extraAttributes: {
  51584. "width": {
  51585. name: "Width",
  51586. power: 1,
  51587. type: "length",
  51588. base: math.unit(4.757, "feet")
  51589. },
  51590. }
  51591. },
  51592. },
  51593. [
  51594. {
  51595. name: "Normal",
  51596. height: math.unit(6 + 5/12, "feet"),
  51597. default: true
  51598. },
  51599. ]
  51600. ))
  51601. characterMakers.push(() => makeCharacter(
  51602. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51603. {
  51604. dressedFront: {
  51605. height: math.unit(191, "cm"),
  51606. weight: math.unit(80, "kg"),
  51607. name: "Front",
  51608. image: {
  51609. source: "./media/characters/buster/dressed-front.svg",
  51610. extra: 1022/973,
  51611. bottom: 69/1091
  51612. }
  51613. },
  51614. dressedBack: {
  51615. height: math.unit(191, "cm"),
  51616. weight: math.unit(80, "kg"),
  51617. name: "Back",
  51618. image: {
  51619. source: "./media/characters/buster/dressed-back.svg",
  51620. extra: 1018/970,
  51621. bottom: 55/1073
  51622. }
  51623. },
  51624. nudeFront: {
  51625. height: math.unit(191, "cm"),
  51626. weight: math.unit(80, "kg"),
  51627. name: "Front (Nude)",
  51628. image: {
  51629. source: "./media/characters/buster/nude-front.svg",
  51630. extra: 1022/973,
  51631. bottom: 69/1091
  51632. }
  51633. },
  51634. nudeBack: {
  51635. height: math.unit(191, "cm"),
  51636. weight: math.unit(80, "kg"),
  51637. name: "Back (Nude)",
  51638. image: {
  51639. source: "./media/characters/buster/nude-back.svg",
  51640. extra: 1018/970,
  51641. bottom: 55/1073
  51642. }
  51643. },
  51644. dick: {
  51645. height: math.unit(2.59, "feet"),
  51646. name: "Dick",
  51647. image: {
  51648. source: "./media/characters/buster/dick.svg"
  51649. }
  51650. },
  51651. ass: {
  51652. height: math.unit(1.2, "feet"),
  51653. name: "Ass",
  51654. image: {
  51655. source: "./media/characters/buster/ass.svg"
  51656. }
  51657. },
  51658. },
  51659. [
  51660. {
  51661. name: "Normal",
  51662. height: math.unit(191, "cm"),
  51663. default: true
  51664. },
  51665. ]
  51666. ))
  51667. characterMakers.push(() => makeCharacter(
  51668. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51669. {
  51670. side: {
  51671. height: math.unit(8.1, "feet"),
  51672. weight: math.unit(3500, "lb"),
  51673. name: "Side",
  51674. image: {
  51675. source: "./media/characters/sonya/side.svg",
  51676. extra: 1730/1317,
  51677. bottom: 86/1816
  51678. }
  51679. },
  51680. },
  51681. [
  51682. {
  51683. name: "Normal",
  51684. height: math.unit(8.1, "feet"),
  51685. default: true
  51686. },
  51687. ]
  51688. ))
  51689. characterMakers.push(() => makeCharacter(
  51690. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51691. {
  51692. front: {
  51693. height: math.unit(6, "feet"),
  51694. weight: math.unit(150, "lb"),
  51695. name: "Front",
  51696. image: {
  51697. source: "./media/characters/cadence-andrysiak/front.svg",
  51698. extra: 1164/1121,
  51699. bottom: 60/1224
  51700. }
  51701. },
  51702. back: {
  51703. height: math.unit(6, "feet"),
  51704. weight: math.unit(150, "lb"),
  51705. name: "Back",
  51706. image: {
  51707. source: "./media/characters/cadence-andrysiak/back.svg",
  51708. extra: 1200/1165,
  51709. bottom: 9/1209
  51710. }
  51711. },
  51712. dressed: {
  51713. height: math.unit(6, "feet"),
  51714. weight: math.unit(150, "lb"),
  51715. name: "Dressed",
  51716. image: {
  51717. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51718. extra: 1164/1121,
  51719. bottom: 60/1224
  51720. }
  51721. },
  51722. },
  51723. [
  51724. {
  51725. name: "Micro",
  51726. height: math.unit(1, "mm")
  51727. },
  51728. {
  51729. name: "Normal",
  51730. height: math.unit(6, "feet"),
  51731. default: true
  51732. },
  51733. ]
  51734. ))
  51735. characterMakers.push(() => makeCharacter(
  51736. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51737. {
  51738. front: {
  51739. height: math.unit(60, "inches"),
  51740. weight: math.unit(16, "lb"),
  51741. preyCapacity: math.unit(80, "liters"),
  51742. name: "Front",
  51743. image: {
  51744. source: "./media/characters/penny-lynx/front.svg",
  51745. extra: 1959/1769,
  51746. bottom: 49/2008
  51747. }
  51748. },
  51749. },
  51750. [
  51751. {
  51752. name: "Nokia",
  51753. height: math.unit(2, "inches")
  51754. },
  51755. {
  51756. name: "Desktop",
  51757. height: math.unit(24, "inches")
  51758. },
  51759. {
  51760. name: "TV",
  51761. height: math.unit(60, "inches")
  51762. },
  51763. {
  51764. name: "Jumbotron",
  51765. height: math.unit(12, "feet")
  51766. },
  51767. {
  51768. name: "Billboard",
  51769. height: math.unit(48, "feet"),
  51770. default: true
  51771. },
  51772. {
  51773. name: "IMAX",
  51774. height: math.unit(96, "feet")
  51775. },
  51776. {
  51777. name: "SINGULARITY",
  51778. height: math.unit(864938, "miles")
  51779. },
  51780. ]
  51781. ))
  51782. characterMakers.push(() => makeCharacter(
  51783. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51784. {
  51785. front: {
  51786. height: math.unit(5 + 4/12, "feet"),
  51787. weight: math.unit(230, "lb"),
  51788. name: "Front",
  51789. image: {
  51790. source: "./media/characters/sukebe/front.svg",
  51791. extra: 2130/2038,
  51792. bottom: 90/2220
  51793. }
  51794. },
  51795. back: {
  51796. height: math.unit(3.48, "feet"),
  51797. weight: math.unit(230, "lb"),
  51798. name: "Back",
  51799. image: {
  51800. source: "./media/characters/sukebe/back.svg",
  51801. extra: 1670/1604,
  51802. bottom: 0/1670
  51803. }
  51804. },
  51805. },
  51806. [
  51807. {
  51808. name: "Normal",
  51809. height: math.unit(5 + 4/12, "feet"),
  51810. default: true
  51811. },
  51812. ]
  51813. ))
  51814. characterMakers.push(() => makeCharacter(
  51815. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51816. {
  51817. front: {
  51818. height: math.unit(6, "feet"),
  51819. name: "Front",
  51820. image: {
  51821. source: "./media/characters/nylla/front.svg",
  51822. extra: 1868/1699,
  51823. bottom: 97/1965
  51824. }
  51825. },
  51826. back: {
  51827. height: math.unit(6, "feet"),
  51828. name: "Back",
  51829. image: {
  51830. source: "./media/characters/nylla/back.svg",
  51831. extra: 1889/1712,
  51832. bottom: 93/1982
  51833. }
  51834. },
  51835. frontNsfw: {
  51836. height: math.unit(6, "feet"),
  51837. name: "Front (NSFW)",
  51838. image: {
  51839. source: "./media/characters/nylla/front-nsfw.svg",
  51840. extra: 1868/1699,
  51841. bottom: 97/1965
  51842. },
  51843. extraAttributes: {
  51844. "dickLength": {
  51845. name: "Dick Length",
  51846. power: 1,
  51847. type: "length",
  51848. base: math.unit(1.4, "feet")
  51849. },
  51850. "cumVolume": {
  51851. name: "Cum Volume",
  51852. power: 3,
  51853. type: "volume",
  51854. base: math.unit(100, "mL")
  51855. },
  51856. }
  51857. },
  51858. backNsfw: {
  51859. height: math.unit(6, "feet"),
  51860. name: "Back (NSFW)",
  51861. image: {
  51862. source: "./media/characters/nylla/back-nsfw.svg",
  51863. extra: 1889/1712,
  51864. bottom: 93/1982
  51865. }
  51866. },
  51867. maw: {
  51868. height: math.unit(2.10, "feet"),
  51869. name: "Maw",
  51870. image: {
  51871. source: "./media/characters/nylla/maw.svg"
  51872. }
  51873. },
  51874. paws: {
  51875. height: math.unit(2.06, "feet"),
  51876. name: "Paws",
  51877. image: {
  51878. source: "./media/characters/nylla/paws.svg"
  51879. }
  51880. },
  51881. muzzle: {
  51882. height: math.unit(0.61, "feet"),
  51883. name: "Muzzle",
  51884. image: {
  51885. source: "./media/characters/nylla/muzzle.svg"
  51886. }
  51887. },
  51888. sheath: {
  51889. height: math.unit(1.305, "feet"),
  51890. name: "Sheath",
  51891. image: {
  51892. source: "./media/characters/nylla/sheath.svg"
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Micro",
  51899. height: math.unit(7.5, "inches")
  51900. },
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(7, "feet"),
  51904. default: true
  51905. },
  51906. {
  51907. name: "Macro",
  51908. height: math.unit(60, "feet")
  51909. },
  51910. {
  51911. name: "Mega",
  51912. height: math.unit(200, "feet")
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(10, "feet"),
  51921. weight: math.unit(2300, "lb"),
  51922. name: "Front",
  51923. image: {
  51924. source: "./media/characters/hunt3r/front.svg",
  51925. extra: 1909/1742,
  51926. bottom: 46/1955
  51927. }
  51928. },
  51929. },
  51930. [
  51931. {
  51932. name: "Normal",
  51933. height: math.unit(10, "feet"),
  51934. default: true
  51935. },
  51936. ]
  51937. ))
  51938. characterMakers.push(() => makeCharacter(
  51939. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51940. {
  51941. dressed: {
  51942. height: math.unit(11, "feet"),
  51943. weight: math.unit(18500, "lb"),
  51944. preyCapacity: math.unit(9, "people"),
  51945. name: "Dressed",
  51946. image: {
  51947. source: "./media/characters/cylphis/dressed.svg",
  51948. extra: 1028/1003,
  51949. bottom: 75/1103
  51950. },
  51951. },
  51952. undressed: {
  51953. height: math.unit(11, "feet"),
  51954. weight: math.unit(18500, "lb"),
  51955. preyCapacity: math.unit(9, "people"),
  51956. name: "Undressed",
  51957. image: {
  51958. source: "./media/characters/cylphis/undressed.svg",
  51959. extra: 1028/1003,
  51960. bottom: 75/1103
  51961. }
  51962. },
  51963. full: {
  51964. height: math.unit(11, "feet"),
  51965. weight: math.unit(18500 + 150*9, "lb"),
  51966. preyCapacity: math.unit(9, "people"),
  51967. name: "Full",
  51968. image: {
  51969. source: "./media/characters/cylphis/full.svg",
  51970. extra: 1028/1003,
  51971. bottom: 75/1103
  51972. }
  51973. },
  51974. },
  51975. [
  51976. {
  51977. name: "Small",
  51978. height: math.unit(8, "feet")
  51979. },
  51980. {
  51981. name: "Normal",
  51982. height: math.unit(11, "feet"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(2 + 7/12, "feet"),
  51992. name: "Front",
  51993. image: {
  51994. source: "./media/characters/orishan/front.svg",
  51995. extra: 1058/1023,
  51996. bottom: 23/1081
  51997. }
  51998. },
  51999. back: {
  52000. height: math.unit(2 + 7/12, "feet"),
  52001. name: "Back",
  52002. image: {
  52003. source: "./media/characters/orishan/back.svg",
  52004. extra: 1058/1023,
  52005. bottom: 23/1081
  52006. }
  52007. },
  52008. },
  52009. [
  52010. {
  52011. name: "Micro",
  52012. height: math.unit(2, "cm")
  52013. },
  52014. {
  52015. name: "Normal",
  52016. height: math.unit(2 + 7/12, "feet"),
  52017. default: true
  52018. },
  52019. ]
  52020. ))
  52021. characterMakers.push(() => makeCharacter(
  52022. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52023. {
  52024. front: {
  52025. height: math.unit(3, "meters"),
  52026. weight: math.unit(508, "kg"),
  52027. name: "Front",
  52028. image: {
  52029. source: "./media/characters/seranis/front.svg",
  52030. extra: 1478/1454,
  52031. bottom: 41/1519
  52032. }
  52033. },
  52034. },
  52035. [
  52036. {
  52037. name: "Normal",
  52038. height: math.unit(3, "meters"),
  52039. default: true
  52040. },
  52041. {
  52042. name: "Macro",
  52043. height: math.unit(108, "meters")
  52044. },
  52045. {
  52046. name: "Megamacro",
  52047. height: math.unit(1250, "meters")
  52048. },
  52049. ]
  52050. ))
  52051. characterMakers.push(() => makeCharacter(
  52052. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52053. {
  52054. undressed: {
  52055. height: math.unit(5 + 3/12, "feet"),
  52056. name: "Undressed",
  52057. image: {
  52058. source: "./media/characters/ankou/undressed.svg",
  52059. extra: 1301/1213,
  52060. bottom: 87/1388
  52061. }
  52062. },
  52063. dressed: {
  52064. height: math.unit(5 + 3/12, "feet"),
  52065. name: "Dressed",
  52066. image: {
  52067. source: "./media/characters/ankou/dressed.svg",
  52068. extra: 1301/1213,
  52069. bottom: 87/1388
  52070. }
  52071. },
  52072. head: {
  52073. height: math.unit(1.61, "feet"),
  52074. name: "Head",
  52075. image: {
  52076. source: "./media/characters/ankou/head.svg"
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Normal",
  52083. height: math.unit(5 + 3/12, "feet"),
  52084. default: true
  52085. },
  52086. ]
  52087. ))
  52088. characterMakers.push(() => makeCharacter(
  52089. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52090. {
  52091. side: {
  52092. height: math.unit(6 + 3/12, "feet"),
  52093. weight: math.unit(200, "kg"),
  52094. name: "Side",
  52095. image: {
  52096. source: "./media/characters/juniper-skunktaur/side.svg",
  52097. extra: 1574/1229,
  52098. bottom: 38/1612
  52099. }
  52100. },
  52101. front: {
  52102. height: math.unit(6 + 3/12, "feet"),
  52103. weight: math.unit(200, "kg"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/juniper-skunktaur/front.svg",
  52107. extra: 1337/1278,
  52108. bottom: 22/1359
  52109. }
  52110. },
  52111. back: {
  52112. height: math.unit(6 + 3/12, "feet"),
  52113. weight: math.unit(200, "kg"),
  52114. name: "Back",
  52115. image: {
  52116. source: "./media/characters/juniper-skunktaur/back.svg",
  52117. extra: 1618/1273,
  52118. bottom: 13/1631
  52119. }
  52120. },
  52121. top: {
  52122. height: math.unit(2.62, "feet"),
  52123. weight: math.unit(200, "kg"),
  52124. name: "Top",
  52125. image: {
  52126. source: "./media/characters/juniper-skunktaur/top.svg"
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(6 + 3/12, "feet"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(20.5, "feet"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/rei/front.svg",
  52146. extra: 1349/1195,
  52147. bottom: 31/1380
  52148. }
  52149. },
  52150. back: {
  52151. height: math.unit(20.5, "feet"),
  52152. name: "Back",
  52153. image: {
  52154. source: "./media/characters/rei/back.svg",
  52155. extra: 1358/1204,
  52156. bottom: 22/1380
  52157. }
  52158. },
  52159. pawsDigi: {
  52160. height: math.unit(3.45, "feet"),
  52161. name: "Paws (Digi)",
  52162. image: {
  52163. source: "./media/characters/rei/paws-digi.svg"
  52164. }
  52165. },
  52166. pawsPlanti: {
  52167. height: math.unit(3.45, "feet"),
  52168. name: "Paws (Planti)",
  52169. image: {
  52170. source: "./media/characters/rei/paws-planti.svg"
  52171. }
  52172. },
  52173. },
  52174. [
  52175. {
  52176. name: "Normal",
  52177. height: math.unit(20.5, "feet"),
  52178. default: true
  52179. },
  52180. ]
  52181. ))
  52182. characterMakers.push(() => makeCharacter(
  52183. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52184. {
  52185. front: {
  52186. height: math.unit(5 + 11/12, "feet"),
  52187. name: "Front",
  52188. image: {
  52189. source: "./media/characters/carina/front.svg",
  52190. extra: 1720/1449,
  52191. bottom: 14/1734
  52192. }
  52193. },
  52194. back: {
  52195. height: math.unit(5 + 11/12, "feet"),
  52196. name: "Back",
  52197. image: {
  52198. source: "./media/characters/carina/back.svg",
  52199. extra: 1493/1445,
  52200. bottom: 17/1510
  52201. }
  52202. },
  52203. paw: {
  52204. height: math.unit(0.92, "feet"),
  52205. name: "Paw",
  52206. image: {
  52207. source: "./media/characters/carina/paw.svg"
  52208. }
  52209. },
  52210. },
  52211. [
  52212. {
  52213. name: "Normal",
  52214. height: math.unit(5 + 11/12, "feet"),
  52215. default: true
  52216. },
  52217. ]
  52218. ))
  52219. characterMakers.push(() => makeCharacter(
  52220. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52221. {
  52222. front: {
  52223. height: math.unit(4.88, "meters"),
  52224. name: "Front",
  52225. image: {
  52226. source: "./media/characters/maya/front.svg",
  52227. extra: 1222/1145,
  52228. bottom: 57/1279
  52229. }
  52230. },
  52231. },
  52232. [
  52233. {
  52234. name: "Normal",
  52235. height: math.unit(4.88, "meters"),
  52236. default: true
  52237. },
  52238. {
  52239. name: "Macro",
  52240. height: math.unit(38.1, "meters")
  52241. },
  52242. {
  52243. name: "Macro+",
  52244. height: math.unit(152.4, "meters")
  52245. },
  52246. {
  52247. name: "Macro++",
  52248. height: math.unit(16.09, "km")
  52249. },
  52250. {
  52251. name: "Mega-macro",
  52252. height: math.unit(700, "megameters")
  52253. },
  52254. ]
  52255. ))
  52256. characterMakers.push(() => makeCharacter(
  52257. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52258. {
  52259. front: {
  52260. height: math.unit(6 + 2/12, "feet"),
  52261. weight: math.unit(500, "lb"),
  52262. preyCapacity: math.unit(4, "people"),
  52263. name: "Front",
  52264. image: {
  52265. source: "./media/characters/yepir/front.svg"
  52266. }
  52267. },
  52268. side: {
  52269. height: math.unit(6 + 2/12, "feet"),
  52270. weight: math.unit(500, "lb"),
  52271. preyCapacity: math.unit(4, "people"),
  52272. name: "Side",
  52273. image: {
  52274. source: "./media/characters/yepir/side.svg"
  52275. }
  52276. },
  52277. paw: {
  52278. height: math.unit(1.05, "feet"),
  52279. name: "Paw",
  52280. image: {
  52281. source: "./media/characters/yepir/paw.svg"
  52282. }
  52283. },
  52284. },
  52285. [
  52286. {
  52287. name: "Normal",
  52288. height: math.unit(6 + 2/12, "feet"),
  52289. default: true
  52290. },
  52291. ]
  52292. ))
  52293. characterMakers.push(() => makeCharacter(
  52294. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52295. {
  52296. front: {
  52297. height: math.unit(5 + 4/12, "feet"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/russec/front.svg",
  52301. extra: 1926/1626,
  52302. bottom: 72/1998
  52303. }
  52304. },
  52305. back: {
  52306. height: math.unit(5 + 4/12, "feet"),
  52307. name: "Back",
  52308. image: {
  52309. source: "./media/characters/russec/back.svg",
  52310. extra: 1910/1591,
  52311. bottom: 48/1958
  52312. }
  52313. },
  52314. },
  52315. [
  52316. {
  52317. name: "Small",
  52318. height: math.unit(5 + 4/12, "feet")
  52319. },
  52320. {
  52321. name: "Normal",
  52322. height: math.unit(72, "feet"),
  52323. default: true
  52324. },
  52325. ]
  52326. ))
  52327. characterMakers.push(() => makeCharacter(
  52328. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52329. {
  52330. side: {
  52331. height: math.unit(12, "feet"),
  52332. name: "Side",
  52333. image: {
  52334. source: "./media/characters/cianus/side.svg",
  52335. extra: 808/526,
  52336. bottom: 61/869
  52337. }
  52338. },
  52339. },
  52340. [
  52341. {
  52342. name: "Normal",
  52343. height: math.unit(12, "feet"),
  52344. default: true
  52345. },
  52346. ]
  52347. ))
  52348. characterMakers.push(() => makeCharacter(
  52349. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52350. {
  52351. front: {
  52352. height: math.unit(9 + 6/12, "feet"),
  52353. weight: math.unit(300, "lb"),
  52354. name: "Front",
  52355. image: {
  52356. source: "./media/characters/ahab/front.svg",
  52357. extra: 1897/1868,
  52358. bottom: 121/2018
  52359. }
  52360. },
  52361. frontNsfw: {
  52362. height: math.unit(9 + 6/12, "feet"),
  52363. weight: math.unit(300, "lb"),
  52364. name: "Front-nsfw",
  52365. image: {
  52366. source: "./media/characters/ahab/front-nsfw.svg",
  52367. extra: 1897/1868,
  52368. bottom: 121/2018
  52369. }
  52370. },
  52371. },
  52372. [
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(9 + 6/12, "feet")
  52376. },
  52377. {
  52378. name: "Macro",
  52379. height: math.unit(657, "feet"),
  52380. default: true
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(2.69, "meters"),
  52389. weight: math.unit(132, "kg"),
  52390. name: "Front",
  52391. image: {
  52392. source: "./media/characters/aarkus/front.svg",
  52393. extra: 1400/1231,
  52394. bottom: 34/1434
  52395. }
  52396. },
  52397. back: {
  52398. height: math.unit(2.69, "meters"),
  52399. weight: math.unit(132, "kg"),
  52400. name: "Back",
  52401. image: {
  52402. source: "./media/characters/aarkus/back.svg",
  52403. extra: 1381/1218,
  52404. bottom: 30/1411
  52405. }
  52406. },
  52407. frontNsfw: {
  52408. height: math.unit(2.69, "meters"),
  52409. weight: math.unit(132, "kg"),
  52410. name: "Front (NSFW)",
  52411. image: {
  52412. source: "./media/characters/aarkus/front-nsfw.svg",
  52413. extra: 1400/1231,
  52414. bottom: 34/1434
  52415. }
  52416. },
  52417. foot: {
  52418. height: math.unit(1.45, "feet"),
  52419. name: "Foot",
  52420. image: {
  52421. source: "./media/characters/aarkus/foot.svg"
  52422. }
  52423. },
  52424. head: {
  52425. height: math.unit(2.85, "feet"),
  52426. name: "Head",
  52427. image: {
  52428. source: "./media/characters/aarkus/head.svg"
  52429. }
  52430. },
  52431. headAlt: {
  52432. height: math.unit(3.07, "feet"),
  52433. name: "Head (Alt)",
  52434. image: {
  52435. source: "./media/characters/aarkus/head-alt.svg"
  52436. }
  52437. },
  52438. mouth: {
  52439. height: math.unit(1.25, "feet"),
  52440. name: "Mouth",
  52441. image: {
  52442. source: "./media/characters/aarkus/mouth.svg"
  52443. }
  52444. },
  52445. dick: {
  52446. height: math.unit(1.77, "feet"),
  52447. name: "Dick",
  52448. image: {
  52449. source: "./media/characters/aarkus/dick.svg"
  52450. }
  52451. },
  52452. },
  52453. [
  52454. {
  52455. name: "Normal",
  52456. height: math.unit(2.69, "meters"),
  52457. default: true
  52458. },
  52459. {
  52460. name: "Macro",
  52461. height: math.unit(269, "meters")
  52462. },
  52463. {
  52464. name: "Macro+",
  52465. height: math.unit(672.5, "meters")
  52466. },
  52467. {
  52468. name: "Megamacro",
  52469. height: math.unit(2.017, "km")
  52470. },
  52471. ]
  52472. ))
  52473. characterMakers.push(() => makeCharacter(
  52474. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52475. {
  52476. front: {
  52477. height: math.unit(23.47, "cm"),
  52478. weight: math.unit(600, "grams"),
  52479. name: "Front",
  52480. image: {
  52481. source: "./media/characters/diode/front.svg",
  52482. extra: 1778/1396,
  52483. bottom: 95/1873
  52484. }
  52485. },
  52486. side: {
  52487. height: math.unit(23.47, "cm"),
  52488. weight: math.unit(600, "grams"),
  52489. name: "Side",
  52490. image: {
  52491. source: "./media/characters/diode/side.svg",
  52492. extra: 1831/1404,
  52493. bottom: 86/1917
  52494. }
  52495. },
  52496. wings: {
  52497. height: math.unit(0.683, "feet"),
  52498. name: "Wings",
  52499. image: {
  52500. source: "./media/characters/diode/wings.svg"
  52501. }
  52502. },
  52503. },
  52504. [
  52505. {
  52506. name: "Normal",
  52507. height: math.unit(23.47, "cm"),
  52508. default: true
  52509. },
  52510. ]
  52511. ))
  52512. characterMakers.push(() => makeCharacter(
  52513. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52514. {
  52515. front: {
  52516. height: math.unit(6 + 3/12, "feet"),
  52517. weight: math.unit(250, "lb"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/reika/front.svg",
  52521. extra: 1120/1078,
  52522. bottom: 86/1206
  52523. }
  52524. },
  52525. },
  52526. [
  52527. {
  52528. name: "Normal",
  52529. height: math.unit(6 + 3/12, "feet"),
  52530. default: true
  52531. },
  52532. ]
  52533. ))
  52534. characterMakers.push(() => makeCharacter(
  52535. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52536. {
  52537. front: {
  52538. height: math.unit(16 + 8/12, "feet"),
  52539. weight: math.unit(9000, "lb"),
  52540. name: "Front",
  52541. image: {
  52542. source: "./media/characters/lokuto-takama/front.svg",
  52543. extra: 1774/1632,
  52544. bottom: 147/1921
  52545. },
  52546. extraAttributes: {
  52547. "bustWidth": {
  52548. name: "Bust Width",
  52549. power: 1,
  52550. type: "length",
  52551. base: math.unit(2.4, "meters")
  52552. },
  52553. "breastWeight": {
  52554. name: "Breast Weight",
  52555. power: 3,
  52556. type: "mass",
  52557. base: math.unit(1000, "kg")
  52558. },
  52559. }
  52560. },
  52561. },
  52562. [
  52563. {
  52564. name: "Normal",
  52565. height: math.unit(16 + 8/12, "feet"),
  52566. default: true
  52567. },
  52568. ]
  52569. ))
  52570. characterMakers.push(() => makeCharacter(
  52571. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52572. {
  52573. front: {
  52574. height: math.unit(10, "cm"),
  52575. weight: math.unit(850, "grams"),
  52576. name: "Front",
  52577. image: {
  52578. source: "./media/characters/owak-bone/front.svg",
  52579. extra: 1965/1801,
  52580. bottom: 31/1996
  52581. }
  52582. },
  52583. },
  52584. [
  52585. {
  52586. name: "Normal",
  52587. height: math.unit(10, "cm"),
  52588. default: true
  52589. },
  52590. ]
  52591. ))
  52592. characterMakers.push(() => makeCharacter(
  52593. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52594. {
  52595. front: {
  52596. height: math.unit(2 + 6/12, "feet"),
  52597. weight: math.unit(9, "lb"),
  52598. name: "Front",
  52599. image: {
  52600. source: "./media/characters/muffin/front.svg",
  52601. extra: 1220/1195,
  52602. bottom: 84/1304
  52603. }
  52604. },
  52605. },
  52606. [
  52607. {
  52608. name: "Normal",
  52609. height: math.unit(2 + 6/12, "feet"),
  52610. default: true
  52611. },
  52612. ]
  52613. ))
  52614. characterMakers.push(() => makeCharacter(
  52615. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52616. {
  52617. front: {
  52618. height: math.unit(7, "feet"),
  52619. name: "Front",
  52620. image: {
  52621. source: "./media/characters/chimera/front.svg",
  52622. extra: 1752/1614,
  52623. bottom: 68/1820
  52624. }
  52625. },
  52626. },
  52627. [
  52628. {
  52629. name: "Normal",
  52630. height: math.unit(7, "feet")
  52631. },
  52632. {
  52633. name: "Gigamacro",
  52634. height: math.unit(2.9, "gigameters"),
  52635. default: true
  52636. },
  52637. {
  52638. name: "Universal",
  52639. height: math.unit(1.56e26, "yottameters")
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(3, "feet"),
  52648. weight: math.unit(20, "lb"),
  52649. name: "Front",
  52650. image: {
  52651. source: "./media/characters/kit-fennec-fox/front.svg",
  52652. extra: 1027/932,
  52653. bottom: 16/1043
  52654. }
  52655. },
  52656. back: {
  52657. height: math.unit(3, "feet"),
  52658. weight: math.unit(20, "lb"),
  52659. name: "Back",
  52660. image: {
  52661. source: "./media/characters/kit-fennec-fox/back.svg",
  52662. extra: 1027/932,
  52663. bottom: 16/1043
  52664. }
  52665. },
  52666. },
  52667. [
  52668. {
  52669. name: "Normal",
  52670. height: math.unit(3, "feet"),
  52671. default: true
  52672. },
  52673. ]
  52674. ))
  52675. characterMakers.push(() => makeCharacter(
  52676. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52677. {
  52678. front: {
  52679. height: math.unit(167, "cm"),
  52680. name: "Front",
  52681. image: {
  52682. source: "./media/characters/blue-otter/front.svg",
  52683. extra: 1951/1920,
  52684. bottom: 31/1982
  52685. }
  52686. },
  52687. },
  52688. [
  52689. {
  52690. name: "Otter-Sized",
  52691. height: math.unit(100, "cm")
  52692. },
  52693. {
  52694. name: "Normal",
  52695. height: math.unit(167, "cm"),
  52696. default: true
  52697. },
  52698. ]
  52699. ))
  52700. characterMakers.push(() => makeCharacter(
  52701. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52702. {
  52703. front: {
  52704. height: math.unit(4 + 4/12, "feet"),
  52705. name: "Front",
  52706. image: {
  52707. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52708. extra: 1072/1067,
  52709. bottom: 117/1189
  52710. }
  52711. },
  52712. back: {
  52713. height: math.unit(4 + 4/12, "feet"),
  52714. name: "Back",
  52715. image: {
  52716. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52717. extra: 1135/1129,
  52718. bottom: 57/1192
  52719. }
  52720. },
  52721. head: {
  52722. height: math.unit(1.77, "feet"),
  52723. name: "Head",
  52724. image: {
  52725. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52726. }
  52727. },
  52728. },
  52729. [
  52730. {
  52731. name: "Normal",
  52732. height: math.unit(4 + 4/12, "feet"),
  52733. default: true
  52734. },
  52735. ]
  52736. ))
  52737. characterMakers.push(() => makeCharacter(
  52738. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52739. {
  52740. front: {
  52741. height: math.unit(2, "inches"),
  52742. name: "Front",
  52743. image: {
  52744. source: "./media/characters/carley-hartford/front.svg",
  52745. extra: 1035/988,
  52746. bottom: 23/1058
  52747. }
  52748. },
  52749. back: {
  52750. height: math.unit(2, "inches"),
  52751. name: "Back",
  52752. image: {
  52753. source: "./media/characters/carley-hartford/back.svg",
  52754. extra: 1035/988,
  52755. bottom: 23/1058
  52756. }
  52757. },
  52758. dressed: {
  52759. height: math.unit(2, "inches"),
  52760. name: "Dressed",
  52761. image: {
  52762. source: "./media/characters/carley-hartford/dressed.svg",
  52763. extra: 651/620,
  52764. bottom: 0/651
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Micro",
  52771. height: math.unit(2, "inches"),
  52772. default: true
  52773. },
  52774. {
  52775. name: "Macro",
  52776. height: math.unit(6 + 3/12, "feet")
  52777. },
  52778. ]
  52779. ))
  52780. characterMakers.push(() => makeCharacter(
  52781. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52782. {
  52783. front: {
  52784. height: math.unit(2 + 3/12, "feet"),
  52785. weight: math.unit(15 + 7/16, "lb"),
  52786. name: "Front",
  52787. image: {
  52788. source: "./media/characters/duke/front.svg",
  52789. extra: 910/815,
  52790. bottom: 30/940
  52791. }
  52792. },
  52793. },
  52794. [
  52795. {
  52796. name: "Normal",
  52797. height: math.unit(2 + 3/12, "feet"),
  52798. default: true
  52799. },
  52800. ]
  52801. ))
  52802. characterMakers.push(() => makeCharacter(
  52803. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52804. {
  52805. front: {
  52806. height: math.unit(5 + 4/12, "feet"),
  52807. weight: math.unit(156, "lb"),
  52808. name: "Front",
  52809. image: {
  52810. source: "./media/characters/dein/front.svg",
  52811. extra: 855/815,
  52812. bottom: 48/903
  52813. }
  52814. },
  52815. side: {
  52816. height: math.unit(5 + 4/12, "feet"),
  52817. weight: math.unit(156, "lb"),
  52818. name: "side",
  52819. image: {
  52820. source: "./media/characters/dein/side.svg",
  52821. extra: 846/803,
  52822. bottom: 25/871
  52823. }
  52824. },
  52825. maw: {
  52826. height: math.unit(1.45, "feet"),
  52827. name: "Maw",
  52828. image: {
  52829. source: "./media/characters/dein/maw.svg"
  52830. }
  52831. },
  52832. },
  52833. [
  52834. {
  52835. name: "Ferret Sized",
  52836. height: math.unit(2 + 5/12, "feet")
  52837. },
  52838. {
  52839. name: "Normal",
  52840. height: math.unit(5 + 4/12, "feet"),
  52841. default: true
  52842. },
  52843. ]
  52844. ))
  52845. characterMakers.push(() => makeCharacter(
  52846. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52847. {
  52848. front: {
  52849. height: math.unit(84 + 8/12, "feet"),
  52850. weight: math.unit(942180, "lb"),
  52851. name: "Front",
  52852. image: {
  52853. source: "./media/characters/daurine-arima/front.svg",
  52854. extra: 1989/1782,
  52855. bottom: 37/2026
  52856. }
  52857. },
  52858. side: {
  52859. height: math.unit(84 + 8/12, "feet"),
  52860. weight: math.unit(942180, "lb"),
  52861. name: "Side",
  52862. image: {
  52863. source: "./media/characters/daurine-arima/side.svg",
  52864. extra: 1997/1790,
  52865. bottom: 21/2018
  52866. }
  52867. },
  52868. back: {
  52869. height: math.unit(84 + 8/12, "feet"),
  52870. weight: math.unit(942180, "lb"),
  52871. name: "Back",
  52872. image: {
  52873. source: "./media/characters/daurine-arima/back.svg",
  52874. extra: 1992/1800,
  52875. bottom: 12/2004
  52876. }
  52877. },
  52878. head: {
  52879. height: math.unit(15.5, "feet"),
  52880. name: "Head",
  52881. image: {
  52882. source: "./media/characters/daurine-arima/head.svg"
  52883. }
  52884. },
  52885. headAlt: {
  52886. height: math.unit(19.19, "feet"),
  52887. name: "Head (Alt)",
  52888. image: {
  52889. source: "./media/characters/daurine-arima/head-alt.svg"
  52890. }
  52891. },
  52892. },
  52893. [
  52894. {
  52895. name: "Minimum height",
  52896. height: math.unit(8 + 10/12, "feet")
  52897. },
  52898. {
  52899. name: "Comfort height",
  52900. height: math.unit(19 + 6 /12, "feet")
  52901. },
  52902. {
  52903. name: "\"Normal\" height",
  52904. height: math.unit(28 + 10/12, "feet")
  52905. },
  52906. {
  52907. name: "Base height",
  52908. height: math.unit(84 + 8/12, "feet"),
  52909. default: true
  52910. },
  52911. {
  52912. name: "Mini-macro",
  52913. height: math.unit(2360, "feet")
  52914. },
  52915. {
  52916. name: "Macro",
  52917. height: math.unit(10, "miles")
  52918. },
  52919. {
  52920. name: "Goddess",
  52921. height: math.unit(9.99e40, "yottameters")
  52922. },
  52923. ]
  52924. ))
  52925. characterMakers.push(() => makeCharacter(
  52926. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52927. {
  52928. front: {
  52929. height: math.unit(2.3, "meters"),
  52930. name: "Front",
  52931. image: {
  52932. source: "./media/characters/cilenomon/front.svg",
  52933. extra: 1963/1778,
  52934. bottom: 54/2017
  52935. }
  52936. },
  52937. },
  52938. [
  52939. {
  52940. name: "Normal",
  52941. height: math.unit(2.3, "meters"),
  52942. default: true
  52943. },
  52944. {
  52945. name: "Big",
  52946. height: math.unit(5, "meters")
  52947. },
  52948. {
  52949. name: "Macro",
  52950. height: math.unit(30, "meters")
  52951. },
  52952. {
  52953. name: "True",
  52954. height: math.unit(1, "universe")
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52960. {
  52961. front: {
  52962. height: math.unit(5, "feet"),
  52963. name: "Front",
  52964. image: {
  52965. source: "./media/characters/sen-mink/front.svg",
  52966. extra: 1727/1675,
  52967. bottom: 35/1762
  52968. }
  52969. },
  52970. },
  52971. [
  52972. {
  52973. name: "Normal",
  52974. height: math.unit(5, "feet"),
  52975. default: true
  52976. },
  52977. ]
  52978. ))
  52979. characterMakers.push(() => makeCharacter(
  52980. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52981. {
  52982. front: {
  52983. height: math.unit(5.42999, "feet"),
  52984. weight: math.unit(100, "lb"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/ophois/front.svg",
  52988. extra: 1429/1286,
  52989. bottom: 60/1489
  52990. }
  52991. },
  52992. },
  52993. [
  52994. {
  52995. name: "Normal",
  52996. height: math.unit(5.42999, "feet"),
  52997. default: true
  52998. },
  52999. ]
  53000. ))
  53001. characterMakers.push(() => makeCharacter(
  53002. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53003. {
  53004. front: {
  53005. height: math.unit(2, "meters"),
  53006. name: "Front",
  53007. image: {
  53008. source: "./media/characters/riley/front.svg",
  53009. extra: 1779/1754,
  53010. bottom: 139/1918
  53011. }
  53012. },
  53013. },
  53014. [
  53015. {
  53016. name: "Normal",
  53017. height: math.unit(2, "meters"),
  53018. default: true
  53019. },
  53020. ]
  53021. ))
  53022. characterMakers.push(() => makeCharacter(
  53023. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53024. {
  53025. front: {
  53026. height: math.unit(6 + 2/12, "feet"),
  53027. weight: math.unit(195, "lb"),
  53028. preyCapacity: math.unit(6, "people"),
  53029. name: "Front",
  53030. image: {
  53031. source: "./media/characters/shuken-flash/front.svg",
  53032. extra: 1905/1739,
  53033. bottom: 65/1970
  53034. }
  53035. },
  53036. back: {
  53037. height: math.unit(6 + 2/12, "feet"),
  53038. weight: math.unit(195, "lb"),
  53039. preyCapacity: math.unit(6, "people"),
  53040. name: "Back",
  53041. image: {
  53042. source: "./media/characters/shuken-flash/back.svg",
  53043. extra: 1912/1751,
  53044. bottom: 13/1925
  53045. }
  53046. },
  53047. },
  53048. [
  53049. {
  53050. name: "Normal",
  53051. height: math.unit(6 + 2/12, "feet"),
  53052. default: true
  53053. },
  53054. ]
  53055. ))
  53056. characterMakers.push(() => makeCharacter(
  53057. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53058. {
  53059. front: {
  53060. height: math.unit(5 + 9/12, "feet"),
  53061. weight: math.unit(150, "lb"),
  53062. name: "Front",
  53063. image: {
  53064. source: "./media/characters/plat/front.svg",
  53065. extra: 1816/1703,
  53066. bottom: 43/1859
  53067. }
  53068. },
  53069. side: {
  53070. height: math.unit(5 + 9/12, "feet"),
  53071. weight: math.unit(300, "lb"),
  53072. name: "Side",
  53073. image: {
  53074. source: "./media/characters/plat/side.svg",
  53075. extra: 1824/1699,
  53076. bottom: 18/1842
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Normal",
  53083. height: math.unit(5 + 9/12, "feet"),
  53084. default: true
  53085. },
  53086. ]
  53087. ))
  53088. characterMakers.push(() => makeCharacter(
  53089. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53090. {
  53091. front: {
  53092. height: math.unit(9, "feet"),
  53093. weight: math.unit(1800, "lb"),
  53094. name: "Front",
  53095. image: {
  53096. source: "./media/characters/elaine/front.svg",
  53097. extra: 1833/1354,
  53098. bottom: 25/1858
  53099. }
  53100. },
  53101. back: {
  53102. height: math.unit(8.8, "feet"),
  53103. weight: math.unit(1800, "lb"),
  53104. name: "Back",
  53105. image: {
  53106. source: "./media/characters/elaine/back.svg",
  53107. extra: 1641/1233,
  53108. bottom: 53/1694
  53109. }
  53110. },
  53111. },
  53112. [
  53113. {
  53114. name: "Normal",
  53115. height: math.unit(9, "feet"),
  53116. default: true
  53117. },
  53118. ]
  53119. ))
  53120. characterMakers.push(() => makeCharacter(
  53121. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53122. {
  53123. front: {
  53124. height: math.unit(17 + 9/12, "feet"),
  53125. weight: math.unit(8000, "lb"),
  53126. name: "Front",
  53127. image: {
  53128. source: "./media/characters/vera-raven/front.svg",
  53129. extra: 1457/1412,
  53130. bottom: 121/1578
  53131. }
  53132. },
  53133. side: {
  53134. height: math.unit(17 + 9/12, "feet"),
  53135. weight: math.unit(8000, "lb"),
  53136. name: "Side",
  53137. image: {
  53138. source: "./media/characters/vera-raven/side.svg",
  53139. extra: 1510/1464,
  53140. bottom: 54/1564
  53141. }
  53142. },
  53143. },
  53144. [
  53145. {
  53146. name: "Normal",
  53147. height: math.unit(17 + 9/12, "feet"),
  53148. default: true
  53149. },
  53150. ]
  53151. ))
  53152. characterMakers.push(() => makeCharacter(
  53153. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53154. {
  53155. dressed: {
  53156. height: math.unit(6 + 9/12, "feet"),
  53157. name: "Dressed",
  53158. image: {
  53159. source: "./media/characters/nakisha/dressed.svg",
  53160. extra: 1909/1757,
  53161. bottom: 48/1957
  53162. }
  53163. },
  53164. nude: {
  53165. height: math.unit(6 + 9/12, "feet"),
  53166. name: "Nude",
  53167. image: {
  53168. source: "./media/characters/nakisha/nude.svg",
  53169. extra: 1917/1765,
  53170. bottom: 34/1951
  53171. }
  53172. },
  53173. },
  53174. [
  53175. {
  53176. name: "Normal",
  53177. height: math.unit(6 + 9/12, "feet"),
  53178. default: true
  53179. },
  53180. ]
  53181. ))
  53182. characterMakers.push(() => makeCharacter(
  53183. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53184. {
  53185. front: {
  53186. height: math.unit(87, "meters"),
  53187. name: "Front",
  53188. image: {
  53189. source: "./media/characters/serafin/front.svg",
  53190. extra: 1919/1776,
  53191. bottom: 65/1984
  53192. }
  53193. },
  53194. },
  53195. [
  53196. {
  53197. name: "Normal",
  53198. height: math.unit(87, "meters"),
  53199. default: true
  53200. },
  53201. ]
  53202. ))
  53203. characterMakers.push(() => makeCharacter(
  53204. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53205. {
  53206. front: {
  53207. height: math.unit(6, "feet"),
  53208. weight: math.unit(200, "lb"),
  53209. name: "Front",
  53210. image: {
  53211. source: "./media/characters/poptart/front.svg",
  53212. extra: 615/583,
  53213. bottom: 23/638
  53214. }
  53215. },
  53216. back: {
  53217. height: math.unit(6, "feet"),
  53218. weight: math.unit(200, "lb"),
  53219. name: "Back",
  53220. image: {
  53221. source: "./media/characters/poptart/back.svg",
  53222. extra: 617/584,
  53223. bottom: 22/639
  53224. }
  53225. },
  53226. frontNsfw: {
  53227. height: math.unit(6, "feet"),
  53228. weight: math.unit(200, "lb"),
  53229. name: "Front (NSFW)",
  53230. image: {
  53231. source: "./media/characters/poptart/front-nsfw.svg",
  53232. extra: 615/583,
  53233. bottom: 23/638
  53234. }
  53235. },
  53236. backNsfw: {
  53237. height: math.unit(6, "feet"),
  53238. weight: math.unit(200, "lb"),
  53239. name: "Back (NSFW)",
  53240. image: {
  53241. source: "./media/characters/poptart/back-nsfw.svg",
  53242. extra: 617/584,
  53243. bottom: 22/639
  53244. }
  53245. },
  53246. hand: {
  53247. height: math.unit(1.14, "feet"),
  53248. name: "Hand",
  53249. image: {
  53250. source: "./media/characters/poptart/hand.svg"
  53251. }
  53252. },
  53253. foot: {
  53254. height: math.unit(1.5, "feet"),
  53255. name: "Foot",
  53256. image: {
  53257. source: "./media/characters/poptart/foot.svg"
  53258. }
  53259. },
  53260. },
  53261. [
  53262. {
  53263. name: "Normal",
  53264. height: math.unit(6, "feet"),
  53265. default: true
  53266. },
  53267. {
  53268. name: "Grande",
  53269. height: math.unit(350, "feet")
  53270. },
  53271. {
  53272. name: "Massif",
  53273. height: math.unit(967, "feet")
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53279. {
  53280. hyenaSide: {
  53281. height: math.unit(120, "cm"),
  53282. weight: math.unit(120, "lb"),
  53283. name: "Side",
  53284. image: {
  53285. source: "./media/characters/trance/hyena-side.svg",
  53286. extra: 998/904,
  53287. bottom: 76/1074
  53288. }
  53289. },
  53290. },
  53291. [
  53292. {
  53293. name: "Normal",
  53294. height: math.unit(120, "cm"),
  53295. default: true
  53296. },
  53297. {
  53298. name: "Dire",
  53299. height: math.unit(230, "cm")
  53300. },
  53301. {
  53302. name: "Macro",
  53303. height: math.unit(37, "feet")
  53304. },
  53305. ]
  53306. ))
  53307. characterMakers.push(() => makeCharacter(
  53308. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53309. {
  53310. front: {
  53311. height: math.unit(6 + 3/12, "feet"),
  53312. name: "Front",
  53313. image: {
  53314. source: "./media/characters/michael-berretta/front.svg",
  53315. extra: 515/494,
  53316. bottom: 20/535
  53317. }
  53318. },
  53319. back: {
  53320. height: math.unit(6 + 3/12, "feet"),
  53321. name: "Back",
  53322. image: {
  53323. source: "./media/characters/michael-berretta/back.svg",
  53324. extra: 520/497,
  53325. bottom: 21/541
  53326. }
  53327. },
  53328. frontNsfw: {
  53329. height: math.unit(6 + 3/12, "feet"),
  53330. name: "Front (NSFW)",
  53331. image: {
  53332. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53333. extra: 515/494,
  53334. bottom: 20/535
  53335. }
  53336. },
  53337. dick: {
  53338. height: math.unit(1, "feet"),
  53339. name: "Dick",
  53340. image: {
  53341. source: "./media/characters/michael-berretta/dick.svg"
  53342. }
  53343. },
  53344. },
  53345. [
  53346. {
  53347. name: "Normal",
  53348. height: math.unit(6 + 3/12, "feet"),
  53349. default: true
  53350. },
  53351. {
  53352. name: "Big",
  53353. height: math.unit(12, "feet")
  53354. },
  53355. {
  53356. name: "Macro",
  53357. height: math.unit(187.5, "feet")
  53358. },
  53359. ]
  53360. ))
  53361. characterMakers.push(() => makeCharacter(
  53362. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53363. {
  53364. front: {
  53365. height: math.unit(9 + 9/12, "feet"),
  53366. weight: math.unit(1244, "lb"),
  53367. name: "Front",
  53368. image: {
  53369. source: "./media/characters/stella-edgecomb/front.svg",
  53370. extra: 1835/1706,
  53371. bottom: 49/1884
  53372. }
  53373. },
  53374. pen: {
  53375. height: math.unit(0.95, "feet"),
  53376. name: "Pen",
  53377. image: {
  53378. source: "./media/characters/stella-edgecomb/pen.svg"
  53379. }
  53380. },
  53381. },
  53382. [
  53383. {
  53384. name: "Cozy Bear",
  53385. height: math.unit(0.5, "inches")
  53386. },
  53387. {
  53388. name: "Normal",
  53389. height: math.unit(9 + 9/12, "feet"),
  53390. default: true
  53391. },
  53392. {
  53393. name: "Giga Bear",
  53394. height: math.unit(1, "mile")
  53395. },
  53396. {
  53397. name: "Great Bear",
  53398. height: math.unit(53, "miles")
  53399. },
  53400. {
  53401. name: "Goddess Bear",
  53402. height: math.unit(40000, "miles")
  53403. },
  53404. {
  53405. name: "Sun Bear",
  53406. height: math.unit(900000, "miles")
  53407. },
  53408. ]
  53409. ))
  53410. characterMakers.push(() => makeCharacter(
  53411. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53412. {
  53413. anthroFront: {
  53414. height: math.unit(556, "cm"),
  53415. weight: math.unit(2650, "kg"),
  53416. preyCapacity: math.unit(3, "people"),
  53417. name: "Front",
  53418. image: {
  53419. source: "./media/characters/ash´iika/front.svg",
  53420. extra: 710/673,
  53421. bottom: 15/725
  53422. },
  53423. form: "anthro",
  53424. default: true
  53425. },
  53426. anthroSide: {
  53427. height: math.unit(556, "cm"),
  53428. weight: math.unit(2650, "kg"),
  53429. preyCapacity: math.unit(3, "people"),
  53430. name: "Side",
  53431. image: {
  53432. source: "./media/characters/ash´iika/side.svg",
  53433. extra: 696/676,
  53434. bottom: 13/709
  53435. },
  53436. form: "anthro"
  53437. },
  53438. anthroDressed: {
  53439. height: math.unit(556, "cm"),
  53440. weight: math.unit(2650, "kg"),
  53441. preyCapacity: math.unit(3, "people"),
  53442. name: "Dressed",
  53443. image: {
  53444. source: "./media/characters/ash´iika/dressed.svg",
  53445. extra: 710/673,
  53446. bottom: 15/725
  53447. },
  53448. form: "anthro"
  53449. },
  53450. anthroHead: {
  53451. height: math.unit(3.5, "feet"),
  53452. name: "Head",
  53453. image: {
  53454. source: "./media/characters/ash´iika/head.svg",
  53455. extra: 348/291,
  53456. bottom: 45/393
  53457. },
  53458. form: "anthro"
  53459. },
  53460. feralSide: {
  53461. height: math.unit(870, "cm"),
  53462. weight: math.unit(17500, "kg"),
  53463. preyCapacity: math.unit(15, "people"),
  53464. name: "Side",
  53465. image: {
  53466. source: "./media/characters/ash´iika/feral.svg",
  53467. extra: 595/199,
  53468. bottom: 7/602
  53469. },
  53470. form: "feral",
  53471. default: true,
  53472. },
  53473. },
  53474. [
  53475. {
  53476. name: "Normal",
  53477. height: math.unit(556, "cm"),
  53478. default: true,
  53479. form: "anthro"
  53480. },
  53481. {
  53482. name: "Macro",
  53483. height: math.unit(88, "meters"),
  53484. form: "anthro"
  53485. },
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(870, "cm"),
  53489. default: true,
  53490. form: "feral"
  53491. },
  53492. {
  53493. name: "Large",
  53494. height: math.unit(25, "meters"),
  53495. form: "feral"
  53496. },
  53497. ],
  53498. {
  53499. "anthro": {
  53500. name: "Anthro",
  53501. default: true
  53502. },
  53503. "feral": {
  53504. name: "Feral",
  53505. },
  53506. }
  53507. ))
  53508. characterMakers.push(() => makeCharacter(
  53509. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53510. {
  53511. front: {
  53512. height: math.unit(10, "feet"),
  53513. weight: math.unit(800, "lb"),
  53514. name: "Front",
  53515. image: {
  53516. source: "./media/characters/yen/front.svg",
  53517. extra: 443/411,
  53518. bottom: 6/449
  53519. }
  53520. },
  53521. sleeping: {
  53522. height: math.unit(10, "feet"),
  53523. weight: math.unit(800, "lb"),
  53524. name: "Sleeping",
  53525. image: {
  53526. source: "./media/characters/yen/sleeping.svg",
  53527. extra: 470/422,
  53528. bottom: 0/470
  53529. }
  53530. },
  53531. head: {
  53532. height: math.unit(2.2, "feet"),
  53533. name: "Head",
  53534. image: {
  53535. source: "./media/characters/yen/head.svg"
  53536. }
  53537. },
  53538. headAlt: {
  53539. height: math.unit(2.1, "feet"),
  53540. name: "Head (Alt)",
  53541. image: {
  53542. source: "./media/characters/yen/head-alt.svg"
  53543. }
  53544. },
  53545. },
  53546. [
  53547. {
  53548. name: "Normal",
  53549. height: math.unit(10, "feet"),
  53550. default: true
  53551. },
  53552. ]
  53553. ))
  53554. characterMakers.push(() => makeCharacter(
  53555. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53556. {
  53557. front: {
  53558. height: math.unit(12, "feet"),
  53559. name: "Front",
  53560. image: {
  53561. source: "./media/characters/citra/front.svg",
  53562. extra: 1950/1710,
  53563. bottom: 47/1997
  53564. }
  53565. },
  53566. },
  53567. [
  53568. {
  53569. name: "Normal",
  53570. height: math.unit(12, "feet"),
  53571. default: true
  53572. },
  53573. ]
  53574. ))
  53575. characterMakers.push(() => makeCharacter(
  53576. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53577. {
  53578. side: {
  53579. height: math.unit(7 + 10/12, "feet"),
  53580. name: "Side",
  53581. image: {
  53582. source: "./media/characters/sholstim/side.svg",
  53583. extra: 786/682,
  53584. bottom: 40/826
  53585. }
  53586. },
  53587. },
  53588. [
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(7 + 10/12, "feet"),
  53592. default: true
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53598. {
  53599. front: {
  53600. height: math.unit(3.10, "meters"),
  53601. name: "Front",
  53602. image: {
  53603. source: "./media/characters/aggyn/front.svg",
  53604. extra: 1188/963,
  53605. bottom: 24/1212
  53606. }
  53607. },
  53608. },
  53609. [
  53610. {
  53611. name: "Normal",
  53612. height: math.unit(3.10, "meters"),
  53613. default: true
  53614. },
  53615. ]
  53616. ))
  53617. characterMakers.push(() => makeCharacter(
  53618. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53619. {
  53620. front: {
  53621. height: math.unit(7 + 5/12, "feet"),
  53622. weight: math.unit(687, "lb"),
  53623. name: "Front",
  53624. image: {
  53625. source: "./media/characters/alsandair-hergenroether/front.svg",
  53626. extra: 1251/1186,
  53627. bottom: 75/1326
  53628. }
  53629. },
  53630. back: {
  53631. height: math.unit(7 + 5/12, "feet"),
  53632. weight: math.unit(687, "lb"),
  53633. name: "Back",
  53634. image: {
  53635. source: "./media/characters/alsandair-hergenroether/back.svg",
  53636. extra: 1290/1229,
  53637. bottom: 17/1307
  53638. }
  53639. },
  53640. },
  53641. [
  53642. {
  53643. name: "Max Compression",
  53644. height: math.unit(7 + 5/12, "feet"),
  53645. default: true
  53646. },
  53647. {
  53648. name: "\"Normal\"",
  53649. height: math.unit(2, "universes")
  53650. },
  53651. ]
  53652. ))
  53653. characterMakers.push(() => makeCharacter(
  53654. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53655. {
  53656. front: {
  53657. height: math.unit(4 + 1/12, "feet"),
  53658. weight: math.unit(92, "lb"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/ie/front.svg",
  53662. extra: 1585/1352,
  53663. bottom: 91/1676
  53664. }
  53665. },
  53666. },
  53667. [
  53668. {
  53669. name: "Normal",
  53670. height: math.unit(4 + 1/12, "feet"),
  53671. default: true
  53672. },
  53673. ]
  53674. ))
  53675. characterMakers.push(() => makeCharacter(
  53676. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53677. {
  53678. anthro: {
  53679. height: math.unit(6, "feet"),
  53680. weight: math.unit(150, "lb"),
  53681. name: "Front",
  53682. image: {
  53683. source: "./media/characters/willow/anthro.svg",
  53684. extra: 1073/986,
  53685. bottom: 34/1107
  53686. },
  53687. form: "anthro",
  53688. default: true
  53689. },
  53690. taur: {
  53691. height: math.unit(6, "feet"),
  53692. weight: math.unit(150, "lb"),
  53693. name: "Side",
  53694. image: {
  53695. source: "./media/characters/willow/taur.svg",
  53696. extra: 647/512,
  53697. bottom: 136/783
  53698. },
  53699. form: "taur",
  53700. default: true
  53701. },
  53702. },
  53703. [
  53704. {
  53705. name: "Humanoid",
  53706. height: math.unit(2.7, "meters"),
  53707. form: "anthro"
  53708. },
  53709. {
  53710. name: "Normal",
  53711. height: math.unit(9, "meters"),
  53712. form: "anthro",
  53713. default: true
  53714. },
  53715. {
  53716. name: "Humanoid",
  53717. height: math.unit(2.1, "meters"),
  53718. form: "taur"
  53719. },
  53720. {
  53721. name: "Normal",
  53722. height: math.unit(7, "meters"),
  53723. form: "taur",
  53724. default: true
  53725. },
  53726. ],
  53727. {
  53728. "anthro": {
  53729. name: "Anthro",
  53730. default: true
  53731. },
  53732. "taur": {
  53733. name: "Taur",
  53734. },
  53735. }
  53736. ))
  53737. characterMakers.push(() => makeCharacter(
  53738. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53739. {
  53740. front: {
  53741. height: math.unit(2 + 5/12, "feet"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/kyan/front.svg",
  53745. extra: 460/334,
  53746. bottom: 23/483
  53747. },
  53748. extraAttributes: {
  53749. "toeLength": {
  53750. name: "Toe Length",
  53751. power: 1,
  53752. type: "length",
  53753. base: math.unit(7, "cm")
  53754. },
  53755. "toeclawLength": {
  53756. name: "Toeclaw Length",
  53757. power: 1,
  53758. type: "length",
  53759. base: math.unit(4.7, "cm")
  53760. },
  53761. "earHeight": {
  53762. name: "Ear Height",
  53763. power: 1,
  53764. type: "length",
  53765. base: math.unit(14.1, "cm")
  53766. },
  53767. }
  53768. },
  53769. paws: {
  53770. height: math.unit(0.45, "feet"),
  53771. name: "Paws",
  53772. image: {
  53773. source: "./media/characters/kyan/paws.svg",
  53774. extra: 581/581,
  53775. bottom: 114/695
  53776. }
  53777. },
  53778. },
  53779. [
  53780. {
  53781. name: "Normal",
  53782. height: math.unit(2 + 5/12, "feet"),
  53783. default: true
  53784. },
  53785. ]
  53786. ))
  53787. characterMakers.push(() => makeCharacter(
  53788. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53789. {
  53790. front: {
  53791. height: math.unit(2 + 2/3, "feet"),
  53792. name: "Front",
  53793. image: {
  53794. source: "./media/characters/xazzon/front.svg",
  53795. extra: 1109/984,
  53796. bottom: 42/1151
  53797. }
  53798. },
  53799. back: {
  53800. height: math.unit(2 + 2/3, "feet"),
  53801. name: "Back",
  53802. image: {
  53803. source: "./media/characters/xazzon/back.svg",
  53804. extra: 1095/971,
  53805. bottom: 23/1118
  53806. }
  53807. },
  53808. },
  53809. [
  53810. {
  53811. name: "Normal",
  53812. height: math.unit(2 + 2/3, "feet"),
  53813. default: true
  53814. },
  53815. ]
  53816. ))
  53817. characterMakers.push(() => makeCharacter(
  53818. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53819. {
  53820. dressed: {
  53821. height: math.unit(5 + 7/12, "feet"),
  53822. weight: math.unit(173, "lb"),
  53823. name: "Dressed",
  53824. image: {
  53825. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53826. extra: 3262/2862,
  53827. bottom: 188/3450
  53828. }
  53829. },
  53830. undressed: {
  53831. height: math.unit(5 + 7/12, "feet"),
  53832. weight: math.unit(173, "lb"),
  53833. name: "Undressed",
  53834. image: {
  53835. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53836. extra: 3262/2862,
  53837. bottom: 188/3450
  53838. }
  53839. },
  53840. },
  53841. [
  53842. {
  53843. name: "The void",
  53844. height: math.unit(7.29193e-34, "angstroms")
  53845. },
  53846. {
  53847. name: "Uh-Oh.",
  53848. height: math.unit(5.734e-7, "angstroms")
  53849. },
  53850. {
  53851. name: "Pico",
  53852. height: math.unit(0.876, "angstroms")
  53853. },
  53854. {
  53855. name: "Nano",
  53856. height: math.unit(0.000134200, "mm")
  53857. },
  53858. {
  53859. name: "Micro",
  53860. height: math.unit(0.0673020, "mm")
  53861. },
  53862. {
  53863. name: "Tiny",
  53864. height: math.unit(2.4, "mm")
  53865. },
  53866. {
  53867. name: "Actual Normal",
  53868. height: math.unit(3, "inches"),
  53869. default: true
  53870. },
  53871. {
  53872. name: "Normal",
  53873. height: math.unit(5 + 8/12, "feet")
  53874. },
  53875. {
  53876. name: "Giant",
  53877. height: math.unit(12, "feet")
  53878. },
  53879. {
  53880. name: "City Ruler",
  53881. height: math.unit(270, "meters")
  53882. },
  53883. {
  53884. name: "Giga",
  53885. height: math.unit(1117.6, "km")
  53886. },
  53887. {
  53888. name: "All-Powerful Queen",
  53889. height: math.unit(70.8, "gigameters")
  53890. },
  53891. {
  53892. name: "'Goddess'",
  53893. height: math.unit(600, "yottameters")
  53894. },
  53895. {
  53896. name: "Biggest!",
  53897. height: math.unit(4.23e5, "yottameters")
  53898. },
  53899. ]
  53900. ))
  53901. characterMakers.push(() => makeCharacter(
  53902. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53903. {
  53904. front: {
  53905. height: math.unit(8, "feet"),
  53906. weight: math.unit(300, "lb"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/khyla-shadowsong/front.svg",
  53910. extra: 861/798,
  53911. bottom: 32/893
  53912. }
  53913. },
  53914. side: {
  53915. height: math.unit(8, "feet"),
  53916. weight: math.unit(300, "lb"),
  53917. name: "Side",
  53918. image: {
  53919. source: "./media/characters/khyla-shadowsong/side.svg",
  53920. extra: 790/750,
  53921. bottom: 87/877
  53922. }
  53923. },
  53924. back: {
  53925. height: math.unit(8, "feet"),
  53926. weight: math.unit(300, "lb"),
  53927. name: "Back",
  53928. image: {
  53929. source: "./media/characters/khyla-shadowsong/back.svg",
  53930. extra: 855/808,
  53931. bottom: 14/869
  53932. }
  53933. },
  53934. head: {
  53935. height: math.unit(2.7, "feet"),
  53936. name: "Head",
  53937. image: {
  53938. source: "./media/characters/khyla-shadowsong/head.svg"
  53939. }
  53940. },
  53941. },
  53942. [
  53943. {
  53944. name: "Micro",
  53945. height: math.unit(6, "inches")
  53946. },
  53947. {
  53948. name: "Normal",
  53949. height: math.unit(8, "feet"),
  53950. default: true
  53951. },
  53952. ]
  53953. ))
  53954. characterMakers.push(() => makeCharacter(
  53955. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53956. {
  53957. hyperFront: {
  53958. height: math.unit(9 + 4/12, "feet"),
  53959. weight: math.unit(2000, "lb"),
  53960. name: "Front",
  53961. image: {
  53962. source: "./media/characters/tiden/hyper-front.svg",
  53963. extra: 400/382,
  53964. bottom: 6/406
  53965. },
  53966. form: "hyper",
  53967. },
  53968. regularFront: {
  53969. height: math.unit(7 + 10/12, "feet"),
  53970. weight: math.unit(470, "lb"),
  53971. name: "Front",
  53972. image: {
  53973. source: "./media/characters/tiden/regular-front.svg",
  53974. extra: 468/442,
  53975. bottom: 6/474
  53976. },
  53977. form: "regular",
  53978. },
  53979. },
  53980. [
  53981. {
  53982. name: "Normal",
  53983. height: math.unit(9 + 4/12, "feet"),
  53984. default: true,
  53985. form: "hyper"
  53986. },
  53987. {
  53988. name: "Normal",
  53989. height: math.unit(7 + 10/12, "feet"),
  53990. default: true,
  53991. form: "regular"
  53992. },
  53993. ],
  53994. {
  53995. "hyper": {
  53996. name: "Hyper",
  53997. default: true
  53998. },
  53999. "regular": {
  54000. name: "Regular",
  54001. },
  54002. }
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54006. {
  54007. side: {
  54008. height: math.unit(6, "feet"),
  54009. weight: math.unit(150, "lb"),
  54010. name: "Side",
  54011. image: {
  54012. source: "./media/characters/jason-crowe/side.svg",
  54013. extra: 1771/766,
  54014. bottom: 219/1990
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Pocket Gryphon",
  54021. height: math.unit(6, "cm")
  54022. },
  54023. {
  54024. name: "Raven",
  54025. height: math.unit(60, "cm")
  54026. },
  54027. {
  54028. name: "Normal",
  54029. height: math.unit(1, "meter"),
  54030. default: true
  54031. },
  54032. ]
  54033. ))
  54034. characterMakers.push(() => makeCharacter(
  54035. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54036. {
  54037. front: {
  54038. height: math.unit(9 + 6/12, "feet"),
  54039. weight: math.unit(1100, "lb"),
  54040. name: "Front",
  54041. image: {
  54042. source: "./media/characters/django/front.svg",
  54043. extra: 1231/1136,
  54044. bottom: 34/1265
  54045. }
  54046. },
  54047. side: {
  54048. height: math.unit(9 + 6/12, "feet"),
  54049. weight: math.unit(1100, "lb"),
  54050. name: "Side",
  54051. image: {
  54052. source: "./media/characters/django/side.svg",
  54053. extra: 1267/1174,
  54054. bottom: 9/1276
  54055. }
  54056. },
  54057. },
  54058. [
  54059. {
  54060. name: "Normal",
  54061. height: math.unit(9 + 6/12, "feet"),
  54062. default: true
  54063. },
  54064. {
  54065. name: "Macro 1",
  54066. height: math.unit(50, "feet")
  54067. },
  54068. {
  54069. name: "Macro 2",
  54070. height: math.unit(500, "feet")
  54071. },
  54072. {
  54073. name: "Mega Macro",
  54074. height: math.unit(5300, "feet")
  54075. },
  54076. ]
  54077. ))
  54078. characterMakers.push(() => makeCharacter(
  54079. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54080. {
  54081. frontSfw: {
  54082. height: math.unit(120, "cm"),
  54083. weight: math.unit(15, "kg"),
  54084. name: "Front (SFW)",
  54085. image: {
  54086. source: "./media/characters/eri/front-sfw.svg",
  54087. extra: 1014/939,
  54088. bottom: 37/1051
  54089. },
  54090. form: "moth",
  54091. },
  54092. frontNsfw: {
  54093. height: math.unit(120, "cm"),
  54094. weight: math.unit(15, "kg"),
  54095. name: "Front (NSFW)",
  54096. image: {
  54097. source: "./media/characters/eri/front-nsfw.svg",
  54098. extra: 1014/939,
  54099. bottom: 37/1051
  54100. },
  54101. form: "moth",
  54102. default: true
  54103. },
  54104. egg: {
  54105. height: math.unit(10, "cm"),
  54106. name: "Egg",
  54107. image: {
  54108. source: "./media/characters/eri/egg.svg"
  54109. },
  54110. form: "egg",
  54111. default: true
  54112. },
  54113. },
  54114. [
  54115. {
  54116. name: "Normal",
  54117. height: math.unit(120, "cm"),
  54118. default: true,
  54119. form: "moth"
  54120. },
  54121. {
  54122. name: "Normal",
  54123. height: math.unit(10, "cm"),
  54124. default: true,
  54125. form: "egg"
  54126. },
  54127. ],
  54128. {
  54129. "moth": {
  54130. name: "Moth",
  54131. default: true
  54132. },
  54133. "egg": {
  54134. name: "Egg",
  54135. },
  54136. }
  54137. ))
  54138. characterMakers.push(() => makeCharacter(
  54139. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54140. {
  54141. front: {
  54142. height: math.unit(200, "feet"),
  54143. name: "Front",
  54144. image: {
  54145. source: "./media/characters/bishop-dowser/front.svg",
  54146. extra: 933/868,
  54147. bottom: 106/1039
  54148. }
  54149. },
  54150. },
  54151. [
  54152. {
  54153. name: "Giant",
  54154. height: math.unit(200, "feet"),
  54155. default: true
  54156. },
  54157. ]
  54158. ))
  54159. characterMakers.push(() => makeCharacter(
  54160. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54161. {
  54162. front: {
  54163. height: math.unit(2, "meters"),
  54164. preyCapacity: math.unit(3, "people"),
  54165. name: "Front",
  54166. image: {
  54167. source: "./media/characters/fryra/front.svg",
  54168. extra: 1025/948,
  54169. bottom: 30/1055
  54170. },
  54171. extraAttributes: {
  54172. "breastVolume": {
  54173. name: "Breast Volume",
  54174. power: 3,
  54175. type: "volume",
  54176. base: math.unit(8, "liters")
  54177. },
  54178. }
  54179. },
  54180. back: {
  54181. height: math.unit(2, "meters"),
  54182. preyCapacity: math.unit(3, "people"),
  54183. name: "Back",
  54184. image: {
  54185. source: "./media/characters/fryra/back.svg",
  54186. extra: 993/938,
  54187. bottom: 38/1031
  54188. },
  54189. extraAttributes: {
  54190. "breastVolume": {
  54191. name: "Breast Volume",
  54192. power: 3,
  54193. type: "volume",
  54194. base: math.unit(8, "liters")
  54195. },
  54196. }
  54197. },
  54198. head: {
  54199. height: math.unit(1.33, "feet"),
  54200. name: "Head",
  54201. image: {
  54202. source: "./media/characters/fryra/head.svg"
  54203. }
  54204. },
  54205. maw: {
  54206. height: math.unit(0.56, "feet"),
  54207. name: "Maw",
  54208. image: {
  54209. source: "./media/characters/fryra/maw.svg"
  54210. }
  54211. },
  54212. },
  54213. [
  54214. {
  54215. name: "Micro",
  54216. height: math.unit(5, "cm")
  54217. },
  54218. {
  54219. name: "Normal",
  54220. height: math.unit(2, "meters"),
  54221. default: true
  54222. },
  54223. {
  54224. name: "Small Macro",
  54225. height: math.unit(8, "meters")
  54226. },
  54227. {
  54228. name: "Macro",
  54229. height: math.unit(50, "meters")
  54230. },
  54231. {
  54232. name: "Megamacro",
  54233. height: math.unit(1, "km")
  54234. },
  54235. {
  54236. name: "Planetary",
  54237. height: math.unit(300000, "km")
  54238. },
  54239. {
  54240. name: "Universal",
  54241. height: math.unit(250, "lightyears")
  54242. },
  54243. {
  54244. name: "Fabric of Reality",
  54245. height: math.unit(1000, "multiverses")
  54246. },
  54247. ]
  54248. ))
  54249. characterMakers.push(() => makeCharacter(
  54250. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54251. {
  54252. frontDressed: {
  54253. height: math.unit(6 + 2/12, "feet"),
  54254. name: "Front (Dressed)",
  54255. image: {
  54256. source: "./media/characters/fiera/front-dressed.svg",
  54257. extra: 1883/1793,
  54258. bottom: 70/1953
  54259. }
  54260. },
  54261. backDressed: {
  54262. height: math.unit(6 + 2/12, "feet"),
  54263. name: "Back (Dressed)",
  54264. image: {
  54265. source: "./media/characters/fiera/back-dressed.svg",
  54266. extra: 1847/1780,
  54267. bottom: 70/1917
  54268. }
  54269. },
  54270. frontNude: {
  54271. height: math.unit(6 + 2/12, "feet"),
  54272. name: "Front (Nude)",
  54273. image: {
  54274. source: "./media/characters/fiera/front-nude.svg",
  54275. extra: 1875/1785,
  54276. bottom: 66/1941
  54277. }
  54278. },
  54279. backNude: {
  54280. height: math.unit(6 + 2/12, "feet"),
  54281. name: "Back (Nude)",
  54282. image: {
  54283. source: "./media/characters/fiera/back-nude.svg",
  54284. extra: 1855/1788,
  54285. bottom: 44/1899
  54286. }
  54287. },
  54288. maw: {
  54289. height: math.unit(1.3, "feet"),
  54290. name: "Maw",
  54291. image: {
  54292. source: "./media/characters/fiera/maw.svg"
  54293. }
  54294. },
  54295. paw: {
  54296. height: math.unit(1, "feet"),
  54297. name: "Paw",
  54298. image: {
  54299. source: "./media/characters/fiera/paw.svg"
  54300. }
  54301. },
  54302. shoe: {
  54303. height: math.unit(1.05, "feet"),
  54304. name: "Shoe",
  54305. image: {
  54306. source: "./media/characters/fiera/shoe.svg"
  54307. }
  54308. },
  54309. },
  54310. [
  54311. {
  54312. name: "Normal",
  54313. height: math.unit(6 + 2/12, "feet"),
  54314. default: true
  54315. },
  54316. {
  54317. name: "Size Difference",
  54318. height: math.unit(13, "feet")
  54319. },
  54320. {
  54321. name: "Macro",
  54322. height: math.unit(60, "feet")
  54323. },
  54324. {
  54325. name: "Mega Macro",
  54326. height: math.unit(200, "feet")
  54327. },
  54328. ]
  54329. ))
  54330. characterMakers.push(() => makeCharacter(
  54331. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54332. {
  54333. back: {
  54334. height: math.unit(6, "feet"),
  54335. name: "Back",
  54336. image: {
  54337. source: "./media/characters/flare/back.svg",
  54338. extra: 1883/1765,
  54339. bottom: 32/1915
  54340. }
  54341. },
  54342. },
  54343. [
  54344. {
  54345. name: "Normal",
  54346. height: math.unit(6 + 2/12, "feet"),
  54347. default: true
  54348. },
  54349. {
  54350. name: "Size Difference",
  54351. height: math.unit(13, "feet")
  54352. },
  54353. {
  54354. name: "Macro",
  54355. height: math.unit(60, "feet")
  54356. },
  54357. {
  54358. name: "Macro 2",
  54359. height: math.unit(100, "feet")
  54360. },
  54361. {
  54362. name: "Mega Macro",
  54363. height: math.unit(200, "feet")
  54364. },
  54365. ]
  54366. ))
  54367. characterMakers.push(() => makeCharacter(
  54368. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54369. {
  54370. front: {
  54371. height: math.unit(2.2, "m"),
  54372. weight: math.unit(300, "kg"),
  54373. name: "Front",
  54374. image: {
  54375. source: "./media/characters/hanna/front.svg",
  54376. extra: 1696/1502,
  54377. bottom: 206/1902
  54378. }
  54379. },
  54380. },
  54381. [
  54382. {
  54383. name: "Humanoid",
  54384. height: math.unit(2.2, "meters")
  54385. },
  54386. {
  54387. name: "Normal",
  54388. height: math.unit(4.8, "meters"),
  54389. default: true
  54390. },
  54391. ]
  54392. ))
  54393. characterMakers.push(() => makeCharacter(
  54394. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54395. {
  54396. front: {
  54397. height: math.unit(2.8, "meters"),
  54398. name: "Front",
  54399. image: {
  54400. source: "./media/characters/argo/front.svg",
  54401. extra: 731/518,
  54402. bottom: 84/815
  54403. }
  54404. },
  54405. },
  54406. [
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(3, "meters"),
  54410. default: true
  54411. },
  54412. ]
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54416. {
  54417. side: {
  54418. height: math.unit(3.8, "meters"),
  54419. name: "Side",
  54420. image: {
  54421. source: "./media/characters/sybil/side.svg",
  54422. extra: 382/361,
  54423. bottom: 25/407
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(3.8, "meters"),
  54431. default: true
  54432. },
  54433. ]
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54437. {
  54438. side: {
  54439. height: math.unit(6, "meters"),
  54440. name: "Side",
  54441. image: {
  54442. source: "./media/characters/plum/side.svg",
  54443. extra: 858/755,
  54444. bottom: 45/903
  54445. },
  54446. form: "taur",
  54447. default: true
  54448. },
  54449. back: {
  54450. height: math.unit(6.3, "meters"),
  54451. name: "Back",
  54452. image: {
  54453. source: "./media/characters/plum/back.svg",
  54454. extra: 887/813,
  54455. bottom: 32/919
  54456. },
  54457. form: "taur",
  54458. },
  54459. feral: {
  54460. height: math.unit(5.5, "meter"),
  54461. name: "Front",
  54462. image: {
  54463. source: "./media/characters/plum/feral.svg",
  54464. extra: 568/403,
  54465. bottom: 51/619
  54466. },
  54467. form: "feral",
  54468. default: true
  54469. },
  54470. head: {
  54471. height: math.unit(1.46, "meter"),
  54472. name: "Head",
  54473. image: {
  54474. source: "./media/characters/plum/head.svg"
  54475. },
  54476. form: "taur"
  54477. },
  54478. tailTop: {
  54479. height: math.unit(5.6, "meter"),
  54480. name: "Tail (Top)",
  54481. image: {
  54482. source: "./media/characters/plum/tail-top.svg"
  54483. },
  54484. form: "taur",
  54485. },
  54486. tailBottom: {
  54487. height: math.unit(5.6, "meter"),
  54488. name: "Tail (Bottom)",
  54489. image: {
  54490. source: "./media/characters/plum/tail-bottom.svg"
  54491. },
  54492. form: "taur",
  54493. },
  54494. feralHead: {
  54495. height: math.unit(2.56549521, "meter"),
  54496. name: "Head",
  54497. image: {
  54498. source: "./media/characters/plum/head.svg"
  54499. },
  54500. form: "feral"
  54501. },
  54502. feralTailTop: {
  54503. height: math.unit(5.44728435, "meter"),
  54504. name: "Tail (Top)",
  54505. image: {
  54506. source: "./media/characters/plum/tail-top.svg"
  54507. },
  54508. form: "feral",
  54509. },
  54510. feralTailBottom: {
  54511. height: math.unit(5.44728435, "meter"),
  54512. name: "Tail (Bottom)",
  54513. image: {
  54514. source: "./media/characters/plum/tail-bottom.svg"
  54515. },
  54516. form: "feral",
  54517. },
  54518. },
  54519. [
  54520. {
  54521. name: "Normal",
  54522. height: math.unit(6, "meters"),
  54523. default: true,
  54524. form: "taur"
  54525. },
  54526. {
  54527. name: "Normal",
  54528. height: math.unit(5.5, "meters"),
  54529. default: true,
  54530. form: "feral"
  54531. },
  54532. ],
  54533. {
  54534. "taur": {
  54535. name: "Taur",
  54536. default: true
  54537. },
  54538. "feral": {
  54539. name: "Feral",
  54540. },
  54541. }
  54542. ))
  54543. characterMakers.push(() => makeCharacter(
  54544. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54545. {
  54546. front: {
  54547. height: math.unit(6, "feet"),
  54548. weight: math.unit(115, "lb"),
  54549. name: "Front",
  54550. image: {
  54551. source: "./media/characters/celeste-kitsune/front.svg",
  54552. extra: 393/366,
  54553. bottom: 7/400
  54554. }
  54555. },
  54556. side: {
  54557. height: math.unit(6, "feet"),
  54558. weight: math.unit(115, "lb"),
  54559. name: "Side",
  54560. image: {
  54561. source: "./media/characters/celeste-kitsune/side.svg",
  54562. extra: 818/765,
  54563. bottom: 40/858
  54564. }
  54565. },
  54566. },
  54567. [
  54568. {
  54569. name: "Megamacro",
  54570. height: math.unit(1500, "miles"),
  54571. default: true
  54572. },
  54573. ]
  54574. ))
  54575. characterMakers.push(() => makeCharacter(
  54576. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54577. {
  54578. front: {
  54579. height: math.unit(8, "meters"),
  54580. name: "Front",
  54581. image: {
  54582. source: "./media/characters/io/front.svg",
  54583. extra: 865/722,
  54584. bottom: 58/923
  54585. }
  54586. },
  54587. back: {
  54588. height: math.unit(8, "meters"),
  54589. name: "Back",
  54590. image: {
  54591. source: "./media/characters/io/back.svg",
  54592. extra: 920/776,
  54593. bottom: 42/962
  54594. }
  54595. },
  54596. head: {
  54597. height: math.unit(5.09, "meters"),
  54598. name: "Head",
  54599. image: {
  54600. source: "./media/characters/io/head.svg"
  54601. }
  54602. },
  54603. hand: {
  54604. height: math.unit(1.6, "meters"),
  54605. name: "Hand",
  54606. image: {
  54607. source: "./media/characters/io/hand.svg"
  54608. }
  54609. },
  54610. foot: {
  54611. height: math.unit(2.4, "meters"),
  54612. name: "Foot",
  54613. image: {
  54614. source: "./media/characters/io/foot.svg"
  54615. }
  54616. },
  54617. },
  54618. [
  54619. {
  54620. name: "Normal",
  54621. height: math.unit(8, "meters"),
  54622. default: true
  54623. },
  54624. ]
  54625. ))
  54626. characterMakers.push(() => makeCharacter(
  54627. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54628. {
  54629. side: {
  54630. height: math.unit(6 + 3/12, "feet"),
  54631. weight: math.unit(225, "lb"),
  54632. name: "Side",
  54633. image: {
  54634. source: "./media/characters/silas/side.svg",
  54635. extra: 703/653,
  54636. bottom: 23/726
  54637. },
  54638. extraAttributes: {
  54639. "pawLength": {
  54640. name: "Paw Length",
  54641. power: 1,
  54642. type: "length",
  54643. base: math.unit(12, "inches")
  54644. },
  54645. "pawWidth": {
  54646. name: "Paw Width",
  54647. power: 1,
  54648. type: "length",
  54649. base: math.unit(4.5, "inches")
  54650. },
  54651. "pawArea": {
  54652. name: "Paw Area",
  54653. power: 2,
  54654. type: "area",
  54655. base: math.unit(12 * 4.5, "inches^2")
  54656. },
  54657. }
  54658. },
  54659. },
  54660. [
  54661. {
  54662. name: "Normal",
  54663. height: math.unit(6 + 3/12, "feet"),
  54664. default: true
  54665. },
  54666. ]
  54667. ))
  54668. characterMakers.push(() => makeCharacter(
  54669. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54670. {
  54671. back: {
  54672. height: math.unit(1.6, "meters"),
  54673. weight: math.unit(150, "lb"),
  54674. name: "Back",
  54675. image: {
  54676. source: "./media/characters/zari/back.svg",
  54677. extra: 424/411,
  54678. bottom: 32/456
  54679. },
  54680. extraAttributes: {
  54681. "bladderCapacity": {
  54682. name: "Bladder Size",
  54683. power: 3,
  54684. type: "volume",
  54685. base: math.unit(500, "mL")
  54686. },
  54687. "bladderFlow": {
  54688. name: "Flow Rate",
  54689. power: 3,
  54690. type: "volume",
  54691. base: math.unit(25, "mL")
  54692. },
  54693. }
  54694. },
  54695. },
  54696. [
  54697. {
  54698. name: "Normal",
  54699. height: math.unit(1.6, "meters"),
  54700. default: true
  54701. },
  54702. ]
  54703. ))
  54704. characterMakers.push(() => makeCharacter(
  54705. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54706. {
  54707. front: {
  54708. height: math.unit(25, "feet"),
  54709. weight: math.unit(5, "tons"),
  54710. name: "Front",
  54711. image: {
  54712. source: "./media/characters/charlie-human/front.svg",
  54713. extra: 1870/1740,
  54714. bottom: 102/1972
  54715. },
  54716. extraAttributes: {
  54717. "dickLength": {
  54718. name: "Dick Length",
  54719. power: 1,
  54720. type: "length",
  54721. base: math.unit(9, "feet")
  54722. },
  54723. }
  54724. },
  54725. back: {
  54726. height: math.unit(25, "feet"),
  54727. weight: math.unit(5, "tons"),
  54728. name: "Back",
  54729. image: {
  54730. source: "./media/characters/charlie-human/back.svg",
  54731. extra: 1858/1733,
  54732. bottom: 105/1963
  54733. },
  54734. extraAttributes: {
  54735. "dickLength": {
  54736. name: "Dick Length",
  54737. power: 1,
  54738. type: "length",
  54739. base: math.unit(9, "feet")
  54740. },
  54741. }
  54742. },
  54743. },
  54744. [
  54745. {
  54746. name: "\"Normal\"",
  54747. height: math.unit(6 + 4/12, "feet")
  54748. },
  54749. {
  54750. name: "Big",
  54751. height: math.unit(25, "feet"),
  54752. default: true
  54753. },
  54754. ]
  54755. ))
  54756. characterMakers.push(() => makeCharacter(
  54757. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54758. {
  54759. front: {
  54760. height: math.unit(6 + 4/12, "feet"),
  54761. weight: math.unit(320, "lb"),
  54762. name: "Front",
  54763. image: {
  54764. source: "./media/characters/ookitsu/front.svg",
  54765. extra: 1160/976,
  54766. bottom: 38/1198
  54767. }
  54768. },
  54769. frontNsfw: {
  54770. height: math.unit(6 + 4/12, "feet"),
  54771. weight: math.unit(320, "lb"),
  54772. name: "Front (NSFW)",
  54773. image: {
  54774. source: "./media/characters/ookitsu/front-nsfw.svg",
  54775. extra: 1160/976,
  54776. bottom: 38/1198
  54777. }
  54778. },
  54779. back: {
  54780. height: math.unit(6 + 4/12, "feet"),
  54781. weight: math.unit(320, "lb"),
  54782. name: "Back",
  54783. image: {
  54784. source: "./media/characters/ookitsu/back.svg",
  54785. extra: 1030/975,
  54786. bottom: 70/1100
  54787. }
  54788. },
  54789. head: {
  54790. height: math.unit(1.79, "feet"),
  54791. name: "Head",
  54792. image: {
  54793. source: "./media/characters/ookitsu/head.svg"
  54794. }
  54795. },
  54796. hand: {
  54797. height: math.unit(0.92, "feet"),
  54798. name: "Hand",
  54799. image: {
  54800. source: "./media/characters/ookitsu/hand.svg"
  54801. }
  54802. },
  54803. tails: {
  54804. height: math.unit(3.3, "feet"),
  54805. name: "Tails",
  54806. image: {
  54807. source: "./media/characters/ookitsu/tails.svg"
  54808. }
  54809. },
  54810. dick: {
  54811. height: math.unit(1.10833, "feet"),
  54812. name: "Dick",
  54813. image: {
  54814. source: "./media/characters/ookitsu/dick.svg"
  54815. }
  54816. },
  54817. },
  54818. [
  54819. {
  54820. name: "Normal",
  54821. height: math.unit(6 + 4/12, "feet"),
  54822. default: true
  54823. },
  54824. {
  54825. name: "Macro",
  54826. height: math.unit(30, "feet")
  54827. },
  54828. ]
  54829. ))
  54830. characterMakers.push(() => makeCharacter(
  54831. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54832. {
  54833. anthroFront: {
  54834. height: math.unit(6, "feet"),
  54835. weight: math.unit(250, "lb"),
  54836. name: "Front",
  54837. image: {
  54838. source: "./media/characters/jhusky/anthro-front.svg",
  54839. extra: 474/439,
  54840. bottom: 7/481
  54841. },
  54842. form: "anthro",
  54843. default: true
  54844. },
  54845. taurSideSfw: {
  54846. height: math.unit(6 + 4/12, "feet"),
  54847. weight: math.unit(500, "lb"),
  54848. name: "Side (SFW)",
  54849. image: {
  54850. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54851. extra: 1741/1629,
  54852. bottom: 196/1937
  54853. },
  54854. form: "taur",
  54855. default: true
  54856. },
  54857. taurSideNsfw: {
  54858. height: math.unit(6 + 4/12, "feet"),
  54859. weight: math.unit(500, "lb"),
  54860. name: "Taur (NSFW)",
  54861. image: {
  54862. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54863. extra: 1741/1629,
  54864. bottom: 196/1937
  54865. },
  54866. form: "taur",
  54867. },
  54868. },
  54869. [
  54870. {
  54871. name: "Huge",
  54872. height: math.unit(500, "feet"),
  54873. form: "anthro"
  54874. },
  54875. {
  54876. name: "Macro",
  54877. height: math.unit(1000, "feet"),
  54878. default: true,
  54879. form: "anthro"
  54880. },
  54881. {
  54882. name: "Megamacro",
  54883. height: math.unit(10000, "feet"),
  54884. form: "anthro"
  54885. },
  54886. {
  54887. name: "Huge",
  54888. height: math.unit(528, "feet"),
  54889. form: "taur"
  54890. },
  54891. {
  54892. name: "Macro",
  54893. height: math.unit(1056, "feet"),
  54894. default: true,
  54895. form: "taur"
  54896. },
  54897. {
  54898. name: "Megamacro",
  54899. height: math.unit(10556, "feet"),
  54900. form: "taur"
  54901. },
  54902. ],
  54903. {
  54904. "anthro": {
  54905. name: "Anthro",
  54906. default: true
  54907. },
  54908. "taur": {
  54909. name: "Taur",
  54910. },
  54911. }
  54912. ))
  54913. characterMakers.push(() => makeCharacter(
  54914. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54915. {
  54916. front: {
  54917. height: math.unit(8, "feet"),
  54918. weight: math.unit(500, "lb"),
  54919. name: "Front",
  54920. image: {
  54921. source: "./media/characters/armail/front.svg",
  54922. extra: 1753/1669,
  54923. bottom: 155/1908
  54924. }
  54925. },
  54926. back: {
  54927. height: math.unit(8, "feet"),
  54928. weight: math.unit(500, "lb"),
  54929. name: "Back",
  54930. image: {
  54931. source: "./media/characters/armail/back.svg",
  54932. extra: 1872/1803,
  54933. bottom: 63/1935
  54934. }
  54935. },
  54936. },
  54937. [
  54938. {
  54939. name: "Micro",
  54940. height: math.unit(0.25, "feet")
  54941. },
  54942. {
  54943. name: "Normal",
  54944. height: math.unit(8, "feet"),
  54945. default: true
  54946. },
  54947. {
  54948. name: "Mini-macro",
  54949. height: math.unit(30, "feet")
  54950. },
  54951. {
  54952. name: "Macro",
  54953. height: math.unit(400, "feet")
  54954. },
  54955. {
  54956. name: "Mega-macro",
  54957. height: math.unit(6000, "feet")
  54958. },
  54959. ]
  54960. ))
  54961. characterMakers.push(() => makeCharacter(
  54962. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54963. {
  54964. front: {
  54965. height: math.unit(6 + 7/12, "feet"),
  54966. weight: math.unit(210, "lb"),
  54967. name: "Front",
  54968. image: {
  54969. source: "./media/characters/wilfred-t-buxton/front.svg",
  54970. extra: 1068/882,
  54971. bottom: 28/1096
  54972. }
  54973. },
  54974. },
  54975. [
  54976. {
  54977. name: "Normal",
  54978. height: math.unit(6 + 7/12, "feet"),
  54979. default: true
  54980. },
  54981. ]
  54982. ))
  54983. characterMakers.push(() => makeCharacter(
  54984. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54985. {
  54986. front: {
  54987. height: math.unit(5 + 2/12, "feet"),
  54988. weight: math.unit(120, "lb"),
  54989. name: "Front",
  54990. image: {
  54991. source: "./media/characters/leighton-marrow/front.svg",
  54992. extra: 441/409,
  54993. bottom: 37/478
  54994. }
  54995. },
  54996. },
  54997. [
  54998. {
  54999. name: "Normal",
  55000. height: math.unit(5 + 2/12, "feet"),
  55001. default: true
  55002. },
  55003. ]
  55004. ))
  55005. characterMakers.push(() => makeCharacter(
  55006. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55007. {
  55008. front: {
  55009. height: math.unit(4, "meters"),
  55010. weight: math.unit(1200, "kg"),
  55011. name: "Front",
  55012. image: {
  55013. source: "./media/characters/licos/front.svg",
  55014. extra: 1727/1604,
  55015. bottom: 101/1828
  55016. }
  55017. },
  55018. },
  55019. [
  55020. {
  55021. name: "Normal",
  55022. height: math.unit(4, "meters"),
  55023. default: true
  55024. },
  55025. ]
  55026. ))
  55027. characterMakers.push(() => makeCharacter(
  55028. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55029. {
  55030. front: {
  55031. height: math.unit(10 + 3/12, "feet"),
  55032. name: "Front",
  55033. image: {
  55034. source: "./media/characters/theo-monkey/front.svg",
  55035. extra: 1735/1658,
  55036. bottom: 73/1808
  55037. }
  55038. },
  55039. back: {
  55040. height: math.unit(10 + 3/12, "feet"),
  55041. name: "Back",
  55042. image: {
  55043. source: "./media/characters/theo-monkey/back.svg",
  55044. extra: 1742/1664,
  55045. bottom: 33/1775
  55046. }
  55047. },
  55048. head: {
  55049. height: math.unit(2.29, "feet"),
  55050. name: "Head",
  55051. image: {
  55052. source: "./media/characters/theo-monkey/head.svg"
  55053. }
  55054. },
  55055. handPalm: {
  55056. height: math.unit(1.73, "feet"),
  55057. name: "Hand (Palm)",
  55058. image: {
  55059. source: "./media/characters/theo-monkey/hand-palm.svg"
  55060. }
  55061. },
  55062. handBack: {
  55063. height: math.unit(1.63, "feet"),
  55064. name: "Hand (Back)",
  55065. image: {
  55066. source: "./media/characters/theo-monkey/hand-back.svg"
  55067. }
  55068. },
  55069. footSole: {
  55070. height: math.unit(2.15, "feet"),
  55071. name: "Foot (Sole)",
  55072. image: {
  55073. source: "./media/characters/theo-monkey/foot-sole.svg"
  55074. }
  55075. },
  55076. footSide: {
  55077. height: math.unit(1.6, "feet"),
  55078. name: "Foot (Side)",
  55079. image: {
  55080. source: "./media/characters/theo-monkey/foot-side.svg"
  55081. }
  55082. },
  55083. },
  55084. [
  55085. {
  55086. name: "Normal",
  55087. height: math.unit(10 + 3/12, "feet"),
  55088. default: true
  55089. },
  55090. ]
  55091. ))
  55092. characterMakers.push(() => makeCharacter(
  55093. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55094. {
  55095. front: {
  55096. height: math.unit(11, "feet"),
  55097. weight: math.unit(3000, "lb"),
  55098. preyCapacity: math.unit(10, "people"),
  55099. name: "Front",
  55100. image: {
  55101. source: "./media/characters/brook/front.svg",
  55102. extra: 909/835,
  55103. bottom: 108/1017
  55104. }
  55105. },
  55106. back: {
  55107. height: math.unit(11, "feet"),
  55108. weight: math.unit(3000, "lb"),
  55109. preyCapacity: math.unit(10, "people"),
  55110. name: "Back",
  55111. image: {
  55112. source: "./media/characters/brook/back.svg",
  55113. extra: 976/916,
  55114. bottom: 34/1010
  55115. }
  55116. },
  55117. backAlt: {
  55118. height: math.unit(11, "feet"),
  55119. weight: math.unit(3000, "lb"),
  55120. preyCapacity: math.unit(10, "people"),
  55121. name: "Back (Alt)",
  55122. image: {
  55123. source: "./media/characters/brook/back-alt.svg",
  55124. extra: 1283/1213,
  55125. bottom: 35/1318
  55126. }
  55127. },
  55128. bust: {
  55129. height: math.unit(9.0859030837, "feet"),
  55130. weight: math.unit(3000, "lb"),
  55131. preyCapacity: math.unit(10, "people"),
  55132. name: "Bust",
  55133. image: {
  55134. source: "./media/characters/brook/bust.svg",
  55135. extra: 2043/1923,
  55136. bottom: 0/2043
  55137. }
  55138. },
  55139. },
  55140. [
  55141. {
  55142. name: "Small",
  55143. height: math.unit(11, "feet"),
  55144. default: true
  55145. },
  55146. {
  55147. name: "Towering",
  55148. height: math.unit(5, "km")
  55149. },
  55150. {
  55151. name: "Enormous",
  55152. height: math.unit(25, "earths")
  55153. },
  55154. ]
  55155. ))
  55156. //characters
  55157. function makeCharacters() {
  55158. const results = [];
  55159. characterMakers.forEach(character => {
  55160. results.push(character());
  55161. });
  55162. return results;
  55163. }