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

60096 строки
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. }
  2226. //species
  2227. function getSpeciesInfo(speciesList) {
  2228. let result = new Set();
  2229. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2230. result.add(entry)
  2231. });
  2232. return Array.from(result);
  2233. };
  2234. function getSpeciesInfoHelper(species) {
  2235. if (!speciesData[species]) {
  2236. console.warn(species + " doesn't exist");
  2237. return [];
  2238. }
  2239. if (speciesData[species].parents) {
  2240. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2241. } else {
  2242. return [species];
  2243. }
  2244. }
  2245. characterMakers.push(() => makeCharacter(
  2246. {
  2247. name: "Fen",
  2248. species: ["crux"],
  2249. description: {
  2250. title: "Bio",
  2251. text: "Very furry. Sheds on everything."
  2252. },
  2253. tags: [
  2254. "anthro",
  2255. "goo"
  2256. ]
  2257. },
  2258. {
  2259. front: {
  2260. height: math.unit(12, "feet"),
  2261. weight: math.unit(2400, "lb"),
  2262. preyCapacity: math.unit(1, "people"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/fen/front.svg",
  2266. extra: 1804/1562,
  2267. bottom: 205/2009
  2268. },
  2269. extraAttributes: {
  2270. pawSize: {
  2271. name: "Paw Size",
  2272. power: 2,
  2273. type: "area",
  2274. base: math.unit(0.35, "m^2")
  2275. }
  2276. }
  2277. },
  2278. diving: {
  2279. height: math.unit(4.9, "meters"),
  2280. weight: math.unit(2400, "lb"),
  2281. name: "Diving",
  2282. image: {
  2283. source: "./media/characters/fen/diving.svg"
  2284. }
  2285. },
  2286. sleeby: {
  2287. height: math.unit(3.45, "meters"),
  2288. weight: math.unit(2400, "lb"),
  2289. name: "Sleeby",
  2290. image: {
  2291. source: "./media/characters/fen/sleeby.svg"
  2292. }
  2293. },
  2294. goo: {
  2295. height: math.unit(12, "feet"),
  2296. weight: math.unit(3600, "lb"),
  2297. volume: math.unit(1000, "liters"),
  2298. preyCapacity: math.unit(6, "people"),
  2299. name: "Goo",
  2300. image: {
  2301. source: "./media/characters/fen/goo.svg",
  2302. extra: 1307/1071,
  2303. bottom: 134/1441
  2304. }
  2305. },
  2306. horror: {
  2307. height: math.unit(13.6, "feet"),
  2308. weight: math.unit(2400, "lb"),
  2309. preyCapacity: math.unit(1, "people"),
  2310. name: "Horror",
  2311. image: {
  2312. source: "./media/characters/fen/horror.svg",
  2313. extra: 893/797,
  2314. bottom: 0/893
  2315. }
  2316. },
  2317. gooNsfw: {
  2318. height: math.unit(12, "feet"),
  2319. weight: math.unit(3750, "lb"),
  2320. volume: math.unit(1000, "liters"),
  2321. preyCapacity: math.unit(6, "people"),
  2322. name: "Goo (NSFW)",
  2323. image: {
  2324. source: "./media/characters/fen/goo-nsfw.svg",
  2325. extra: 1875/1734,
  2326. bottom: 122/1997
  2327. }
  2328. },
  2329. maw: {
  2330. height: math.unit(5.03, "feet"),
  2331. name: "Maw",
  2332. image: {
  2333. source: "./media/characters/fen/maw.svg"
  2334. }
  2335. },
  2336. gooCeiling: {
  2337. height: math.unit(6.6, "feet"),
  2338. weight: math.unit(3000, "lb"),
  2339. volume: math.unit(1000, "liters"),
  2340. preyCapacity: math.unit(6, "people"),
  2341. name: "Maw (Goo)",
  2342. image: {
  2343. source: "./media/characters/fen/goo-maw.svg"
  2344. }
  2345. },
  2346. paw: {
  2347. height: math.unit(3.77, "feet"),
  2348. name: "Paw",
  2349. image: {
  2350. source: "./media/characters/fen/paw.svg"
  2351. },
  2352. extraAttributes: {
  2353. "toeSize": {
  2354. name: "Toe Size",
  2355. power: 2,
  2356. type: "area",
  2357. base: math.unit(0.02875, "m^2")
  2358. },
  2359. "pawSize": {
  2360. name: "Paw Size",
  2361. power: 2,
  2362. type: "area",
  2363. base: math.unit(0.378, "m^2")
  2364. },
  2365. }
  2366. },
  2367. tail: {
  2368. height: math.unit(12.1, "feet"),
  2369. name: "Tail",
  2370. image: {
  2371. source: "./media/characters/fen/tail.svg"
  2372. }
  2373. },
  2374. tailFull: {
  2375. height: math.unit(12.1, "feet"),
  2376. name: "Full Tail",
  2377. image: {
  2378. source: "./media/characters/fen/tail-full.svg"
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(12, "feet"),
  2383. weight: math.unit(2400, "lb"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/fen/back.svg",
  2387. },
  2388. info: {
  2389. description: {
  2390. mode: "append",
  2391. text: "\n\nHe is not currently looking at you."
  2392. }
  2393. }
  2394. },
  2395. full: {
  2396. height: math.unit(1.85, "meter"),
  2397. weight: math.unit(3200, "lb"),
  2398. name: "Full",
  2399. image: {
  2400. source: "./media/characters/fen/full.svg",
  2401. extra: 1133/859,
  2402. bottom: 145/1278
  2403. },
  2404. info: {
  2405. description: {
  2406. mode: "append",
  2407. text: "\n\nMunch."
  2408. }
  2409. }
  2410. },
  2411. gooLounging: {
  2412. height: math.unit(4.53, "feet"),
  2413. weight: math.unit(3000, "lb"),
  2414. preyCapacity: math.unit(6, "people"),
  2415. name: "Goo (Lounging)",
  2416. image: {
  2417. source: "./media/characters/fen/goo-lounging.svg",
  2418. bottom: 116 / 613
  2419. }
  2420. },
  2421. lounging: {
  2422. height: math.unit(10.52, "feet"),
  2423. weight: math.unit(2400, "lb"),
  2424. name: "Lounging",
  2425. image: {
  2426. source: "./media/characters/fen/lounging.svg"
  2427. }
  2428. },
  2429. },
  2430. [
  2431. {
  2432. name: "Small",
  2433. height: math.unit(2.2428, "meter")
  2434. },
  2435. {
  2436. name: "Normal",
  2437. height: math.unit(12, "feet"),
  2438. default: true,
  2439. },
  2440. {
  2441. name: "Big",
  2442. height: math.unit(20, "feet")
  2443. },
  2444. {
  2445. name: "Minimacro",
  2446. height: math.unit(40, "feet"),
  2447. info: {
  2448. description: {
  2449. mode: "append",
  2450. text: "\n\nTOO DAMN BIG"
  2451. }
  2452. }
  2453. },
  2454. {
  2455. name: "Macro",
  2456. height: math.unit(100, "feet"),
  2457. info: {
  2458. description: {
  2459. mode: "append",
  2460. text: "\n\nTOO DAMN BIG"
  2461. }
  2462. }
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(2, "miles")
  2467. },
  2468. {
  2469. name: "Gigamacro",
  2470. height: math.unit(10, "earths")
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(183, "cm"),
  2479. weight: math.unit(80, "kg"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/sofia-fluttertail/front.svg",
  2483. bottom: 0.01,
  2484. extra: 2154 / 2081
  2485. }
  2486. },
  2487. frontAlt: {
  2488. height: math.unit(183, "cm"),
  2489. weight: math.unit(80, "kg"),
  2490. name: "Front (alt)",
  2491. image: {
  2492. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2493. }
  2494. },
  2495. back: {
  2496. height: math.unit(183, "cm"),
  2497. weight: math.unit(80, "kg"),
  2498. name: "Back",
  2499. image: {
  2500. source: "./media/characters/sofia-fluttertail/back.svg"
  2501. }
  2502. },
  2503. kneeling: {
  2504. height: math.unit(125, "cm"),
  2505. weight: math.unit(80, "kg"),
  2506. name: "Kneeling",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2509. extra: 1033 / 977,
  2510. bottom: 23.7 / 1057
  2511. }
  2512. },
  2513. maw: {
  2514. height: math.unit(183 / 5, "cm"),
  2515. name: "Maw",
  2516. image: {
  2517. source: "./media/characters/sofia-fluttertail/maw.svg"
  2518. }
  2519. },
  2520. mawcloseup: {
  2521. height: math.unit(183 / 5 * 0.41, "cm"),
  2522. name: "Maw (Closeup)",
  2523. image: {
  2524. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2525. }
  2526. },
  2527. paws: {
  2528. height: math.unit(1.17, "feet"),
  2529. name: "Paws",
  2530. image: {
  2531. source: "./media/characters/sofia-fluttertail/paws.svg",
  2532. extra: 851 / 851,
  2533. bottom: 17 / 868
  2534. }
  2535. },
  2536. },
  2537. [
  2538. {
  2539. name: "Normal",
  2540. height: math.unit(1.83, "meter")
  2541. },
  2542. {
  2543. name: "Size Thief",
  2544. height: math.unit(18, "feet")
  2545. },
  2546. {
  2547. name: "50 Foot Collie",
  2548. height: math.unit(50, "feet")
  2549. },
  2550. {
  2551. name: "Macro",
  2552. height: math.unit(96, "feet"),
  2553. default: true
  2554. },
  2555. {
  2556. name: "Megamerger",
  2557. height: math.unit(650, "feet")
  2558. },
  2559. ]
  2560. ))
  2561. characterMakers.push(() => makeCharacter(
  2562. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2563. {
  2564. front: {
  2565. height: math.unit(7, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Front",
  2568. image: {
  2569. source: "./media/characters/march/front.svg",
  2570. extra: 1992/1851,
  2571. bottom: 39/2031
  2572. }
  2573. },
  2574. foot: {
  2575. height: math.unit(0.9, "feet"),
  2576. name: "Foot",
  2577. image: {
  2578. source: "./media/characters/march/foot.svg"
  2579. }
  2580. },
  2581. },
  2582. [
  2583. {
  2584. name: "Normal",
  2585. height: math.unit(7.9, "feet")
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(220, "meters")
  2590. },
  2591. {
  2592. name: "Megamacro",
  2593. height: math.unit(2.98, "km"),
  2594. default: true
  2595. },
  2596. {
  2597. name: "Gigamacro",
  2598. height: math.unit(15963, "km")
  2599. },
  2600. {
  2601. name: "Teramacro",
  2602. height: math.unit(2980000000, "km")
  2603. },
  2604. {
  2605. name: "Examacro",
  2606. height: math.unit(250, "parsecs")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(60, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/noir/front.svg",
  2619. extra: 1,
  2620. bottom: 0.032
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(6.6, "feet")
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(500, "feet")
  2632. },
  2633. {
  2634. name: "Megamacro",
  2635. height: math.unit(2.5, "km"),
  2636. default: true
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(22500, "km")
  2641. },
  2642. {
  2643. name: "Teramacro",
  2644. height: math.unit(2500000000, "km")
  2645. },
  2646. {
  2647. name: "Examacro",
  2648. height: math.unit(200, "parsecs")
  2649. },
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/okuri/front.svg",
  2661. extra: 739/665,
  2662. bottom: 39/778
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(7, "feet"),
  2667. weight: math.unit(100, "kg"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/okuri/back.svg",
  2671. extra: 734/653,
  2672. bottom: 13/747
  2673. }
  2674. },
  2675. sitting: {
  2676. height: math.unit(2.95, "feet"),
  2677. weight: math.unit(100, "kg"),
  2678. name: "Sitting",
  2679. image: {
  2680. source: "./media/characters/okuri/sitting.svg",
  2681. extra: 370/318,
  2682. bottom: 99/469
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Smallest",
  2689. height: math.unit(5 + 2/12, "feet")
  2690. },
  2691. {
  2692. name: "Smaller",
  2693. height: math.unit(300, "feet")
  2694. },
  2695. {
  2696. name: "Small",
  2697. height: math.unit(1000, "feet")
  2698. },
  2699. {
  2700. name: "Macro",
  2701. height: math.unit(1, "mile")
  2702. },
  2703. {
  2704. name: "Mega Macro (Small)",
  2705. height: math.unit(20, "km")
  2706. },
  2707. {
  2708. name: "Mega Macro (Large)",
  2709. height: math.unit(600, "km")
  2710. },
  2711. {
  2712. name: "Giga Macro",
  2713. height: math.unit(10000, "km")
  2714. },
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(577560, "km"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Large",
  2722. height: math.unit(4, "galaxies")
  2723. },
  2724. {
  2725. name: "Largest",
  2726. height: math.unit(15, "multiverses")
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(7, "feet"),
  2735. weight: math.unit(100, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/manny/front.svg",
  2739. extra: 1,
  2740. bottom: 0.06
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(7, "feet"),
  2745. weight: math.unit(100, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/manny/back.svg",
  2749. extra: 1,
  2750. bottom: 0.014
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(7, "feet"),
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(78, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Macro+",
  2766. height: math.unit(300, "meters")
  2767. },
  2768. {
  2769. name: "Macro++",
  2770. height: math.unit(2400, "meters")
  2771. },
  2772. {
  2773. name: "Megamacro",
  2774. height: math.unit(5167, "meters")
  2775. },
  2776. {
  2777. name: "Gigamacro",
  2778. height: math.unit(41769, "miles")
  2779. },
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(7, "feet"),
  2787. weight: math.unit(100, "kg"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/adake/front-1.svg"
  2791. }
  2792. },
  2793. frontAlt: {
  2794. height: math.unit(7, "feet"),
  2795. weight: math.unit(100, "kg"),
  2796. name: "Front (Alt)",
  2797. image: {
  2798. source: "./media/characters/adake/front-2.svg",
  2799. extra: 1,
  2800. bottom: 0.01
  2801. }
  2802. },
  2803. back: {
  2804. height: math.unit(7, "feet"),
  2805. weight: math.unit(100, "kg"),
  2806. name: "Back",
  2807. image: {
  2808. source: "./media/characters/adake/back.svg",
  2809. }
  2810. },
  2811. kneel: {
  2812. height: math.unit(5.385, "feet"),
  2813. weight: math.unit(100, "kg"),
  2814. name: "Kneeling",
  2815. image: {
  2816. source: "./media/characters/adake/kneel.svg",
  2817. bottom: 0.052
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(7, "feet"),
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(78, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Macro+",
  2833. height: math.unit(300, "meters")
  2834. },
  2835. {
  2836. name: "Macro++",
  2837. height: math.unit(2400, "meters")
  2838. },
  2839. {
  2840. name: "Megamacro",
  2841. height: math.unit(5167, "meters")
  2842. },
  2843. {
  2844. name: "Gigamacro",
  2845. height: math.unit(41769, "miles")
  2846. },
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2851. {
  2852. front: {
  2853. height: math.unit(1.65, "meters"),
  2854. weight: math.unit(50, "kg"),
  2855. name: "Front",
  2856. image: {
  2857. source: "./media/characters/elijah/front.svg",
  2858. extra: 858 / 830,
  2859. bottom: 95.5 / 953.8559
  2860. }
  2861. },
  2862. back: {
  2863. height: math.unit(1.65, "meters"),
  2864. weight: math.unit(50, "kg"),
  2865. name: "Back",
  2866. image: {
  2867. source: "./media/characters/elijah/back.svg",
  2868. extra: 895 / 850,
  2869. bottom: 5.3 / 897.956
  2870. }
  2871. },
  2872. frontNsfw: {
  2873. height: math.unit(1.65, "meters"),
  2874. weight: math.unit(50, "kg"),
  2875. name: "Front (NSFW)",
  2876. image: {
  2877. source: "./media/characters/elijah/front-nsfw.svg",
  2878. extra: 858 / 830,
  2879. bottom: 95.5 / 953.8559
  2880. }
  2881. },
  2882. backNsfw: {
  2883. height: math.unit(1.65, "meters"),
  2884. weight: math.unit(50, "kg"),
  2885. name: "Back (NSFW)",
  2886. image: {
  2887. source: "./media/characters/elijah/back-nsfw.svg",
  2888. extra: 895 / 850,
  2889. bottom: 5.3 / 897.956
  2890. }
  2891. },
  2892. dick: {
  2893. height: math.unit(1, "feet"),
  2894. name: "Dick",
  2895. image: {
  2896. source: "./media/characters/elijah/dick.svg"
  2897. }
  2898. },
  2899. beakOpen: {
  2900. height: math.unit(1.25, "feet"),
  2901. name: "Beak (Open)",
  2902. image: {
  2903. source: "./media/characters/elijah/beak-open.svg"
  2904. }
  2905. },
  2906. beakShut: {
  2907. height: math.unit(1.25, "feet"),
  2908. name: "Beak (Shut)",
  2909. image: {
  2910. source: "./media/characters/elijah/beak-shut.svg"
  2911. }
  2912. },
  2913. footFlexing: {
  2914. height: math.unit(1.61, "feet"),
  2915. name: "Foot (Flexing)",
  2916. image: {
  2917. source: "./media/characters/elijah/foot-flexing.svg"
  2918. }
  2919. },
  2920. footStepping: {
  2921. height: math.unit(1.44, "feet"),
  2922. name: "Foot (Stepping)",
  2923. image: {
  2924. source: "./media/characters/elijah/foot-stepping.svg"
  2925. }
  2926. },
  2927. plantigradeLeg: {
  2928. height: math.unit(2.34, "feet"),
  2929. name: "Plantigrade Leg",
  2930. image: {
  2931. source: "./media/characters/elijah/plantigrade-leg.svg"
  2932. }
  2933. },
  2934. plantigradeFootLeft: {
  2935. height: math.unit(0.9, "feet"),
  2936. name: "Plantigrade Foot (Left)",
  2937. image: {
  2938. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2939. }
  2940. },
  2941. plantigradeFootRight: {
  2942. height: math.unit(0.9, "feet"),
  2943. name: "Plantigrade Foot (Right)",
  2944. image: {
  2945. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2946. }
  2947. },
  2948. },
  2949. [
  2950. {
  2951. name: "Normal",
  2952. height: math.unit(1.65, "meters")
  2953. },
  2954. {
  2955. name: "Macro",
  2956. height: math.unit(55, "meters"),
  2957. default: true
  2958. },
  2959. {
  2960. name: "Macro+",
  2961. height: math.unit(105, "meters")
  2962. },
  2963. ]
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2967. {
  2968. front: {
  2969. height: math.unit(7 + 2/12, "feet"),
  2970. weight: math.unit(320, "kg"),
  2971. preyCapacity: math.unit(0.276549935, "people"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/rai/front.svg",
  2975. extra: 1802/1696,
  2976. bottom: 68/1870
  2977. },
  2978. form: "anthro",
  2979. default: true
  2980. },
  2981. frontDressed: {
  2982. height: math.unit(7 + 2/12, "feet"),
  2983. weight: math.unit(320, "kg"),
  2984. preyCapacity: math.unit(0.276549935, "people"),
  2985. name: "Front (Dressed)",
  2986. image: {
  2987. source: "./media/characters/rai/front-dressed.svg",
  2988. extra: 1802/1696,
  2989. bottom: 68/1870
  2990. },
  2991. form: "anthro"
  2992. },
  2993. side: {
  2994. height: math.unit(7 + 2/12, "feet"),
  2995. weight: math.unit(320, "kg"),
  2996. preyCapacity: math.unit(0.276549935, "people"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/rai/side.svg",
  3000. extra: 1789/1710,
  3001. bottom: 115/1904
  3002. },
  3003. form: "anthro"
  3004. },
  3005. back: {
  3006. height: math.unit(7 + 2/12, "feet"),
  3007. weight: math.unit(320, "kg"),
  3008. preyCapacity: math.unit(0.276549935, "people"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/rai/back.svg",
  3012. extra: 1770/1707,
  3013. bottom: 28/1798
  3014. },
  3015. form: "anthro"
  3016. },
  3017. feral: {
  3018. height: math.unit(9.5, "feet"),
  3019. weight: math.unit(640, "kg"),
  3020. preyCapacity: math.unit(4, "people"),
  3021. name: "Feral",
  3022. image: {
  3023. source: "./media/characters/rai/feral.svg",
  3024. extra: 945/553,
  3025. bottom: 176/1121
  3026. },
  3027. form: "feral",
  3028. default: true
  3029. },
  3030. dragon: {
  3031. height: math.unit(23, "feet"),
  3032. weight: math.unit(50000, "lb"),
  3033. name: "Dragon",
  3034. image: {
  3035. source: "./media/characters/rai/dragon.svg",
  3036. extra: 2498 / 2030,
  3037. bottom: 85.2 / 2584
  3038. },
  3039. form: "dragon",
  3040. default: true
  3041. },
  3042. maw: {
  3043. height: math.unit(1.69, "feet"),
  3044. name: "Maw",
  3045. image: {
  3046. source: "./media/characters/rai/maw.svg"
  3047. },
  3048. form: "anthro"
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(7 + 2/12, "feet"),
  3055. form: "anthro"
  3056. },
  3057. {
  3058. name: "Big",
  3059. height: math.unit(11, "feet"),
  3060. form: "anthro"
  3061. },
  3062. {
  3063. name: "Minimacro",
  3064. height: math.unit(77, "feet"),
  3065. form: "anthro"
  3066. },
  3067. {
  3068. name: "Macro",
  3069. height: math.unit(302, "feet"),
  3070. default: true,
  3071. form: "anthro"
  3072. },
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(9.5, "feet"),
  3076. form: "feral",
  3077. default: true
  3078. },
  3079. {
  3080. name: "Normal",
  3081. height: math.unit(23, "feet"),
  3082. form: "dragon",
  3083. default: true
  3084. }
  3085. ],
  3086. {
  3087. "anthro": {
  3088. name: "Anthro",
  3089. default: true
  3090. },
  3091. "feral": {
  3092. name: "Feral",
  3093. },
  3094. "dragon": {
  3095. name: "Dragon",
  3096. },
  3097. }
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3101. {
  3102. frontDressed: {
  3103. height: math.unit(216, "feet"),
  3104. weight: math.unit(7000000, "lb"),
  3105. preyCapacity: math.unit(1321, "people"),
  3106. name: "Front (Dressed)",
  3107. image: {
  3108. source: "./media/characters/jazzy/front-dressed.svg",
  3109. extra: 2738 / 2651,
  3110. bottom: 41.8 / 2786
  3111. }
  3112. },
  3113. backDressed: {
  3114. height: math.unit(216, "feet"),
  3115. weight: math.unit(7000000, "lb"),
  3116. preyCapacity: math.unit(1321, "people"),
  3117. name: "Back (Dressed)",
  3118. image: {
  3119. source: "./media/characters/jazzy/back-dressed.svg",
  3120. extra: 2775 / 2673,
  3121. bottom: 36.8 / 2817
  3122. }
  3123. },
  3124. front: {
  3125. height: math.unit(216, "feet"),
  3126. weight: math.unit(7000000, "lb"),
  3127. preyCapacity: math.unit(1321, "people"),
  3128. name: "Front",
  3129. image: {
  3130. source: "./media/characters/jazzy/front.svg",
  3131. extra: 2738 / 2651,
  3132. bottom: 41.8 / 2786
  3133. }
  3134. },
  3135. back: {
  3136. height: math.unit(216, "feet"),
  3137. weight: math.unit(7000000, "lb"),
  3138. preyCapacity: math.unit(1321, "people"),
  3139. name: "Back",
  3140. image: {
  3141. source: "./media/characters/jazzy/back.svg",
  3142. extra: 2775 / 2673,
  3143. bottom: 36.8 / 2817
  3144. }
  3145. },
  3146. maw: {
  3147. height: math.unit(20, "feet"),
  3148. name: "Maw",
  3149. image: {
  3150. source: "./media/characters/jazzy/maw.svg"
  3151. }
  3152. },
  3153. paws: {
  3154. height: math.unit(27.5, "feet"),
  3155. name: "Paws",
  3156. image: {
  3157. source: "./media/characters/jazzy/paws.svg"
  3158. }
  3159. },
  3160. eye: {
  3161. height: math.unit(4.4, "feet"),
  3162. name: "Eye",
  3163. image: {
  3164. source: "./media/characters/jazzy/eye.svg"
  3165. }
  3166. },
  3167. droneOffense: {
  3168. height: math.unit(9.5, "inches"),
  3169. name: "Drone (Offense)",
  3170. image: {
  3171. source: "./media/characters/jazzy/drone-offense.svg"
  3172. }
  3173. },
  3174. droneRecon: {
  3175. height: math.unit(9.5, "inches"),
  3176. name: "Drone (Recon)",
  3177. image: {
  3178. source: "./media/characters/jazzy/drone-recon.svg"
  3179. }
  3180. },
  3181. droneDefense: {
  3182. height: math.unit(9.5, "inches"),
  3183. name: "Drone (Defense)",
  3184. image: {
  3185. source: "./media/characters/jazzy/drone-defense.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(216, "feet"),
  3193. default: true
  3194. },
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3199. {
  3200. front: {
  3201. height: math.unit(9 + 6/12, "feet"),
  3202. weight: math.unit(700, "lb"),
  3203. name: "Front",
  3204. image: {
  3205. source: "./media/characters/flamm/front.svg",
  3206. extra: 1736/1596,
  3207. bottom: 93/1829
  3208. }
  3209. },
  3210. buff: {
  3211. height: math.unit(9 + 6/12, "feet"),
  3212. weight: math.unit(950, "lb"),
  3213. name: "Buff",
  3214. image: {
  3215. source: "./media/characters/flamm/buff.svg",
  3216. extra: 3018/2874,
  3217. bottom: 221/3239
  3218. }
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(9.5, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(200, "feet"),
  3229. default: true
  3230. },
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(5 + 3/12, "feet"),
  3238. weight: math.unit(60, "kg"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/zephiro/front.svg",
  3242. extra: 1873/1761,
  3243. bottom: 147/2020
  3244. }
  3245. },
  3246. side: {
  3247. height: math.unit(5 + 3/12, "feet"),
  3248. weight: math.unit(60, "kg"),
  3249. name: "Side",
  3250. image: {
  3251. source: "./media/characters/zephiro/side.svg",
  3252. extra: 1929/1827,
  3253. bottom: 65/1994
  3254. }
  3255. },
  3256. back: {
  3257. height: math.unit(5 + 3/12, "feet"),
  3258. weight: math.unit(60, "kg"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/zephiro/back.svg",
  3262. extra: 1926/1816,
  3263. bottom: 41/1967
  3264. }
  3265. },
  3266. hand: {
  3267. height: math.unit(0.68, "feet"),
  3268. name: "Hand",
  3269. image: {
  3270. source: "./media/characters/zephiro/hand.svg"
  3271. }
  3272. },
  3273. paw: {
  3274. height: math.unit(1, "feet"),
  3275. name: "Paw",
  3276. image: {
  3277. source: "./media/characters/zephiro/paw.svg"
  3278. }
  3279. },
  3280. beans: {
  3281. height: math.unit(0.93, "feet"),
  3282. name: "Beans",
  3283. image: {
  3284. source: "./media/characters/zephiro/beans.svg"
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Micro",
  3291. height: math.unit(3, "inches")
  3292. },
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(5 + 3 / 12, "feet"),
  3296. default: true
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(118, "feet")
  3301. },
  3302. ]
  3303. ))
  3304. characterMakers.push(() => makeCharacter(
  3305. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3306. {
  3307. front: {
  3308. height: math.unit(5, "feet"),
  3309. weight: math.unit(90, "kg"),
  3310. preyCapacity: math.unit(14, "people"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/fory/front.svg",
  3314. extra: 2862 / 2674,
  3315. bottom: 180 / 3043.8
  3316. },
  3317. form: "weaselbun",
  3318. default: true,
  3319. extraAttributes: {
  3320. "pawSize": {
  3321. name: "Paw Size",
  3322. power: 2,
  3323. type: "area",
  3324. base: math.unit(0.1596, "m^2")
  3325. },
  3326. "pawLength": {
  3327. name: "Paw Length",
  3328. power: 1,
  3329. type: "length",
  3330. base: math.unit(0.7, "m")
  3331. }
  3332. }
  3333. },
  3334. back: {
  3335. height: math.unit(5, "feet"),
  3336. weight: math.unit(90, "kg"),
  3337. preyCapacity: math.unit(14, "people"),
  3338. name: "Back",
  3339. image: {
  3340. source: "./media/characters/fory/back.svg",
  3341. extra: 1790/1672,
  3342. bottom: 84/1874
  3343. },
  3344. form: "weaselbun",
  3345. extraAttributes: {
  3346. "pawSize": {
  3347. name: "Paw Size",
  3348. power: 2,
  3349. type: "area",
  3350. base: math.unit(0.1596, "m^2")
  3351. },
  3352. "pawLength": {
  3353. name: "Paw Length",
  3354. power: 1,
  3355. type: "length",
  3356. base: math.unit(0.7, "m")
  3357. }
  3358. }
  3359. },
  3360. paw: {
  3361. height: math.unit(2.14, "feet"),
  3362. name: "Paw",
  3363. image: {
  3364. source: "./media/characters/fory/paw.svg"
  3365. },
  3366. form: "weaselbun",
  3367. extraAttributes: {
  3368. "pawSize": {
  3369. name: "Paw Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.1596, "m^2")
  3373. },
  3374. "pawLength": {
  3375. name: "Paw Length",
  3376. power: 1,
  3377. type: "length",
  3378. base: math.unit(0.48, "m")
  3379. }
  3380. }
  3381. },
  3382. bunBack: {
  3383. height: math.unit(3, "feet"),
  3384. weight: math.unit(20, "kg"),
  3385. preyCapacity: math.unit(3, "people"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/fory/bun-back.svg",
  3389. extra: 1749/1564,
  3390. bottom: 246/1995
  3391. },
  3392. form: "bun",
  3393. default: true,
  3394. extraAttributes: {
  3395. "pawSize": {
  3396. name: "Paw Size",
  3397. power: 2,
  3398. type: "area",
  3399. base: math.unit(0.072, "m^2")
  3400. },
  3401. "pawLength": {
  3402. name: "Paw Length",
  3403. power: 1,
  3404. type: "length",
  3405. base: math.unit(0.45, "m")
  3406. }
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(5, "feet"),
  3414. form: "weaselbun"
  3415. },
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(50, "feet"),
  3419. default: true,
  3420. form: "weaselbun"
  3421. },
  3422. {
  3423. name: "Megamacro",
  3424. height: math.unit(10, "miles"),
  3425. form: "weaselbun"
  3426. },
  3427. {
  3428. name: "Gigamacro",
  3429. height: math.unit(5, "earths"),
  3430. form: "weaselbun"
  3431. },
  3432. {
  3433. name: "Normal",
  3434. height: math.unit(3, "feet"),
  3435. default: true,
  3436. form: "bun"
  3437. },
  3438. {
  3439. name: "Fun-Size",
  3440. height: math.unit(12, "feet"),
  3441. form: "bun"
  3442. },
  3443. {
  3444. name: "Macro",
  3445. height: math.unit(100, "feet"),
  3446. form: "bun"
  3447. },
  3448. {
  3449. name: "Planetary",
  3450. height: math.unit(3, "earths"),
  3451. form: "bun"
  3452. },
  3453. ],
  3454. {
  3455. "weaselbun": {
  3456. name: "Weaselbun",
  3457. default: true
  3458. },
  3459. "bun": {
  3460. name: "Bun",
  3461. },
  3462. }
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(7, "feet"),
  3469. weight: math.unit(90, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/kurrikage/front.svg",
  3473. extra: 1845/1733,
  3474. bottom: 119/1964
  3475. }
  3476. },
  3477. back: {
  3478. height: math.unit(7, "feet"),
  3479. weight: math.unit(90, "kg"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/kurrikage/back.svg",
  3483. extra: 1790/1677,
  3484. bottom: 61/1851
  3485. }
  3486. },
  3487. dressed: {
  3488. height: math.unit(7, "feet"),
  3489. weight: math.unit(90, "kg"),
  3490. name: "Dressed",
  3491. image: {
  3492. source: "./media/characters/kurrikage/dressed.svg",
  3493. extra: 1845/1733,
  3494. bottom: 119/1964
  3495. }
  3496. },
  3497. foot: {
  3498. height: math.unit(1.5, "feet"),
  3499. name: "Foot",
  3500. image: {
  3501. source: "./media/characters/kurrikage/foot.svg"
  3502. }
  3503. },
  3504. staff: {
  3505. height: math.unit(6.7, "feet"),
  3506. name: "Staff",
  3507. image: {
  3508. source: "./media/characters/kurrikage/staff.svg"
  3509. }
  3510. },
  3511. peek: {
  3512. height: math.unit(1.05, "feet"),
  3513. name: "Peeking",
  3514. image: {
  3515. source: "./media/characters/kurrikage/peek.svg",
  3516. bottom: 0.08
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(12, "feet"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Big",
  3528. height: math.unit(20, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "feet")
  3533. },
  3534. {
  3535. name: "Megamacro",
  3536. height: math.unit(20, "miles")
  3537. },
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/shingo/front.svg",
  3549. extra: 1900/1825,
  3550. bottom: 82/1982
  3551. }
  3552. },
  3553. side: {
  3554. height: math.unit(6, "feet"),
  3555. weight: math.unit(75, "kg"),
  3556. name: "Side",
  3557. image: {
  3558. source: "./media/characters/shingo/side.svg",
  3559. extra: 1930/1865,
  3560. bottom: 16/1946
  3561. }
  3562. },
  3563. back: {
  3564. height: math.unit(6, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Back",
  3567. image: {
  3568. source: "./media/characters/shingo/back.svg",
  3569. extra: 1922/1852,
  3570. bottom: 16/1938
  3571. }
  3572. },
  3573. frontDressed: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(150, "lb"),
  3576. name: "Front-dressed",
  3577. image: {
  3578. source: "./media/characters/shingo/front-dressed.svg",
  3579. extra: 1900/1825,
  3580. bottom: 82/1982
  3581. }
  3582. },
  3583. paw: {
  3584. height: math.unit(1.29, "feet"),
  3585. name: "Paw",
  3586. image: {
  3587. source: "./media/characters/shingo/paw.svg"
  3588. }
  3589. },
  3590. hand: {
  3591. height: math.unit(1.07, "feet"),
  3592. name: "Hand",
  3593. image: {
  3594. source: "./media/characters/shingo/hand.svg"
  3595. }
  3596. },
  3597. frontAlt: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Front (Alt)",
  3601. image: {
  3602. source: "./media/characters/shingo/front-alt.svg",
  3603. extra: 3511 / 3338,
  3604. bottom: 0.005
  3605. }
  3606. },
  3607. frontAlt2: {
  3608. height: math.unit(6, "feet"),
  3609. weight: math.unit(75, "kg"),
  3610. name: "Front (Alt 2)",
  3611. image: {
  3612. source: "./media/characters/shingo/front-alt-2.svg",
  3613. extra: 706/681,
  3614. bottom: 11/717
  3615. }
  3616. },
  3617. pawAlt: {
  3618. height: math.unit(1, "feet"),
  3619. name: "Paw (Alt)",
  3620. image: {
  3621. source: "./media/characters/shingo/paw-alt.svg"
  3622. }
  3623. },
  3624. },
  3625. [
  3626. {
  3627. name: "Micro",
  3628. height: math.unit(4, "inches")
  3629. },
  3630. {
  3631. name: "Normal",
  3632. height: math.unit(6, "feet"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(108, "feet")
  3638. },
  3639. {
  3640. name: "Macro+",
  3641. height: math.unit(1500, "feet")
  3642. },
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3647. {
  3648. side: {
  3649. height: math.unit(6, "feet"),
  3650. weight: math.unit(75, "kg"),
  3651. name: "Side",
  3652. image: {
  3653. source: "./media/characters/aigey/side.svg"
  3654. }
  3655. },
  3656. },
  3657. [
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(200, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(100, "miles")
  3666. },
  3667. ]
  3668. )
  3669. )
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3672. {
  3673. front: {
  3674. height: math.unit(5 + 5 / 12, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/natasha/front.svg",
  3679. extra: 859 / 824,
  3680. bottom: 23 / 879.6
  3681. }
  3682. },
  3683. frontNsfw: {
  3684. height: math.unit(5 + 5 / 12, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Front (NSFW)",
  3687. image: {
  3688. source: "./media/characters/natasha/front-nsfw.svg",
  3689. extra: 859 / 824,
  3690. bottom: 23 / 879.6
  3691. }
  3692. },
  3693. frontErect: {
  3694. height: math.unit(5 + 5 / 12, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Front (Erect)",
  3697. image: {
  3698. source: "./media/characters/natasha/front-erect.svg",
  3699. extra: 859 / 824,
  3700. bottom: 23 / 879.6
  3701. }
  3702. },
  3703. back: {
  3704. height: math.unit(5 + 5 / 12, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Back",
  3707. image: {
  3708. source: "./media/characters/natasha/back.svg",
  3709. extra: 887.9 / 852.6,
  3710. bottom: 9.7 / 896.4
  3711. }
  3712. },
  3713. backAlt: {
  3714. height: math.unit(5 + 5 / 12, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Back (Alt)",
  3717. image: {
  3718. source: "./media/characters/natasha/back-alt.svg",
  3719. extra: 1236.7 / 1192,
  3720. bottom: 22.3 / 1258.2
  3721. }
  3722. },
  3723. dick: {
  3724. height: math.unit(1.772, "feet"),
  3725. name: "Dick",
  3726. image: {
  3727. source: "./media/characters/natasha/dick.svg"
  3728. }
  3729. },
  3730. paw: {
  3731. height: math.unit(0.250, "meters"),
  3732. name: "Paw",
  3733. image: {
  3734. source: "./media/characters/natasha/paw.svg"
  3735. },
  3736. extraAttributes: {
  3737. "toeSize": {
  3738. name: "Toe Size",
  3739. power: 2,
  3740. type: "area",
  3741. base: math.unit(0.0024, "m^2")
  3742. },
  3743. "padSize": {
  3744. name: "Pad Size",
  3745. power: 2,
  3746. type: "area",
  3747. base: math.unit(0.00889, "m^2")
  3748. },
  3749. "pawSize": {
  3750. name: "Paw Size",
  3751. power: 2,
  3752. type: "area",
  3753. base: math.unit(0.023667, "m^2")
  3754. },
  3755. }
  3756. },
  3757. },
  3758. [
  3759. {
  3760. name: "Shortstack",
  3761. height: math.unit(3, "feet"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Normal",
  3766. height: math.unit(5 + 5 / 12, "feet")
  3767. },
  3768. {
  3769. name: "Large",
  3770. height: math.unit(12, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(100, "feet")
  3775. },
  3776. {
  3777. name: "Macro+",
  3778. height: math.unit(260, "feet")
  3779. },
  3780. {
  3781. name: "Macro++",
  3782. height: math.unit(1, "mile")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/malik/front.svg",
  3795. extra: 1750/1561,
  3796. bottom: 80/1830
  3797. },
  3798. extraAttributes: {
  3799. "toeSize": {
  3800. name: "Toe Size",
  3801. power: 2,
  3802. type: "area",
  3803. base: math.unit(0.0159, "m^2")
  3804. },
  3805. "pawSize": {
  3806. name: "Paw Size",
  3807. power: 2,
  3808. type: "area",
  3809. base: math.unit(0.09834, "m^2")
  3810. },
  3811. }
  3812. },
  3813. side: {
  3814. height: math.unit(6, "feet"),
  3815. weight: math.unit(75, "kg"),
  3816. name: "Side",
  3817. image: {
  3818. source: "./media/characters/malik/side.svg",
  3819. extra: 1802/1685,
  3820. bottom: 42/1844
  3821. },
  3822. extraAttributes: {
  3823. "toeSize": {
  3824. name: "Toe Size",
  3825. power: 2,
  3826. type: "area",
  3827. base: math.unit(0.0159, "m^2")
  3828. },
  3829. "pawSize": {
  3830. name: "Paw Size",
  3831. power: 2,
  3832. type: "area",
  3833. base: math.unit(0.09834, "m^2")
  3834. },
  3835. }
  3836. },
  3837. back: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(75, "kg"),
  3840. name: "Back",
  3841. image: {
  3842. source: "./media/characters/malik/back.svg",
  3843. extra: 1803/1607,
  3844. bottom: 33/1836
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0159, "m^2")
  3852. },
  3853. "pawSize": {
  3854. name: "Paw Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.09834, "m^2")
  3858. },
  3859. }
  3860. },
  3861. },
  3862. [
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(156, "feet"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Macro+",
  3870. height: math.unit(1188, "feet")
  3871. },
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(6, "feet"),
  3879. weight: math.unit(75, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/sefer/front.svg",
  3883. extra: 848 / 659,
  3884. bottom: 28.3 / 876.442
  3885. }
  3886. },
  3887. back: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(75, "kg"),
  3890. name: "Back",
  3891. image: {
  3892. source: "./media/characters/sefer/back.svg",
  3893. extra: 864 / 695,
  3894. bottom: 10 / 871
  3895. }
  3896. },
  3897. frontDressed: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(75, "kg"),
  3900. name: "Dressed",
  3901. image: {
  3902. source: "./media/characters/sefer/dressed.svg",
  3903. extra: 839 / 653,
  3904. bottom: 37.6 / 878
  3905. }
  3906. },
  3907. },
  3908. [
  3909. {
  3910. name: "Normal",
  3911. height: math.unit(6, "feet"),
  3912. default: true
  3913. },
  3914. {
  3915. name: "Big",
  3916. height: math.unit(8, "meters")
  3917. },
  3918. ]
  3919. ))
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3922. {
  3923. body: {
  3924. height: math.unit(2.2428, "meter"),
  3925. weight: math.unit(124.738, "kg"),
  3926. name: "Body",
  3927. image: {
  3928. extra: 1225 / 1050,
  3929. source: "./media/characters/north/front.svg"
  3930. }
  3931. }
  3932. },
  3933. [
  3934. {
  3935. name: "Micro",
  3936. height: math.unit(4, "inches")
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(63, "meters")
  3941. },
  3942. {
  3943. name: "Megamacro",
  3944. height: math.unit(101, "miles"),
  3945. default: true
  3946. }
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3951. {
  3952. angled: {
  3953. height: math.unit(4, "meter"),
  3954. weight: math.unit(150, "kg"),
  3955. name: "Angled",
  3956. image: {
  3957. source: "./media/characters/talan/angled-sfw.svg",
  3958. bottom: 29 / 3734
  3959. }
  3960. },
  3961. angledNsfw: {
  3962. height: math.unit(4, "meter"),
  3963. weight: math.unit(150, "kg"),
  3964. name: "Angled (NSFW)",
  3965. image: {
  3966. source: "./media/characters/talan/angled-nsfw.svg",
  3967. bottom: 29 / 3734
  3968. }
  3969. },
  3970. frontNsfw: {
  3971. height: math.unit(4, "meter"),
  3972. weight: math.unit(150, "kg"),
  3973. name: "Front (NSFW)",
  3974. image: {
  3975. source: "./media/characters/talan/front-nsfw.svg",
  3976. bottom: 29 / 3734
  3977. }
  3978. },
  3979. sideNsfw: {
  3980. height: math.unit(4, "meter"),
  3981. weight: math.unit(150, "kg"),
  3982. name: "Side (NSFW)",
  3983. image: {
  3984. source: "./media/characters/talan/side-nsfw.svg",
  3985. bottom: 29 / 3734
  3986. }
  3987. },
  3988. back: {
  3989. height: math.unit(4, "meter"),
  3990. weight: math.unit(150, "kg"),
  3991. name: "Back",
  3992. image: {
  3993. source: "./media/characters/talan/back.svg"
  3994. }
  3995. },
  3996. dickBottom: {
  3997. height: math.unit(0.621, "meter"),
  3998. name: "Dick (Bottom)",
  3999. image: {
  4000. source: "./media/characters/talan/dick-bottom.svg"
  4001. }
  4002. },
  4003. dickTop: {
  4004. height: math.unit(0.621, "meter"),
  4005. name: "Dick (Top)",
  4006. image: {
  4007. source: "./media/characters/talan/dick-top.svg"
  4008. }
  4009. },
  4010. dickSide: {
  4011. height: math.unit(0.305, "meter"),
  4012. name: "Dick (Side)",
  4013. image: {
  4014. source: "./media/characters/talan/dick-side.svg"
  4015. }
  4016. },
  4017. dickFront: {
  4018. height: math.unit(0.305, "meter"),
  4019. name: "Dick (Front)",
  4020. image: {
  4021. source: "./media/characters/talan/dick-front.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(4, "meters")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(100, "meters")
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(2, "miles"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(5000, "miles")
  4042. },
  4043. {
  4044. name: "Teramacro",
  4045. height: math.unit(100, "parsecs")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(90, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/gael'rathus/front.svg"
  4058. }
  4059. },
  4060. frontAlt: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(90, "kg"),
  4063. name: "Front (alt)",
  4064. image: {
  4065. source: "./media/characters/gael'rathus/front-alt.svg"
  4066. }
  4067. },
  4068. frontAlt2: {
  4069. height: math.unit(2, "meter"),
  4070. weight: math.unit(90, "kg"),
  4071. name: "Front (alt 2)",
  4072. image: {
  4073. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(9, "feet"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Large",
  4085. height: math.unit(25, "feet")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(0.25, "miles")
  4090. },
  4091. {
  4092. name: "Megamacro",
  4093. height: math.unit(10, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4099. {
  4100. side: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(140, "kg"),
  4103. name: "Side",
  4104. image: {
  4105. source: "./media/characters/sosha/side.svg",
  4106. extra: 1170/1006,
  4107. bottom: 94/1264
  4108. }
  4109. },
  4110. maw: {
  4111. height: math.unit(2.87, "feet"),
  4112. name: "Maw",
  4113. image: {
  4114. source: "./media/characters/sosha/maw.svg",
  4115. extra: 966/865,
  4116. bottom: 0/966
  4117. }
  4118. },
  4119. cooch: {
  4120. height: math.unit(5.6, "feet"),
  4121. name: "Cooch",
  4122. image: {
  4123. source: "./media/characters/sosha/cooch.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(12, "feet"),
  4131. default: true
  4132. }
  4133. ]
  4134. ))
  4135. characterMakers.push(() => makeCharacter(
  4136. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4137. {
  4138. side: {
  4139. height: math.unit(5 + 5 / 12, "feet"),
  4140. weight: math.unit(170, "kg"),
  4141. name: "Side",
  4142. image: {
  4143. source: "./media/characters/runnola/side.svg",
  4144. extra: 741 / 448,
  4145. bottom: 0.05
  4146. }
  4147. },
  4148. },
  4149. [
  4150. {
  4151. name: "Small",
  4152. height: math.unit(3, "feet")
  4153. },
  4154. {
  4155. name: "Normal",
  4156. height: math.unit(5 + 5 / 12, "feet"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Big",
  4161. height: math.unit(10, "feet")
  4162. },
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(50, "kg"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/kurribird/front.svg",
  4174. bottom: 0.015
  4175. }
  4176. },
  4177. frontAlt: {
  4178. height: math.unit(1.5, "meter"),
  4179. weight: math.unit(50, "kg"),
  4180. name: "Front (Alt)",
  4181. image: {
  4182. source: "./media/characters/kurribird/front-alt.svg",
  4183. extra: 1.45
  4184. }
  4185. },
  4186. },
  4187. [
  4188. {
  4189. name: "Normal",
  4190. height: math.unit(7, "feet")
  4191. },
  4192. {
  4193. name: "Big",
  4194. height: math.unit(12, "feet"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(1500, "feet")
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(2, "miles")
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(80, "kg"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/elbial/front.svg",
  4216. extra: 1643 / 1556,
  4217. bottom: 60.2 / 1696
  4218. }
  4219. },
  4220. side: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(80, "kg"),
  4223. name: "Side",
  4224. image: {
  4225. source: "./media/characters/elbial/side.svg",
  4226. extra: 1601/1528,
  4227. bottom: 97/1698
  4228. }
  4229. },
  4230. back: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(80, "kg"),
  4233. name: "Back",
  4234. image: {
  4235. source: "./media/characters/elbial/back.svg",
  4236. extra: 1653/1569,
  4237. bottom: 20/1673
  4238. }
  4239. },
  4240. frontDressed: {
  4241. height: math.unit(2, "meter"),
  4242. weight: math.unit(80, "kg"),
  4243. name: "Front (Dressed)",
  4244. image: {
  4245. source: "./media/characters/elbial/front-dressed.svg",
  4246. extra: 1638/1569,
  4247. bottom: 70/1708
  4248. }
  4249. },
  4250. genitals: {
  4251. height: math.unit(2 / 3.367, "meter"),
  4252. name: "Genitals",
  4253. image: {
  4254. source: "./media/characters/elbial/genitals.svg"
  4255. }
  4256. },
  4257. },
  4258. [
  4259. {
  4260. name: "Large",
  4261. height: math.unit(100, "feet")
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(500, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Megamacro",
  4270. height: math.unit(10, "miles")
  4271. },
  4272. {
  4273. name: "Gigamacro",
  4274. height: math.unit(25000, "miles")
  4275. },
  4276. {
  4277. name: "Full-Size",
  4278. height: math.unit(8000000, "gigaparsecs")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(60, "kg"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/noah/front.svg"
  4291. }
  4292. },
  4293. talons: {
  4294. height: math.unit(0.315, "meter"),
  4295. name: "Talons",
  4296. image: {
  4297. source: "./media/characters/noah/talons.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Large",
  4304. height: math.unit(50, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(750, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Megamacro",
  4313. height: math.unit(50, "miles")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(100000, "miles")
  4318. },
  4319. {
  4320. name: "Full-Size",
  4321. height: math.unit(3000000000, "miles")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(80, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/natalya/front.svg"
  4334. }
  4335. },
  4336. back: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Back",
  4340. image: {
  4341. source: "./media/characters/natalya/back.svg"
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(150, "feet"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Megamacro",
  4353. height: math.unit(5, "miles")
  4354. },
  4355. {
  4356. name: "Full-Size",
  4357. height: math.unit(600, "kiloparsecs")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(50, "kg"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/erestrebah/front.svg",
  4370. extra: 1262/1162,
  4371. bottom: 96/1358
  4372. }
  4373. },
  4374. back: {
  4375. height: math.unit(2, "meter"),
  4376. weight: math.unit(50, "kg"),
  4377. name: "Back",
  4378. image: {
  4379. source: "./media/characters/erestrebah/back.svg",
  4380. extra: 1257/1139,
  4381. bottom: 13/1270
  4382. }
  4383. },
  4384. wing: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(50, "kg"),
  4387. name: "Wing",
  4388. image: {
  4389. source: "./media/characters/erestrebah/wing.svg",
  4390. extra: 1262/1162,
  4391. bottom: 96/1358
  4392. }
  4393. },
  4394. mouth: {
  4395. height: math.unit(0.39, "feet"),
  4396. name: "Mouth",
  4397. image: {
  4398. source: "./media/characters/erestrebah/mouth.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(10, "feet")
  4406. },
  4407. {
  4408. name: "Large",
  4409. height: math.unit(50, "feet"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(300, "feet")
  4415. },
  4416. {
  4417. name: "Macro+",
  4418. height: math.unit(750, "feet")
  4419. },
  4420. {
  4421. name: "Megamacro",
  4422. height: math.unit(3, "miles")
  4423. }
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(80, "kg"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/jennifer/front.svg",
  4435. bottom: 0.11,
  4436. extra: 1.16
  4437. }
  4438. },
  4439. frontAlt: {
  4440. height: math.unit(2, "meter"),
  4441. weight: math.unit(80, "kg"),
  4442. name: "Front (Alt)",
  4443. image: {
  4444. source: "./media/characters/jennifer/front-alt.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Canon Height",
  4451. height: math.unit(120, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro+",
  4456. height: math.unit(300, "feet")
  4457. },
  4458. {
  4459. name: "Megamacro",
  4460. height: math.unit(20000, "feet")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(2, "meter"),
  4469. weight: math.unit(50, "kg"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/kalista/front.svg",
  4473. extra: 1314/1145,
  4474. bottom: 101/1415
  4475. }
  4476. },
  4477. back: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(50, "kg"),
  4480. name: "Back",
  4481. image: {
  4482. source: "./media/characters/kalista/back.svg",
  4483. extra: 1366 / 1156,
  4484. bottom: 33.9 / 1362.78
  4485. }
  4486. }
  4487. },
  4488. [
  4489. {
  4490. name: "Uncomfortably Small",
  4491. height: math.unit(10, "feet")
  4492. },
  4493. {
  4494. name: "Small",
  4495. height: math.unit(30, "feet")
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(100, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro+",
  4504. height: math.unit(2000, "feet")
  4505. },
  4506. {
  4507. name: "True Form",
  4508. height: math.unit(8924, "miles")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(120, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/ggv/front.svg"
  4521. }
  4522. },
  4523. side: {
  4524. height: math.unit(2, "meter"),
  4525. weight: math.unit(120, "kg"),
  4526. name: "Side",
  4527. image: {
  4528. source: "./media/characters/ggv/side.svg"
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Extremely Puny",
  4535. height: math.unit(9 + 5 / 12, "feet")
  4536. },
  4537. {
  4538. name: "Horribly Small",
  4539. height: math.unit(47.7, "miles"),
  4540. default: true
  4541. },
  4542. {
  4543. name: "Reasonably Sized",
  4544. height: math.unit(25000, "parsecs")
  4545. },
  4546. {
  4547. name: "Slightly Uncompressed",
  4548. height: math.unit(7.77e31, "parsecs")
  4549. },
  4550. {
  4551. name: "Omniversal",
  4552. height: math.unit(1e300, "meters")
  4553. },
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(2, "meter"),
  4561. weight: math.unit(75, "lb"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/napalm/front.svg"
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(75, "lb"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/napalm/back.svg"
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Standard",
  4579. height: math.unit(55, "feet"),
  4580. default: true
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(7 + 5 / 6, "feet"),
  4589. weight: math.unit(325, "lb"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/asana/front.svg",
  4593. extra: 1133 / 1060,
  4594. bottom: 15.2 / 1148.6
  4595. }
  4596. },
  4597. back: {
  4598. height: math.unit(7 + 5 / 6, "feet"),
  4599. weight: math.unit(325, "lb"),
  4600. name: "Back",
  4601. image: {
  4602. source: "./media/characters/asana/back.svg",
  4603. extra: 1114 / 1043,
  4604. bottom: 5 / 1120
  4605. }
  4606. },
  4607. dressedDark: {
  4608. height: math.unit(7 + 5 / 6, "feet"),
  4609. weight: math.unit(325, "lb"),
  4610. name: "Dressed (Dark)",
  4611. image: {
  4612. source: "./media/characters/asana/dressed-dark.svg",
  4613. extra: 1133 / 1060,
  4614. bottom: 15.2 / 1148.6
  4615. }
  4616. },
  4617. dressedLight: {
  4618. height: math.unit(7 + 5 / 6, "feet"),
  4619. weight: math.unit(325, "lb"),
  4620. name: "Dressed (Light)",
  4621. image: {
  4622. source: "./media/characters/asana/dressed-light.svg",
  4623. extra: 1133 / 1060,
  4624. bottom: 15.2 / 1148.6
  4625. }
  4626. },
  4627. },
  4628. [
  4629. {
  4630. name: "Standard",
  4631. height: math.unit(7 + 5 / 6, "feet"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "Large",
  4636. height: math.unit(10, "meters")
  4637. },
  4638. {
  4639. name: "Macro",
  4640. height: math.unit(2500, "meters")
  4641. },
  4642. {
  4643. name: "Megamacro",
  4644. height: math.unit(5e6, "meters")
  4645. },
  4646. {
  4647. name: "Examacro",
  4648. height: math.unit(5e12, "lightyears")
  4649. },
  4650. {
  4651. name: "Max Size",
  4652. height: math.unit(1e31, "lightyears")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(2, "meter"),
  4661. weight: math.unit(60, "kg"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/ebony/front.svg",
  4665. bottom: 0.03,
  4666. extra: 1045 / 810 + 0.03
  4667. }
  4668. },
  4669. side: {
  4670. height: math.unit(2, "meter"),
  4671. weight: math.unit(60, "kg"),
  4672. name: "Side",
  4673. image: {
  4674. source: "./media/characters/ebony/side.svg",
  4675. bottom: 0.03,
  4676. extra: 1045 / 810 + 0.03
  4677. }
  4678. },
  4679. back: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(60, "kg"),
  4682. name: "Back",
  4683. image: {
  4684. source: "./media/characters/ebony/back.svg",
  4685. bottom: 0.01,
  4686. extra: 1045 / 810 + 0.01
  4687. }
  4688. },
  4689. },
  4690. [
  4691. // TODO check why I did this lol
  4692. {
  4693. name: "Standard",
  4694. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(200, "feet")
  4700. },
  4701. {
  4702. name: "Gigamacro",
  4703. height: math.unit(13000, "km")
  4704. }
  4705. ]
  4706. ))
  4707. characterMakers.push(() => makeCharacter(
  4708. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4709. {
  4710. front: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(175, "lb"),
  4713. name: "Front",
  4714. image: {
  4715. source: "./media/characters/mountain/front.svg",
  4716. extra: 972 / 955,
  4717. bottom: 64 / 1036.6
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(175, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/mountain/back.svg",
  4726. extra: 970 / 950,
  4727. bottom: 28.25 / 999
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Large",
  4734. height: math.unit(20, "meters")
  4735. },
  4736. {
  4737. name: "Macro",
  4738. height: math.unit(300, "meters")
  4739. },
  4740. {
  4741. name: "Gigamacro",
  4742. height: math.unit(10000, "km"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Examacro",
  4747. height: math.unit(10e9, "lightyears")
  4748. }
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4753. {
  4754. front: {
  4755. height: math.unit(8, "feet"),
  4756. weight: math.unit(500, "lb"),
  4757. name: "Front",
  4758. image: {
  4759. source: "./media/characters/rick/front.svg"
  4760. }
  4761. }
  4762. },
  4763. [
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(8, "feet"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(5, "km")
  4772. }
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(8, "feet"),
  4780. weight: math.unit(120, "lb"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/ona/front.svg"
  4784. }
  4785. },
  4786. frontAlt: {
  4787. height: math.unit(8, "feet"),
  4788. weight: math.unit(120, "lb"),
  4789. name: "Front (Alt)",
  4790. image: {
  4791. source: "./media/characters/ona/front-alt.svg"
  4792. }
  4793. },
  4794. back: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(120, "lb"),
  4797. name: "Back",
  4798. image: {
  4799. source: "./media/characters/ona/back.svg"
  4800. }
  4801. },
  4802. foot: {
  4803. height: math.unit(1.1, "feet"),
  4804. name: "Foot",
  4805. image: {
  4806. source: "./media/characters/ona/foot.svg"
  4807. }
  4808. }
  4809. },
  4810. [
  4811. {
  4812. name: "Megamacro",
  4813. height: math.unit(70, "km"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Gigamacro",
  4818. height: math.unit(681818, "miles")
  4819. },
  4820. {
  4821. name: "Examacro",
  4822. height: math.unit(3800000, "lightyears")
  4823. },
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4828. {
  4829. front: {
  4830. height: math.unit(12, "feet"),
  4831. weight: math.unit(3000, "lb"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/mech/front.svg",
  4835. extra: 2900 / 2770,
  4836. bottom: 110 / 3010
  4837. }
  4838. },
  4839. back: {
  4840. height: math.unit(12, "feet"),
  4841. weight: math.unit(3000, "lb"),
  4842. name: "Back",
  4843. image: {
  4844. source: "./media/characters/mech/back.svg",
  4845. extra: 3011 / 2890,
  4846. bottom: 94 / 3105
  4847. }
  4848. },
  4849. maw: {
  4850. height: math.unit(3.07, "feet"),
  4851. name: "Maw",
  4852. image: {
  4853. source: "./media/characters/mech/maw.svg"
  4854. }
  4855. },
  4856. head: {
  4857. height: math.unit(3.07, "feet"),
  4858. name: "Head",
  4859. image: {
  4860. source: "./media/characters/mech/head.svg"
  4861. }
  4862. },
  4863. dick: {
  4864. height: math.unit(1.43, "feet"),
  4865. name: "Dick",
  4866. image: {
  4867. source: "./media/characters/mech/dick.svg"
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(12, "feet")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(300, "feet"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Macro+",
  4883. height: math.unit(1500, "feet")
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4889. {
  4890. front: {
  4891. height: math.unit(1.3, "meter"),
  4892. weight: math.unit(30, "kg"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/gregory/front.svg",
  4896. }
  4897. }
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(1.3, "meter"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(20, "meter")
  4908. }
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4913. {
  4914. front: {
  4915. height: math.unit(2.8, "meter"),
  4916. weight: math.unit(200, "kg"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/elory/front.svg",
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Normal",
  4926. height: math.unit(2.8, "meter"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(38, "meter")
  4932. }
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(470, "feet"),
  4940. weight: math.unit(924, "tons"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/angelpatamon/front.svg",
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(470, "feet"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Deity Size I",
  4955. height: math.unit(28651.2, "km")
  4956. },
  4957. {
  4958. name: "Deity Size II",
  4959. height: math.unit(171907.2, "km")
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4965. {
  4966. side: {
  4967. height: math.unit(7.2, "meter"),
  4968. weight: math.unit(8.2, "tons"),
  4969. name: "Side",
  4970. image: {
  4971. source: "./media/characters/cryae/side.svg",
  4972. extra: 3500 / 1500
  4973. }
  4974. }
  4975. },
  4976. [
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(7.2, "meter"),
  4980. default: true
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(175, "lb"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/xera/front.svg",
  4993. extra: 2377 / 1972,
  4994. bottom: 75.5 / 2452
  4995. }
  4996. },
  4997. side: {
  4998. height: math.unit(6, "feet"),
  4999. weight: math.unit(175, "lb"),
  5000. name: "Side",
  5001. image: {
  5002. source: "./media/characters/xera/side.svg",
  5003. extra: 2345 / 2019,
  5004. bottom: 39.7 / 2384
  5005. }
  5006. },
  5007. back: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(175, "lb"),
  5010. name: "Back",
  5011. image: {
  5012. source: "./media/characters/xera/back.svg",
  5013. extra: 2095 / 1984,
  5014. bottom: 67 / 2166
  5015. }
  5016. },
  5017. },
  5018. [
  5019. {
  5020. name: "Small",
  5021. height: math.unit(10, "feet")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(500, "meters"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Macro+",
  5030. height: math.unit(10, "km")
  5031. },
  5032. {
  5033. name: "Gigamacro",
  5034. height: math.unit(25000, "km")
  5035. },
  5036. {
  5037. name: "Teramacro",
  5038. height: math.unit(3e6, "km")
  5039. }
  5040. ]
  5041. ))
  5042. characterMakers.push(() => makeCharacter(
  5043. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5044. {
  5045. front: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(175, "lb"),
  5048. name: "Front",
  5049. image: {
  5050. source: "./media/characters/nebula/front.svg",
  5051. extra: 2566 / 2362,
  5052. bottom: 81 / 2644
  5053. }
  5054. }
  5055. },
  5056. [
  5057. {
  5058. name: "Small",
  5059. height: math.unit(4.5, "meters")
  5060. },
  5061. {
  5062. name: "Macro",
  5063. height: math.unit(1500, "meters"),
  5064. default: true
  5065. },
  5066. {
  5067. name: "Megamacro",
  5068. height: math.unit(150, "km")
  5069. },
  5070. {
  5071. name: "Gigamacro",
  5072. height: math.unit(27000, "km")
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(225, "lb"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/abysgar/front.svg",
  5085. extra: 1739/1614,
  5086. bottom: 71/1810
  5087. }
  5088. },
  5089. frontNsfw: {
  5090. height: math.unit(6, "feet"),
  5091. weight: math.unit(225, "lb"),
  5092. name: "Front (NSFW)",
  5093. image: {
  5094. source: "./media/characters/abysgar/front-nsfw.svg",
  5095. extra: 1739/1614,
  5096. bottom: 71/1810
  5097. }
  5098. },
  5099. back: {
  5100. height: math.unit(4.6, "feet"),
  5101. weight: math.unit(225, "lb"),
  5102. name: "Back",
  5103. image: {
  5104. source: "./media/characters/abysgar/back.svg",
  5105. extra: 1384/1327,
  5106. bottom: 0/1384
  5107. }
  5108. },
  5109. head: {
  5110. height: math.unit(1.25, "feet"),
  5111. name: "Head",
  5112. image: {
  5113. source: "./media/characters/abysgar/head.svg",
  5114. extra: 669/569,
  5115. bottom: 0/669
  5116. }
  5117. },
  5118. },
  5119. [
  5120. {
  5121. name: "Small",
  5122. height: math.unit(4.5, "meters")
  5123. },
  5124. {
  5125. name: "Macro",
  5126. height: math.unit(1250, "meters"),
  5127. default: true
  5128. },
  5129. {
  5130. name: "Megamacro",
  5131. height: math.unit(125, "km")
  5132. },
  5133. {
  5134. name: "Gigamacro",
  5135. height: math.unit(26000, "km")
  5136. }
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(180, "lb"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/yakuz/front.svg"
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Small",
  5154. height: math.unit(5, "meters")
  5155. },
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(1500, "meters"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Megamacro",
  5163. height: math.unit(200, "km")
  5164. },
  5165. {
  5166. name: "Gigamacro",
  5167. height: math.unit(100000, "km")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(175, "lb"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/mirova/front.svg",
  5180. extra: 3334 / 3071,
  5181. bottom: 42 / 3375.6
  5182. }
  5183. }
  5184. },
  5185. [
  5186. {
  5187. name: "Small",
  5188. height: math.unit(5, "meters")
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(900, "meters"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "Megamacro",
  5197. height: math.unit(135, "km")
  5198. },
  5199. {
  5200. name: "Gigamacro",
  5201. height: math.unit(20000, "km")
  5202. }
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5207. {
  5208. side: {
  5209. height: math.unit(28.35, "feet"),
  5210. weight: math.unit(99.75, "tons"),
  5211. name: "Side",
  5212. image: {
  5213. source: "./media/characters/asana-mech/side.svg",
  5214. extra: 923 / 699,
  5215. bottom: 50 / 975
  5216. }
  5217. },
  5218. chaingun: {
  5219. height: math.unit(7, "feet"),
  5220. weight: math.unit(2400, "lb"),
  5221. name: "Chaingun",
  5222. image: {
  5223. source: "./media/characters/asana-mech/chaingun.svg"
  5224. }
  5225. },
  5226. laser: {
  5227. height: math.unit(7.12, "feet"),
  5228. weight: math.unit(2000, "lb"),
  5229. name: "Laser",
  5230. image: {
  5231. source: "./media/characters/asana-mech/laser.svg"
  5232. }
  5233. },
  5234. },
  5235. [
  5236. {
  5237. name: "Normal",
  5238. height: math.unit(28.35, "feet"),
  5239. default: true
  5240. },
  5241. {
  5242. name: "Macro",
  5243. height: math.unit(2500, "feet")
  5244. },
  5245. {
  5246. name: "Megamacro",
  5247. height: math.unit(25, "miles")
  5248. },
  5249. {
  5250. name: "Examacro",
  5251. height: math.unit(6e8, "lightyears")
  5252. },
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5257. {
  5258. front: {
  5259. height: math.unit(5, "meters"),
  5260. weight: math.unit(1000, "kg"),
  5261. name: "Front",
  5262. image: {
  5263. source: "./media/characters/asche/front.svg",
  5264. extra: 1258 / 1190,
  5265. bottom: 47 / 1305
  5266. }
  5267. },
  5268. frontUnderwear: {
  5269. height: math.unit(5, "meters"),
  5270. weight: math.unit(1000, "kg"),
  5271. name: "Front (Underwear)",
  5272. image: {
  5273. source: "./media/characters/asche/front-underwear.svg",
  5274. extra: 1258 / 1190,
  5275. bottom: 47 / 1305
  5276. }
  5277. },
  5278. frontDressed: {
  5279. height: math.unit(5, "meters"),
  5280. weight: math.unit(1000, "kg"),
  5281. name: "Front (Dressed)",
  5282. image: {
  5283. source: "./media/characters/asche/front-dressed.svg",
  5284. extra: 1258 / 1190,
  5285. bottom: 47 / 1305
  5286. }
  5287. },
  5288. frontArmor: {
  5289. height: math.unit(5, "meters"),
  5290. weight: math.unit(1000, "kg"),
  5291. name: "Front (Armored)",
  5292. image: {
  5293. source: "./media/characters/asche/front-armored.svg",
  5294. extra: 1374 / 1308,
  5295. bottom: 23 / 1397
  5296. }
  5297. },
  5298. mp724: {
  5299. height: math.unit(0.96, "meters"),
  5300. weight: math.unit(38, "kg"),
  5301. name: "H&K MP724",
  5302. image: {
  5303. source: "./media/characters/asche/h&k-mp724.svg"
  5304. }
  5305. },
  5306. side: {
  5307. height: math.unit(5, "meters"),
  5308. weight: math.unit(1000, "kg"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/asche/side.svg",
  5312. extra: 1717 / 1609,
  5313. bottom: 0.005
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(5, "meters"),
  5318. weight: math.unit(1000, "kg"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/asche/back.svg",
  5322. extra: 1570 / 1501
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "DEFCON 5",
  5329. height: math.unit(5, "meters")
  5330. },
  5331. {
  5332. name: "DEFCON 4",
  5333. height: math.unit(500, "meters"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "DEFCON 3",
  5338. height: math.unit(5, "km")
  5339. },
  5340. {
  5341. name: "DEFCON 2",
  5342. height: math.unit(500, "km")
  5343. },
  5344. {
  5345. name: "DEFCON 1",
  5346. height: math.unit(500000, "km")
  5347. },
  5348. {
  5349. name: "DEFCON 0",
  5350. height: math.unit(3, "gigaparsecs")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(7, "feet"),
  5359. weight: math.unit(92.7, "kg"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/gale/front.svg",
  5363. extra: 977/919,
  5364. bottom: 105/1082
  5365. }
  5366. },
  5367. side: {
  5368. height: math.unit(6.7, "feet"),
  5369. weight: math.unit(92.7, "kg"),
  5370. name: "Side",
  5371. image: {
  5372. source: "./media/characters/gale/side.svg",
  5373. extra: 978/922,
  5374. bottom: 140/1118
  5375. }
  5376. },
  5377. back: {
  5378. height: math.unit(7, "feet"),
  5379. weight: math.unit(92.7, "kg"),
  5380. name: "Back",
  5381. image: {
  5382. source: "./media/characters/gale/back.svg",
  5383. extra: 966/920,
  5384. bottom: 61/1027
  5385. }
  5386. },
  5387. maw: {
  5388. height: math.unit(2.23, "feet"),
  5389. name: "Maw",
  5390. image: {
  5391. source: "./media/characters/gale/maw.svg"
  5392. }
  5393. },
  5394. foot: {
  5395. height: math.unit(2.1, "feet"),
  5396. name: "Foot",
  5397. image: {
  5398. source: "./media/characters/gale/foot.svg"
  5399. }
  5400. },
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(7, "feet")
  5406. },
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(150, "feet"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Macro+",
  5414. height: math.unit(300, "feet")
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(5 + 10/12, "feet"),
  5423. weight: math.unit(67, "kg"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/draylen/front.svg",
  5427. extra: 832/777,
  5428. bottom: 85/917
  5429. }
  5430. }
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(5 + 10/12, "feet")
  5436. },
  5437. {
  5438. name: "Macro",
  5439. height: math.unit(150, "feet"),
  5440. default: true
  5441. }
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(7 + 9 / 12, "feet"),
  5449. weight: math.unit(379, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/chez/front.svg"
  5453. }
  5454. },
  5455. side: {
  5456. height: math.unit(7 + 9 / 12, "feet"),
  5457. weight: math.unit(379, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/chez/side.svg"
  5461. }
  5462. }
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(7 + 9 / 12, "feet"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "God King",
  5472. height: math.unit(9750000, "meters")
  5473. }
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5478. {
  5479. front: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(275, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/kaylum/front.svg",
  5485. bottom: 0.01,
  5486. extra: 1166 / 1031
  5487. }
  5488. },
  5489. frontWingless: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(275, "lbs"),
  5492. name: "Front (Wingless)",
  5493. image: {
  5494. source: "./media/characters/kaylum/front-wingless.svg",
  5495. bottom: 0.01,
  5496. extra: 1117 / 1031
  5497. }
  5498. }
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(3.05, "meters")
  5504. },
  5505. {
  5506. name: "Master",
  5507. height: math.unit(5.5, "meters")
  5508. },
  5509. {
  5510. name: "Rampage",
  5511. height: math.unit(19, "meters")
  5512. },
  5513. {
  5514. name: "Macro Lite",
  5515. height: math.unit(37, "meters")
  5516. },
  5517. {
  5518. name: "Hyper Predator",
  5519. height: math.unit(61, "meters")
  5520. },
  5521. {
  5522. name: "Macro",
  5523. height: math.unit(138, "meters"),
  5524. default: true
  5525. }
  5526. ]
  5527. ))
  5528. characterMakers.push(() => makeCharacter(
  5529. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5530. {
  5531. front: {
  5532. height: math.unit(5 + 5 / 12, "feet"),
  5533. weight: math.unit(120, "lbs"),
  5534. name: "Front",
  5535. image: {
  5536. source: "./media/characters/geta/front.svg",
  5537. extra: 1003/933,
  5538. bottom: 21/1024
  5539. }
  5540. },
  5541. paw: {
  5542. height: math.unit(0.35, "feet"),
  5543. name: "Paw",
  5544. image: {
  5545. source: "./media/characters/geta/paw.svg"
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Micro",
  5552. height: math.unit(3, "inches"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Normal",
  5557. height: math.unit(5 + 5 / 12, "feet")
  5558. }
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(300, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/tyrnn/front.svg"
  5570. }
  5571. }
  5572. },
  5573. [
  5574. {
  5575. name: "Main Height",
  5576. height: math.unit(355, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Fave. Height",
  5581. height: math.unit(2400, "feet")
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(300, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/appledectomy/front.svg"
  5594. }
  5595. }
  5596. },
  5597. [
  5598. {
  5599. name: "Macro",
  5600. height: math.unit(2500, "feet")
  5601. },
  5602. {
  5603. name: "Megamacro",
  5604. height: math.unit(50, "miles"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Gigamacro",
  5609. height: math.unit(5000, "miles")
  5610. },
  5611. {
  5612. name: "Teramacro",
  5613. height: math.unit(250000, "miles")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(200, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/vulpes/front.svg",
  5626. extra: 573 / 543,
  5627. bottom: 0.033
  5628. }
  5629. },
  5630. side: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(200, "lbs"),
  5633. name: "Side",
  5634. image: {
  5635. source: "./media/characters/vulpes/side.svg",
  5636. extra: 577 / 549,
  5637. bottom: 11 / 588
  5638. }
  5639. },
  5640. back: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(200, "lbs"),
  5643. name: "Back",
  5644. image: {
  5645. source: "./media/characters/vulpes/back.svg",
  5646. extra: 573 / 549,
  5647. bottom: 20 / 593
  5648. }
  5649. },
  5650. feet: {
  5651. height: math.unit(1.276, "feet"),
  5652. name: "Feet",
  5653. image: {
  5654. source: "./media/characters/vulpes/feet.svg"
  5655. }
  5656. },
  5657. maw: {
  5658. height: math.unit(1.18, "feet"),
  5659. name: "Maw",
  5660. image: {
  5661. source: "./media/characters/vulpes/maw.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Micro",
  5668. height: math.unit(2, "inches")
  5669. },
  5670. {
  5671. name: "Normal",
  5672. height: math.unit(6.3, "feet")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(850, "feet")
  5677. },
  5678. {
  5679. name: "Megamacro",
  5680. height: math.unit(7500, "feet"),
  5681. default: true
  5682. },
  5683. {
  5684. name: "Gigamacro",
  5685. height: math.unit(570000, "miles")
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(210, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/rain-fallen/front.svg"
  5698. }
  5699. },
  5700. side: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Side",
  5704. image: {
  5705. source: "./media/characters/rain-fallen/side.svg"
  5706. }
  5707. },
  5708. back: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(210, "lbs"),
  5711. name: "Back",
  5712. image: {
  5713. source: "./media/characters/rain-fallen/back.svg"
  5714. }
  5715. },
  5716. feral: {
  5717. height: math.unit(9, "feet"),
  5718. weight: math.unit(700, "lbs"),
  5719. name: "Feral",
  5720. image: {
  5721. source: "./media/characters/rain-fallen/feral.svg"
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Meddling with Mortals",
  5728. height: math.unit(8 + 8/12, "feet")
  5729. },
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(5, "meter")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(150, "meter"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Megamacro",
  5741. height: math.unit(278e6, "meter")
  5742. },
  5743. {
  5744. name: "Gigamacro",
  5745. height: math.unit(2e9, "meter")
  5746. },
  5747. {
  5748. name: "Teramacro",
  5749. height: math.unit(8e12, "meter")
  5750. },
  5751. {
  5752. name: "Devourer",
  5753. height: math.unit(14, "zettameters")
  5754. },
  5755. {
  5756. name: "Scarlet King",
  5757. height: math.unit(18, "yottameters")
  5758. },
  5759. {
  5760. name: "Void",
  5761. height: math.unit(1e88, "yottameters")
  5762. }
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5767. {
  5768. standing: {
  5769. height: math.unit(6, "feet"),
  5770. weight: math.unit(180, "lbs"),
  5771. name: "Standing",
  5772. image: {
  5773. source: "./media/characters/zaakira/standing.svg",
  5774. extra: 1599/1504,
  5775. bottom: 39/1638
  5776. }
  5777. },
  5778. laying: {
  5779. height: math.unit(3.3, "feet"),
  5780. weight: math.unit(180, "lbs"),
  5781. name: "Laying",
  5782. image: {
  5783. source: "./media/characters/zaakira/laying.svg"
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(12, "feet")
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(279, "feet"),
  5795. default: true
  5796. }
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5801. {
  5802. femSfw: {
  5803. height: math.unit(8, "feet"),
  5804. weight: math.unit(350, "lb"),
  5805. name: "Fem",
  5806. image: {
  5807. source: "./media/characters/sigvald/fem-sfw.svg",
  5808. extra: 182 / 164,
  5809. bottom: 8.7 / 190.5
  5810. }
  5811. },
  5812. femNsfw: {
  5813. height: math.unit(8, "feet"),
  5814. weight: math.unit(350, "lb"),
  5815. name: "Fem (NSFW)",
  5816. image: {
  5817. source: "./media/characters/sigvald/fem-nsfw.svg",
  5818. extra: 182 / 164,
  5819. bottom: 8.7 / 190.5
  5820. }
  5821. },
  5822. maleNsfw: {
  5823. height: math.unit(8, "feet"),
  5824. weight: math.unit(350, "lb"),
  5825. name: "Male (NSFW)",
  5826. image: {
  5827. source: "./media/characters/sigvald/male-nsfw.svg",
  5828. extra: 182 / 164,
  5829. bottom: 8.7 / 190.5
  5830. }
  5831. },
  5832. hermNsfw: {
  5833. height: math.unit(8, "feet"),
  5834. weight: math.unit(350, "lb"),
  5835. name: "Herm (NSFW)",
  5836. image: {
  5837. source: "./media/characters/sigvald/herm-nsfw.svg",
  5838. extra: 182 / 164,
  5839. bottom: 8.7 / 190.5
  5840. }
  5841. },
  5842. dick: {
  5843. height: math.unit(2.36, "feet"),
  5844. name: "Dick",
  5845. image: {
  5846. source: "./media/characters/sigvald/dick.svg"
  5847. }
  5848. },
  5849. eye: {
  5850. height: math.unit(0.31, "feet"),
  5851. name: "Eye",
  5852. image: {
  5853. source: "./media/characters/sigvald/eye.svg"
  5854. }
  5855. },
  5856. mouth: {
  5857. height: math.unit(0.92, "feet"),
  5858. name: "Mouth",
  5859. image: {
  5860. source: "./media/characters/sigvald/mouth.svg"
  5861. }
  5862. },
  5863. paws: {
  5864. height: math.unit(2.2, "feet"),
  5865. name: "Paws",
  5866. image: {
  5867. source: "./media/characters/sigvald/paws.svg"
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(8, "feet")
  5875. },
  5876. {
  5877. name: "Large",
  5878. height: math.unit(12, "feet")
  5879. },
  5880. {
  5881. name: "Larger",
  5882. height: math.unit(20, "feet")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(150, "feet")
  5887. },
  5888. {
  5889. name: "Macro+",
  5890. height: math.unit(200, "feet"),
  5891. default: true
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5897. {
  5898. side: {
  5899. height: math.unit(12, "feet"),
  5900. weight: math.unit(2000, "kg"),
  5901. name: "Side",
  5902. image: {
  5903. source: "./media/characters/scott/side.svg",
  5904. extra: 754 / 724,
  5905. bottom: 0.069
  5906. }
  5907. },
  5908. upright: {
  5909. height: math.unit(12, "feet"),
  5910. weight: math.unit(2000, "kg"),
  5911. name: "Upright",
  5912. image: {
  5913. source: "./media/characters/scott/upright.svg",
  5914. extra: 3881 / 3722,
  5915. bottom: 0.05
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(12, "feet"),
  5923. default: true
  5924. },
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5929. {
  5930. side: {
  5931. height: math.unit(8, "meters"),
  5932. weight: math.unit(84755, "lbs"),
  5933. name: "Side",
  5934. image: {
  5935. source: "./media/characters/tobias/side.svg",
  5936. extra: 1474 / 1096,
  5937. bottom: 38.9 / 1513.1235
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(8, "meters"),
  5945. default: true
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5951. {
  5952. front: {
  5953. height: math.unit(5.5, "feet"),
  5954. weight: math.unit(400, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/kieran/front.svg",
  5958. extra: 2694 / 2364,
  5959. bottom: 217 / 2908
  5960. }
  5961. },
  5962. side: {
  5963. height: math.unit(5.5, "feet"),
  5964. weight: math.unit(400, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/kieran/side.svg",
  5968. extra: 875 / 777,
  5969. bottom: 84.6 / 959
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(5.5, "feet"),
  5977. default: true
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5983. {
  5984. side: {
  5985. height: math.unit(2, "meters"),
  5986. weight: math.unit(70, "kg"),
  5987. name: "Side",
  5988. image: {
  5989. source: "./media/characters/sanya/side.svg",
  5990. bottom: 0.02,
  5991. extra: 1.02
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Small",
  5998. height: math.unit(2, "meters")
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(3, "meters")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(16, "meters"),
  6007. default: true
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(2, "meters"),
  6016. weight: math.unit(120, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/miranda/front.svg",
  6020. extra: 195 / 185,
  6021. bottom: 10.9 / 206.5
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(2, "meters"),
  6026. weight: math.unit(120, "kg"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/miranda/back.svg",
  6030. extra: 201 / 193,
  6031. bottom: 2.3 / 203.7
  6032. }
  6033. },
  6034. },
  6035. [
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(10, "feet"),
  6039. default: true
  6040. }
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "James", species: ["deer"], tags: ["anthro"] },
  6045. {
  6046. side: {
  6047. height: math.unit(2, "meters"),
  6048. weight: math.unit(100, "kg"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/james/front.svg",
  6052. extra: 10 / 8.5
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(8.5, "feet"),
  6060. default: true
  6061. }
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6066. {
  6067. side: {
  6068. height: math.unit(9.5, "feet"),
  6069. weight: math.unit(2500, "lbs"),
  6070. name: "Side",
  6071. image: {
  6072. source: "./media/characters/heather/side.svg"
  6073. }
  6074. },
  6075. },
  6076. [
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(9.5, "feet"),
  6080. default: true
  6081. }
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6086. {
  6087. side: {
  6088. height: math.unit(6.5, "feet"),
  6089. weight: math.unit(400, "lbs"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/lukas/side.svg",
  6093. extra: 7.25 / 6.5
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(6.5, "feet"),
  6101. default: true
  6102. }
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6107. {
  6108. side: {
  6109. height: math.unit(5, "feet"),
  6110. weight: math.unit(3000, "lbs"),
  6111. name: "Side",
  6112. image: {
  6113. source: "./media/characters/louise/side.svg"
  6114. }
  6115. },
  6116. },
  6117. [
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(5, "feet"),
  6121. default: true
  6122. }
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6127. {
  6128. side: {
  6129. height: math.unit(6, "feet"),
  6130. weight: math.unit(150, "lbs"),
  6131. name: "Side",
  6132. image: {
  6133. source: "./media/characters/ramona/side.svg",
  6134. extra: 871/854,
  6135. bottom: 41/912
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(6 + 4/12, "feet")
  6143. },
  6144. {
  6145. name: "Minimacro",
  6146. height: math.unit(5.3, "meters"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(20, "stories")
  6152. },
  6153. {
  6154. name: "Macro+",
  6155. height: math.unit(50, "stories")
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6161. {
  6162. standing: {
  6163. height: math.unit(5.75, "feet"),
  6164. weight: math.unit(160, "lbs"),
  6165. name: "Standing",
  6166. image: {
  6167. source: "./media/characters/deerpuff/standing.svg",
  6168. extra: 682 / 624
  6169. }
  6170. },
  6171. sitting: {
  6172. height: math.unit(5.75 / 1.79, "feet"),
  6173. weight: math.unit(160, "lbs"),
  6174. name: "Sitting",
  6175. image: {
  6176. source: "./media/characters/deerpuff/sitting.svg",
  6177. bottom: 44 / 400,
  6178. extra: 1
  6179. }
  6180. },
  6181. taurLaying: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(400, "lbs"),
  6184. name: "Taur (Laying)",
  6185. image: {
  6186. source: "./media/characters/deerpuff/taur-laying.svg"
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Puffball",
  6193. height: math.unit(6, "inches")
  6194. },
  6195. {
  6196. name: "Normalpuff",
  6197. height: math.unit(5.75, "feet")
  6198. },
  6199. {
  6200. name: "Macropuff",
  6201. height: math.unit(1500, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Megapuff",
  6206. height: math.unit(500, "miles")
  6207. },
  6208. {
  6209. name: "Gigapuff",
  6210. height: math.unit(250000, "miles")
  6211. },
  6212. {
  6213. name: "Omegapuff",
  6214. height: math.unit(1000, "lightyears")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6220. {
  6221. stomping: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(170, "lbs"),
  6224. name: "Stomping",
  6225. image: {
  6226. source: "./media/characters/vivian/stomping.svg"
  6227. }
  6228. },
  6229. sitting: {
  6230. height: math.unit(6 / 1.75, "feet"),
  6231. weight: math.unit(170, "lbs"),
  6232. name: "Sitting",
  6233. image: {
  6234. source: "./media/characters/vivian/sitting.svg",
  6235. bottom: 1 / 6.4,
  6236. extra: 1,
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(7, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(10, "stories")
  6249. },
  6250. {
  6251. name: "Macro+",
  6252. height: math.unit(30, "stories")
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(10, "miles")
  6257. },
  6258. {
  6259. name: "Megamacro+",
  6260. height: math.unit(2750000, "meters")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(160, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/prince/front.svg",
  6273. extra: 1938/1682,
  6274. bottom: 45/1983
  6275. }
  6276. },
  6277. back: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(160, "lbs"),
  6280. name: "Back",
  6281. image: {
  6282. source: "./media/characters/prince/back.svg",
  6283. extra: 1955/1726,
  6284. bottom: 6/1961
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(7.75, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Not cute",
  6296. height: math.unit(17, "feet")
  6297. },
  6298. {
  6299. name: "I said NOT",
  6300. height: math.unit(91, "feet")
  6301. },
  6302. {
  6303. name: "Please stop",
  6304. height: math.unit(560, "feet")
  6305. },
  6306. {
  6307. name: "What have you done",
  6308. height: math.unit(2200, "feet")
  6309. },
  6310. {
  6311. name: "Deer God",
  6312. height: math.unit(3.6, "miles")
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6318. {
  6319. standing: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(300, "lbs"),
  6322. name: "Standing",
  6323. image: {
  6324. source: "./media/characters/psymon/standing.svg",
  6325. extra: 1888 / 1810,
  6326. bottom: 0.05
  6327. }
  6328. },
  6329. slithering: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(300, "lbs"),
  6332. name: "Slithering",
  6333. image: {
  6334. source: "./media/characters/psymon/slithering.svg",
  6335. extra: 1330 / 1224
  6336. }
  6337. },
  6338. slitheringAlt: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(300, "lbs"),
  6341. name: "Slithering (Alt)",
  6342. image: {
  6343. source: "./media/characters/psymon/slithering-alt.svg",
  6344. extra: 1330 / 1224
  6345. }
  6346. },
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(11.25, "feet"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Large",
  6356. height: math.unit(27, "feet")
  6357. },
  6358. {
  6359. name: "Giant",
  6360. height: math.unit(87, "feet")
  6361. },
  6362. {
  6363. name: "Macro",
  6364. height: math.unit(365, "feet")
  6365. },
  6366. {
  6367. name: "Megamacro",
  6368. height: math.unit(3, "miles")
  6369. },
  6370. {
  6371. name: "World Serpent",
  6372. height: math.unit(8000, "miles")
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(180, "lbs"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/daimos/front.svg",
  6385. extra: 4160 / 3897,
  6386. bottom: 0.021
  6387. }
  6388. }
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(8, "feet"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Big Dog",
  6398. height: math.unit(22, "feet")
  6399. },
  6400. {
  6401. name: "Macro",
  6402. height: math.unit(127, "feet")
  6403. },
  6404. {
  6405. name: "Megamacro",
  6406. height: math.unit(3600, "feet")
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6412. {
  6413. side: {
  6414. height: math.unit(6, "feet"),
  6415. weight: math.unit(180, "lbs"),
  6416. name: "Side",
  6417. image: {
  6418. source: "./media/characters/blake/side.svg",
  6419. extra: 1212 / 1120,
  6420. bottom: 0.05
  6421. }
  6422. },
  6423. crouched: {
  6424. height: math.unit(6 * 0.57, "feet"),
  6425. weight: math.unit(180, "lbs"),
  6426. name: "Crouched",
  6427. image: {
  6428. source: "./media/characters/blake/crouched.svg",
  6429. extra: 840 / 587,
  6430. bottom: 0.04
  6431. }
  6432. },
  6433. bent: {
  6434. height: math.unit(6 * 0.75, "feet"),
  6435. weight: math.unit(180, "lbs"),
  6436. name: "Bent",
  6437. image: {
  6438. source: "./media/characters/blake/bent.svg",
  6439. extra: 592 / 544,
  6440. bottom: 0.035
  6441. }
  6442. },
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(8 + 1 / 6, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Big Backside",
  6452. height: math.unit(37, "feet")
  6453. },
  6454. {
  6455. name: "Subway Shredder",
  6456. height: math.unit(72, "feet")
  6457. },
  6458. {
  6459. name: "City Carver",
  6460. height: math.unit(1675, "feet")
  6461. },
  6462. {
  6463. name: "Tectonic Tweaker",
  6464. height: math.unit(2300, "miles")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(180, "lbs"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/guisetto/front.svg",
  6477. extra: 856 / 817,
  6478. bottom: 0.06
  6479. }
  6480. },
  6481. airborne: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Airborne",
  6485. image: {
  6486. source: "./media/characters/guisetto/airborne.svg",
  6487. extra: 584 / 525
  6488. }
  6489. },
  6490. },
  6491. [
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(10 + 11 / 12, "feet"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Large",
  6499. height: math.unit(35, "feet")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(475, "feet")
  6504. },
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(180, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/luxor/front.svg",
  6516. extra: 2940 / 2152
  6517. }
  6518. },
  6519. back: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Back",
  6523. image: {
  6524. source: "./media/characters/luxor/back.svg",
  6525. extra: 1083 / 960
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(5 + 5 / 6, "feet"),
  6533. default: true
  6534. },
  6535. {
  6536. name: "Lamp",
  6537. height: math.unit(50, "feet")
  6538. },
  6539. {
  6540. name: "Lämp",
  6541. height: math.unit(300, "feet")
  6542. },
  6543. {
  6544. name: "The sun is a lamp",
  6545. height: math.unit(250000, "miles")
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6551. {
  6552. front: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(50, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/huoyan/front.svg"
  6558. }
  6559. },
  6560. side: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(180, "lbs"),
  6563. name: "Side",
  6564. image: {
  6565. source: "./media/characters/huoyan/side.svg"
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Chef",
  6572. height: math.unit(9, "feet")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(65, "feet"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(780, "feet")
  6582. },
  6583. {
  6584. name: "Flaming Mountain",
  6585. height: math.unit(4.8, "miles")
  6586. },
  6587. {
  6588. name: "Celestial",
  6589. height: math.unit(765000, "miles")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(5 + 3 / 4, "feet"),
  6598. weight: math.unit(120, "lbs"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/tails/front.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(5 + 3 / 4, "feet"),
  6609. default: true
  6610. }
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(4, "feet"),
  6618. weight: math.unit(50, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/rainy/front.svg"
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(800, "feet"),
  6629. default: true
  6630. }
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(150, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/rainier/front.svg"
  6642. }
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Micro",
  6648. height: math.unit(2, "mm"),
  6649. default: true
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(8 + 4/12, "feet"),
  6658. weight: math.unit(450, "kilograms"),
  6659. volume: math.unit(5, "cups"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/andy-renard/front.svg",
  6663. extra: 1839/1726,
  6664. bottom: 134/1973
  6665. }
  6666. },
  6667. back: {
  6668. height: math.unit(8 + 4/12, "feet"),
  6669. weight: math.unit(450, "kilograms"),
  6670. volume: math.unit(5, "cups"),
  6671. name: "Back",
  6672. image: {
  6673. source: "./media/characters/andy-renard/back.svg",
  6674. extra: 1838/1710,
  6675. bottom: 105/1943
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Tall",
  6682. height: math.unit(8 + 4/12, "feet")
  6683. },
  6684. {
  6685. name: "Mini Macro",
  6686. height: math.unit(15, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(100, "feet")
  6692. },
  6693. {
  6694. name: "Mega Macro",
  6695. height: math.unit(1000, "feet")
  6696. },
  6697. {
  6698. name: "Giga Macro",
  6699. height: math.unit(10, "miles")
  6700. },
  6701. {
  6702. name: "God Macro",
  6703. height: math.unit(1, "multiverse")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(210, "lbs"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/cimmaron/front-sfw.svg",
  6716. extra: 701 / 676,
  6717. bottom: 0.046
  6718. }
  6719. },
  6720. back: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(210, "lbs"),
  6723. name: "Back",
  6724. image: {
  6725. source: "./media/characters/cimmaron/back-sfw.svg",
  6726. extra: 701 / 676,
  6727. bottom: 0.046
  6728. }
  6729. },
  6730. frontNsfw: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(210, "lbs"),
  6733. name: "Front (NSFW)",
  6734. image: {
  6735. source: "./media/characters/cimmaron/front-nsfw.svg",
  6736. extra: 701 / 676,
  6737. bottom: 0.046
  6738. }
  6739. },
  6740. backNsfw: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(210, "lbs"),
  6743. name: "Back (NSFW)",
  6744. image: {
  6745. source: "./media/characters/cimmaron/back-nsfw.svg",
  6746. extra: 701 / 676,
  6747. bottom: 0.046
  6748. }
  6749. },
  6750. dick: {
  6751. height: math.unit(1.714, "feet"),
  6752. name: "Dick",
  6753. image: {
  6754. source: "./media/characters/cimmaron/dick.svg"
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(6, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Macro Mayor",
  6766. height: math.unit(350, "meters")
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(200, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/akari/front.svg",
  6779. extra: 962 / 901,
  6780. bottom: 0.04
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Micro",
  6787. height: math.unit(5, "inches"),
  6788. default: true
  6789. },
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(7, "feet")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(140, "lbs"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/cynosura/front.svg",
  6805. extra: 437/410,
  6806. bottom: 9/446
  6807. }
  6808. },
  6809. back: {
  6810. height: math.unit(6, "feet"),
  6811. weight: math.unit(140, "lbs"),
  6812. name: "Back",
  6813. image: {
  6814. source: "./media/characters/cynosura/back.svg",
  6815. extra: 1304/1160,
  6816. bottom: 71/1375
  6817. }
  6818. },
  6819. },
  6820. [
  6821. {
  6822. name: "Micro",
  6823. height: math.unit(4, "inches")
  6824. },
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(5.75, "feet"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Tall",
  6832. height: math.unit(10, "feet")
  6833. },
  6834. {
  6835. name: "Big",
  6836. height: math.unit(20, "feet")
  6837. },
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(50, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(13 + 2/12, "feet"),
  6849. weight: math.unit(800, "kg"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/gin/front.svg",
  6853. extra: 1312/1191,
  6854. bottom: 45/1357
  6855. }
  6856. },
  6857. mouth: {
  6858. height: math.unit(2.39 * 1.8, "feet"),
  6859. name: "Mouth",
  6860. image: {
  6861. source: "./media/characters/gin/mouth.svg"
  6862. }
  6863. },
  6864. hand: {
  6865. height: math.unit(1.57 * 2.19, "feet"),
  6866. name: "Hand",
  6867. image: {
  6868. source: "./media/characters/gin/hand.svg"
  6869. }
  6870. },
  6871. foot: {
  6872. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6873. name: "Foot",
  6874. image: {
  6875. source: "./media/characters/gin/foot.svg"
  6876. }
  6877. },
  6878. sole: {
  6879. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6880. name: "Sole",
  6881. image: {
  6882. source: "./media/characters/gin/sole.svg"
  6883. }
  6884. },
  6885. },
  6886. [
  6887. {
  6888. name: "Very Small",
  6889. height: math.unit(13 + 2 / 12, "feet")
  6890. },
  6891. {
  6892. name: "Micro",
  6893. height: math.unit(600, "miles")
  6894. },
  6895. {
  6896. name: "Regular",
  6897. height: math.unit(20, "earths"),
  6898. default: true
  6899. },
  6900. {
  6901. name: "Macro",
  6902. height: math.unit(2.2, "solarradii")
  6903. },
  6904. {
  6905. name: "Teramacro",
  6906. height: math.unit(1.2, "galaxies")
  6907. },
  6908. {
  6909. name: "Omegamacro",
  6910. height: math.unit(200, "universes")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6 + 1 / 6, "feet"),
  6919. weight: math.unit(178, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/guy/front.svg"
  6923. }
  6924. }
  6925. },
  6926. [
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(6 + 1 / 6, "feet"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Large",
  6934. height: math.unit(25 + 7 / 12, "feet")
  6935. },
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(60 + 9 / 12, "feet")
  6939. },
  6940. {
  6941. name: "Macro+",
  6942. height: math.unit(246, "feet")
  6943. },
  6944. {
  6945. name: "Macro++",
  6946. height: math.unit(878, "feet")
  6947. }
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6952. {
  6953. front: {
  6954. height: math.unit(9, "feet"),
  6955. weight: math.unit(800, "lbs"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/tiberius/front.svg",
  6959. extra: 2295 / 2071
  6960. }
  6961. },
  6962. back: {
  6963. height: math.unit(9, "feet"),
  6964. weight: math.unit(800, "lbs"),
  6965. name: "Back",
  6966. image: {
  6967. source: "./media/characters/tiberius/back.svg",
  6968. extra: 2373 / 2160
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(9, "feet"),
  6976. default: true
  6977. }
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6982. {
  6983. front: {
  6984. height: math.unit(6, "feet"),
  6985. weight: math.unit(600, "lbs"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/surgo/front.svg",
  6989. extra: 3591 / 2227
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(600, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/surgo/back.svg",
  6998. extra: 3557 / 2228
  6999. }
  7000. },
  7001. laying: {
  7002. height: math.unit(6 * 0.85, "feet"),
  7003. weight: math.unit(600, "lbs"),
  7004. name: "Laying",
  7005. image: {
  7006. source: "./media/characters/surgo/laying.svg"
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(6, "feet"),
  7014. default: true
  7015. }
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7020. {
  7021. side: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(150, "lbs"),
  7024. name: "Side",
  7025. image: {
  7026. source: "./media/characters/cibus/side.svg",
  7027. extra: 800 / 400
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(6, "feet"),
  7035. default: true
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(240, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/nibbles/front.svg"
  7048. }
  7049. },
  7050. side: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(240, "lbs"),
  7053. name: "Side",
  7054. image: {
  7055. source: "./media/characters/nibbles/side.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(9, "feet"),
  7063. default: true
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7069. {
  7070. side: {
  7071. height: math.unit(5 + 1 / 6, "feet"),
  7072. weight: math.unit(130, "lbs"),
  7073. name: "Side",
  7074. image: {
  7075. source: "./media/characters/rikky/side.svg",
  7076. extra: 851 / 801
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(5 + 1 / 6, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(152, "feet"),
  7088. default: true
  7089. },
  7090. {
  7091. name: "Megamacro",
  7092. height: math.unit(7, "miles")
  7093. }
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7098. {
  7099. side: {
  7100. height: math.unit(370, "cm"),
  7101. weight: math.unit(350, "lbs"),
  7102. name: "Side",
  7103. image: {
  7104. source: "./media/characters/malfressa/side.svg"
  7105. }
  7106. },
  7107. walking: {
  7108. height: math.unit(370, "cm"),
  7109. weight: math.unit(350, "lbs"),
  7110. name: "Walking",
  7111. image: {
  7112. source: "./media/characters/malfressa/walking.svg"
  7113. }
  7114. },
  7115. feral: {
  7116. height: math.unit(2500, "cm"),
  7117. weight: math.unit(100000, "lbs"),
  7118. name: "Feral",
  7119. image: {
  7120. source: "./media/characters/malfressa/feral.svg",
  7121. extra: 2108 / 837,
  7122. bottom: 0.02
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(370, "cm")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(300, "meters"),
  7134. default: true
  7135. }
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(60, "kg"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/jaro/front.svg",
  7147. extra: 845/817,
  7148. bottom: 45/890
  7149. }
  7150. },
  7151. back: {
  7152. height: math.unit(6, "feet"),
  7153. weight: math.unit(60, "kg"),
  7154. name: "Back",
  7155. image: {
  7156. source: "./media/characters/jaro/back.svg",
  7157. extra: 847/817,
  7158. bottom: 34/881
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Micro",
  7165. height: math.unit(7, "inches")
  7166. },
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(5.5, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Minimacro",
  7174. height: math.unit(20, "feet")
  7175. },
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(200, "meters")
  7179. }
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(195, "lb"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/rogue/front.svg"
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(90, "feet"),
  7198. default: true
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7204. {
  7205. standing: {
  7206. height: math.unit(5 + 8 / 12, "feet"),
  7207. weight: math.unit(140, "lb"),
  7208. name: "Standing",
  7209. image: {
  7210. source: "./media/characters/piper/standing.svg",
  7211. extra: 1440/1284,
  7212. bottom: 66/1506
  7213. }
  7214. },
  7215. running: {
  7216. height: math.unit(5 + 8 / 12, "feet"),
  7217. weight: math.unit(140, "lb"),
  7218. name: "Running",
  7219. image: {
  7220. source: "./media/characters/piper/running.svg",
  7221. extra: 3948/3655,
  7222. bottom: 0/3948
  7223. }
  7224. },
  7225. sole: {
  7226. height: math.unit(0.81, "feet"),
  7227. weight: math.unit(2, "kg"),
  7228. name: "Sole",
  7229. image: {
  7230. source: "./media/characters/piper/sole.svg"
  7231. }
  7232. },
  7233. nipple: {
  7234. height: math.unit(0.25, "feet"),
  7235. weight: math.unit(1.5, "lb"),
  7236. name: "Nipple",
  7237. image: {
  7238. source: "./media/characters/piper/nipple.svg"
  7239. }
  7240. },
  7241. head: {
  7242. height: math.unit(1.1, "feet"),
  7243. name: "Head",
  7244. image: {
  7245. source: "./media/characters/piper/head.svg"
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Micro",
  7252. height: math.unit(2, "inches")
  7253. },
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(5 + 8 / 12, "feet")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(250, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(7, "miles")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(220, "lb"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/gemini/front.svg"
  7278. }
  7279. },
  7280. back: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(220, "lb"),
  7283. name: "Back",
  7284. image: {
  7285. source: "./media/characters/gemini/back.svg"
  7286. }
  7287. },
  7288. kneeling: {
  7289. height: math.unit(6 / 1.5, "feet"),
  7290. weight: math.unit(220, "lb"),
  7291. name: "Kneeling",
  7292. image: {
  7293. source: "./media/characters/gemini/kneeling.svg",
  7294. bottom: 0.02
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(300, "meters"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Megamacro",
  7306. height: math.unit(6900, "meters")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7312. {
  7313. anthro: {
  7314. height: math.unit(2.35, "meters"),
  7315. weight: math.unit(73, "kg"),
  7316. name: "Anthro",
  7317. image: {
  7318. source: "./media/characters/alicia/anthro.svg",
  7319. extra: 2571 / 2385,
  7320. bottom: 75 / 2648
  7321. }
  7322. },
  7323. paw: {
  7324. height: math.unit(1.32, "feet"),
  7325. name: "Paw",
  7326. image: {
  7327. source: "./media/characters/alicia/paw.svg"
  7328. }
  7329. },
  7330. feral: {
  7331. height: math.unit(1.69, "meters"),
  7332. weight: math.unit(73, "kg"),
  7333. name: "Feral",
  7334. image: {
  7335. source: "./media/characters/alicia/feral.svg",
  7336. extra: 2123 / 1715,
  7337. bottom: 222 / 2349
  7338. }
  7339. },
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(2.35, "meters")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(60, "meters"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Megamacro",
  7353. height: math.unit(10000, "kilometers")
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(7, "feet"),
  7362. weight: math.unit(250, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/archy/front.svg"
  7366. }
  7367. }
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(1, "inch")
  7373. },
  7374. {
  7375. name: "Shorty",
  7376. height: math.unit(5, "feet")
  7377. },
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(7, "feet")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(600, "meters"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Megamacro",
  7389. height: math.unit(1, "mile")
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(1.65, "meters"),
  7398. weight: math.unit(74, "kg"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/berri/front.svg",
  7402. extra: 857 / 837,
  7403. bottom: 18 / 877
  7404. }
  7405. },
  7406. bum: {
  7407. height: math.unit(1.46, "feet"),
  7408. name: "Bum",
  7409. image: {
  7410. source: "./media/characters/berri/bum.svg"
  7411. }
  7412. },
  7413. mouth: {
  7414. height: math.unit(0.44, "feet"),
  7415. name: "Mouth",
  7416. image: {
  7417. source: "./media/characters/berri/mouth.svg"
  7418. }
  7419. },
  7420. paw: {
  7421. height: math.unit(0.826, "feet"),
  7422. name: "Paw",
  7423. image: {
  7424. source: "./media/characters/berri/paw.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(1.65, "meters")
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(60, "m"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Megamacro",
  7440. height: math.unit(9.213, "km")
  7441. },
  7442. {
  7443. name: "Planet Eater",
  7444. height: math.unit(489, "megameters")
  7445. },
  7446. {
  7447. name: "Teramacro",
  7448. height: math.unit(2471635000000, "meters")
  7449. },
  7450. {
  7451. name: "Examacro",
  7452. height: math.unit(8.0624e+26, "meters")
  7453. }
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(1.72, "meters"),
  7461. weight: math.unit(68, "kg"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/lexi/front.svg"
  7465. }
  7466. }
  7467. },
  7468. [
  7469. {
  7470. name: "Very Smol",
  7471. height: math.unit(10, "mm")
  7472. },
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(6.8, "cm"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(1.72, "m")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(1.69, "meters"),
  7489. weight: math.unit(68, "kg"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/martin/front.svg",
  7493. extra: 596 / 581
  7494. }
  7495. }
  7496. },
  7497. [
  7498. {
  7499. name: "Micro",
  7500. height: math.unit(6.85, "cm"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(1.69, "m")
  7506. }
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7511. {
  7512. front: {
  7513. height: math.unit(1.69, "meters"),
  7514. weight: math.unit(68, "kg"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/juno/front.svg"
  7518. }
  7519. }
  7520. },
  7521. [
  7522. {
  7523. name: "Micro",
  7524. height: math.unit(7, "cm")
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(1.89, "m")
  7529. },
  7530. {
  7531. name: "Macro",
  7532. height: math.unit(353, "meters"),
  7533. default: true
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(1.93, "meters"),
  7542. weight: math.unit(83, "kg"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/samantha/front.svg"
  7546. }
  7547. },
  7548. frontClothed: {
  7549. height: math.unit(1.93, "meters"),
  7550. weight: math.unit(83, "kg"),
  7551. name: "Front (Clothed)",
  7552. image: {
  7553. source: "./media/characters/samantha/front-clothed.svg"
  7554. }
  7555. },
  7556. back: {
  7557. height: math.unit(1.93, "meters"),
  7558. weight: math.unit(83, "kg"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/samantha/back.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(1.93, "m")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(74, "meters"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Macro+",
  7577. height: math.unit(223, "meters"),
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(8381, "meters"),
  7582. },
  7583. {
  7584. name: "Megamacro+",
  7585. height: math.unit(12000, "kilometers")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(1.92, "meters"),
  7594. weight: math.unit(80, "kg"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/dr-clay/front.svg"
  7598. }
  7599. },
  7600. frontClothed: {
  7601. height: math.unit(1.92, "meters"),
  7602. weight: math.unit(80, "kg"),
  7603. name: "Front (Clothed)",
  7604. image: {
  7605. source: "./media/characters/dr-clay/front-clothed.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(1.92, "m")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(214, "meters"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro+",
  7621. height: math.unit(12.237, "meters"),
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(557, "megameters"),
  7626. },
  7627. {
  7628. name: "Unimaginable",
  7629. height: math.unit(120e9, "lightyears")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(2, "meters"),
  7638. weight: math.unit(80, "kg"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Teramacro",
  7648. height: math.unit(500000, "lightyears"),
  7649. default: true
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7655. {
  7656. crux: {
  7657. height: math.unit(2, "meters"),
  7658. weight: math.unit(150, "kg"),
  7659. name: "Crux",
  7660. image: {
  7661. source: "./media/characters/vemus/crux.svg",
  7662. extra: 1074/936,
  7663. bottom: 23/1097
  7664. }
  7665. },
  7666. skunkTanuki: {
  7667. height: math.unit(2, "meters"),
  7668. weight: math.unit(150, "kg"),
  7669. name: "Skunk-Tanuki",
  7670. image: {
  7671. source: "./media/characters/vemus/skunk-tanuki.svg",
  7672. extra: 926/893,
  7673. bottom: 20/946
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(4, "meters"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Big",
  7685. height: math.unit(8, "meters")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "meters")
  7690. },
  7691. {
  7692. name: "Macro+",
  7693. height: math.unit(1500, "meters")
  7694. },
  7695. {
  7696. name: "Stellar",
  7697. height: math.unit(14e8, "meters")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(2, "meters"),
  7706. weight: math.unit(70, "kg"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/beherit/front.svg",
  7710. extra: 1234/1109,
  7711. bottom: 55/1289
  7712. }
  7713. }
  7714. },
  7715. [
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(6, "feet")
  7719. },
  7720. {
  7721. name: "Lorg",
  7722. height: math.unit(25, "feet"),
  7723. default: true
  7724. },
  7725. {
  7726. name: "Lorger",
  7727. height: math.unit(75, "feet")
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(200, "meters")
  7732. },
  7733. ]
  7734. ))
  7735. characterMakers.push(() => makeCharacter(
  7736. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7737. {
  7738. front: {
  7739. height: math.unit(2, "meters"),
  7740. weight: math.unit(150, "kg"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/everett/front.svg",
  7744. extra: 1017/866,
  7745. bottom: 86/1103
  7746. }
  7747. },
  7748. paw: {
  7749. height: math.unit(2 / 3.6, "meters"),
  7750. name: "Paw",
  7751. image: {
  7752. source: "./media/characters/everett/paw.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(15, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Lorg",
  7764. height: math.unit(70, "feet"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Lorger",
  7769. height: math.unit(250, "feet")
  7770. },
  7771. {
  7772. name: "Macro",
  7773. height: math.unit(500, "meters")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(2, "meters"),
  7782. weight: math.unit(86, "kg"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/rose/front.svg",
  7786. extra: 1785/1636,
  7787. bottom: 30/1815
  7788. },
  7789. form: "liom",
  7790. default: true
  7791. },
  7792. frontSporty: {
  7793. height: math.unit(2, "meters"),
  7794. weight: math.unit(86, "kg"),
  7795. name: "Front (Sporty)",
  7796. image: {
  7797. source: "./media/characters/rose/front-sporty.svg",
  7798. extra: 350/335,
  7799. bottom: 10/360
  7800. },
  7801. form: "liom"
  7802. },
  7803. frontAlt: {
  7804. height: math.unit(1.6, "meters"),
  7805. weight: math.unit(86, "kg"),
  7806. name: "Front (Alt)",
  7807. image: {
  7808. source: "./media/characters/rose/front-alt.svg",
  7809. extra: 299/283,
  7810. bottom: 3/302
  7811. },
  7812. form: "liom"
  7813. },
  7814. plush: {
  7815. height: math.unit(2, "meters"),
  7816. weight: math.unit(86/3, "kg"),
  7817. name: "Plush",
  7818. image: {
  7819. source: "./media/characters/rose/plush.svg",
  7820. extra: 361/337,
  7821. bottom: 11/372
  7822. },
  7823. form: "plush",
  7824. default: true
  7825. },
  7826. faeStanding: {
  7827. height: math.unit(10, "cm"),
  7828. weight: math.unit(10, "grams"),
  7829. name: "Standing",
  7830. image: {
  7831. source: "./media/characters/rose/fae-standing.svg",
  7832. extra: 1189/1060,
  7833. bottom: 27/1216
  7834. },
  7835. form: "fae",
  7836. default: true
  7837. },
  7838. faeSitting: {
  7839. height: math.unit(5, "cm"),
  7840. weight: math.unit(10, "grams"),
  7841. name: "Sitting",
  7842. image: {
  7843. source: "./media/characters/rose/fae-sitting.svg",
  7844. extra: 737/577,
  7845. bottom: 356/1093
  7846. },
  7847. form: "fae"
  7848. },
  7849. faePaw: {
  7850. height: math.unit(1.35, "cm"),
  7851. name: "Paw",
  7852. image: {
  7853. source: "./media/characters/rose/fae-paw.svg"
  7854. },
  7855. form: "fae"
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "True Micro",
  7861. height: math.unit(9, "cm"),
  7862. form: "liom"
  7863. },
  7864. {
  7865. name: "Micro",
  7866. height: math.unit(16, "cm"),
  7867. form: "liom"
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(1.85, "meters"),
  7872. default: true,
  7873. form: "liom"
  7874. },
  7875. {
  7876. name: "Mini-Macro",
  7877. height: math.unit(5, "meters"),
  7878. form: "liom"
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(15, "meters"),
  7883. form: "liom"
  7884. },
  7885. {
  7886. name: "True Macro",
  7887. height: math.unit(40, "meters"),
  7888. form: "liom"
  7889. },
  7890. {
  7891. name: "City Scale",
  7892. height: math.unit(1, "km"),
  7893. form: "liom"
  7894. },
  7895. {
  7896. name: "Plushie",
  7897. height: math.unit(9, "cm"),
  7898. form: "plush",
  7899. default: true
  7900. },
  7901. {
  7902. name: "Fae",
  7903. height: math.unit(10, "cm"),
  7904. form: "fae",
  7905. default: true
  7906. },
  7907. ],
  7908. {
  7909. "liom": {
  7910. name: "Liom"
  7911. },
  7912. "plush": {
  7913. name: "Plush"
  7914. },
  7915. "fae": {
  7916. name: "Fae Fox",
  7917. default: true
  7918. }
  7919. }
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7923. {
  7924. front: {
  7925. height: math.unit(2, "meters"),
  7926. weight: math.unit(350, "lbs"),
  7927. name: "Front",
  7928. image: {
  7929. source: "./media/characters/regal/front.svg"
  7930. }
  7931. },
  7932. back: {
  7933. height: math.unit(2, "meters"),
  7934. weight: math.unit(350, "lbs"),
  7935. name: "Back",
  7936. image: {
  7937. source: "./media/characters/regal/back.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(350, "feet"),
  7945. default: true
  7946. }
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(4 + 11 / 12, "feet"),
  7954. weight: math.unit(100, "lbs"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/opal/front.svg"
  7958. }
  7959. },
  7960. frontAlt: {
  7961. height: math.unit(4 + 11 / 12, "feet"),
  7962. weight: math.unit(100, "lbs"),
  7963. name: "Front (Alt)",
  7964. image: {
  7965. source: "./media/characters/opal/front-alt.svg"
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Small",
  7972. height: math.unit(4 + 11 / 12, "feet")
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(20, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(120, "feet")
  7982. },
  7983. {
  7984. name: "Megamacro",
  7985. height: math.unit(80, "miles")
  7986. },
  7987. {
  7988. name: "True Size",
  7989. height: math.unit(100000, "lightyears")
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(200, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/vector-wuff/front.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(2.8, "meters")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(450, "meters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(15, "kilometers")
  8018. }
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(256, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/dannik/front.svg"
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(69.57, "meters"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(120, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/azura-saharah/front.svg"
  8050. }
  8051. },
  8052. back: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(120, "lbs"),
  8055. name: "Back",
  8056. image: {
  8057. source: "./media/characters/azura-saharah/back.svg"
  8058. }
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(100, "feet"),
  8065. default: true
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8071. {
  8072. side: {
  8073. height: math.unit(5 + 4 / 12, "feet"),
  8074. weight: math.unit(163, "lbs"),
  8075. name: "Side",
  8076. image: {
  8077. source: "./media/characters/kennedy/side.svg"
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Standard Doggo",
  8084. height: math.unit(5 + 4 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Big Doggo",
  8088. height: math.unit(25 + 3 / 12, "feet"),
  8089. default: true
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(5 + 5/12, "feet"),
  8098. weight: math.unit(100, "lbs"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/odios-de-lunar/front.svg",
  8102. extra: 1468/1323,
  8103. bottom: 22/1490
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Micro",
  8110. height: math.unit(3, "inches")
  8111. },
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(5.5, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(100, "feet")
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8125. {
  8126. back: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(220, "lbs"),
  8129. name: "Back",
  8130. image: {
  8131. source: "./media/characters/mandake/back.svg"
  8132. }
  8133. }
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(7, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Macro",
  8143. height: math.unit(78, "feet")
  8144. },
  8145. {
  8146. name: "Macro+",
  8147. height: math.unit(300, "meters")
  8148. },
  8149. {
  8150. name: "Macro++",
  8151. height: math.unit(2400, "feet")
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(5167, "meters")
  8156. },
  8157. {
  8158. name: "Gigamacro",
  8159. height: math.unit(41769, "miles")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(120, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/yozey/front.svg"
  8172. }
  8173. },
  8174. frontAlt: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(120, "lbs"),
  8177. name: "Front (Alt)",
  8178. image: {
  8179. source: "./media/characters/yozey/front-alt.svg"
  8180. }
  8181. },
  8182. side: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(120, "lbs"),
  8185. name: "Side",
  8186. image: {
  8187. source: "./media/characters/yozey/side.svg"
  8188. }
  8189. },
  8190. },
  8191. [
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(3, "inches"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(6, "feet")
  8200. }
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(103, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/valeska-voss/front.svg"
  8212. }
  8213. }
  8214. },
  8215. [
  8216. {
  8217. name: "Mini-Sized Sub",
  8218. height: math.unit(3.1, "inches")
  8219. },
  8220. {
  8221. name: "Mid-Sized Sub",
  8222. height: math.unit(6.2, "inches")
  8223. },
  8224. {
  8225. name: "Full-Sized Sub",
  8226. height: math.unit(9.3, "inches")
  8227. },
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(5 + 2 / 12, "foot"),
  8231. default: true
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(160, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/gene-zeta/front.svg",
  8244. extra: 3006 / 2826,
  8245. bottom: 182 / 3188
  8246. }
  8247. }
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(6, "inches")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(5 + 11 / 12, "foot"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(140, "feet")
  8262. },
  8263. {
  8264. name: "Supercharged",
  8265. height: math.unit(2500, "feet")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(350, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/razinox/front.svg",
  8278. extra: 1686 / 1548,
  8279. bottom: 28.2 / 1868
  8280. }
  8281. },
  8282. back: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(350, "lbs"),
  8285. name: "Back",
  8286. image: {
  8287. source: "./media/characters/razinox/back.svg",
  8288. extra: 1660 / 1590,
  8289. bottom: 15 / 1665
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(10 + 8 / 12, "foot")
  8297. },
  8298. {
  8299. name: "Minimacro",
  8300. height: math.unit(15, "foot")
  8301. },
  8302. {
  8303. name: "Macro",
  8304. height: math.unit(60, "foot"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Megamacro",
  8309. height: math.unit(5, "miles")
  8310. },
  8311. {
  8312. name: "Gigamacro",
  8313. height: math.unit(6000, "miles")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(150, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/cobalt/front.svg"
  8326. }
  8327. }
  8328. },
  8329. [
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(8 + 1 / 12, "foot")
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(111, "foot"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Supracosmic",
  8341. height: math.unit(1e42, "feet")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(5, "inches"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/amanda/front.svg",
  8353. extra: 926/791,
  8354. bottom: 38/964
  8355. }
  8356. },
  8357. back: {
  8358. height: math.unit(5, "inches"),
  8359. name: "Back",
  8360. image: {
  8361. source: "./media/characters/amanda/back.svg",
  8362. extra: 909/805,
  8363. bottom: 43/952
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(5, "inches"),
  8371. default: true
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(2.75, "meters"),
  8380. weight: math.unit(1200, "lb"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/teal/front.svg",
  8384. extra: 2463 / 2320,
  8385. bottom: 166 / 2629
  8386. }
  8387. },
  8388. back: {
  8389. height: math.unit(2.75, "meters"),
  8390. weight: math.unit(1200, "lb"),
  8391. name: "Back",
  8392. image: {
  8393. source: "./media/characters/teal/back.svg",
  8394. extra: 2580 / 2489,
  8395. bottom: 151 / 2731
  8396. }
  8397. },
  8398. sitting: {
  8399. height: math.unit(1.9, "meters"),
  8400. weight: math.unit(1200, "lb"),
  8401. name: "Sitting",
  8402. image: {
  8403. source: "./media/characters/teal/sitting.svg",
  8404. extra: 623 / 590,
  8405. bottom: 121 / 744
  8406. }
  8407. },
  8408. standing: {
  8409. height: math.unit(2.75, "meters"),
  8410. weight: math.unit(1200, "lb"),
  8411. name: "Standing",
  8412. image: {
  8413. source: "./media/characters/teal/standing.svg",
  8414. extra: 923 / 893,
  8415. bottom: 60 / 983
  8416. }
  8417. },
  8418. stretching: {
  8419. height: math.unit(3.65, "meters"),
  8420. weight: math.unit(1200, "lb"),
  8421. name: "Stretching",
  8422. image: {
  8423. source: "./media/characters/teal/stretching.svg",
  8424. extra: 1276 / 1244,
  8425. bottom: 0 / 1276
  8426. }
  8427. },
  8428. legged: {
  8429. height: math.unit(1.3, "meters"),
  8430. weight: math.unit(100, "lb"),
  8431. name: "Legged",
  8432. image: {
  8433. source: "./media/characters/teal/legged.svg",
  8434. extra: 462 / 437,
  8435. bottom: 24 / 486
  8436. }
  8437. },
  8438. naga: {
  8439. height: math.unit(5.4, "meters"),
  8440. weight: math.unit(4000, "lb"),
  8441. name: "Naga",
  8442. image: {
  8443. source: "./media/characters/teal/naga.svg",
  8444. extra: 1902 / 1858,
  8445. bottom: 0 / 1902
  8446. }
  8447. },
  8448. hand: {
  8449. height: math.unit(0.52, "meters"),
  8450. name: "Hand",
  8451. image: {
  8452. source: "./media/characters/teal/hand.svg"
  8453. }
  8454. },
  8455. maw: {
  8456. height: math.unit(0.43, "meters"),
  8457. name: "Maw",
  8458. image: {
  8459. source: "./media/characters/teal/maw.svg"
  8460. }
  8461. },
  8462. slit: {
  8463. height: math.unit(0.25, "meters"),
  8464. name: "Slit",
  8465. image: {
  8466. source: "./media/characters/teal/slit.svg"
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(2.75, "meters"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(300, "feet")
  8479. },
  8480. {
  8481. name: "Macro+",
  8482. height: math.unit(2000, "feet")
  8483. },
  8484. ]
  8485. ))
  8486. characterMakers.push(() => makeCharacter(
  8487. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8488. {
  8489. frontCat: {
  8490. height: math.unit(6, "feet"),
  8491. weight: math.unit(180, "lbs"),
  8492. name: "Front (Cat)",
  8493. image: {
  8494. source: "./media/characters/ravin-amulet/front-cat.svg"
  8495. }
  8496. },
  8497. frontCatAlt: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(180, "lbs"),
  8500. name: "Front (Alt, Cat)",
  8501. image: {
  8502. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8503. }
  8504. },
  8505. frontWerewolf: {
  8506. height: math.unit(6 * 1.2, "feet"),
  8507. weight: math.unit(225, "lbs"),
  8508. name: "Front (Werewolf)",
  8509. image: {
  8510. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8511. }
  8512. },
  8513. backWerewolf: {
  8514. height: math.unit(6 * 1.2, "feet"),
  8515. weight: math.unit(225, "lbs"),
  8516. name: "Back (Werewolf)",
  8517. image: {
  8518. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Nano",
  8525. height: math.unit(1, "micrometer")
  8526. },
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(1, "inch")
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(6, "feet"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(60, "feet")
  8539. }
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(165, "lbs"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/fluoresce/front.svg"
  8551. }
  8552. }
  8553. },
  8554. [
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(6, "cm")
  8558. },
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(5 + 7 / 12, "feet"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Macro",
  8566. height: math.unit(56, "feet")
  8567. },
  8568. {
  8569. name: "Megamacro",
  8570. height: math.unit(1.9, "miles")
  8571. },
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8576. {
  8577. front: {
  8578. height: math.unit(9 + 6 / 12, "feet"),
  8579. weight: math.unit(523, "lbs"),
  8580. name: "Side",
  8581. image: {
  8582. source: "./media/characters/aurora/side.svg",
  8583. extra: 474/393,
  8584. bottom: 5/479
  8585. }
  8586. }
  8587. },
  8588. [
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(9 + 6 / 12, "feet")
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(96, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro+",
  8600. height: math.unit(243, "feet")
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(194, "cm"),
  8609. weight: math.unit(90, "kg"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/ranek/front.svg",
  8613. extra: 1862/1791,
  8614. bottom: 80/1942
  8615. }
  8616. },
  8617. back: {
  8618. height: math.unit(194, "cm"),
  8619. weight: math.unit(90, "kg"),
  8620. name: "Back",
  8621. image: {
  8622. source: "./media/characters/ranek/back.svg",
  8623. extra: 1853/1787,
  8624. bottom: 74/1927
  8625. }
  8626. },
  8627. feral: {
  8628. height: math.unit(30, "cm"),
  8629. weight: math.unit(1.6, "lbs"),
  8630. name: "Feral",
  8631. image: {
  8632. source: "./media/characters/ranek/feral.svg",
  8633. extra: 990/631,
  8634. bottom: 29/1019
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(194, "cm"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(100, "meters")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(5 + 6 / 12, "feet"),
  8655. weight: math.unit(153, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/andrew-cooper/front.svg"
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Nano",
  8665. height: math.unit(1, "mm")
  8666. },
  8667. {
  8668. name: "Micro",
  8669. height: math.unit(2, "inches")
  8670. },
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(5 + 6 / 12, "feet"),
  8674. default: true
  8675. }
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(6, "feet"),
  8683. weight: math.unit(180, "lbs"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/akane-sato/front.svg",
  8687. extra: 1219 / 1140
  8688. }
  8689. },
  8690. back: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(180, "lbs"),
  8693. name: "Back",
  8694. image: {
  8695. source: "./media/characters/akane-sato/back.svg",
  8696. extra: 1219 / 1170
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(2.5, "meters")
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(250, "meters"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Megamacro",
  8712. height: math.unit(25, "km")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(65, "kg"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/rook/front.svg",
  8725. extra: 960 / 950
  8726. }
  8727. }
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(8.8, "feet")
  8733. },
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(88, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Megamacro",
  8741. height: math.unit(8, "miles")
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(12 + 2 / 12, "feet"),
  8750. weight: math.unit(808, "lbs"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/prodigy/front.svg"
  8754. }
  8755. }
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(12 + 2 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(143, "feet")
  8766. },
  8767. {
  8768. name: "Macro+",
  8769. height: math.unit(400, "feet")
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(225, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/daniel/front.svg"
  8782. }
  8783. },
  8784. leaning: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(225, "lbs"),
  8787. name: "Leaning",
  8788. image: {
  8789. source: "./media/characters/daniel/leaning.svg"
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Macro",
  8796. height: math.unit(1000, "feet"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(6, "feet"),
  8806. weight: math.unit(88, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/chiros/front.svg",
  8810. extra: 306 / 226
  8811. }
  8812. },
  8813. side: {
  8814. height: math.unit(6, "feet"),
  8815. weight: math.unit(88, "lbs"),
  8816. name: "Side",
  8817. image: {
  8818. source: "./media/characters/chiros/side.svg",
  8819. extra: 306 / 226
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(6, "cm"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(100, "lbs"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/selka/front.svg",
  8840. extra: 947 / 887
  8841. }
  8842. }
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(5, "cm"),
  8848. default: true
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(8 + 3 / 12, "feet"),
  8857. weight: math.unit(424, "lbs"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/verin/front.svg",
  8861. extra: 1845 / 1550
  8862. }
  8863. },
  8864. frontArmored: {
  8865. height: math.unit(8 + 3 / 12, "feet"),
  8866. weight: math.unit(424, "lbs"),
  8867. name: "Front (Armored)",
  8868. image: {
  8869. source: "./media/characters/verin/front-armor.svg",
  8870. extra: 1845 / 1550,
  8871. bottom: 0.01
  8872. }
  8873. },
  8874. back: {
  8875. height: math.unit(8 + 3 / 12, "feet"),
  8876. weight: math.unit(424, "lbs"),
  8877. name: "Back",
  8878. image: {
  8879. source: "./media/characters/verin/back.svg",
  8880. bottom: 0.1,
  8881. extra: 1
  8882. }
  8883. },
  8884. foot: {
  8885. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8886. name: "Foot",
  8887. image: {
  8888. source: "./media/characters/verin/foot.svg"
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(8 + 3 / 12, "feet")
  8896. },
  8897. {
  8898. name: "Minimacro",
  8899. height: math.unit(21, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(626, "feet")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(2.718, "meters"),
  8913. weight: math.unit(150, "lbs"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/sovrim-terraquian/front.svg",
  8917. extra: 1752/1689,
  8918. bottom: 36/1788
  8919. }
  8920. },
  8921. back: {
  8922. height: math.unit(2.718, "meters"),
  8923. weight: math.unit(150, "lbs"),
  8924. name: "Back",
  8925. image: {
  8926. source: "./media/characters/sovrim-terraquian/back.svg",
  8927. extra: 1698/1657,
  8928. bottom: 58/1756
  8929. }
  8930. },
  8931. tongue: {
  8932. height: math.unit(2.865, "feet"),
  8933. name: "Tongue",
  8934. image: {
  8935. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8936. }
  8937. },
  8938. hand: {
  8939. height: math.unit(1.61, "feet"),
  8940. name: "Hand",
  8941. image: {
  8942. source: "./media/characters/sovrim-terraquian/hand.svg"
  8943. }
  8944. },
  8945. foot: {
  8946. height: math.unit(1.05, "feet"),
  8947. name: "Foot",
  8948. image: {
  8949. source: "./media/characters/sovrim-terraquian/foot.svg"
  8950. }
  8951. },
  8952. footAlt: {
  8953. height: math.unit(0.88, "feet"),
  8954. name: "Foot (Alt)",
  8955. image: {
  8956. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Micro",
  8963. height: math.unit(2, "inches")
  8964. },
  8965. {
  8966. name: "Small",
  8967. height: math.unit(1, "meter")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(Math.E, "meters"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(20, "meters")
  8977. },
  8978. {
  8979. name: "Macro+",
  8980. height: math.unit(400, "meters")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(7, "feet"),
  8989. weight: math.unit(489, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/reece-silvermane/front.svg",
  8993. bottom: 0.02,
  8994. extra: 1
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(1.5, "miles"),
  9002. default: true
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(78, "kg"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/kane/front.svg",
  9015. extra: 978 / 899
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(2.1, "m"),
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(1, "km"),
  9027. default: true
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(200, "kg"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/tegon/front.svg",
  9040. bottom: 0.01,
  9041. extra: 1
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Micro",
  9048. height: math.unit(1, "inch")
  9049. },
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(6 + 3 / 12, "feet"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(300, "feet")
  9058. },
  9059. {
  9060. name: "Megamacro",
  9061. height: math.unit(69, "miles")
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9067. {
  9068. side: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(2304, "lbs"),
  9071. name: "Side",
  9072. image: {
  9073. source: "./media/characters/arcturax/side.svg",
  9074. extra: 790 / 376,
  9075. bottom: 0.01
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Micro",
  9082. height: math.unit(2, "inch")
  9083. },
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(6, "feet")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(39, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Megamacro",
  9095. height: math.unit(7, "miles")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(6, "feet"),
  9104. weight: math.unit(50, "lbs"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/sentri/front.svg",
  9108. extra: 1750 / 1570,
  9109. bottom: 0.025
  9110. }
  9111. },
  9112. frontAlt: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(50, "lbs"),
  9115. name: "Front (Alt)",
  9116. image: {
  9117. source: "./media/characters/sentri/front-alt.svg",
  9118. extra: 1750 / 1570,
  9119. bottom: 0.025
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(15, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro",
  9131. height: math.unit(2500, "feet")
  9132. }
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(5 + 8 / 12, "feet"),
  9140. weight: math.unit(130, "lbs"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/corvin/front.svg",
  9144. extra: 1803 / 1629
  9145. }
  9146. },
  9147. frontShirt: {
  9148. height: math.unit(5 + 8 / 12, "feet"),
  9149. weight: math.unit(130, "lbs"),
  9150. name: "Front (Shirt)",
  9151. image: {
  9152. source: "./media/characters/corvin/front-shirt.svg",
  9153. extra: 1803 / 1629
  9154. }
  9155. },
  9156. frontPoncho: {
  9157. height: math.unit(5 + 8 / 12, "feet"),
  9158. weight: math.unit(130, "lbs"),
  9159. name: "Front (Poncho)",
  9160. image: {
  9161. source: "./media/characters/corvin/front-poncho.svg",
  9162. extra: 1803 / 1629
  9163. }
  9164. },
  9165. side: {
  9166. height: math.unit(5 + 8 / 12, "feet"),
  9167. weight: math.unit(130, "lbs"),
  9168. name: "Side",
  9169. image: {
  9170. source: "./media/characters/corvin/side.svg",
  9171. extra: 1012 / 945
  9172. }
  9173. },
  9174. back: {
  9175. height: math.unit(5 + 8 / 12, "feet"),
  9176. weight: math.unit(130, "lbs"),
  9177. name: "Back",
  9178. image: {
  9179. source: "./media/characters/corvin/back.svg",
  9180. extra: 1803 / 1629
  9181. }
  9182. },
  9183. },
  9184. [
  9185. {
  9186. name: "Micro",
  9187. height: math.unit(3, "inches")
  9188. },
  9189. {
  9190. name: "Normal",
  9191. height: math.unit(5 + 8 / 12, "feet")
  9192. },
  9193. {
  9194. name: "Macro",
  9195. height: math.unit(300, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Megamacro",
  9200. height: math.unit(500, "miles")
  9201. }
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(135, "lbs"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/q/front.svg",
  9213. extra: 854 / 752,
  9214. bottom: 0.005
  9215. }
  9216. },
  9217. back: {
  9218. height: math.unit(6, "feet"),
  9219. weight: math.unit(130, "lbs"),
  9220. name: "Back",
  9221. image: {
  9222. source: "./media/characters/q/back.svg",
  9223. extra: 854 / 752
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(90, "feet"),
  9231. default: true
  9232. },
  9233. {
  9234. name: "Extra Macro",
  9235. height: math.unit(300, "feet"),
  9236. },
  9237. {
  9238. name: "BIG WALF",
  9239. height: math.unit(750, "feet"),
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(3, "feet"),
  9248. weight: math.unit(28, "lbs"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/citrine/front.svg"
  9252. }
  9253. }
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(3, "feet"),
  9259. default: true
  9260. }
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9265. {
  9266. front: {
  9267. height: math.unit(14, "feet"),
  9268. weight: math.unit(1450, "kg"),
  9269. preyCapacity: math.unit(15, "people"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/aura-starwind/front.svg",
  9273. extra: 1440/1327,
  9274. bottom: 11/1451
  9275. }
  9276. },
  9277. side: {
  9278. height: math.unit(14, "feet"),
  9279. weight: math.unit(1450, "kg"),
  9280. preyCapacity: math.unit(15, "people"),
  9281. name: "Side",
  9282. image: {
  9283. source: "./media/characters/aura-starwind/side.svg",
  9284. extra: 1654 / 1497
  9285. }
  9286. },
  9287. taur: {
  9288. height: math.unit(18, "feet"),
  9289. weight: math.unit(5500, "kg"),
  9290. preyCapacity: math.unit(50, "people"),
  9291. name: "Taur",
  9292. image: {
  9293. source: "./media/characters/aura-starwind/taur.svg",
  9294. extra: 1760 / 1650
  9295. }
  9296. },
  9297. feral: {
  9298. height: math.unit(46, "feet"),
  9299. weight: math.unit(25000, "kg"),
  9300. preyCapacity: math.unit(120, "people"),
  9301. name: "Feral",
  9302. image: {
  9303. source: "./media/characters/aura-starwind/feral.svg"
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(14, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(50, "meters")
  9316. },
  9317. {
  9318. name: "Megamacro",
  9319. height: math.unit(5000, "meters")
  9320. },
  9321. {
  9322. name: "Gigamacro",
  9323. height: math.unit(100000, "kilometers")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(2 + 7 / 12, "feet"),
  9332. weight: math.unit(32, "lbs"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/rivet/front.svg",
  9336. extra: 1716 / 1658,
  9337. bottom: 0.03
  9338. }
  9339. },
  9340. foot: {
  9341. height: math.unit(0.551, "feet"),
  9342. name: "Rivet's Foot",
  9343. image: {
  9344. source: "./media/characters/rivet/foot.svg"
  9345. },
  9346. rename: true
  9347. }
  9348. },
  9349. [
  9350. {
  9351. name: "Micro",
  9352. height: math.unit(1.5, "inches"),
  9353. },
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(2 + 7 / 12, "feet"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(85, "feet")
  9362. },
  9363. {
  9364. name: "Megamacro",
  9365. height: math.unit(2.2, "km")
  9366. }
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9371. {
  9372. front: {
  9373. height: math.unit(5 + 9 / 12, "feet"),
  9374. weight: math.unit(150, "lbs"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/coffee/front.svg",
  9378. extra: 946/880,
  9379. bottom: 66/1012
  9380. }
  9381. },
  9382. foot: {
  9383. height: math.unit(1.29, "feet"),
  9384. name: "Foot",
  9385. image: {
  9386. source: "./media/characters/coffee/foot.svg"
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Micro",
  9393. height: math.unit(2, "inches"),
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(5 + 9 / 12, "feet"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(800, "feet")
  9403. },
  9404. {
  9405. name: "Megamacro",
  9406. height: math.unit(25, "miles")
  9407. }
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(200, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/chari-gal/front.svg",
  9419. extra: 1568 / 1385,
  9420. bottom: 0.047
  9421. }
  9422. },
  9423. gigantamax: {
  9424. height: math.unit(6 * 16, "feet"),
  9425. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9426. name: "Gigantamax",
  9427. image: {
  9428. source: "./media/characters/chari-gal/gigantamax.svg",
  9429. extra: 1124 / 888,
  9430. bottom: 0.03
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(5 + 7 / 12, "feet")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(200, "feet"),
  9442. default: true
  9443. }
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(150, "lbs"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/nova/front.svg",
  9455. extra: 5000 / 4722,
  9456. bottom: 0.02
  9457. }
  9458. }
  9459. },
  9460. [
  9461. {
  9462. name: "Micro-",
  9463. height: math.unit(0.8, "inches")
  9464. },
  9465. {
  9466. name: "Micro",
  9467. height: math.unit(2, "inches"),
  9468. default: true
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9474. {
  9475. koboldFront: {
  9476. height: math.unit(3 + 1 / 12, "feet"),
  9477. weight: math.unit(21.7, "lbs"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/argent/kobold-front.svg",
  9481. extra: 1471 / 1331,
  9482. bottom: 100.8 / 1575.5
  9483. },
  9484. form: "kobold",
  9485. default: true
  9486. },
  9487. dragonFront: {
  9488. height: math.unit(75, "inches"),
  9489. name: "Front",
  9490. image: {
  9491. source: "./media/characters/argent/dragon-front.svg",
  9492. extra: 1389/1248,
  9493. bottom: 54/1443
  9494. },
  9495. form: "dragon",
  9496. },
  9497. dragonBack: {
  9498. height: math.unit(75, "inches"),
  9499. name: "Back",
  9500. image: {
  9501. source: "./media/characters/argent/dragon-back.svg",
  9502. extra: 1399/1271,
  9503. bottom: 23/1422
  9504. },
  9505. form: "dragon",
  9506. },
  9507. dragonDressed: {
  9508. height: math.unit(75, "inches"),
  9509. name: "Dressed",
  9510. image: {
  9511. source: "./media/characters/argent/dragon-dressed.svg",
  9512. extra: 1350/1215,
  9513. bottom: 26/1376
  9514. },
  9515. form: "dragon"
  9516. },
  9517. dragonHead: {
  9518. height: math.unit(23.5, "inches"),
  9519. name: "Head",
  9520. image: {
  9521. source: "./media/characters/argent/dragon-head.svg"
  9522. },
  9523. form: "dragon",
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(2, "inches"),
  9530. form: "kobold",
  9531. },
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(3 + 1 / 12, "feet"),
  9535. form: "kobold",
  9536. default: true
  9537. },
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(120, "feet"),
  9541. form: "kobold",
  9542. },
  9543. {
  9544. name: "Speck",
  9545. height: math.unit(1, "mm"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Tiny",
  9550. height: math.unit(1, "cm"),
  9551. form: "dragon",
  9552. },
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(5, "cm"),
  9556. form: "dragon",
  9557. },
  9558. {
  9559. name: "Normal",
  9560. height: math.unit(75, "inches"),
  9561. form: "dragon",
  9562. default: true
  9563. },
  9564. {
  9565. name: "Extra Tall",
  9566. height: math.unit(9, "feet"),
  9567. form: "dragon",
  9568. },
  9569. {
  9570. name: "Inconvenient",
  9571. height: math.unit(5, "meters"),
  9572. form: "dragon",
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(70, "meters"),
  9577. form: "dragon",
  9578. },
  9579. {
  9580. name: "Macro+",
  9581. height: math.unit(250, "meters"),
  9582. form: "dragon",
  9583. },
  9584. {
  9585. name: "Megamacro",
  9586. height: math.unit(20, "km"),
  9587. form: "dragon",
  9588. },
  9589. {
  9590. name: "Mountainous",
  9591. height: math.unit(100, "km"),
  9592. form: "dragon",
  9593. },
  9594. {
  9595. name: "Continental",
  9596. height: math.unit(2, "megameters"),
  9597. form: "dragon",
  9598. },
  9599. {
  9600. name: "Too Big",
  9601. height: math.unit(900, "megameters"),
  9602. form: "dragon",
  9603. },
  9604. ],
  9605. {
  9606. "kobold": {
  9607. name: "Kobold",
  9608. default: true
  9609. },
  9610. "dragon": {
  9611. name: "Dragon",
  9612. },
  9613. }
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9617. {
  9618. lamp: {
  9619. height: math.unit(7 * 1559 / 989, "feet"),
  9620. name: "Magic Lamp",
  9621. image: {
  9622. source: "./media/characters/mira-al-cul/lamp.svg",
  9623. extra: 1617 / 1559
  9624. }
  9625. },
  9626. front: {
  9627. height: math.unit(7, "feet"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/mira-al-cul/front.svg",
  9631. extra: 1044 / 990
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Heavily Restricted",
  9638. height: math.unit(7 * 1559 / 989, "feet")
  9639. },
  9640. {
  9641. name: "Freshly Freed",
  9642. height: math.unit(50 * 1559 / 989, "feet")
  9643. },
  9644. {
  9645. name: "World Encompassing",
  9646. height: math.unit(10000 * 1559 / 989, "miles")
  9647. },
  9648. {
  9649. name: "Galactic",
  9650. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9651. },
  9652. {
  9653. name: "Palmed Universe",
  9654. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Multiversal Matriarch",
  9659. height: math.unit(8.87e10, "yottameters")
  9660. },
  9661. {
  9662. name: "Void Mother",
  9663. height: math.unit(3.14e110, "yottaparsecs")
  9664. },
  9665. {
  9666. name: "Toying with Transcendence",
  9667. height: math.unit(1e307, "meters")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9673. {
  9674. front: {
  9675. height: math.unit(17 + 1 / 12, "feet"),
  9676. weight: math.unit(476.2 * 5, "lbs"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/kuro-shi-uchū/front.svg",
  9680. extra: 2329 / 1835,
  9681. bottom: 0.02
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(2, "inches")
  9689. },
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(12, "meters")
  9693. },
  9694. {
  9695. name: "Planetary",
  9696. height: math.unit(0.00929, "AU"),
  9697. default: true
  9698. },
  9699. {
  9700. name: "Universal",
  9701. height: math.unit(20, "gigaparsecs")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(5 + 2 / 12, "feet"),
  9710. weight: math.unit(120, "lbs"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/katherine/front.svg",
  9714. extra: 2075 / 1969
  9715. }
  9716. },
  9717. dress: {
  9718. height: math.unit(5 + 2 / 12, "feet"),
  9719. weight: math.unit(120, "lbs"),
  9720. name: "Dress",
  9721. image: {
  9722. source: "./media/characters/katherine/dress.svg",
  9723. extra: 2258 / 2064
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Micro",
  9730. height: math.unit(1, "inches"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(5 + 2 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Macro",
  9739. height: math.unit(100, "meters")
  9740. },
  9741. {
  9742. name: "Megamacro",
  9743. height: math.unit(80, "miles")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(7 + 8 / 12, "feet"),
  9752. weight: math.unit(250, "lbs"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/yevis/front.svg",
  9756. extra: 1938 / 1755
  9757. }
  9758. }
  9759. },
  9760. [
  9761. {
  9762. name: "Mortal",
  9763. height: math.unit(7 + 8 / 12, "feet")
  9764. },
  9765. {
  9766. name: "Battle",
  9767. height: math.unit(25 + 11 / 12, "feet")
  9768. },
  9769. {
  9770. name: "Wrath",
  9771. height: math.unit(1654 + 11 / 12, "feet")
  9772. },
  9773. {
  9774. name: "Planet Destroyer",
  9775. height: math.unit(12000, "miles")
  9776. },
  9777. {
  9778. name: "Galaxy Conqueror",
  9779. height: math.unit(1.45, "zettameters"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Universal War",
  9784. height: math.unit(184, "gigaparsecs")
  9785. },
  9786. {
  9787. name: "Eternity War",
  9788. height: math.unit(1.98e55, "yottaparsecs")
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9794. {
  9795. front: {
  9796. height: math.unit(5 + 8 / 12, "feet"),
  9797. weight: math.unit(63, "kg"),
  9798. name: "Front",
  9799. image: {
  9800. source: "./media/characters/xavier/front.svg",
  9801. extra: 944 / 883
  9802. }
  9803. },
  9804. frontStretch: {
  9805. height: math.unit(5 + 8 / 12, "feet"),
  9806. weight: math.unit(63, "kg"),
  9807. name: "Stretching",
  9808. image: {
  9809. source: "./media/characters/xavier/front-stretch.svg",
  9810. extra: 962 / 820
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(5 + 8 / 12, "feet")
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(100, "meters"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "McLargeHuge",
  9826. height: math.unit(10, "miles")
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(5 + 5 / 12, "feet"),
  9835. weight: math.unit(150, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/joshii/front.svg",
  9839. extra: 765 / 653,
  9840. bottom: 51 / 816
  9841. }
  9842. },
  9843. foot: {
  9844. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9845. name: "Foot",
  9846. image: {
  9847. source: "./media/characters/joshii/foot.svg"
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Micro",
  9854. height: math.unit(2, "inches")
  9855. },
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(5 + 5 / 12, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(785, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(24.5, "miles")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(150, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/goddess-elizabeth/front.svg",
  9880. extra: 1800 / 1525,
  9881. bottom: 0.005
  9882. }
  9883. },
  9884. foot: {
  9885. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9886. name: "Foot",
  9887. image: {
  9888. source: "./media/characters/goddess-elizabeth/foot.svg"
  9889. }
  9890. },
  9891. mouth: {
  9892. height: math.unit(6, "feet"),
  9893. name: "Mouth",
  9894. image: {
  9895. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Micro",
  9902. height: math.unit(12, "feet")
  9903. },
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(80, "miles"),
  9907. default: true
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(15000, "parsecs")
  9912. },
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9917. {
  9918. front: {
  9919. height: math.unit(5 + 9 / 12, "feet"),
  9920. weight: math.unit(144, "lb"),
  9921. name: "Front",
  9922. image: {
  9923. source: "./media/characters/kara/front.svg"
  9924. }
  9925. },
  9926. feet: {
  9927. height: math.unit(6 / 6.765, "feet"),
  9928. name: "Kara's Feet",
  9929. rename: true,
  9930. image: {
  9931. source: "./media/characters/kara/feet.svg"
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(5 + 9 / 12, "feet")
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(174, "feet"),
  9943. default: true
  9944. },
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9949. {
  9950. front: {
  9951. height: math.unit(18, "feet"),
  9952. weight: math.unit(4050, "lb"),
  9953. name: "Front",
  9954. image: {
  9955. source: "./media/characters/tyrone/front.svg",
  9956. extra: 2405 / 2270,
  9957. bottom: 182 / 2587
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(18, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(300, "feet")
  9970. },
  9971. {
  9972. name: "Megamacro",
  9973. height: math.unit(15, "km")
  9974. },
  9975. {
  9976. name: "Gigamacro",
  9977. height: math.unit(500, "km")
  9978. },
  9979. {
  9980. name: "Teramacro",
  9981. height: math.unit(0.5, "gigameters")
  9982. },
  9983. {
  9984. name: "Omnimacro",
  9985. height: math.unit(1e252, "yottauniverse")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(7 + 8 / 12, "feet"),
  9994. weight: math.unit(120, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/danny/front.svg",
  9998. extra: 1490 / 1350
  9999. }
  10000. },
  10001. back: {
  10002. height: math.unit(7 + 8 / 12, "feet"),
  10003. weight: math.unit(120, "lb"),
  10004. name: "Back",
  10005. image: {
  10006. source: "./media/characters/danny/back.svg",
  10007. extra: 1490 / 1350
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(7 + 8 / 12, "feet"),
  10015. default: true
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(3.5, "inches"),
  10024. weight: math.unit(19, "grams"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/mallow/front.svg",
  10028. extra: 471 / 431
  10029. }
  10030. },
  10031. back: {
  10032. height: math.unit(3.5, "inches"),
  10033. weight: math.unit(19, "grams"),
  10034. name: "Back",
  10035. image: {
  10036. source: "./media/characters/mallow/back.svg",
  10037. extra: 471 / 431
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(3.5, "inches"),
  10045. default: true
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(9, "feet"),
  10054. weight: math.unit(230, "kg"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/starry-aqua/front.svg"
  10058. }
  10059. },
  10060. back: {
  10061. height: math.unit(9, "feet"),
  10062. weight: math.unit(230, "kg"),
  10063. name: "Back",
  10064. image: {
  10065. source: "./media/characters/starry-aqua/back.svg"
  10066. }
  10067. },
  10068. hand: {
  10069. height: math.unit(9 * 0.1168, "feet"),
  10070. name: "Hand",
  10071. image: {
  10072. source: "./media/characters/starry-aqua/hand.svg"
  10073. }
  10074. },
  10075. foot: {
  10076. height: math.unit(9 * 0.18, "feet"),
  10077. name: "Foot",
  10078. image: {
  10079. source: "./media/characters/starry-aqua/foot.svg"
  10080. }
  10081. }
  10082. },
  10083. [
  10084. {
  10085. name: "Micro",
  10086. height: math.unit(3, "inches")
  10087. },
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(9, "feet")
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(300, "feet"),
  10095. default: true
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(3200, "feet")
  10100. }
  10101. ]
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10105. {
  10106. front: {
  10107. height: math.unit(15, "feet"),
  10108. weight: math.unit(5026, "lb"),
  10109. name: "Front",
  10110. image: {
  10111. source: "./media/characters/luka-towers/front.svg",
  10112. extra: 1269/1133,
  10113. bottom: 51/1320
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(15, "feet"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Minimacro",
  10125. height: math.unit(25, "feet")
  10126. },
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(320, "feet")
  10130. },
  10131. {
  10132. name: "Megamacro",
  10133. height: math.unit(35000, "feet")
  10134. },
  10135. {
  10136. name: "Gigamacro",
  10137. height: math.unit(4000, "miles")
  10138. },
  10139. {
  10140. name: "Teramacro",
  10141. height: math.unit(15000, "miles")
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10147. {
  10148. front: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(150, "lb"),
  10151. name: "Front",
  10152. image: {
  10153. source: "./media/characters/natalie-nightring/front.svg",
  10154. extra: 1,
  10155. bottom: 0.06
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Uh Oh",
  10162. height: math.unit(0.1, "mm")
  10163. },
  10164. {
  10165. name: "Small",
  10166. height: math.unit(3, "inches")
  10167. },
  10168. {
  10169. name: "Human Scale",
  10170. height: math.unit(6, "feet")
  10171. },
  10172. {
  10173. name: "Librarian",
  10174. height: math.unit(50, "feet"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Immense",
  10179. height: math.unit(200, "miles")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10185. {
  10186. front: {
  10187. height: math.unit(6, "feet"),
  10188. weight: math.unit(180, "lbs"),
  10189. name: "Front",
  10190. image: {
  10191. source: "./media/characters/danni-rosie/front.svg",
  10192. extra: 1260 / 1128,
  10193. bottom: 0.022
  10194. }
  10195. },
  10196. },
  10197. [
  10198. {
  10199. name: "Micro",
  10200. height: math.unit(2, "inches"),
  10201. default: true
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(5 + 9 / 12, "feet"),
  10210. weight: math.unit(220, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/samantha-kruse/front.svg",
  10214. extra: (985 / 935),
  10215. bottom: 0.03
  10216. }
  10217. },
  10218. frontUndressed: {
  10219. height: math.unit(5 + 9 / 12, "feet"),
  10220. weight: math.unit(220, "lb"),
  10221. name: "Front (Undressed)",
  10222. image: {
  10223. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10224. extra: (973 / 923),
  10225. bottom: 0.025
  10226. }
  10227. },
  10228. fat: {
  10229. height: math.unit(5 + 9 / 12, "feet"),
  10230. weight: math.unit(900, "lb"),
  10231. name: "Front (Fat)",
  10232. image: {
  10233. source: "./media/characters/samantha-kruse/fat.svg",
  10234. extra: 2688 / 2561
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(5 + 9 / 12, "feet"),
  10242. default: true
  10243. }
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10248. {
  10249. back: {
  10250. height: math.unit(5 + 4 / 12, "feet"),
  10251. weight: math.unit(4963, "lb"),
  10252. name: "Back",
  10253. image: {
  10254. source: "./media/characters/amelia-rosie/back.svg",
  10255. extra: 1113 / 963,
  10256. bottom: 0.01
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Level 0",
  10263. height: math.unit(5 + 4 / 12, "feet")
  10264. },
  10265. {
  10266. name: "Level 1",
  10267. height: math.unit(164597, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Level 2",
  10272. height: math.unit(956243, "miles")
  10273. },
  10274. {
  10275. name: "Level 3",
  10276. height: math.unit(29421709423, "miles")
  10277. },
  10278. {
  10279. name: "Level 4",
  10280. height: math.unit(154, "lightyears")
  10281. },
  10282. {
  10283. name: "Level 5",
  10284. height: math.unit(4738272, "lightyears")
  10285. },
  10286. {
  10287. name: "Level 6",
  10288. height: math.unit(145787152896, "lightyears")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(5 + 11 / 12, "feet"),
  10297. weight: math.unit(65, "kg"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/rook-kitara/front.svg",
  10301. extra: 1347 / 1274,
  10302. bottom: 0.005
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Totally Unfair",
  10309. height: math.unit(1.8, "mm")
  10310. },
  10311. {
  10312. name: "Lap Rookie",
  10313. height: math.unit(1.4, "feet")
  10314. },
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(5 + 11 / 12, "feet"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "How Did This Happen",
  10322. height: math.unit(80, "miles")
  10323. }
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(7, "feet"),
  10331. weight: math.unit(300, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/pisces/front.svg",
  10335. extra: 2255 / 2115,
  10336. bottom: 0.03
  10337. }
  10338. },
  10339. back: {
  10340. height: math.unit(7, "feet"),
  10341. weight: math.unit(300, "lb"),
  10342. name: "Back",
  10343. image: {
  10344. source: "./media/characters/pisces/back.svg",
  10345. extra: 2146 / 2055,
  10346. bottom: 0.04
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(7, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Swimming Pool",
  10358. height: math.unit(12.2, "meters")
  10359. },
  10360. {
  10361. name: "Olympic Swimming Pool",
  10362. height: math.unit(56.3, "meters")
  10363. },
  10364. {
  10365. name: "Lake Superior",
  10366. height: math.unit(93900, "meters")
  10367. },
  10368. {
  10369. name: "Mediterranean Sea",
  10370. height: math.unit(644457, "meters")
  10371. },
  10372. {
  10373. name: "World's Oceans",
  10374. height: math.unit(4567491, "meters")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(2.3, "meters"),
  10383. weight: math.unit(120, "kg"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/zelas/front.svg"
  10387. }
  10388. },
  10389. side: {
  10390. height: math.unit(2.3, "meters"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/zelas/side.svg"
  10395. }
  10396. },
  10397. back: {
  10398. height: math.unit(2.3, "meters"),
  10399. weight: math.unit(120, "kg"),
  10400. name: "Back",
  10401. image: {
  10402. source: "./media/characters/zelas/back.svg"
  10403. }
  10404. },
  10405. foot: {
  10406. height: math.unit(1.116, "feet"),
  10407. name: "Foot",
  10408. image: {
  10409. source: "./media/characters/zelas/foot.svg"
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(2.3, "meters")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(30, "meters"),
  10421. default: true
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(1, "inch"),
  10430. weight: math.unit(0.21, "grams"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/talbot/front.svg",
  10434. extra: 594 / 544
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Micro",
  10441. height: math.unit(1, "inch"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10448. {
  10449. front: {
  10450. height: math.unit(3 + 3 / 12, "feet"),
  10451. weight: math.unit(51.8, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/fliss/front.svg",
  10455. extra: 840 / 640
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Teeny Tiny",
  10462. height: math.unit(1, "mm")
  10463. },
  10464. {
  10465. name: "Small",
  10466. height: math.unit(1, "inch"),
  10467. default: true
  10468. },
  10469. {
  10470. name: "Standard Sylveon",
  10471. height: math.unit(3 + 3 / 12, "feet")
  10472. },
  10473. {
  10474. name: "Large Nuisance",
  10475. height: math.unit(33, "feet")
  10476. },
  10477. {
  10478. name: "City Filler",
  10479. height: math.unit(3000, "feet")
  10480. },
  10481. {
  10482. name: "New Horizon",
  10483. height: math.unit(6000, "miles")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(5, "cm"),
  10492. weight: math.unit(1.94, "g"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/fleta/front.svg",
  10496. extra: 835 / 803
  10497. }
  10498. },
  10499. back: {
  10500. height: math.unit(5, "cm"),
  10501. weight: math.unit(1.94, "g"),
  10502. name: "Back",
  10503. image: {
  10504. source: "./media/characters/fleta/back.svg",
  10505. extra: 835 / 803
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Micro",
  10512. height: math.unit(5, "cm"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(225, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/dominic/front.svg",
  10526. extra: 1770 / 1620,
  10527. bottom: 0.025
  10528. }
  10529. },
  10530. back: {
  10531. height: math.unit(6, "feet"),
  10532. weight: math.unit(225, "lb"),
  10533. name: "Back",
  10534. image: {
  10535. source: "./media/characters/dominic/back.svg",
  10536. extra: 1745 / 1620,
  10537. bottom: 0.065
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Nano",
  10544. height: math.unit(0.1, "mm")
  10545. },
  10546. {
  10547. name: "Micro-",
  10548. height: math.unit(1, "mm")
  10549. },
  10550. {
  10551. name: "Micro",
  10552. height: math.unit(4, "inches")
  10553. },
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(6 + 4 / 12, "feet"),
  10557. default: true
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(115, "feet")
  10562. },
  10563. {
  10564. name: "Macro+",
  10565. height: math.unit(955, "feet")
  10566. },
  10567. {
  10568. name: "Megamacro",
  10569. height: math.unit(8990, "feet")
  10570. },
  10571. {
  10572. name: "Gigmacro",
  10573. height: math.unit(9310, "miles")
  10574. },
  10575. {
  10576. name: "Teramacro",
  10577. height: math.unit(1567005010, "miles")
  10578. },
  10579. {
  10580. name: "Examacro",
  10581. height: math.unit(1425, "parsecs")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(400, "feet"),
  10590. weight: math.unit(44444444, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/major-colonel/front.svg"
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(400, "feet"),
  10598. weight: math.unit(44444444, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/major-colonel/back.svg"
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(400, "feet"),
  10609. default: true
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10615. {
  10616. catFront: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(120, "lb"),
  10619. name: "Front (Cat Side)",
  10620. image: {
  10621. source: "./media/characters/axel-lycan/cat-front.svg",
  10622. extra: 430 / 402,
  10623. bottom: 43 / 472.35
  10624. }
  10625. },
  10626. catBack: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(120, "lb"),
  10629. name: "Back (Cat Side)",
  10630. image: {
  10631. source: "./media/characters/axel-lycan/cat-back.svg",
  10632. extra: 447 / 419,
  10633. bottom: 23.3 / 469
  10634. }
  10635. },
  10636. wolfFront: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(120, "lb"),
  10639. name: "Front (Wolf Side)",
  10640. image: {
  10641. source: "./media/characters/axel-lycan/wolf-front.svg",
  10642. extra: 485 / 456,
  10643. bottom: 19 / 504
  10644. }
  10645. },
  10646. wolfBack: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(120, "lb"),
  10649. name: "Back (Wolf Side)",
  10650. image: {
  10651. source: "./media/characters/axel-lycan/wolf-back.svg",
  10652. extra: 475 / 438,
  10653. bottom: 39.2 / 514
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(1, "km"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(5 + 9 / 12, "feet"),
  10670. weight: math.unit(175, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/vanrel-hyena/front.svg",
  10674. extra: 1086 / 1010,
  10675. bottom: 0.04
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(5 + 9 / 12, "feet"),
  10683. default: true
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10689. {
  10690. front: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(103, "lb"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/abbott-absol/front.svg",
  10696. extra: 2010 / 1842
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Megamicro",
  10703. height: math.unit(0.1, "mm")
  10704. },
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(1, "inch")
  10708. },
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(6, "feet"),
  10712. default: true
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(264, "lb"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/hector/front.svg",
  10725. extra: 2280 / 2130,
  10726. bottom: 0.07
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(12.25, "foot"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(160, "feet")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/sal/front.svg",
  10751. extra: 1846 / 1699,
  10752. bottom: 0.04
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(10, "miles"),
  10760. default: true
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10766. {
  10767. front: {
  10768. height: math.unit(3, "meters"),
  10769. weight: math.unit(450, "kg"),
  10770. name: "front",
  10771. image: {
  10772. source: "./media/characters/ranger/front.svg",
  10773. extra: 2401 / 2243,
  10774. bottom: 0.05
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(3, "meters"),
  10782. default: true
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(14, "feet"),
  10791. weight: math.unit(800, "kg"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/theresa/front.svg",
  10795. extra: 3575 / 3346,
  10796. bottom: 0.03
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(14, "feet"),
  10804. default: true
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10810. {
  10811. front: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(3, "kg"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/ine/front.svg",
  10817. extra: 678 / 539,
  10818. bottom: 0.023
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(2.265, "feet"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5, "feet"),
  10835. weight: math.unit(30, "kg"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/vial/front.svg",
  10839. extra: 1365 / 1277,
  10840. bottom: 0.04
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(5, "feet"),
  10848. default: true
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10854. {
  10855. side: {
  10856. height: math.unit(3.4, "meters"),
  10857. weight: math.unit(1000, "lb"),
  10858. name: "Side",
  10859. image: {
  10860. source: "./media/characters/rovoska/side.svg",
  10861. extra: 4403 / 1515
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(3.4, "meters"),
  10869. default: true
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10875. {
  10876. front: {
  10877. height: math.unit(8, "feet"),
  10878. weight: math.unit(315, "lb"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/gunner-rotthbauer/front.svg"
  10882. }
  10883. },
  10884. back: {
  10885. height: math.unit(8, "feet"),
  10886. weight: math.unit(315, "lb"),
  10887. name: "Back",
  10888. image: {
  10889. source: "./media/characters/gunner-rotthbauer/back.svg"
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Micro",
  10896. height: math.unit(3.5, "inches")
  10897. },
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(8, "feet"),
  10901. default: true
  10902. },
  10903. {
  10904. name: "Macro",
  10905. height: math.unit(250, "feet")
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(1, "AU")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(5 + 5 / 12, "feet"),
  10918. weight: math.unit(140, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/allatia/front.svg",
  10922. extra: 1227 / 1180,
  10923. bottom: 0.027
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Normal",
  10930. height: math.unit(5 + 5 / 12, "feet")
  10931. },
  10932. {
  10933. name: "Macro",
  10934. height: math.unit(250, "feet"),
  10935. default: true
  10936. },
  10937. {
  10938. name: "Megamacro",
  10939. height: math.unit(8, "miles")
  10940. }
  10941. ]
  10942. ))
  10943. characterMakers.push(() => makeCharacter(
  10944. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10945. {
  10946. front: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(120, "lb"),
  10949. name: "Front",
  10950. image: {
  10951. source: "./media/characters/tene/front.svg",
  10952. extra: 814/750,
  10953. bottom: 36/850
  10954. }
  10955. },
  10956. stomping: {
  10957. height: math.unit(2.025, "meters"),
  10958. weight: math.unit(120, "lb"),
  10959. name: "Stomping",
  10960. image: {
  10961. source: "./media/characters/tene/stomping.svg",
  10962. extra: 885/821,
  10963. bottom: 15/900
  10964. }
  10965. },
  10966. sitting: {
  10967. height: math.unit(1, "meter"),
  10968. weight: math.unit(120, "lb"),
  10969. name: "Sitting",
  10970. image: {
  10971. source: "./media/characters/tene/sitting.svg",
  10972. extra: 396/366,
  10973. bottom: 79/475
  10974. }
  10975. },
  10976. smiling: {
  10977. height: math.unit(1.2, "feet"),
  10978. name: "Smiling",
  10979. image: {
  10980. source: "./media/characters/tene/smiling.svg",
  10981. extra: 1364/1071,
  10982. bottom: 0/1364
  10983. }
  10984. },
  10985. smug: {
  10986. height: math.unit(1.3, "feet"),
  10987. name: "Smug",
  10988. image: {
  10989. source: "./media/characters/tene/smug.svg",
  10990. extra: 1323/1082,
  10991. bottom: 0/1323
  10992. }
  10993. },
  10994. feral: {
  10995. height: math.unit(3.9, "feet"),
  10996. weight: math.unit(250, "lb"),
  10997. name: "Feral",
  10998. image: {
  10999. source: "./media/characters/tene/feral.svg",
  11000. extra: 717 / 458,
  11001. bottom: 0.179
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(6, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(300, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(5, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11023. {
  11024. side: {
  11025. height: math.unit(6, "feet"),
  11026. name: "Side",
  11027. image: {
  11028. source: "./media/characters/evander/side.svg",
  11029. extra: 877 / 477
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(0.83, "meters"),
  11037. default: true
  11038. },
  11039. ]
  11040. ))
  11041. characterMakers.push(() => makeCharacter(
  11042. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11043. {
  11044. front: {
  11045. height: math.unit(12, "feet"),
  11046. weight: math.unit(1000, "lb"),
  11047. name: "Front",
  11048. image: {
  11049. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11050. extra: 1762 / 1611
  11051. }
  11052. },
  11053. back: {
  11054. height: math.unit(12, "feet"),
  11055. weight: math.unit(1000, "lb"),
  11056. name: "Back",
  11057. image: {
  11058. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11059. extra: 1762 / 1611
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(12, "feet"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Kaiju",
  11071. height: math.unit(150, "feet")
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11077. {
  11078. front: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(150, "lb"),
  11081. name: "Front",
  11082. image: {
  11083. source: "./media/characters/zero-alurus/front.svg"
  11084. }
  11085. },
  11086. back: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Back",
  11090. image: {
  11091. source: "./media/characters/zero-alurus/back.svg"
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(5 + 10 / 12, "feet")
  11099. },
  11100. {
  11101. name: "Macro",
  11102. height: math.unit(60, "feet"),
  11103. default: true
  11104. },
  11105. {
  11106. name: "Macro+",
  11107. height: math.unit(450, "feet")
  11108. },
  11109. ]
  11110. ))
  11111. characterMakers.push(() => makeCharacter(
  11112. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11113. {
  11114. front: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(200, "lb"),
  11117. name: "Front",
  11118. image: {
  11119. source: "./media/characters/mega-shi/front.svg",
  11120. extra: 1279 / 1250,
  11121. bottom: 0.02
  11122. }
  11123. },
  11124. back: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(200, "lb"),
  11127. name: "Back",
  11128. image: {
  11129. source: "./media/characters/mega-shi/back.svg",
  11130. extra: 1279 / 1250,
  11131. bottom: 0.02
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(16 + 6 / 12, "feet")
  11139. },
  11140. {
  11141. name: "Third Dimension",
  11142. height: math.unit(40, "meters")
  11143. },
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(660, "feet"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Megamacro",
  11151. height: math.unit(10, "miles")
  11152. },
  11153. {
  11154. name: "Planetary Launch",
  11155. height: math.unit(500, "miles")
  11156. },
  11157. {
  11158. name: "Interstellar",
  11159. height: math.unit(1e9, "miles")
  11160. },
  11161. {
  11162. name: "Leaving the Universe",
  11163. height: math.unit(1, "gigaparsec")
  11164. },
  11165. {
  11166. name: "Travelling Universes",
  11167. height: math.unit(30e15, "parsecs")
  11168. },
  11169. ]
  11170. ))
  11171. characterMakers.push(() => makeCharacter(
  11172. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11173. {
  11174. front: {
  11175. height: math.unit(5 + 4/12, "feet"),
  11176. weight: math.unit(120, "lb"),
  11177. name: "Front",
  11178. image: {
  11179. source: "./media/characters/odyssey/front.svg",
  11180. extra: 1747/1571,
  11181. bottom: 47/1794
  11182. }
  11183. },
  11184. side: {
  11185. height: math.unit(5.1, "feet"),
  11186. weight: math.unit(120, "lb"),
  11187. name: "Side",
  11188. image: {
  11189. source: "./media/characters/odyssey/side.svg",
  11190. extra: 1847/1619,
  11191. bottom: 47/1894
  11192. }
  11193. },
  11194. lounging: {
  11195. height: math.unit(1.464, "feet"),
  11196. weight: math.unit(120, "lb"),
  11197. name: "Lounging",
  11198. image: {
  11199. source: "./media/characters/odyssey/lounging.svg",
  11200. extra: 1235/837,
  11201. bottom: 551/1786
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(5 + 4 / 12, "feet")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(1, "km")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(3000, "km")
  11217. },
  11218. {
  11219. name: "Gigamacro",
  11220. height: math.unit(1, "AU"),
  11221. default: true
  11222. },
  11223. {
  11224. name: "Omniversal",
  11225. height: math.unit(100e14, "lightyears")
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11231. {
  11232. front: {
  11233. height: math.unit(5 + 10/12, "feet"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/mekuto/front.svg",
  11237. extra: 875/835,
  11238. bottom: 46/921
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Minimicro",
  11245. height: math.unit(0.2, "inches")
  11246. },
  11247. {
  11248. name: "Micro",
  11249. height: math.unit(1.5, "inches")
  11250. },
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(5 + 10 / 12, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Minimacro",
  11258. height: math.unit(17 + 9 / 12, "feet")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(177.5, "feet")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(152, "miles")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6.5, "inches"),
  11275. weight: math.unit(13, "oz"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/dafydd-tomos/front.svg",
  11279. extra: 2990 / 2603,
  11280. bottom: 0.03
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Micro",
  11287. height: math.unit(6.5, "inches"),
  11288. default: true
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(150, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/splinter/front.svg",
  11301. extra: 2990 / 2882,
  11302. bottom: 0.04
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/splinter/back.svg",
  11311. extra: 2990 / 2882,
  11312. bottom: 0.04
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Normal",
  11319. height: math.unit(6, "feet")
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(230, "meters"),
  11324. default: true
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(4 + 10 / 12, "feet"),
  11333. weight: math.unit(480, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/snow-gabumon/front.svg",
  11337. extra: 1140 / 963,
  11338. bottom: 0.058
  11339. }
  11340. },
  11341. back: {
  11342. height: math.unit(4 + 10 / 12, "feet"),
  11343. weight: math.unit(480, "lb"),
  11344. name: "Back",
  11345. image: {
  11346. source: "./media/characters/snow-gabumon/back.svg",
  11347. extra: 1115 / 962,
  11348. bottom: 0.041
  11349. }
  11350. },
  11351. frontUndresed: {
  11352. height: math.unit(4 + 10 / 12, "feet"),
  11353. weight: math.unit(480, "lb"),
  11354. name: "Front (Undressed)",
  11355. image: {
  11356. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11357. extra: 1061 / 960,
  11358. bottom: 0.045
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(1, "inch")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(4 + 10 / 12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(200, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(120, "miles")
  11379. },
  11380. {
  11381. name: "Gigamacro",
  11382. height: math.unit(9800, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(1.7, "meters"),
  11391. weight: math.unit(140, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/moody/front.svg",
  11395. extra: 3226 / 3007,
  11396. bottom: 0.087
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Micro",
  11403. height: math.unit(1, "mm")
  11404. },
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(1.7, "meters"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(80, "meters")
  11413. },
  11414. {
  11415. name: "Macro+",
  11416. height: math.unit(500, "meters")
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(150, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/zyas/front.svg",
  11429. extra: 1180 / 1120,
  11430. bottom: 0.045
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(10, "feet"),
  11438. default: true
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(500, "feet")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(5, "miles")
  11447. },
  11448. {
  11449. name: "Teramacro",
  11450. height: math.unit(150000, "miles")
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11456. {
  11457. front: {
  11458. height: math.unit(6, "feet"),
  11459. weight: math.unit(150, "lb"),
  11460. name: "Front",
  11461. image: {
  11462. source: "./media/characters/cuon/front.svg",
  11463. extra: 1390 / 1320,
  11464. bottom: 0.008
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Micro",
  11471. height: math.unit(3, "inches")
  11472. },
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(18 + 9 / 12, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Macro",
  11480. height: math.unit(360, "feet")
  11481. },
  11482. {
  11483. name: "Megamacro",
  11484. height: math.unit(360, "miles")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(2.4, "meters"),
  11493. weight: math.unit(70, "kg"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/nyanuxk/front.svg",
  11497. extra: 1172 / 1084,
  11498. bottom: 0.065
  11499. }
  11500. },
  11501. side: {
  11502. height: math.unit(2.4, "meters"),
  11503. weight: math.unit(70, "kg"),
  11504. name: "Side",
  11505. image: {
  11506. source: "./media/characters/nyanuxk/side.svg",
  11507. extra: 1190 / 1132,
  11508. bottom: 0.007
  11509. }
  11510. },
  11511. back: {
  11512. height: math.unit(2.4, "meters"),
  11513. weight: math.unit(70, "kg"),
  11514. name: "Back",
  11515. image: {
  11516. source: "./media/characters/nyanuxk/back.svg",
  11517. extra: 1200 / 1141,
  11518. bottom: 0.015
  11519. }
  11520. },
  11521. foot: {
  11522. height: math.unit(0.52, "meters"),
  11523. name: "Foot",
  11524. image: {
  11525. source: "./media/characters/nyanuxk/foot.svg"
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Micro",
  11532. height: math.unit(2, "cm")
  11533. },
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(2.4, "meters"),
  11537. default: true
  11538. },
  11539. {
  11540. name: "Smaller Macro",
  11541. height: math.unit(120, "meters")
  11542. },
  11543. {
  11544. name: "Bigger Macro",
  11545. height: math.unit(1.2, "km")
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(15, "kilometers")
  11550. },
  11551. {
  11552. name: "Gigamacro",
  11553. height: math.unit(2000, "km")
  11554. },
  11555. {
  11556. name: "Teramacro",
  11557. height: math.unit(500000, "km")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11563. {
  11564. side: {
  11565. height: math.unit(6, "feet"),
  11566. name: "Side",
  11567. image: {
  11568. source: "./media/characters/ailbhe/side.svg",
  11569. extra: 757 / 464,
  11570. bottom: 0.041
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(1.07, "meters"),
  11578. default: true
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(6, "feet"),
  11587. weight: math.unit(120, "kg"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/zevulfius/front.svg",
  11591. extra: 965 / 903
  11592. }
  11593. },
  11594. side: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(120, "kg"),
  11597. name: "Side",
  11598. image: {
  11599. source: "./media/characters/zevulfius/side.svg",
  11600. extra: 939 / 900
  11601. }
  11602. },
  11603. back: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(120, "kg"),
  11606. name: "Back",
  11607. image: {
  11608. source: "./media/characters/zevulfius/back.svg",
  11609. extra: 918 / 854,
  11610. bottom: 0.005
  11611. }
  11612. },
  11613. foot: {
  11614. height: math.unit(6 / 3.72, "feet"),
  11615. name: "Foot",
  11616. image: {
  11617. source: "./media/characters/zevulfius/foot.svg"
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(750, "meters")
  11625. },
  11626. {
  11627. name: "Megamacro",
  11628. height: math.unit(20, "km"),
  11629. default: true
  11630. },
  11631. {
  11632. name: "Gigamacro",
  11633. height: math.unit(2000, "km")
  11634. },
  11635. {
  11636. name: "Teramacro",
  11637. height: math.unit(250000, "km")
  11638. },
  11639. ]
  11640. ))
  11641. characterMakers.push(() => makeCharacter(
  11642. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11643. {
  11644. front: {
  11645. height: math.unit(100, "feet"),
  11646. weight: math.unit(350, "kg"),
  11647. name: "Front",
  11648. image: {
  11649. source: "./media/characters/rikes/front.svg",
  11650. extra: 1565 / 1483,
  11651. bottom: 0.017
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(100, "feet"),
  11659. default: true
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11665. {
  11666. front: {
  11667. height: math.unit(8, "feet"),
  11668. weight: math.unit(356, "lb"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/adam-silver-mane/front.svg",
  11672. extra: 1036/937,
  11673. bottom: 63/1099
  11674. }
  11675. },
  11676. side: {
  11677. height: math.unit(8, "feet"),
  11678. weight: math.unit(356, "lb"),
  11679. name: "Side",
  11680. image: {
  11681. source: "./media/characters/adam-silver-mane/side.svg",
  11682. extra: 997/901,
  11683. bottom: 59/1056
  11684. }
  11685. },
  11686. frontNsfw: {
  11687. height: math.unit(8, "feet"),
  11688. weight: math.unit(356, "lb"),
  11689. name: "Front (NSFW)",
  11690. image: {
  11691. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11692. extra: 1036/937,
  11693. bottom: 63/1099
  11694. }
  11695. },
  11696. sideNsfw: {
  11697. height: math.unit(8, "feet"),
  11698. weight: math.unit(356, "lb"),
  11699. name: "Side (NSFW)",
  11700. image: {
  11701. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11702. extra: 997/901,
  11703. bottom: 59/1056
  11704. }
  11705. },
  11706. dick: {
  11707. height: math.unit(2.1, "feet"),
  11708. name: "Dick",
  11709. image: {
  11710. source: "./media/characters/adam-silver-mane/dick.svg"
  11711. }
  11712. },
  11713. taur: {
  11714. height: math.unit(16, "feet"),
  11715. weight: math.unit(1500, "kg"),
  11716. name: "Taur",
  11717. image: {
  11718. source: "./media/characters/adam-silver-mane/taur.svg",
  11719. extra: 1713 / 1571,
  11720. bottom: 0.01
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(8, "feet")
  11728. },
  11729. {
  11730. name: "Minimacro",
  11731. height: math.unit(80, "feet")
  11732. },
  11733. {
  11734. name: "MDA",
  11735. height: math.unit(80, "meters")
  11736. },
  11737. {
  11738. name: "Macro",
  11739. height: math.unit(800, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(8000, "feet")
  11745. },
  11746. {
  11747. name: "Gigamacro",
  11748. height: math.unit(800, "miles")
  11749. },
  11750. {
  11751. name: "Teramacro",
  11752. height: math.unit(80000, "miles")
  11753. },
  11754. {
  11755. name: "Celestial",
  11756. height: math.unit(8e6, "miles")
  11757. },
  11758. {
  11759. name: "Star Dragon",
  11760. height: math.unit(800000, "parsecs")
  11761. },
  11762. {
  11763. name: "Godly",
  11764. height: math.unit(800, "teraparsecs")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/ky'owin/front.svg",
  11777. extra: 3862/3053,
  11778. bottom: 74/3936
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(6 + 8 / 12, "feet")
  11786. },
  11787. {
  11788. name: "Large",
  11789. height: math.unit(68, "feet")
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(132, "feet")
  11794. },
  11795. {
  11796. name: "Macro+",
  11797. height: math.unit(340, "feet")
  11798. },
  11799. {
  11800. name: "Macro++",
  11801. height: math.unit(680, "feet"),
  11802. default: true
  11803. },
  11804. {
  11805. name: "Megamacro",
  11806. height: math.unit(1, "mile")
  11807. },
  11808. {
  11809. name: "Megamacro+",
  11810. height: math.unit(10, "miles")
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11816. {
  11817. front: {
  11818. height: math.unit(4, "feet"),
  11819. weight: math.unit(50, "lb"),
  11820. name: "Front",
  11821. image: {
  11822. source: "./media/characters/mal/front.svg",
  11823. extra: 785 / 724,
  11824. bottom: 0.07
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Micro",
  11831. height: math.unit(4, "inches")
  11832. },
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(4, "feet"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(200, "feet")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/jordan-deware/front.svg",
  11853. extra: 1191 / 1012
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Nano",
  11860. height: math.unit(0.01, "mm")
  11861. },
  11862. {
  11863. name: "Minimicro",
  11864. height: math.unit(1, "mm")
  11865. },
  11866. {
  11867. name: "Micro",
  11868. height: math.unit(0.5, "inches")
  11869. },
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(4, "feet"),
  11873. default: true
  11874. },
  11875. {
  11876. name: "Minimacro",
  11877. height: math.unit(40, "meters")
  11878. },
  11879. {
  11880. name: "Small Macro",
  11881. height: math.unit(400, "meters")
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(4, "miles")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(40, "miles")
  11890. },
  11891. {
  11892. name: "Megamacro+",
  11893. height: math.unit(400, "miles")
  11894. },
  11895. {
  11896. name: "Gigamacro",
  11897. height: math.unit(400000, "miles")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11903. {
  11904. side: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Side",
  11908. image: {
  11909. source: "./media/characters/kimiko/side.svg",
  11910. extra: 600 / 358
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Normal",
  11917. height: math.unit(15, "feet"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(220, "feet")
  11923. },
  11924. {
  11925. name: "Macro+",
  11926. height: math.unit(1450, "feet")
  11927. },
  11928. {
  11929. name: "Megamacro",
  11930. height: math.unit(11500, "feet")
  11931. },
  11932. {
  11933. name: "Gigamacro",
  11934. height: math.unit(9500, "miles")
  11935. },
  11936. {
  11937. name: "Teramacro",
  11938. height: math.unit(2208005005, "miles")
  11939. },
  11940. {
  11941. name: "Examacro",
  11942. height: math.unit(2750, "parsecs")
  11943. },
  11944. {
  11945. name: "Zettamacro",
  11946. height: math.unit(101500, "parsecs")
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(70, "kg"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/andrew-sleepy/front.svg"
  11959. }
  11960. },
  11961. side: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(70, "kg"),
  11964. name: "Side",
  11965. image: {
  11966. source: "./media/characters/andrew-sleepy/side.svg"
  11967. }
  11968. },
  11969. },
  11970. [
  11971. {
  11972. name: "Micro",
  11973. height: math.unit(1, "mm"),
  11974. default: true
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/judio/front.svg",
  11987. extra: 1258 / 1110
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(5 + 6 / 12, "feet")
  11995. },
  11996. {
  11997. name: "Macro",
  11998. height: math.unit(1000, "feet"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(10, "miles")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12009. {
  12010. frontDressed: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(68, "kg"),
  12013. name: "Front (Dressed)",
  12014. image: {
  12015. source: "./media/characters/nomaxice/front-dressed.svg",
  12016. extra: 1137/824,
  12017. bottom: 74/1211
  12018. }
  12019. },
  12020. frontShorts: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(68, "kg"),
  12023. name: "Front (Shorts)",
  12024. image: {
  12025. source: "./media/characters/nomaxice/front-shorts.svg",
  12026. extra: 1137/824,
  12027. bottom: 74/1211
  12028. }
  12029. },
  12030. back: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(68, "kg"),
  12033. name: "Back",
  12034. image: {
  12035. source: "./media/characters/nomaxice/back.svg",
  12036. extra: 822/786,
  12037. bottom: 39/861
  12038. }
  12039. },
  12040. hand: {
  12041. height: math.unit(0.565, "feet"),
  12042. name: "Hand",
  12043. image: {
  12044. source: "./media/characters/nomaxice/hand.svg"
  12045. }
  12046. },
  12047. foot: {
  12048. height: math.unit(1, "feet"),
  12049. name: "Foot",
  12050. image: {
  12051. source: "./media/characters/nomaxice/foot.svg"
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Micro",
  12058. height: math.unit(8, "cm")
  12059. },
  12060. {
  12061. name: "Norm",
  12062. height: math.unit(1.82, "m")
  12063. },
  12064. {
  12065. name: "Norm+",
  12066. height: math.unit(8.8, "feet"),
  12067. default: true
  12068. },
  12069. {
  12070. name: "Big",
  12071. height: math.unit(8, "meters")
  12072. },
  12073. {
  12074. name: "Macro",
  12075. height: math.unit(18, "meters")
  12076. },
  12077. {
  12078. name: "Macro+",
  12079. height: math.unit(88, "meters")
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(12, "feet"),
  12088. weight: math.unit(1.5, "tons"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/dydros/front.svg",
  12092. extra: 863 / 800,
  12093. bottom: 0.015
  12094. }
  12095. },
  12096. back: {
  12097. height: math.unit(12, "feet"),
  12098. weight: math.unit(1.5, "tons"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/dydros/back.svg",
  12102. extra: 900 / 843,
  12103. bottom: 0.005
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(12, "feet"),
  12111. default: true
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(100, "kg"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/riggi/front.svg",
  12124. extra: 5787 / 5303
  12125. }
  12126. },
  12127. hyper: {
  12128. height: math.unit(6 * 5 / 3, "feet"),
  12129. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12130. name: "Hyper",
  12131. image: {
  12132. source: "./media/characters/riggi/hyper.svg",
  12133. extra: 3595 / 3485
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Small Macro",
  12140. height: math.unit(50, "feet")
  12141. },
  12142. {
  12143. name: "Default",
  12144. height: math.unit(200, "feet"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Loom",
  12149. height: math.unit(10000, "feet")
  12150. },
  12151. {
  12152. name: "Cruising Altitude",
  12153. height: math.unit(30000, "feet")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(100, "miles")
  12158. },
  12159. {
  12160. name: "Continent Sized",
  12161. height: math.unit(2800, "miles")
  12162. },
  12163. {
  12164. name: "Earth Sized",
  12165. height: math.unit(8000, "miles")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(6, "feet"),
  12174. weight: math.unit(250, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/alexi/front.svg",
  12178. extra: 3483 / 3291,
  12179. bottom: 0.04
  12180. }
  12181. },
  12182. back: {
  12183. height: math.unit(6, "feet"),
  12184. weight: math.unit(250, "lb"),
  12185. name: "Back",
  12186. image: {
  12187. source: "./media/characters/alexi/back.svg",
  12188. extra: 3533 / 3356,
  12189. bottom: 0.021
  12190. }
  12191. },
  12192. frontTransforming: {
  12193. height: math.unit(8.58, "feet"),
  12194. weight: math.unit(1300, "lb"),
  12195. name: "Transforming",
  12196. image: {
  12197. source: "./media/characters/alexi/front-transforming.svg",
  12198. extra: 437 / 409,
  12199. bottom: 19 / 458.66
  12200. }
  12201. },
  12202. frontTransformed: {
  12203. height: math.unit(12.5, "feet"),
  12204. weight: math.unit(4000, "lb"),
  12205. name: "Transformed",
  12206. image: {
  12207. source: "./media/characters/alexi/front-transformed.svg",
  12208. extra: 639 / 614,
  12209. bottom: 30.55 / 671
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(14, "feet"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Minimacro",
  12221. height: math.unit(30, "meters")
  12222. },
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(500, "meters")
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(9000, "km")
  12230. },
  12231. {
  12232. name: "Teramacro",
  12233. height: math.unit(384000, "km")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(6, "feet"),
  12242. weight: math.unit(150, "lb"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/kayroo/front.svg",
  12246. extra: 1153 / 1038,
  12247. bottom: 0.06
  12248. }
  12249. },
  12250. foot: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(150, "lb"),
  12253. name: "Foot",
  12254. image: {
  12255. source: "./media/characters/kayroo/foot.svg"
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(8, "feet"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Minimacro",
  12267. height: math.unit(250, "feet")
  12268. },
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(2800, "feet")
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(5200, "feet")
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(27000, "feet")
  12280. },
  12281. {
  12282. name: "Omega",
  12283. height: math.unit(45000, "feet")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12289. {
  12290. front: {
  12291. height: math.unit(18, "feet"),
  12292. weight: math.unit(5800, "lb"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/rhys/front.svg",
  12296. extra: 3386 / 3090,
  12297. bottom: 0.07
  12298. }
  12299. },
  12300. },
  12301. [
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(18, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Working Size",
  12309. height: math.unit(200, "feet")
  12310. },
  12311. {
  12312. name: "Demolition Size",
  12313. height: math.unit(2000, "feet")
  12314. },
  12315. {
  12316. name: "Maximum Licensed Size",
  12317. height: math.unit(5, "miles")
  12318. },
  12319. {
  12320. name: "Maximum Observed Size",
  12321. height: math.unit(10, "yottameters")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(250, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/toto/front.svg",
  12334. extra: 527 / 479,
  12335. bottom: 0.05
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Micro",
  12342. height: math.unit(3, "feet")
  12343. },
  12344. {
  12345. name: "Normal",
  12346. height: math.unit(10, "feet")
  12347. },
  12348. {
  12349. name: "Macro",
  12350. height: math.unit(150, "feet"),
  12351. default: true
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(1200, "feet")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "King", species: ["lion"], tags: ["anthro"] },
  12361. {
  12362. back: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(150, "lb"),
  12365. name: "Back",
  12366. image: {
  12367. source: "./media/characters/king/back.svg"
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(2, "inches")
  12375. },
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(8, "feet")
  12379. },
  12380. {
  12381. name: "Macro",
  12382. height: math.unit(200, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Megamacro",
  12387. height: math.unit(50, "miles")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(11, "feet"),
  12396. weight: math.unit(1400, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/cordite/front.svg",
  12400. extra: 1919/1827,
  12401. bottom: 40/1959
  12402. }
  12403. },
  12404. side: {
  12405. height: math.unit(11, "feet"),
  12406. weight: math.unit(1400, "lb"),
  12407. name: "Side",
  12408. image: {
  12409. source: "./media/characters/cordite/side.svg",
  12410. extra: 1908/1793,
  12411. bottom: 38/1946
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(11, "feet"),
  12416. weight: math.unit(1400, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/cordite/back.svg",
  12420. extra: 1938/1837,
  12421. bottom: 10/1948
  12422. }
  12423. },
  12424. feral: {
  12425. height: math.unit(2, "feet"),
  12426. weight: math.unit(90, "lb"),
  12427. name: "Feral",
  12428. image: {
  12429. source: "./media/characters/cordite/feral.svg",
  12430. extra: 1260 / 755,
  12431. bottom: 0.05
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(11, "feet"),
  12439. default: true
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(150, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/pianostrong/front.svg",
  12452. extra: 6577 / 6254,
  12453. bottom: 0.02
  12454. }
  12455. },
  12456. side: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Side",
  12460. image: {
  12461. source: "./media/characters/pianostrong/side.svg",
  12462. extra: 6106 / 5730
  12463. }
  12464. },
  12465. back: {
  12466. height: math.unit(6, "feet"),
  12467. weight: math.unit(150, "lb"),
  12468. name: "Back",
  12469. image: {
  12470. source: "./media/characters/pianostrong/back.svg",
  12471. extra: 6085 / 5733,
  12472. bottom: 0.01
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(100, "feet")
  12480. },
  12481. {
  12482. name: "Macro+",
  12483. height: math.unit(300, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro++",
  12488. height: math.unit(1000, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(150, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/kona/front.svg",
  12501. extra: 2960 / 2629,
  12502. bottom: 0.005
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(11 + 8 / 12, "feet")
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(850, "feet"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Macro+",
  12518. height: math.unit(1.5, "km"),
  12519. default: true
  12520. },
  12521. {
  12522. name: "Megamacro",
  12523. height: math.unit(80, "miles")
  12524. },
  12525. {
  12526. name: "Gigamacro",
  12527. height: math.unit(3500, "miles")
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12533. {
  12534. side: {
  12535. height: math.unit(1.9, "meters"),
  12536. weight: math.unit(326, "kg"),
  12537. name: "Side",
  12538. image: {
  12539. source: "./media/characters/levi/side.svg",
  12540. extra: 1704 / 1334,
  12541. bottom: 0.02
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(1.9, "meters"),
  12549. default: true
  12550. },
  12551. {
  12552. name: "Macro",
  12553. height: math.unit(20, "meters")
  12554. },
  12555. {
  12556. name: "Macro+",
  12557. height: math.unit(200, "meters")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(2, "km")
  12562. },
  12563. {
  12564. name: "Megamacro+",
  12565. height: math.unit(20, "km")
  12566. },
  12567. {
  12568. name: "Gigamacro",
  12569. height: math.unit(2500, "km")
  12570. },
  12571. {
  12572. name: "Gigamacro+",
  12573. height: math.unit(120000, "km")
  12574. },
  12575. {
  12576. name: "Teramacro",
  12577. height: math.unit(7.77e6, "km")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6 + 4/12, "feet"),
  12586. weight: math.unit(190, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/bmc/front.svg",
  12590. extra: 1626/1472,
  12591. bottom: 79/1705
  12592. }
  12593. },
  12594. back: {
  12595. height: math.unit(6 + 4/12, "feet"),
  12596. weight: math.unit(190, "lb"),
  12597. name: "Back",
  12598. image: {
  12599. source: "./media/characters/bmc/back.svg",
  12600. extra: 1640/1479,
  12601. bottom: 45/1685
  12602. }
  12603. },
  12604. frontArmor: {
  12605. height: math.unit(6 + 4/12, "feet"),
  12606. weight: math.unit(190, "lb"),
  12607. name: "Front-armor",
  12608. image: {
  12609. source: "./media/characters/bmc/front-armor.svg",
  12610. extra: 1538/1468,
  12611. bottom: 79/1617
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Human-sized",
  12618. height: math.unit(6 + 4 / 12, "feet")
  12619. },
  12620. {
  12621. name: "Interactive Size",
  12622. height: math.unit(25, "feet")
  12623. },
  12624. {
  12625. name: "Small",
  12626. height: math.unit(250, "feet")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(1250, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Good Day",
  12635. height: math.unit(88, "miles")
  12636. },
  12637. {
  12638. name: "Largest Measured Size",
  12639. height: math.unit(105.960, "galaxies")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(20, "feet"),
  12648. weight: math.unit(2016, "kg"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/sven-the-kaiju/front.svg",
  12652. extra: 1277/1250,
  12653. bottom: 35/1312
  12654. }
  12655. },
  12656. mouth: {
  12657. height: math.unit(1.85, "feet"),
  12658. name: "Mouth",
  12659. image: {
  12660. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Fairy",
  12667. height: math.unit(6, "inches")
  12668. },
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(20, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Rampage",
  12676. height: math.unit(200, "feet")
  12677. },
  12678. {
  12679. name: "Archfey Forest Guardian",
  12680. height: math.unit(1, "mile")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(4, "meters"),
  12689. weight: math.unit(2, "tons"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/marik/front.svg",
  12693. extra: 1057 / 1003,
  12694. bottom: 0.08
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(4, "meters"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(20, "meters")
  12707. },
  12708. {
  12709. name: "Megamacro",
  12710. height: math.unit(50, "km")
  12711. },
  12712. {
  12713. name: "Gigamacro",
  12714. height: math.unit(100, "km")
  12715. },
  12716. {
  12717. name: "Alpha Macro",
  12718. height: math.unit(7.88e7, "yottameters")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(110, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/mel/front.svg",
  12731. extra: 736 / 617,
  12732. bottom: 0.017
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Pico",
  12739. height: math.unit(3, "pm")
  12740. },
  12741. {
  12742. name: "Nano",
  12743. height: math.unit(3, "nm")
  12744. },
  12745. {
  12746. name: "Micro",
  12747. height: math.unit(0.3, "mm"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Micro+",
  12752. height: math.unit(3, "mm")
  12753. },
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(5 + 10.5 / 12, "feet")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12762. {
  12763. kaiju: {
  12764. height: math.unit(1.75, "meters"),
  12765. weight: math.unit(55, "kg"),
  12766. name: "Kaiju",
  12767. image: {
  12768. source: "./media/characters/lykonous/kaiju.svg",
  12769. extra: 1055 / 946,
  12770. bottom: 0.135
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(2.5, "meters"),
  12778. default: true
  12779. },
  12780. {
  12781. name: "Kaiju Dragon",
  12782. height: math.unit(60, "meters")
  12783. },
  12784. {
  12785. name: "Mega Kaiju",
  12786. height: math.unit(120, "km")
  12787. },
  12788. {
  12789. name: "Giga Kaiju",
  12790. height: math.unit(200, "megameters")
  12791. },
  12792. {
  12793. name: "Terra Kaiju",
  12794. height: math.unit(400, "gigameters")
  12795. },
  12796. {
  12797. name: "Kaiju Dragon God",
  12798. height: math.unit(13000, "exaparsecs")
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/blü/front.svg",
  12811. extra: 1883 / 1564,
  12812. bottom: 0.031
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(13, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Big Boi",
  12824. height: math.unit(150, "meters")
  12825. },
  12826. {
  12827. name: "Mini Stomper",
  12828. height: math.unit(300, "meters")
  12829. },
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(1000, "meters")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(11000, "meters")
  12837. },
  12838. {
  12839. name: "Gigamacro",
  12840. height: math.unit(11000, "km")
  12841. },
  12842. {
  12843. name: "Teramacro",
  12844. height: math.unit(420000, "km")
  12845. },
  12846. {
  12847. name: "Examacro",
  12848. height: math.unit(120, "parsecs")
  12849. },
  12850. {
  12851. name: "God Tho",
  12852. height: math.unit(98000000000, "parsecs")
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12858. {
  12859. taurFront: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(200, "lb"),
  12862. name: "Taur (Front)",
  12863. image: {
  12864. source: "./media/characters/scales/taur-front.svg",
  12865. extra: 1,
  12866. bottom: 0.05
  12867. }
  12868. },
  12869. taurBack: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(200, "lb"),
  12872. name: "Taur (Back)",
  12873. image: {
  12874. source: "./media/characters/scales/taur-back.svg",
  12875. extra: 1,
  12876. bottom: 0.08
  12877. }
  12878. },
  12879. anthro: {
  12880. height: math.unit(6 * 7 / 12, "feet"),
  12881. weight: math.unit(100, "lb"),
  12882. name: "Anthro",
  12883. image: {
  12884. source: "./media/characters/scales/anthro.svg",
  12885. extra: 1,
  12886. bottom: 0.06
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(12, "feet"),
  12894. default: true
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/koragos/front.svg",
  12907. extra: 841 / 794,
  12908. bottom: 0.035
  12909. }
  12910. },
  12911. back: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Back",
  12915. image: {
  12916. source: "./media/characters/koragos/back.svg",
  12917. extra: 841 / 810,
  12918. bottom: 0.022
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(6 + 11 / 12, "feet"),
  12926. default: true
  12927. },
  12928. {
  12929. name: "Macro",
  12930. height: math.unit(490, "feet")
  12931. },
  12932. {
  12933. name: "Megamacro",
  12934. height: math.unit(10, "miles")
  12935. },
  12936. {
  12937. name: "Gigamacro",
  12938. height: math.unit(50, "miles")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(6, "feet"),
  12947. weight: math.unit(250, "lb"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/xylrem/front.svg",
  12951. extra: 3323 / 3050,
  12952. bottom: 0.065
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Micro",
  12959. height: math.unit(4, "feet")
  12960. },
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(16, "feet"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Macro",
  12968. height: math.unit(2720, "feet")
  12969. },
  12970. {
  12971. name: "Megamacro",
  12972. height: math.unit(25000, "miles")
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12978. {
  12979. front: {
  12980. height: math.unit(8, "feet"),
  12981. weight: math.unit(250, "kg"),
  12982. name: "Front",
  12983. image: {
  12984. source: "./media/characters/ikideru/front.svg",
  12985. extra: 930 / 870,
  12986. bottom: 0.087
  12987. }
  12988. },
  12989. back: {
  12990. height: math.unit(8, "feet"),
  12991. weight: math.unit(250, "kg"),
  12992. name: "Back",
  12993. image: {
  12994. source: "./media/characters/ikideru/back.svg",
  12995. extra: 919 / 852,
  12996. bottom: 0.055
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Rare",
  13003. height: math.unit(8, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Playful Loom",
  13008. height: math.unit(80, "feet")
  13009. },
  13010. {
  13011. name: "City Leaner",
  13012. height: math.unit(230, "feet")
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(2500, "feet")
  13017. },
  13018. {
  13019. name: "Gigamacro",
  13020. height: math.unit(26400, "feet")
  13021. },
  13022. {
  13023. name: "Tectonic Shifter",
  13024. height: math.unit(1.7, "megameters")
  13025. },
  13026. {
  13027. name: "Planet Carer",
  13028. height: math.unit(21, "megameters")
  13029. },
  13030. {
  13031. name: "God",
  13032. height: math.unit(11157.22, "parsecs")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(120, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/neo/front.svg"
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Micro",
  13051. height: math.unit(2, "inches"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Human Size",
  13056. height: math.unit(5 + 8 / 12, "feet")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(13 + 10 / 12, "feet"),
  13065. weight: math.unit(5320, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/chauncey-chantz/front.svg",
  13069. extra: 1587 / 1435,
  13070. bottom: 0.02
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(13 + 10 / 12, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(45, "feet")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(250, "miles")
  13087. },
  13088. {
  13089. name: "Planetary",
  13090. height: math.unit(10000, "miles")
  13091. },
  13092. {
  13093. name: "Galactic",
  13094. height: math.unit(40000, "parsecs")
  13095. },
  13096. {
  13097. name: "Universal",
  13098. height: math.unit(1, "yottameter")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/epifox/front.svg",
  13111. extra: 1,
  13112. bottom: 0.075
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Micro",
  13119. height: math.unit(6, "inches")
  13120. },
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(12, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Macro",
  13128. height: math.unit(3810, "feet")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(500, "miles")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(1.8796, "m"),
  13141. weight: math.unit(230, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/colin-t/front.svg",
  13145. extra: 1272 / 1193,
  13146. bottom: 0.07
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Micro",
  13153. height: math.unit(0.571, "meters")
  13154. },
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(1.8796, "meters"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Tall",
  13162. height: math.unit(4, "meters")
  13163. },
  13164. {
  13165. name: "Macro",
  13166. height: math.unit(67.241, "meters")
  13167. },
  13168. {
  13169. name: "Megamacro",
  13170. height: math.unit(371.856, "meters")
  13171. },
  13172. {
  13173. name: "Planetary",
  13174. height: math.unit(12631.5689, "km")
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(1.85, "meters"),
  13183. weight: math.unit(80, "kg"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/matvei/front.svg",
  13187. extra: 456/447,
  13188. bottom: 8/464
  13189. }
  13190. },
  13191. back: {
  13192. height: math.unit(1.85, "meters"),
  13193. weight: math.unit(80, "kg"),
  13194. name: "Back",
  13195. image: {
  13196. source: "./media/characters/matvei/back.svg",
  13197. extra: 434/427,
  13198. bottom: 11/445
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(1.85, "meters"),
  13206. default: true
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(5 + 9 / 12, "feet"),
  13215. weight: math.unit(70, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/quincy/front.svg",
  13219. extra: 3041 / 2751
  13220. }
  13221. },
  13222. back: {
  13223. height: math.unit(5 + 9 / 12, "feet"),
  13224. weight: math.unit(70, "lb"),
  13225. name: "Back",
  13226. image: {
  13227. source: "./media/characters/quincy/back.svg",
  13228. extra: 3041 / 2751
  13229. }
  13230. },
  13231. flying: {
  13232. height: math.unit(5 + 4 / 12, "feet"),
  13233. weight: math.unit(70, "lb"),
  13234. name: "Flying",
  13235. image: {
  13236. source: "./media/characters/quincy/flying.svg",
  13237. extra: 1044 / 930
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Micro",
  13244. height: math.unit(3, "cm")
  13245. },
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(5 + 9 / 12, "feet")
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(200, "meters"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(1000, "meters")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(3 + 11/12, "feet"),
  13266. weight: math.unit(50, "lb"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/vanrel/front.svg",
  13270. extra: 1104/949,
  13271. bottom: 52/1156
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(3 + 11/12, "feet"),
  13276. weight: math.unit(50, "lb"),
  13277. name: "Back",
  13278. image: {
  13279. source: "./media/characters/vanrel/back.svg",
  13280. extra: 1119/976,
  13281. bottom: 37/1156
  13282. }
  13283. },
  13284. tome: {
  13285. height: math.unit(1.35, "feet"),
  13286. weight: math.unit(10, "lb"),
  13287. name: "Vanrel's Tome",
  13288. rename: true,
  13289. image: {
  13290. source: "./media/characters/vanrel/tome.svg"
  13291. }
  13292. },
  13293. beans: {
  13294. height: math.unit(0.89, "feet"),
  13295. name: "Beans",
  13296. image: {
  13297. source: "./media/characters/vanrel/beans.svg"
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Normal",
  13304. height: math.unit(3 + 11/12, "feet"),
  13305. default: true
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(7 + 5 / 12, "feet"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/kuiper-vanrel/front.svg",
  13317. extra: 1219/1169,
  13318. bottom: 69/1288
  13319. }
  13320. },
  13321. back: {
  13322. height: math.unit(7 + 5 / 12, "feet"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/kuiper-vanrel/back.svg",
  13326. extra: 1236/1193,
  13327. bottom: 27/1263
  13328. }
  13329. },
  13330. foot: {
  13331. height: math.unit(0.55, "meters"),
  13332. name: "Foot",
  13333. image: {
  13334. source: "./media/characters/kuiper-vanrel/foot.svg",
  13335. }
  13336. },
  13337. battle: {
  13338. height: math.unit(6.824, "feet"),
  13339. name: "Battle",
  13340. image: {
  13341. source: "./media/characters/kuiper-vanrel/battle.svg",
  13342. extra: 1466 / 1327,
  13343. bottom: 29 / 1492.5
  13344. }
  13345. },
  13346. meerkui: {
  13347. height: math.unit(18, "inches"),
  13348. name: "Meerkui",
  13349. image: {
  13350. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13351. extra: 1354/1289,
  13352. bottom: 69/1423
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(7 + 5 / 12, "feet"),
  13360. default: true
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(8 + 5 / 12, "feet"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/keset-vanrel/front.svg",
  13372. extra: 1231/1148,
  13373. bottom: 82/1313
  13374. }
  13375. },
  13376. back: {
  13377. height: math.unit(8 + 5 / 12, "feet"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/keset-vanrel/back.svg",
  13381. extra: 1240/1174,
  13382. bottom: 33/1273
  13383. }
  13384. },
  13385. hand: {
  13386. height: math.unit(0.6, "meters"),
  13387. name: "Hand",
  13388. image: {
  13389. source: "./media/characters/keset-vanrel/hand.svg"
  13390. }
  13391. },
  13392. foot: {
  13393. height: math.unit(0.94978, "meters"),
  13394. name: "Foot",
  13395. image: {
  13396. source: "./media/characters/keset-vanrel/foot.svg"
  13397. }
  13398. },
  13399. battle: {
  13400. height: math.unit(7.408, "feet"),
  13401. name: "Battle",
  13402. image: {
  13403. source: "./media/characters/keset-vanrel/battle.svg",
  13404. extra: 1890 / 1386,
  13405. bottom: 73.28 / 1970
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(8 + 5 / 12, "feet"),
  13413. default: true
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/neos/front.svg",
  13426. extra: 1696 / 992,
  13427. bottom: 0.14
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(54, "cm"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Macro",
  13439. height: math.unit(100, "m")
  13440. },
  13441. {
  13442. name: "Megamacro",
  13443. height: math.unit(10, "km")
  13444. },
  13445. {
  13446. name: "Megamacro+",
  13447. height: math.unit(100, "km")
  13448. },
  13449. {
  13450. name: "Gigamacro",
  13451. height: math.unit(100, "Mm")
  13452. },
  13453. {
  13454. name: "Teramacro",
  13455. height: math.unit(100, "Gm")
  13456. },
  13457. {
  13458. name: "Examacro",
  13459. height: math.unit(100, "Em")
  13460. },
  13461. {
  13462. name: "Godly",
  13463. height: math.unit(10000, "Ym")
  13464. },
  13465. {
  13466. name: "Beyond Godly",
  13467. height: math.unit(25, "multiverses")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13473. {
  13474. feminine: {
  13475. height: math.unit(5, "feet"),
  13476. weight: math.unit(100, "lb"),
  13477. name: "Feminine",
  13478. image: {
  13479. source: "./media/characters/sammy-mouse/feminine.svg",
  13480. extra: 2526 / 2425,
  13481. bottom: 0.123
  13482. }
  13483. },
  13484. masculine: {
  13485. height: math.unit(5, "feet"),
  13486. weight: math.unit(100, "lb"),
  13487. name: "Masculine",
  13488. image: {
  13489. source: "./media/characters/sammy-mouse/masculine.svg",
  13490. extra: 2526 / 2425,
  13491. bottom: 0.123
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Micro",
  13498. height: math.unit(5, "inches")
  13499. },
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(5, "feet"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Macro",
  13507. height: math.unit(60, "feet")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(4, "feet"),
  13516. weight: math.unit(50, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/kole/front.svg",
  13520. extra: 1423 / 1303,
  13521. bottom: 0.025
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(4, "feet"),
  13526. weight: math.unit(50, "lb"),
  13527. name: "Back",
  13528. image: {
  13529. source: "./media/characters/kole/back.svg",
  13530. extra: 1426 / 1280,
  13531. bottom: 0.02
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(4, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(2.5, "feet"),
  13548. weight: math.unit(32, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/rufran/front.svg",
  13552. extra: 1313/885,
  13553. bottom: 94/1407
  13554. }
  13555. },
  13556. side: {
  13557. height: math.unit(2.5, "feet"),
  13558. weight: math.unit(32, "lb"),
  13559. name: "Side",
  13560. image: {
  13561. source: "./media/characters/rufran/side.svg",
  13562. extra: 1109/852,
  13563. bottom: 118/1227
  13564. }
  13565. },
  13566. back: {
  13567. height: math.unit(2.5, "feet"),
  13568. weight: math.unit(32, "lb"),
  13569. name: "Back",
  13570. image: {
  13571. source: "./media/characters/rufran/back.svg",
  13572. extra: 1280/878,
  13573. bottom: 131/1411
  13574. }
  13575. },
  13576. mouth: {
  13577. height: math.unit(1.13, "feet"),
  13578. name: "Mouth",
  13579. image: {
  13580. source: "./media/characters/rufran/mouth.svg"
  13581. }
  13582. },
  13583. foot: {
  13584. height: math.unit(1.33, "feet"),
  13585. name: "Foot",
  13586. image: {
  13587. source: "./media/characters/rufran/foot.svg"
  13588. }
  13589. },
  13590. koboldFront: {
  13591. height: math.unit(2 + 6 / 12, "feet"),
  13592. weight: math.unit(20, "lb"),
  13593. name: "Front (Kobold)",
  13594. image: {
  13595. source: "./media/characters/rufran/kobold-front.svg",
  13596. extra: 2041 / 1839,
  13597. bottom: 0.055
  13598. }
  13599. },
  13600. koboldBack: {
  13601. height: math.unit(2 + 6 / 12, "feet"),
  13602. weight: math.unit(20, "lb"),
  13603. name: "Back (Kobold)",
  13604. image: {
  13605. source: "./media/characters/rufran/kobold-back.svg",
  13606. extra: 2054 / 1839,
  13607. bottom: 0.01
  13608. }
  13609. },
  13610. koboldHand: {
  13611. height: math.unit(0.2166, "meters"),
  13612. name: "Hand (Kobold)",
  13613. image: {
  13614. source: "./media/characters/rufran/kobold-hand.svg"
  13615. }
  13616. },
  13617. koboldFoot: {
  13618. height: math.unit(0.185, "meters"),
  13619. name: "Foot (Kobold)",
  13620. image: {
  13621. source: "./media/characters/rufran/kobold-foot.svg"
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Micro",
  13628. height: math.unit(1, "inch")
  13629. },
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(2 + 6 / 12, "feet"),
  13633. default: true
  13634. },
  13635. {
  13636. name: "Big",
  13637. height: math.unit(60, "feet")
  13638. },
  13639. {
  13640. name: "Macro",
  13641. height: math.unit(325, "feet")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(0.3, "meters"),
  13650. weight: math.unit(3.5, "kg"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/chip/front.svg",
  13654. extra: 748 / 674
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(1, "inch"),
  13662. default: true
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13668. {
  13669. side: {
  13670. height: math.unit(2.3, "meters"),
  13671. weight: math.unit(3500, "lb"),
  13672. name: "Side",
  13673. image: {
  13674. source: "./media/characters/torvid/side.svg",
  13675. extra: 1972 / 722,
  13676. bottom: 0.035
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Normal",
  13683. height: math.unit(2.3, "meters"),
  13684. default: true
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(2, "meters"),
  13693. weight: math.unit(150.5, "kg"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/susan/front.svg",
  13697. extra: 693 / 635,
  13698. bottom: 0.05
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(505, "miles"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/raindrops/front.svg",
  13719. extra: 2655 / 2461,
  13720. bottom: 49 / 2705
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/raindrops/back.svg",
  13729. extra: 2574 / 2400,
  13730. bottom: 65 / 2634
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Micro",
  13737. height: math.unit(6, "inches")
  13738. },
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(6 + 2 / 12, "feet")
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(131, "feet"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Megamacro",
  13750. height: math.unit(15, "miles")
  13751. },
  13752. {
  13753. name: "Gigamacro",
  13754. height: math.unit(4000, "miles")
  13755. },
  13756. {
  13757. name: "Teramacro",
  13758. height: math.unit(315000, "miles")
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(2.794, "meters"),
  13767. weight: math.unit(325, "kg"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/tezwa/front.svg",
  13771. extra: 2083 / 1906,
  13772. bottom: 0.031
  13773. }
  13774. },
  13775. foot: {
  13776. height: math.unit(0.687, "meters"),
  13777. name: "Foot",
  13778. image: {
  13779. source: "./media/characters/tezwa/foot.svg"
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(9 + 2 / 12, "feet"),
  13787. default: true
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(58, "feet"),
  13796. weight: math.unit(89000, "lb"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/typhus/front.svg",
  13800. extra: 816 / 800,
  13801. bottom: 0.065
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(58, "feet"),
  13809. default: true
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(12, "feet"),
  13818. weight: math.unit(6, "tonnes"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/lyra-von-wulf/front.svg",
  13822. extra: 1,
  13823. bottom: 0.10
  13824. }
  13825. },
  13826. frontMecha: {
  13827. height: math.unit(12, "feet"),
  13828. weight: math.unit(12, "tonnes"),
  13829. name: "Front (Mecha)",
  13830. image: {
  13831. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13832. extra: 1,
  13833. bottom: 0.042
  13834. }
  13835. },
  13836. maw: {
  13837. height: math.unit(2.2, "feet"),
  13838. name: "Maw",
  13839. image: {
  13840. source: "./media/characters/lyra-von-wulf/maw.svg"
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(12, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Classic",
  13852. height: math.unit(50, "feet")
  13853. },
  13854. {
  13855. name: "Macro",
  13856. height: math.unit(500, "feet")
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(1, "mile")
  13861. },
  13862. {
  13863. name: "Gigamacro",
  13864. height: math.unit(400, "miles")
  13865. },
  13866. {
  13867. name: "Teramacro",
  13868. height: math.unit(22000, "miles")
  13869. },
  13870. {
  13871. name: "Solarmacro",
  13872. height: math.unit(8600000, "miles")
  13873. },
  13874. {
  13875. name: "Galactic",
  13876. height: math.unit(1057000, "lightyears")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6 + 10 / 12, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/dixon/front.svg",
  13889. extra: 3361 / 3209,
  13890. bottom: 0.01
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(6 + 10 / 12, "feet"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Big",
  13902. height: math.unit(12, "meters")
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(500, "meters")
  13907. },
  13908. {
  13909. name: "Megamacro",
  13910. height: math.unit(2, "km")
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(185, "cm"),
  13919. weight: math.unit(68, "kg"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/kauko/front.svg",
  13923. extra: 1455 / 1421,
  13924. bottom: 0.03
  13925. }
  13926. },
  13927. back: {
  13928. height: math.unit(185, "cm"),
  13929. weight: math.unit(68, "kg"),
  13930. name: "Back",
  13931. image: {
  13932. source: "./media/characters/kauko/back.svg",
  13933. extra: 1455 / 1421,
  13934. bottom: 0.004
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(185, "cm"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13948. {
  13949. frontSfw: {
  13950. height: math.unit(5, "meters"),
  13951. weight: math.unit(4250, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/varg/front-sfw.svg",
  13955. extra: 1103/1010,
  13956. bottom: 50/1153
  13957. },
  13958. form: "anthro",
  13959. default: true
  13960. },
  13961. backSfw: {
  13962. height: math.unit(5, "meters"),
  13963. weight: math.unit(4250, "lb"),
  13964. name: "Back",
  13965. image: {
  13966. source: "./media/characters/varg/back-sfw.svg",
  13967. extra: 1038/1022,
  13968. bottom: 36/1074
  13969. },
  13970. form: "anthro"
  13971. },
  13972. frontNsfw: {
  13973. height: math.unit(5, "meters"),
  13974. weight: math.unit(4250, "lb"),
  13975. name: "Front (NSFW)",
  13976. image: {
  13977. source: "./media/characters/varg/front-nsfw.svg",
  13978. extra: 1103/1010,
  13979. bottom: 50/1153
  13980. },
  13981. form: "anthro"
  13982. },
  13983. sheath: {
  13984. height: math.unit(3.8, "feet"),
  13985. weight: math.unit(90, "kilograms"),
  13986. name: "Sheath",
  13987. image: {
  13988. source: "./media/characters/varg/sheath.svg"
  13989. },
  13990. form: "anthro"
  13991. },
  13992. dick: {
  13993. height: math.unit(4.6, "feet"),
  13994. weight: math.unit(451, "kilograms"),
  13995. name: "Dick",
  13996. image: {
  13997. source: "./media/characters/varg/dick.svg"
  13998. },
  13999. form: "anthro"
  14000. },
  14001. feralSfw: {
  14002. height: math.unit(5, "meters"),
  14003. weight: math.unit(100000, "lb"),
  14004. name: "Side",
  14005. image: {
  14006. source: "./media/characters/varg/feral-sfw.svg",
  14007. extra: 1065/511,
  14008. bottom: 211/1276
  14009. },
  14010. form: "feral",
  14011. default: true
  14012. },
  14013. feralNsfw: {
  14014. height: math.unit(5, "meters"),
  14015. weight: math.unit(100000, "lb"),
  14016. name: "Side (NSFW)",
  14017. image: {
  14018. source: "./media/characters/varg/feral-nsfw.svg",
  14019. extra: 1065/511,
  14020. bottom: 211/1276
  14021. },
  14022. form: "feral",
  14023. },
  14024. feralSheath: {
  14025. height: math.unit(9.8, "feet"),
  14026. weight: math.unit(2000, "kilograms"),
  14027. name: "Sheath",
  14028. image: {
  14029. source: "./media/characters/varg/sheath.svg"
  14030. },
  14031. form: "feral"
  14032. },
  14033. feralDick: {
  14034. height: math.unit(13.11, "feet"),
  14035. weight: math.unit(10440, "kilograms"),
  14036. name: "Dick",
  14037. image: {
  14038. source: "./media/characters/varg/dick.svg"
  14039. },
  14040. form: "feral"
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(5, "meters"),
  14047. form: "anthro"
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(200, "meters"),
  14052. form: "anthro"
  14053. },
  14054. {
  14055. name: "Megamacro",
  14056. height: math.unit(20, "kilometers"),
  14057. form: "anthro"
  14058. },
  14059. {
  14060. name: "True Size",
  14061. height: math.unit(211, "km"),
  14062. form: "anthro",
  14063. default: true
  14064. },
  14065. {
  14066. name: "Gigamacro",
  14067. height: math.unit(1000, "km"),
  14068. form: "anthro"
  14069. },
  14070. {
  14071. name: "Gigamacro+",
  14072. height: math.unit(8000, "km"),
  14073. form: "anthro"
  14074. },
  14075. {
  14076. name: "Teramacro",
  14077. height: math.unit(1000000, "km"),
  14078. form: "anthro"
  14079. },
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(5, "meters"),
  14083. form: "feral"
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(200, "meters"),
  14088. form: "feral"
  14089. },
  14090. {
  14091. name: "Megamacro",
  14092. height: math.unit(20, "kilometers"),
  14093. form: "feral"
  14094. },
  14095. {
  14096. name: "True Size",
  14097. height: math.unit(211, "km"),
  14098. form: "feral",
  14099. default: true
  14100. },
  14101. {
  14102. name: "Gigamacro",
  14103. height: math.unit(1000, "km"),
  14104. form: "feral"
  14105. },
  14106. {
  14107. name: "Gigamacro+",
  14108. height: math.unit(8000, "km"),
  14109. form: "feral"
  14110. },
  14111. {
  14112. name: "Teramacro",
  14113. height: math.unit(1000000, "km"),
  14114. form: "feral"
  14115. },
  14116. ],
  14117. {
  14118. "anthro": {
  14119. name: "Anthro",
  14120. default: true
  14121. },
  14122. "feral": {
  14123. name: "Feral",
  14124. },
  14125. }
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(7 + 7 / 12, "feet"),
  14132. weight: math.unit(267, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/dayza/front.svg",
  14136. extra: 1262 / 1200,
  14137. bottom: 0.035
  14138. }
  14139. },
  14140. side: {
  14141. height: math.unit(7 + 7 / 12, "feet"),
  14142. weight: math.unit(267, "lb"),
  14143. name: "Side",
  14144. image: {
  14145. source: "./media/characters/dayza/side.svg",
  14146. extra: 1295 / 1245,
  14147. bottom: 0.05
  14148. }
  14149. },
  14150. back: {
  14151. height: math.unit(7 + 7 / 12, "feet"),
  14152. weight: math.unit(267, "lb"),
  14153. name: "Back",
  14154. image: {
  14155. source: "./media/characters/dayza/back.svg",
  14156. extra: 1241 / 1170
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(7 + 7 / 12, "feet"),
  14164. default: true
  14165. },
  14166. {
  14167. name: "Macro",
  14168. height: math.unit(155, "feet")
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6 + 5 / 12, "feet"),
  14177. weight: math.unit(160, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/xanthos/front.svg",
  14181. extra: 1,
  14182. bottom: 0.04
  14183. }
  14184. },
  14185. back: {
  14186. height: math.unit(6 + 5 / 12, "feet"),
  14187. weight: math.unit(160, "lb"),
  14188. name: "Back",
  14189. image: {
  14190. source: "./media/characters/xanthos/back.svg",
  14191. extra: 1,
  14192. bottom: 0.03
  14193. }
  14194. },
  14195. hand: {
  14196. height: math.unit(0.928, "feet"),
  14197. name: "Hand",
  14198. image: {
  14199. source: "./media/characters/xanthos/hand.svg"
  14200. }
  14201. },
  14202. foot: {
  14203. height: math.unit(1.286, "feet"),
  14204. name: "Foot",
  14205. image: {
  14206. source: "./media/characters/xanthos/foot.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(6 + 5 / 12, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Normal+",
  14218. height: math.unit(6, "meters")
  14219. },
  14220. {
  14221. name: "Macro",
  14222. height: math.unit(40, "feet")
  14223. },
  14224. {
  14225. name: "Macro+",
  14226. height: math.unit(200, "meters")
  14227. },
  14228. {
  14229. name: "Megamacro",
  14230. height: math.unit(20, "km")
  14231. },
  14232. {
  14233. name: "Megamacro+",
  14234. height: math.unit(100, "km")
  14235. },
  14236. {
  14237. name: "Gigamacro",
  14238. height: math.unit(200, "megameters")
  14239. },
  14240. {
  14241. name: "Gigamacro+",
  14242. height: math.unit(1.5, "gigameters")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6 + 3 / 12, "feet"),
  14251. weight: math.unit(215, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/grynn/front.svg",
  14255. extra: 4627 / 4209,
  14256. bottom: 0.047
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Micro",
  14263. height: math.unit(6, "inches")
  14264. },
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(6 + 3 / 12, "feet"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Big",
  14272. height: math.unit(104, "feet")
  14273. },
  14274. {
  14275. name: "Macro",
  14276. height: math.unit(944, "feet")
  14277. },
  14278. {
  14279. name: "Macro+",
  14280. height: math.unit(9480, "feet")
  14281. },
  14282. {
  14283. name: "Megamacro",
  14284. height: math.unit(78752, "feet")
  14285. },
  14286. {
  14287. name: "Megamacro+",
  14288. height: math.unit(630128, "feet")
  14289. },
  14290. {
  14291. name: "Megamacro++",
  14292. height: math.unit(3150695, "feet")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(7 + 5 / 12, "feet"),
  14301. weight: math.unit(450, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/mocha-aura/front.svg",
  14305. extra: 1907 / 1817,
  14306. bottom: 0.04
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(7 + 5 / 12, "feet"),
  14311. weight: math.unit(450, "lb"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/mocha-aura/back.svg",
  14315. extra: 1900 / 1825,
  14316. bottom: 0.045
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Nano",
  14323. height: math.unit(1, "nm")
  14324. },
  14325. {
  14326. name: "Megamicro",
  14327. height: math.unit(1, "mm")
  14328. },
  14329. {
  14330. name: "Micro",
  14331. height: math.unit(3, "inches")
  14332. },
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(7 + 5 / 12, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro",
  14340. height: math.unit(30, "feet")
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(3500, "feet")
  14345. },
  14346. {
  14347. name: "Teramacro",
  14348. height: math.unit(500000, "miles")
  14349. },
  14350. {
  14351. name: "Petamacro",
  14352. height: math.unit(50000000000000000, "parsecs")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(150, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/ilisha-devya/front.svg",
  14365. extra: 1053/1049,
  14366. bottom: 270/1323
  14367. }
  14368. },
  14369. back: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(150, "lb"),
  14372. name: "Back",
  14373. image: {
  14374. source: "./media/characters/ilisha-devya/back.svg",
  14375. extra: 1131/1128,
  14376. bottom: 39/1170
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(500, "feet"),
  14384. default: true
  14385. },
  14386. {
  14387. name: "Megamacro",
  14388. height: math.unit(10, "miles")
  14389. },
  14390. {
  14391. name: "Gigamacro",
  14392. height: math.unit(100000, "miles")
  14393. },
  14394. {
  14395. name: "Examacro",
  14396. height: math.unit(1e9, "lightyears")
  14397. },
  14398. {
  14399. name: "Omniversal",
  14400. height: math.unit(1e33, "lightyears")
  14401. },
  14402. {
  14403. name: "Beyond Infinite",
  14404. height: math.unit(1e100, "lightyears")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14410. {
  14411. Side: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Side",
  14415. image: {
  14416. source: "./media/characters/mira/side.svg",
  14417. extra: 900 / 799,
  14418. bottom: 0.02
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Human Size",
  14425. height: math.unit(6, "feet")
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(100, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Megamacro",
  14434. height: math.unit(10, "miles")
  14435. },
  14436. {
  14437. name: "Gigamacro",
  14438. height: math.unit(25000, "miles")
  14439. },
  14440. {
  14441. name: "Teramacro",
  14442. height: math.unit(300, "AU")
  14443. },
  14444. {
  14445. name: "Full Size",
  14446. height: math.unit(4.5e10, "lightyears")
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/holly/front.svg",
  14459. extra: 639 / 606
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/holly/back.svg",
  14468. extra: 623 / 598
  14469. }
  14470. },
  14471. frontWorking: {
  14472. height: math.unit(6, "feet"),
  14473. weight: math.unit(150, "lb"),
  14474. name: "Front (Working)",
  14475. image: {
  14476. source: "./media/characters/holly/front-working.svg",
  14477. extra: 607 / 577,
  14478. bottom: 0.048
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(12 + 3 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/porter/front.svg",
  14499. extra: 1,
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. frontRobes: {
  14504. height: math.unit(6, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Front (Robes)",
  14507. image: {
  14508. source: "./media/characters/porter/front-robes.svg",
  14509. extra: 1.01,
  14510. bottom: 0.01
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(11 + 9 / 12, "feet"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14524. {
  14525. legendary: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Legendary",
  14529. image: {
  14530. source: "./media/characters/lucy/legendary.svg",
  14531. extra: 1355 / 1100,
  14532. bottom: 0.045
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Legendary",
  14539. height: math.unit(86882 * 2, "miles"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(6, "feet"),
  14549. weight: math.unit(150, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/drusilla/front.svg",
  14553. extra: 678 / 635,
  14554. bottom: 0.03
  14555. }
  14556. },
  14557. back: {
  14558. height: math.unit(6, "feet"),
  14559. weight: math.unit(150, "lb"),
  14560. name: "Back",
  14561. image: {
  14562. source: "./media/characters/drusilla/back.svg",
  14563. extra: 678 / 635,
  14564. bottom: 0.005
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Macro",
  14571. height: math.unit(100, "feet")
  14572. },
  14573. {
  14574. name: "Canon Height",
  14575. height: math.unit(2000, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(180, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/renard-thatch/front.svg",
  14589. extra: 2411 / 2275,
  14590. bottom: 0.01
  14591. }
  14592. },
  14593. frontPosing: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(180, "lb"),
  14596. name: "Front (Posing)",
  14597. image: {
  14598. source: "./media/characters/renard-thatch/front-posing.svg",
  14599. extra: 2381 / 2261,
  14600. bottom: 0.01
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(180, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/renard-thatch/back.svg",
  14609. extra: 2428 / 2288
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Micro",
  14616. height: math.unit(3, "inches")
  14617. },
  14618. {
  14619. name: "Default",
  14620. height: math.unit(6, "feet"),
  14621. default: true
  14622. },
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(75, "feet")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(1450, "feet"),
  14634. weight: math.unit(1.21e6, "tons"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/sekvra/front.svg",
  14638. extra: 1193/1190,
  14639. bottom: 78/1271
  14640. }
  14641. },
  14642. side: {
  14643. height: math.unit(1450, "feet"),
  14644. weight: math.unit(1.21e6, "tons"),
  14645. name: "Side",
  14646. image: {
  14647. source: "./media/characters/sekvra/side.svg",
  14648. extra: 1193/1190,
  14649. bottom: 52/1245
  14650. }
  14651. },
  14652. back: {
  14653. height: math.unit(1450, "feet"),
  14654. weight: math.unit(1.21e6, "tons"),
  14655. name: "Back",
  14656. image: {
  14657. source: "./media/characters/sekvra/back.svg",
  14658. extra: 1219/1216,
  14659. bottom: 21/1240
  14660. }
  14661. },
  14662. frontClothed: {
  14663. height: math.unit(1450, "feet"),
  14664. weight: math.unit(1.21e6, "tons"),
  14665. name: "Front (Clothed)",
  14666. image: {
  14667. source: "./media/characters/sekvra/front-clothed.svg",
  14668. extra: 1192/1189,
  14669. bottom: 79/1271
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Macro",
  14676. height: math.unit(1450, "feet"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Megamacro",
  14681. height: math.unit(15000, "feet")
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/carmine/front.svg",
  14694. extra: 1,
  14695. bottom: 0.035
  14696. }
  14697. },
  14698. frontArmor: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Front (Armor)",
  14702. image: {
  14703. source: "./media/characters/carmine/front-armor.svg",
  14704. extra: 1,
  14705. bottom: 0.035
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Large",
  14712. height: math.unit(1, "mile")
  14713. },
  14714. {
  14715. name: "Huge",
  14716. height: math.unit(40, "miles"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Colossal",
  14721. height: math.unit(2500, "miles")
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14727. {
  14728. front: {
  14729. height: math.unit(6, "feet"),
  14730. weight: math.unit(150, "lb"),
  14731. name: "Front",
  14732. image: {
  14733. source: "./media/characters/elyssia/front.svg",
  14734. extra: 2201 / 2035,
  14735. bottom: 0.05
  14736. }
  14737. },
  14738. frontClothed: {
  14739. height: math.unit(6, "feet"),
  14740. weight: math.unit(150, "lb"),
  14741. name: "Front (Clothed)",
  14742. image: {
  14743. source: "./media/characters/elyssia/front-clothed.svg",
  14744. extra: 2201 / 2035,
  14745. bottom: 0.05
  14746. }
  14747. },
  14748. back: {
  14749. height: math.unit(6, "feet"),
  14750. weight: math.unit(150, "lb"),
  14751. name: "Back",
  14752. image: {
  14753. source: "./media/characters/elyssia/back.svg",
  14754. extra: 2201 / 2035,
  14755. bottom: 0.013
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Smaller",
  14762. height: math.unit(150, "feet")
  14763. },
  14764. {
  14765. name: "Standard",
  14766. height: math.unit(1400, "feet"),
  14767. default: true
  14768. },
  14769. {
  14770. name: "Distracted",
  14771. height: math.unit(15000, "feet")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(7 + 4/12, "feet"),
  14780. weight: math.unit(690, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/geno-maxwell/front.svg",
  14784. extra: 984/856,
  14785. bottom: 87/1071
  14786. }
  14787. },
  14788. back: {
  14789. height: math.unit(7 + 4/12, "feet"),
  14790. weight: math.unit(690, "lb"),
  14791. name: "Back",
  14792. image: {
  14793. source: "./media/characters/geno-maxwell/back.svg",
  14794. extra: 981/854,
  14795. bottom: 57/1038
  14796. }
  14797. },
  14798. frontCostume: {
  14799. height: math.unit(7 + 4/12, "feet"),
  14800. weight: math.unit(690, "lb"),
  14801. name: "Front (Costume)",
  14802. image: {
  14803. source: "./media/characters/geno-maxwell/front-costume.svg",
  14804. extra: 984/856,
  14805. bottom: 87/1071
  14806. }
  14807. },
  14808. backcostume: {
  14809. height: math.unit(7 + 4/12, "feet"),
  14810. weight: math.unit(690, "lb"),
  14811. name: "Back (Costume)",
  14812. image: {
  14813. source: "./media/characters/geno-maxwell/back-costume.svg",
  14814. extra: 981/854,
  14815. bottom: 57/1038
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Micro",
  14822. height: math.unit(3, "inches")
  14823. },
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(7 + 4 / 12, "feet"),
  14827. default: true
  14828. },
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(220, "feet")
  14832. },
  14833. {
  14834. name: "Megamacro",
  14835. height: math.unit(11, "miles")
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14841. {
  14842. front: {
  14843. height: math.unit(7 + 4/12, "feet"),
  14844. weight: math.unit(750, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/regena-maxwell/front.svg",
  14848. extra: 984/856,
  14849. bottom: 87/1071
  14850. }
  14851. },
  14852. back: {
  14853. height: math.unit(7 + 4/12, "feet"),
  14854. weight: math.unit(750, "lb"),
  14855. name: "Back",
  14856. image: {
  14857. source: "./media/characters/regena-maxwell/back.svg",
  14858. extra: 981/854,
  14859. bottom: 57/1038
  14860. }
  14861. },
  14862. frontCostume: {
  14863. height: math.unit(7 + 4/12, "feet"),
  14864. weight: math.unit(750, "lb"),
  14865. name: "Front (Costume)",
  14866. image: {
  14867. source: "./media/characters/regena-maxwell/front-costume.svg",
  14868. extra: 984/856,
  14869. bottom: 87/1071
  14870. }
  14871. },
  14872. backcostume: {
  14873. height: math.unit(7 + 4/12, "feet"),
  14874. weight: math.unit(750, "lb"),
  14875. name: "Back (Costume)",
  14876. image: {
  14877. source: "./media/characters/regena-maxwell/back-costume.svg",
  14878. extra: 981/854,
  14879. bottom: 57/1038
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(7 + 4 / 12, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(220, "feet")
  14892. },
  14893. {
  14894. name: "Megamacro",
  14895. height: math.unit(11, "miles")
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14901. {
  14902. front: {
  14903. height: math.unit(6, "feet"),
  14904. weight: math.unit(150, "lb"),
  14905. name: "Front",
  14906. image: {
  14907. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14908. extra: 860 / 690,
  14909. bottom: 0.03
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Normal",
  14916. height: math.unit(1.7, "meters"),
  14917. default: true
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/quilly/front.svg",
  14930. extra: 890 / 776
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Gigamacro",
  14937. height: math.unit(404090, "miles"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(7 + 8 / 12, "feet"),
  14947. weight: math.unit(350, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/tempest/front.svg",
  14951. extra: 1175 / 1086,
  14952. bottom: 0.02
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(7 + 8 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14966. {
  14967. side: {
  14968. height: math.unit(4 + 5 / 12, "feet"),
  14969. weight: math.unit(80, "lb"),
  14970. name: "Side",
  14971. image: {
  14972. source: "./media/characters/rodger/side.svg",
  14973. extra: 1235 / 1118
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Micro",
  14980. height: math.unit(1, "inch")
  14981. },
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(4 + 5 / 12, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(120, "feet")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(150, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/danyel/front.svg",
  15002. extra: 1185 / 1123,
  15003. bottom: 0.05
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Shrunken",
  15010. height: math.unit(0.5, "mm")
  15011. },
  15012. {
  15013. name: "Micro",
  15014. height: math.unit(1, "mm"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Upsized",
  15019. height: math.unit(5 + 5 / 12, "feet")
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(5 + 6 / 12, "feet"),
  15028. weight: math.unit(200, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/vivian-bijoux/front.svg",
  15032. extra: 1217/1209,
  15033. bottom: 76/1293
  15034. }
  15035. },
  15036. back: {
  15037. height: math.unit(5 + 6 / 12, "feet"),
  15038. weight: math.unit(200, "lb"),
  15039. name: "Back",
  15040. image: {
  15041. source: "./media/characters/vivian-bijoux/back.svg",
  15042. extra: 1214/1208,
  15043. bottom: 51/1265
  15044. }
  15045. },
  15046. dressed: {
  15047. height: math.unit(5 + 6 / 12, "feet"),
  15048. weight: math.unit(200, "lb"),
  15049. name: "Dressed",
  15050. image: {
  15051. source: "./media/characters/vivian-bijoux/dressed.svg",
  15052. extra: 1217/1209,
  15053. bottom: 76/1293
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(5 + 6 / 12, "feet"),
  15061. default: true
  15062. },
  15063. {
  15064. name: "Bad Dream",
  15065. height: math.unit(500, "feet")
  15066. },
  15067. {
  15068. name: "Nightmare",
  15069. height: math.unit(500, "miles")
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(6 + 1 / 12, "feet"),
  15078. weight: math.unit(260, "lb"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/zeta/front.svg",
  15082. extra: 1968 / 1889,
  15083. bottom: 0.06
  15084. }
  15085. },
  15086. back: {
  15087. height: math.unit(6 + 1 / 12, "feet"),
  15088. weight: math.unit(260, "lb"),
  15089. name: "Back",
  15090. image: {
  15091. source: "./media/characters/zeta/back.svg",
  15092. extra: 1944 / 1858,
  15093. bottom: 0.03
  15094. }
  15095. },
  15096. hand: {
  15097. height: math.unit(1.112, "feet"),
  15098. name: "Hand",
  15099. image: {
  15100. source: "./media/characters/zeta/hand.svg"
  15101. }
  15102. },
  15103. foot: {
  15104. height: math.unit(1.48, "feet"),
  15105. name: "Foot",
  15106. image: {
  15107. source: "./media/characters/zeta/foot.svg"
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Micro",
  15114. height: math.unit(6, "inches")
  15115. },
  15116. {
  15117. name: "Normal",
  15118. height: math.unit(6 + 1 / 12, "feet"),
  15119. default: true
  15120. },
  15121. {
  15122. name: "Macro",
  15123. height: math.unit(20, "feet")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/jamie-larsen/front.svg",
  15136. extra: 962 / 933,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. back: {
  15141. height: math.unit(6, "feet"),
  15142. weight: math.unit(150, "lb"),
  15143. name: "Back",
  15144. image: {
  15145. source: "./media/characters/jamie-larsen/back.svg",
  15146. extra: 997 / 946
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(28 + 7 / 12, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Macro+",
  15158. height: math.unit(180, "feet")
  15159. },
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(10, "miles")
  15163. },
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(200000, "miles")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(120, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/vance/front.svg",
  15179. extra: 1980 / 1890,
  15180. bottom: 0.09
  15181. }
  15182. },
  15183. back: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(120, "lb"),
  15186. name: "Back",
  15187. image: {
  15188. source: "./media/characters/vance/back.svg",
  15189. extra: 2081 / 1994,
  15190. bottom: 0.014
  15191. }
  15192. },
  15193. hand: {
  15194. height: math.unit(0.88, "feet"),
  15195. name: "Hand",
  15196. image: {
  15197. source: "./media/characters/vance/hand.svg"
  15198. }
  15199. },
  15200. foot: {
  15201. height: math.unit(0.64, "feet"),
  15202. name: "Foot",
  15203. image: {
  15204. source: "./media/characters/vance/foot.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Small",
  15211. height: math.unit(90, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(100, "meters")
  15217. },
  15218. {
  15219. name: "Megamacro",
  15220. height: math.unit(15, "miles")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(180, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/xochitl/front.svg",
  15233. extra: 2297 / 2261,
  15234. bottom: 0.065
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(6, "feet"),
  15239. weight: math.unit(180, "lb"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/xochitl/back.svg",
  15243. extra: 2386 / 2354,
  15244. bottom: 0.01
  15245. }
  15246. },
  15247. foot: {
  15248. height: math.unit(6 / 5 * 1.15, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Foot",
  15251. image: {
  15252. source: "./media/characters/xochitl/foot.svg"
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Macro",
  15259. height: math.unit(80, "feet")
  15260. },
  15261. {
  15262. name: "Macro+",
  15263. height: math.unit(400, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Gigamacro",
  15268. height: math.unit(80000, "miles")
  15269. },
  15270. {
  15271. name: "Gigamacro+",
  15272. height: math.unit(400000, "miles")
  15273. },
  15274. {
  15275. name: "Teramacro",
  15276. height: math.unit(300, "AU")
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/vincent/front.svg",
  15289. extra: 1130 / 1080,
  15290. bottom: 0.055
  15291. }
  15292. },
  15293. beak: {
  15294. height: math.unit(6 * 0.1, "feet"),
  15295. name: "Beak",
  15296. image: {
  15297. source: "./media/characters/vincent/beak.svg"
  15298. }
  15299. },
  15300. hand: {
  15301. height: math.unit(6 * 0.85, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Hand",
  15304. image: {
  15305. source: "./media/characters/vincent/hand.svg"
  15306. }
  15307. },
  15308. foot: {
  15309. height: math.unit(6 * 0.19, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Foot",
  15312. image: {
  15313. source: "./media/characters/vincent/foot.svg"
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Base",
  15320. height: math.unit(6 + 5 / 12, "feet"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Macro",
  15325. height: math.unit(300, "feet")
  15326. },
  15327. {
  15328. name: "Megamacro",
  15329. height: math.unit(2, "miles")
  15330. },
  15331. {
  15332. name: "Gigamacro",
  15333. height: math.unit(1000, "miles")
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(2, "meters"),
  15342. weight: math.unit(500, "kg"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/coatl/front.svg",
  15346. extra: 3948 / 3500,
  15347. bottom: 0.082
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(4, "meters")
  15355. },
  15356. {
  15357. name: "Macro",
  15358. height: math.unit(100, "meters"),
  15359. default: true
  15360. },
  15361. {
  15362. name: "Macro+",
  15363. height: math.unit(300, "meters")
  15364. },
  15365. {
  15366. name: "Megamacro",
  15367. height: math.unit(3, "gigameters")
  15368. },
  15369. {
  15370. name: "Megamacro+",
  15371. height: math.unit(300, "terameters")
  15372. },
  15373. {
  15374. name: "Megamacro++",
  15375. height: math.unit(3, "lightyears")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(50, "kg"),
  15385. name: "front",
  15386. image: {
  15387. source: "./media/characters/shiroryu/front.svg",
  15388. extra: 1990 / 1935
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Mortal Mingling",
  15395. height: math.unit(3, "meters")
  15396. },
  15397. {
  15398. name: "Kaiju-ish",
  15399. height: math.unit(250, "meters")
  15400. },
  15401. {
  15402. name: "Somewhat Godly",
  15403. height: math.unit(400, "km"),
  15404. default: true
  15405. },
  15406. {
  15407. name: "Planetary",
  15408. height: math.unit(300, "megameters")
  15409. },
  15410. {
  15411. name: "Galaxy-dwarfing",
  15412. height: math.unit(450, "kiloparsecs")
  15413. },
  15414. {
  15415. name: "Universe Eater",
  15416. height: math.unit(150, "gigaparsecs")
  15417. },
  15418. {
  15419. name: "Almost Immeasurable",
  15420. height: math.unit(1.3e266, "yottaparsecs")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/umeko/front.svg",
  15433. extra: 1,
  15434. bottom: 0.019
  15435. }
  15436. },
  15437. frontArmored: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front (Armored)",
  15441. image: {
  15442. source: "./media/characters/umeko/front-armored.svg",
  15443. extra: 1,
  15444. bottom: 0.021
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(220, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Guardian Dragon",
  15456. height: math.unit(50, "miles")
  15457. },
  15458. {
  15459. name: "Cosmic",
  15460. height: math.unit(800000, "miles")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/cassidy/front.svg",
  15473. extra: 810/808,
  15474. bottom: 41/851
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Canon Height",
  15481. height: math.unit(120, "feet"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Macro+",
  15486. height: math.unit(400, "feet")
  15487. },
  15488. {
  15489. name: "Macro++",
  15490. height: math.unit(4000, "feet")
  15491. },
  15492. {
  15493. name: "Megamacro",
  15494. height: math.unit(3, "miles")
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/isaac/front.svg",
  15507. extra: 896 / 815,
  15508. bottom: 0.11
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Human Size",
  15515. height: math.unit(8, "feet"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(400, "feet")
  15521. },
  15522. {
  15523. name: "Megamacro",
  15524. height: math.unit(50, "miles")
  15525. },
  15526. {
  15527. name: "Canon Height",
  15528. height: math.unit(200, "AU")
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(72, "kg"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/sleekit/front.svg",
  15541. extra: 4693 / 4487,
  15542. bottom: 0.012
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Minimum Height",
  15549. height: math.unit(10, "meters")
  15550. },
  15551. {
  15552. name: "Smaller",
  15553. height: math.unit(25, "meters")
  15554. },
  15555. {
  15556. name: "Larger",
  15557. height: math.unit(38, "meters"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Maximum height",
  15562. height: math.unit(100, "meters")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/nillia/front.svg",
  15575. extra: 2195 / 2037,
  15576. bottom: 0.005
  15577. }
  15578. },
  15579. back: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Back",
  15583. image: {
  15584. source: "./media/characters/nillia/back.svg",
  15585. extra: 2195 / 2037,
  15586. bottom: 0.005
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Canon Height",
  15593. height: math.unit(489, "feet"),
  15594. default: true
  15595. }
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/mesmyriza/front.svg",
  15607. extra: 2067 / 1784,
  15608. bottom: 0.035
  15609. }
  15610. },
  15611. foot: {
  15612. height: math.unit(6 / (250 / 35), "feet"),
  15613. name: "Foot",
  15614. image: {
  15615. source: "./media/characters/mesmyriza/foot.svg"
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(457, "meters"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Megamacro",
  15627. height: math.unit(8, "megameters")
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(250, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/saudade/front.svg",
  15640. extra: 1172 / 1139,
  15641. bottom: 0.035
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Micro",
  15648. height: math.unit(3, "inches")
  15649. },
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(6, "feet"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "Macro",
  15657. height: math.unit(50, "feet")
  15658. },
  15659. {
  15660. name: "Megamacro",
  15661. height: math.unit(2800, "feet")
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(5 + 4 / 12, "feet"),
  15670. weight: math.unit(100, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/keireer/front.svg",
  15674. extra: 716 / 666,
  15675. bottom: 0.05
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(5 + 4 / 12, "feet"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(5.5, "feet"),
  15692. weight: math.unit(90, "kg"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/mirja/front.svg",
  15696. extra: 1452/1262,
  15697. bottom: 67/1519
  15698. }
  15699. },
  15700. frontDressed: {
  15701. height: math.unit(5.5, "feet"),
  15702. weight: math.unit(90, "lb"),
  15703. name: "Front (Dressed)",
  15704. image: {
  15705. source: "./media/characters/mirja/dressed.svg",
  15706. extra: 1452/1262,
  15707. bottom: 67/1519
  15708. }
  15709. },
  15710. back: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(90, "lb"),
  15713. name: "Back",
  15714. image: {
  15715. source: "./media/characters/mirja/back.svg",
  15716. extra: 1892/1795,
  15717. bottom: 48/1940
  15718. }
  15719. },
  15720. maw: {
  15721. height: math.unit(1.312, "feet"),
  15722. name: "Maw",
  15723. image: {
  15724. source: "./media/characters/mirja/maw.svg"
  15725. }
  15726. },
  15727. paw: {
  15728. height: math.unit(1.15, "feet"),
  15729. name: "Paw",
  15730. image: {
  15731. source: "./media/characters/mirja/paw.svg"
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "\"Incognito\"",
  15738. height: math.unit(3, "meters")
  15739. },
  15740. {
  15741. name: "Strolling Size",
  15742. height: math.unit(15, "km")
  15743. },
  15744. {
  15745. name: "Larger Strolling Size",
  15746. height: math.unit(400, "km")
  15747. },
  15748. {
  15749. name: "Preferred Size",
  15750. height: math.unit(5000, "km"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "True Size",
  15755. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(15, "feet"),
  15764. weight: math.unit(880, "kg"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/nightraver/front.svg",
  15768. extra: 2444 / 2160,
  15769. bottom: 0.027
  15770. }
  15771. },
  15772. back: {
  15773. height: math.unit(15, "feet"),
  15774. weight: math.unit(880, "kg"),
  15775. name: "Back",
  15776. image: {
  15777. source: "./media/characters/nightraver/back.svg",
  15778. extra: 2309 / 2180,
  15779. bottom: 0.005
  15780. }
  15781. },
  15782. sole: {
  15783. height: math.unit(2.878, "feet"),
  15784. name: "Sole",
  15785. image: {
  15786. source: "./media/characters/nightraver/sole.svg"
  15787. }
  15788. },
  15789. foot: {
  15790. height: math.unit(2.285, "feet"),
  15791. name: "Foot",
  15792. image: {
  15793. source: "./media/characters/nightraver/foot.svg"
  15794. }
  15795. },
  15796. maw: {
  15797. height: math.unit(2.67, "feet"),
  15798. name: "Maw",
  15799. image: {
  15800. source: "./media/characters/nightraver/maw.svg"
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Micro",
  15807. height: math.unit(1, "cm")
  15808. },
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(15, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(300, "feet")
  15817. },
  15818. {
  15819. name: "Megamacro",
  15820. height: math.unit(300, "miles")
  15821. },
  15822. {
  15823. name: "Gigamacro",
  15824. height: math.unit(10000, "miles")
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15830. {
  15831. side: {
  15832. height: math.unit(2, "inches"),
  15833. weight: math.unit(5, "grams"),
  15834. name: "Side",
  15835. image: {
  15836. source: "./media/characters/arc/side.svg"
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Micro",
  15843. height: math.unit(2, "inches"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(1.1938, "meters"),
  15853. weight: math.unit(54, "kg"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/nebula-shahar/front.svg",
  15857. extra: 1642 / 1436,
  15858. bottom: 0.06
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Megamicro",
  15865. height: math.unit(0.3, "mm")
  15866. },
  15867. {
  15868. name: "Micro",
  15869. height: math.unit(3, "cm")
  15870. },
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(138, "cm"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Macro",
  15878. height: math.unit(30, "m")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(5.24, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/shayla/front.svg",
  15891. extra: 1512 / 1414,
  15892. bottom: 0.01
  15893. }
  15894. },
  15895. back: {
  15896. height: math.unit(5.24, "feet"),
  15897. weight: math.unit(150, "lb"),
  15898. name: "Back",
  15899. image: {
  15900. source: "./media/characters/shayla/back.svg",
  15901. extra: 1512 / 1414
  15902. }
  15903. },
  15904. hand: {
  15905. height: math.unit(0.7781496062992126, "feet"),
  15906. name: "Hand",
  15907. image: {
  15908. source: "./media/characters/shayla/hand.svg"
  15909. }
  15910. },
  15911. foot: {
  15912. height: math.unit(1.4206036745406823, "feet"),
  15913. name: "Foot",
  15914. image: {
  15915. source: "./media/characters/shayla/foot.svg"
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Micro",
  15922. height: math.unit(0.32, "feet")
  15923. },
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(5.24, "feet"),
  15927. default: true
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(492.12, "feet")
  15932. },
  15933. {
  15934. name: "Megamacro",
  15935. height: math.unit(186.41, "miles")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(2.2, "m"),
  15944. weight: math.unit(120, "kg"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/pia-jr/front.svg",
  15948. extra: 1000 / 970,
  15949. bottom: 0.035
  15950. }
  15951. },
  15952. hand: {
  15953. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15954. name: "Hand",
  15955. image: {
  15956. source: "./media/characters/pia-jr/hand.svg"
  15957. }
  15958. },
  15959. paw: {
  15960. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15961. name: "Paw",
  15962. image: {
  15963. source: "./media/characters/pia-jr/paw.svg"
  15964. }
  15965. },
  15966. },
  15967. [
  15968. {
  15969. name: "Micro",
  15970. height: math.unit(1.2, "cm")
  15971. },
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(2.2, "m"),
  15975. default: true
  15976. },
  15977. {
  15978. name: "Macro",
  15979. height: math.unit(180, "m")
  15980. },
  15981. {
  15982. name: "Megamacro",
  15983. height: math.unit(420, "km")
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(2, "m"),
  15992. weight: math.unit(115, "kg"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/pia-sr/front.svg",
  15996. extra: 760 / 730,
  15997. bottom: 0.015
  15998. }
  15999. },
  16000. back: {
  16001. height: math.unit(2, "m"),
  16002. weight: math.unit(115, "kg"),
  16003. name: "Back",
  16004. image: {
  16005. source: "./media/characters/pia-sr/back.svg",
  16006. extra: 760 / 730,
  16007. bottom: 0.01
  16008. }
  16009. },
  16010. hand: {
  16011. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16012. name: "Hand",
  16013. image: {
  16014. source: "./media/characters/pia-sr/hand.svg"
  16015. }
  16016. },
  16017. foot: {
  16018. height: math.unit(1.83, "feet"),
  16019. name: "Foot",
  16020. image: {
  16021. source: "./media/characters/pia-sr/foot.svg"
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Micro",
  16028. height: math.unit(88, "mm")
  16029. },
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(2, "m"),
  16033. default: true
  16034. },
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(200, "m")
  16038. },
  16039. {
  16040. name: "Megamacro",
  16041. height: math.unit(420, "km")
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(8 + 2 / 12, "feet"),
  16050. weight: math.unit(300, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/kibibyte/front.svg",
  16054. extra: 2221 / 2098,
  16055. bottom: 0.04
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(8 + 2 / 12, "feet"),
  16063. default: true
  16064. },
  16065. {
  16066. name: "Socialable Macro",
  16067. height: math.unit(50, "feet")
  16068. },
  16069. {
  16070. name: "Macro",
  16071. height: math.unit(300, "feet")
  16072. },
  16073. {
  16074. name: "Megamacro",
  16075. height: math.unit(500, "miles")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/felix/front.svg",
  16088. extra: 762 / 722,
  16089. bottom: 0.02
  16090. }
  16091. },
  16092. frontClothed: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Front (Clothed)",
  16096. image: {
  16097. source: "./media/characters/felix/front-clothed.svg",
  16098. extra: 762 / 722,
  16099. bottom: 0.02
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6 + 8 / 12, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(2600, "feet")
  16112. },
  16113. {
  16114. name: "Megamacro",
  16115. height: math.unit(450, "miles")
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(6 + 1 / 12, "feet"),
  16124. weight: math.unit(250, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/tobo/front.svg",
  16128. extra: 608 / 586,
  16129. bottom: 0.023
  16130. }
  16131. },
  16132. back: {
  16133. height: math.unit(6 + 1 / 12, "feet"),
  16134. weight: math.unit(250, "lb"),
  16135. name: "Back",
  16136. image: {
  16137. source: "./media/characters/tobo/back.svg",
  16138. extra: 608 / 586
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Nano",
  16145. height: math.unit(2, "nm")
  16146. },
  16147. {
  16148. name: "Megamicro",
  16149. height: math.unit(0.1, "mm")
  16150. },
  16151. {
  16152. name: "Micro",
  16153. height: math.unit(1, "inch"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Human-sized",
  16158. height: math.unit(6 + 1 / 12, "feet")
  16159. },
  16160. {
  16161. name: "Macro",
  16162. height: math.unit(250, "feet")
  16163. },
  16164. {
  16165. name: "Megamacro",
  16166. height: math.unit(75, "miles")
  16167. },
  16168. {
  16169. name: "Texas-sized",
  16170. height: math.unit(750, "miles")
  16171. },
  16172. {
  16173. name: "Teramacro",
  16174. height: math.unit(50000, "miles")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(269, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/danny-kapowsky/front.svg",
  16187. extra: 766 / 736,
  16188. bottom: 0.044
  16189. }
  16190. },
  16191. back: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(269, "lb"),
  16194. name: "Back",
  16195. image: {
  16196. source: "./media/characters/danny-kapowsky/back.svg",
  16197. extra: 797 / 760,
  16198. bottom: 0.025
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Macro",
  16205. height: math.unit(150, "feet"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Macro+",
  16210. height: math.unit(200, "feet")
  16211. },
  16212. {
  16213. name: "Macro++",
  16214. height: math.unit(300, "feet")
  16215. },
  16216. {
  16217. name: "Macro+++",
  16218. height: math.unit(400, "feet")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16224. {
  16225. side: {
  16226. height: math.unit(6, "feet"),
  16227. weight: math.unit(170, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/finn/side.svg",
  16231. extra: 1953 / 1807,
  16232. bottom: 0.057
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Megamacro",
  16239. height: math.unit(14445, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(5 + 6 / 12, "feet"),
  16249. weight: math.unit(125, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/roy/front.svg",
  16253. extra: 1,
  16254. bottom: 0.11
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Micro",
  16261. height: math.unit(3, "inches"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(5 + 6 / 12, "feet")
  16267. },
  16268. {
  16269. name: "Lesser Macro",
  16270. height: math.unit(60, "feet")
  16271. },
  16272. {
  16273. name: "Greater Macro",
  16274. height: math.unit(120, "feet")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(100, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/aevsivs/front.svg",
  16287. extra: 1,
  16288. bottom: 0.03
  16289. }
  16290. },
  16291. back: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(100, "lb"),
  16294. name: "Back",
  16295. image: {
  16296. source: "./media/characters/aevsivs/back.svg"
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(2, "inches"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(5, "feet")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(5 + 7 / 12, "feet"),
  16317. weight: math.unit(159, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/hildegard/front.svg",
  16321. extra: 289 / 269,
  16322. bottom: 7.63 / 297.8
  16323. }
  16324. },
  16325. back: {
  16326. height: math.unit(5 + 7 / 12, "feet"),
  16327. weight: math.unit(159, "lb"),
  16328. name: "Back",
  16329. image: {
  16330. source: "./media/characters/hildegard/back.svg",
  16331. extra: 280 / 260,
  16332. bottom: 2.3 / 282
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(5 + 7 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16346. {
  16347. bernard: {
  16348. height: math.unit(2 + 7 / 12, "feet"),
  16349. weight: math.unit(66, "lb"),
  16350. name: "Bernard",
  16351. rename: true,
  16352. image: {
  16353. source: "./media/characters/bernard-wilder/bernard.svg",
  16354. extra: 192 / 128,
  16355. bottom: 0.05
  16356. }
  16357. },
  16358. wilder: {
  16359. height: math.unit(5 + 8 / 12, "feet"),
  16360. weight: math.unit(143, "lb"),
  16361. name: "Wilder",
  16362. rename: true,
  16363. image: {
  16364. source: "./media/characters/bernard-wilder/wilder.svg",
  16365. extra: 361 / 312,
  16366. bottom: 0.02
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(2 + 7 / 12, "feet"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16380. {
  16381. anthro: {
  16382. height: math.unit(6 + 1 / 12, "feet"),
  16383. weight: math.unit(155, "lb"),
  16384. name: "Anthro",
  16385. image: {
  16386. source: "./media/characters/hearth/anthro.svg",
  16387. extra: 1178/1136,
  16388. bottom: 28/1206
  16389. }
  16390. },
  16391. feral: {
  16392. height: math.unit(3.78, "feet"),
  16393. weight: math.unit(35, "kg"),
  16394. name: "Feral",
  16395. image: {
  16396. source: "./media/characters/hearth/feral.svg",
  16397. extra: 153 / 135,
  16398. bottom: 0.03
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(6 + 1 / 12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(6, "feet"),
  16415. weight: math.unit(182, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/ingrid/front.svg",
  16419. extra: 294 / 268,
  16420. bottom: 0.027
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(6, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16434. {
  16435. eevee: {
  16436. height: math.unit(2 + 10 / 12, "feet"),
  16437. weight: math.unit(86, "lb"),
  16438. name: "Malgam",
  16439. image: {
  16440. source: "./media/characters/malgam/eevee.svg",
  16441. extra: 952/784,
  16442. bottom: 38/990
  16443. }
  16444. },
  16445. sylveon: {
  16446. height: math.unit(4, "feet"),
  16447. weight: math.unit(101, "lb"),
  16448. name: "Future Malgam",
  16449. rename: true,
  16450. image: {
  16451. source: "./media/characters/malgam/sylveon.svg",
  16452. extra: 371 / 325,
  16453. bottom: 0.015
  16454. }
  16455. },
  16456. gigantamax: {
  16457. height: math.unit(50, "feet"),
  16458. name: "Gigantamax Malgam",
  16459. rename: true,
  16460. image: {
  16461. source: "./media/characters/malgam/gigantamax.svg"
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Normal",
  16468. height: math.unit(2 + 10 / 12, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(5 + 11 / 12, "feet"),
  16478. weight: math.unit(188, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/fleur/front.svg",
  16482. extra: 309 / 283,
  16483. bottom: 0.007
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(5 + 11 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16497. {
  16498. front: {
  16499. height: math.unit(5 + 4 / 12, "feet"),
  16500. weight: math.unit(122, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/jude/front.svg",
  16504. extra: 288 / 273,
  16505. bottom: 0.03
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Normal",
  16512. height: math.unit(5 + 4 / 12, "feet"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(5 + 11 / 12, "feet"),
  16522. weight: math.unit(190, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/seara/front.svg",
  16526. extra: 1,
  16527. bottom: 0.05
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(5 + 11 / 12, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(16 + 5 / 12, "feet"),
  16544. weight: math.unit(524, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/caspian-lugia/front.svg",
  16548. extra: 1,
  16549. bottom: 0.04
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Normal",
  16556. height: math.unit(16 + 5 / 12, "feet"),
  16557. default: true
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(5 + 7 / 12, "feet"),
  16566. weight: math.unit(170, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/mika/front.svg",
  16570. extra: 1,
  16571. bottom: 0.016
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(5 + 7 / 12, "feet"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6 + 2 / 12, "feet"),
  16588. weight: math.unit(268, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/sol/front.svg",
  16592. extra: 247 / 231,
  16593. bottom: 0.05
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(6 + 2 / 12, "feet"),
  16601. default: true
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16607. {
  16608. buizel: {
  16609. height: math.unit(2 + 5 / 12, "feet"),
  16610. weight: math.unit(87, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/umiko/buizel.svg",
  16614. extra: 172 / 157,
  16615. bottom: 0.01
  16616. },
  16617. form: "buizel",
  16618. default: true
  16619. },
  16620. floatzel: {
  16621. height: math.unit(5 + 9 / 12, "feet"),
  16622. weight: math.unit(250, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/umiko/floatzel.svg",
  16626. extra: 1076/1006,
  16627. bottom: 15/1091
  16628. },
  16629. form: "floatzel",
  16630. default: true
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(2 + 5 / 12, "feet"),
  16637. form: "buizel",
  16638. default: true
  16639. },
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(5 + 9 / 12, "feet"),
  16643. form: "floatzel",
  16644. default: true
  16645. },
  16646. ],
  16647. {
  16648. "buizel": {
  16649. name: "Buizel"
  16650. },
  16651. "floatzel": {
  16652. name: "Floatzel",
  16653. default: true
  16654. }
  16655. }
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(6 + 2 / 12, "feet"),
  16662. weight: math.unit(146, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/iliac/front.svg",
  16666. extra: 389 / 365,
  16667. bottom: 0.035
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(6 + 2 / 12, "feet"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(170, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/topaz/front.svg",
  16688. extra: 317 / 303,
  16689. bottom: 0.055
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(6, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 11 / 12, "feet"),
  16706. weight: math.unit(144, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/gabriel/front.svg",
  16710. extra: 285 / 262,
  16711. bottom: 0.004
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(5 + 11 / 12, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16725. {
  16726. side: {
  16727. height: math.unit(6 + 5 / 12, "feet"),
  16728. weight: math.unit(300, "lb"),
  16729. name: "Side",
  16730. image: {
  16731. source: "./media/characters/tempest-suicune/side.svg",
  16732. extra: 195 / 154,
  16733. bottom: 0.04
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(6 + 5 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(7 + 2 / 12, "feet"),
  16750. weight: math.unit(322, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/vulcan/front.svg",
  16754. extra: 154 / 147,
  16755. bottom: 0.04
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(7 + 2 / 12, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(5 + 10 / 12, "feet"),
  16772. weight: math.unit(264, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/gault/front.svg",
  16776. extra: 161 / 140,
  16777. bottom: 0.028
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(5 + 10 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/shard/front.svg",
  16798. extra: 273 / 238,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(3 + 6 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(5 + 11 / 12, "feet"),
  16816. weight: math.unit(146, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/ashe/front.svg",
  16820. extra: 400 / 373,
  16821. bottom: 0.01
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 11 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(5 + 5 / 12, "feet"),
  16838. weight: math.unit(135, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/beatrix/front.svg",
  16842. extra: 392 / 379,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(6, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(6 + 2/12, "feet"),
  16860. weight: math.unit(135, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/ignatius/front.svg",
  16864. extra: 1380/1259,
  16865. bottom: 27/1407
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(6 + 2/12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(6 + 2 / 12, "feet"),
  16882. weight: math.unit(138, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/mei-li/front.svg",
  16886. extra: 237 / 229,
  16887. bottom: 0.03
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 2 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(2 + 4 / 12, "feet"),
  16904. weight: math.unit(62, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/puru/front.svg",
  16908. extra: 206 / 149,
  16909. bottom: 0.06
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(2 + 4 / 12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16923. {
  16924. anthro: {
  16925. height: math.unit(5 + 8/12, "feet"),
  16926. weight: math.unit(200, "lb"),
  16927. energyNeed: math.unit(2000, "kcal"),
  16928. name: "Anthro",
  16929. image: {
  16930. source: "./media/characters/kee/anthro.svg",
  16931. extra: 3251/3184,
  16932. bottom: 250/3501
  16933. }
  16934. },
  16935. taur: {
  16936. height: math.unit(11, "feet"),
  16937. weight: math.unit(500, "lb"),
  16938. energyNeed: math.unit(5000, "kcal"),
  16939. name: "Taur",
  16940. image: {
  16941. source: "./media/characters/kee/taur.svg",
  16942. extra: 1362/1320,
  16943. bottom: 83/1445
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(5 + 8/12, "feet"),
  16951. default: true
  16952. },
  16953. {
  16954. name: "Macro",
  16955. height: math.unit(35, "feet")
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16961. {
  16962. anthro: {
  16963. height: math.unit(7, "feet"),
  16964. weight: math.unit(190, "lb"),
  16965. name: "Anthro",
  16966. image: {
  16967. source: "./media/characters/cobalt-dracha/anthro.svg",
  16968. extra: 231 / 225,
  16969. bottom: 0.04
  16970. }
  16971. },
  16972. feral: {
  16973. height: math.unit(9 + 7 / 12, "feet"),
  16974. weight: math.unit(294, "lb"),
  16975. name: "Feral",
  16976. image: {
  16977. source: "./media/characters/cobalt-dracha/feral.svg",
  16978. extra: 692 / 633,
  16979. bottom: 0.05
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(7, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16993. {
  16994. fallen: {
  16995. height: math.unit(11 + 8 / 12, "feet"),
  16996. weight: math.unit(485, "lb"),
  16997. name: "Java (Fallen)",
  16998. rename: true,
  16999. image: {
  17000. source: "./media/characters/java/fallen.svg",
  17001. extra: 226 / 208,
  17002. bottom: 0.005
  17003. }
  17004. },
  17005. godkin: {
  17006. height: math.unit(10 + 6 / 12, "feet"),
  17007. weight: math.unit(328, "lb"),
  17008. name: "Java (Godkin)",
  17009. rename: true,
  17010. image: {
  17011. source: "./media/characters/java/godkin.svg",
  17012. extra: 1104/1068,
  17013. bottom: 36/1140
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(11 + 8 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(5 + 9 / 12, "feet"),
  17030. weight: math.unit(170, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/purna/front.svg",
  17034. extra: 239 / 229,
  17035. bottom: 0.01
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(5 + 9 / 12, "feet"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(5 + 9 / 12, "feet"),
  17052. weight: math.unit(142, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/kuva/front.svg",
  17056. extra: 281 / 271,
  17057. bottom: 0.006
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(5 + 9 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17071. {
  17072. anthro: {
  17073. height: math.unit(9 + 2 / 12, "feet"),
  17074. weight: math.unit(270, "lb"),
  17075. name: "Anthro",
  17076. image: {
  17077. source: "./media/characters/embra/anthro.svg",
  17078. extra: 200 / 187,
  17079. bottom: 0.02
  17080. }
  17081. },
  17082. feral: {
  17083. height: math.unit(18 + 8 / 12, "feet"),
  17084. weight: math.unit(576, "lb"),
  17085. name: "Feral",
  17086. image: {
  17087. source: "./media/characters/embra/feral.svg",
  17088. extra: 152 / 137,
  17089. bottom: 0.037
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(9 + 2 / 12, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17103. {
  17104. anthro: {
  17105. height: math.unit(10 + 9 / 12, "feet"),
  17106. weight: math.unit(224, "lb"),
  17107. name: "Anthro",
  17108. image: {
  17109. source: "./media/characters/grottos/anthro.svg",
  17110. extra: 350 / 332,
  17111. bottom: 0.045
  17112. }
  17113. },
  17114. feral: {
  17115. height: math.unit(20 + 7 / 12, "feet"),
  17116. weight: math.unit(629, "lb"),
  17117. name: "Feral",
  17118. image: {
  17119. source: "./media/characters/grottos/feral.svg",
  17120. extra: 207 / 190,
  17121. bottom: 0.05
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(10 + 9 / 12, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17135. {
  17136. anthro: {
  17137. height: math.unit(9 + 6 / 12, "feet"),
  17138. weight: math.unit(298, "lb"),
  17139. name: "Anthro",
  17140. image: {
  17141. source: "./media/characters/frifna/anthro.svg",
  17142. extra: 282 / 269,
  17143. bottom: 0.015
  17144. }
  17145. },
  17146. feral: {
  17147. height: math.unit(16 + 2 / 12, "feet"),
  17148. weight: math.unit(624, "lb"),
  17149. name: "Feral",
  17150. image: {
  17151. source: "./media/characters/frifna/feral.svg"
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(9 + 6 / 12, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6 + 2 / 12, "feet"),
  17168. weight: math.unit(168, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/elise/front.svg",
  17172. extra: 276 / 271
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(6 + 2 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(5 + 10 / 12, "feet"),
  17189. weight: math.unit(210, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/glade/front.svg",
  17193. extra: 258 / 247,
  17194. bottom: 0.008
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(5 + 10 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(5 + 10 / 12, "feet"),
  17211. weight: math.unit(129, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/rina/front.svg",
  17215. extra: 266 / 255,
  17216. bottom: 0.005
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(5 + 10 / 12, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(6 + 1 / 12, "feet"),
  17233. weight: math.unit(192, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/veronica/front.svg",
  17237. extra: 319 / 309,
  17238. bottom: 0.005
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(6 + 1 / 12, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17252. {
  17253. front: {
  17254. height: math.unit(9 + 3 / 12, "feet"),
  17255. weight: math.unit(1100, "lb"),
  17256. name: "Front",
  17257. image: {
  17258. source: "./media/characters/braxton/front.svg",
  17259. extra: 1057 / 984,
  17260. bottom: 0.05
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(9 + 3 / 12, "feet")
  17268. },
  17269. {
  17270. name: "Giant",
  17271. height: math.unit(300, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Macro",
  17276. height: math.unit(700, "feet")
  17277. },
  17278. {
  17279. name: "Megamacro",
  17280. height: math.unit(6000, "feet")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(6 + 7 / 12, "feet"),
  17289. weight: math.unit(150, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/blue-feyonics/front.svg",
  17293. extra: 1403 / 1306,
  17294. bottom: 0.047
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(6 + 7 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(1.8, "meters"),
  17311. weight: math.unit(60, "kg"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/maxwell/front.svg",
  17315. extra: 2060 / 1873
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Micro",
  17322. height: math.unit(1, "mm")
  17323. },
  17324. {
  17325. name: "Normal",
  17326. height: math.unit(1.8, "meter"),
  17327. default: true
  17328. },
  17329. {
  17330. name: "Macro",
  17331. height: math.unit(30, "meters")
  17332. },
  17333. {
  17334. name: "Megamacro",
  17335. height: math.unit(10, "km")
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(6, "feet"),
  17344. weight: math.unit(150, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/jack/front.svg",
  17348. extra: 1754 / 1640,
  17349. bottom: 0.01
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(80000, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Max size",
  17361. height: math.unit(10, "lightyears")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17367. {
  17368. urban: {
  17369. height: math.unit(5, "feet"),
  17370. weight: math.unit(240, "lb"),
  17371. name: "Urban",
  17372. image: {
  17373. source: "./media/characters/cafat/urban.svg",
  17374. extra: 1223/1126,
  17375. bottom: 205/1428
  17376. }
  17377. },
  17378. summer: {
  17379. height: math.unit(5, "feet"),
  17380. weight: math.unit(240, "lb"),
  17381. name: "Summer",
  17382. image: {
  17383. source: "./media/characters/cafat/summer.svg",
  17384. extra: 1223/1126,
  17385. bottom: 205/1428
  17386. }
  17387. },
  17388. winter: {
  17389. height: math.unit(5, "feet"),
  17390. weight: math.unit(240, "lb"),
  17391. name: "Winter",
  17392. image: {
  17393. source: "./media/characters/cafat/winter.svg",
  17394. extra: 1223/1126,
  17395. bottom: 205/1428
  17396. }
  17397. },
  17398. lingerie: {
  17399. height: math.unit(5, "feet"),
  17400. weight: math.unit(240, "lb"),
  17401. name: "Lingerie",
  17402. image: {
  17403. source: "./media/characters/cafat/lingerie.svg",
  17404. extra: 1223/1126,
  17405. bottom: 205/1428
  17406. }
  17407. },
  17408. upright: {
  17409. height: math.unit(6.3, "feet"),
  17410. weight: math.unit(240, "lb"),
  17411. name: "Upright",
  17412. image: {
  17413. source: "./media/characters/cafat/upright.svg",
  17414. bottom: 0.01
  17415. }
  17416. },
  17417. uprightFull: {
  17418. height: math.unit(6.3, "feet"),
  17419. weight: math.unit(240, "lb"),
  17420. name: "Upright (Full)",
  17421. image: {
  17422. source: "./media/characters/cafat/upright-full.svg",
  17423. bottom: 0.01
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Small",
  17430. height: math.unit(5, "feet"),
  17431. default: true
  17432. },
  17433. {
  17434. name: "Large",
  17435. height: math.unit(13, "feet")
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(6, "feet"),
  17444. weight: math.unit(150, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/verin-raharra/front.svg",
  17448. extra: 5019 / 4835,
  17449. bottom: 0.023
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(7 + 5 / 12, "feet"),
  17457. default: true
  17458. },
  17459. {
  17460. name: "Upsized",
  17461. height: math.unit(20, "feet")
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(7, "feet"),
  17470. weight: math.unit(230, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/nakata/front.svg",
  17474. extra: 1.005,
  17475. bottom: 0.01
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(7, "feet"),
  17483. default: true
  17484. },
  17485. {
  17486. name: "Big",
  17487. height: math.unit(14, "feet")
  17488. },
  17489. {
  17490. name: "Macro",
  17491. height: math.unit(400, "feet")
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(4.91, "feet"),
  17500. weight: math.unit(100, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/lily/front.svg",
  17504. extra: 1585 / 1415,
  17505. bottom: 0.02
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(4.91, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17519. {
  17520. laying: {
  17521. height: math.unit(4 + 4 / 12, "feet"),
  17522. weight: math.unit(600, "lb"),
  17523. name: "Laying",
  17524. image: {
  17525. source: "./media/characters/sheila/laying.svg",
  17526. extra: 1333 / 1265,
  17527. bottom: 0.16
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(4 + 4 / 12, "feet"),
  17535. default: true
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(190, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/sax/front.svg",
  17548. extra: 1187 / 973,
  17549. bottom: 0.042
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Micro",
  17556. height: math.unit(4, "inches"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6, "feet"),
  17566. weight: math.unit(150, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/pandora/front.svg",
  17570. extra: 2720 / 2556,
  17571. bottom: 0.015
  17572. }
  17573. },
  17574. back: {
  17575. height: math.unit(6, "feet"),
  17576. weight: math.unit(150, "lb"),
  17577. name: "Back",
  17578. image: {
  17579. source: "./media/characters/pandora/back.svg",
  17580. extra: 2720 / 2556,
  17581. bottom: 0.01
  17582. }
  17583. },
  17584. beans: {
  17585. height: math.unit(6 / 8, "feet"),
  17586. name: "Beans",
  17587. image: {
  17588. source: "./media/characters/pandora/beans.svg"
  17589. }
  17590. },
  17591. collar: {
  17592. height: math.unit(0.31, "feet"),
  17593. name: "Collar",
  17594. image: {
  17595. source: "./media/characters/pandora/collar.svg"
  17596. }
  17597. },
  17598. skirt: {
  17599. height: math.unit(6, "feet"),
  17600. weight: math.unit(150, "lb"),
  17601. name: "Skirt",
  17602. image: {
  17603. source: "./media/characters/pandora/skirt.svg",
  17604. extra: 1622 / 1525,
  17605. bottom: 0.015
  17606. }
  17607. },
  17608. hoodie: {
  17609. height: math.unit(6, "feet"),
  17610. weight: math.unit(150, "lb"),
  17611. name: "Hoodie",
  17612. image: {
  17613. source: "./media/characters/pandora/hoodie.svg",
  17614. extra: 1622 / 1525,
  17615. bottom: 0.015
  17616. }
  17617. },
  17618. casual: {
  17619. height: math.unit(6, "feet"),
  17620. weight: math.unit(150, "lb"),
  17621. name: "Casual",
  17622. image: {
  17623. source: "./media/characters/pandora/casual.svg",
  17624. extra: 1622 / 1525,
  17625. bottom: 0.015
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(6, "feet")
  17633. },
  17634. {
  17635. name: "Big Steppy",
  17636. height: math.unit(1, "km"),
  17637. default: true
  17638. },
  17639. {
  17640. name: "Galactic Steppy",
  17641. height: math.unit(2, "gigameters")
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17647. {
  17648. side: {
  17649. height: math.unit(10, "feet"),
  17650. weight: math.unit(800, "kg"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/venio-darcony/side.svg",
  17654. extra: 1373 / 1003,
  17655. bottom: 0.037
  17656. }
  17657. },
  17658. front: {
  17659. height: math.unit(19, "feet"),
  17660. weight: math.unit(800, "kg"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/venio-darcony/front.svg"
  17664. }
  17665. },
  17666. back: {
  17667. height: math.unit(19, "feet"),
  17668. weight: math.unit(800, "kg"),
  17669. name: "Back",
  17670. image: {
  17671. source: "./media/characters/venio-darcony/back.svg"
  17672. }
  17673. },
  17674. sideNsfw: {
  17675. height: math.unit(10, "feet"),
  17676. weight: math.unit(800, "kg"),
  17677. name: "Side (NSFW)",
  17678. image: {
  17679. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17680. extra: 1373 / 1003,
  17681. bottom: 0.037
  17682. }
  17683. },
  17684. frontNsfw: {
  17685. height: math.unit(19, "feet"),
  17686. weight: math.unit(800, "kg"),
  17687. name: "Front (NSFW)",
  17688. image: {
  17689. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17690. }
  17691. },
  17692. backNsfw: {
  17693. height: math.unit(19, "feet"),
  17694. weight: math.unit(800, "kg"),
  17695. name: "Back (NSFW)",
  17696. image: {
  17697. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17698. }
  17699. },
  17700. sideArmored: {
  17701. height: math.unit(10, "feet"),
  17702. weight: math.unit(800, "kg"),
  17703. name: "Side (Armored)",
  17704. image: {
  17705. source: "./media/characters/venio-darcony/side-armored.svg",
  17706. extra: 1373 / 1003,
  17707. bottom: 0.037
  17708. }
  17709. },
  17710. frontArmored: {
  17711. height: math.unit(19, "feet"),
  17712. weight: math.unit(900, "kg"),
  17713. name: "Front (Armored)",
  17714. image: {
  17715. source: "./media/characters/venio-darcony/front-armored.svg"
  17716. }
  17717. },
  17718. backArmored: {
  17719. height: math.unit(19, "feet"),
  17720. weight: math.unit(900, "kg"),
  17721. name: "Back (Armored)",
  17722. image: {
  17723. source: "./media/characters/venio-darcony/back-armored.svg"
  17724. }
  17725. },
  17726. sword: {
  17727. height: math.unit(10, "feet"),
  17728. weight: math.unit(50, "lb"),
  17729. name: "Sword",
  17730. image: {
  17731. source: "./media/characters/venio-darcony/sword.svg"
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(10, "feet")
  17739. },
  17740. {
  17741. name: "Macro",
  17742. height: math.unit(130, "feet"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Macro+",
  17747. height: math.unit(240, "feet")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(6, "feet"),
  17756. weight: math.unit(150, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/veski/front.svg",
  17760. extra: 1299 / 1225,
  17761. bottom: 0.04
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(6, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/veski/back.svg",
  17770. extra: 1299 / 1225,
  17771. bottom: 0.008
  17772. }
  17773. },
  17774. maw: {
  17775. height: math.unit(1.5 * 1.21, "feet"),
  17776. name: "Maw",
  17777. image: {
  17778. source: "./media/characters/veski/maw.svg"
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(2, "km"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(5 + 7 / 12, "feet"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/isabelle/front.svg",
  17798. extra: 2130 / 1976,
  17799. bottom: 0.05
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Supermicro",
  17806. height: math.unit(10, "micrometers")
  17807. },
  17808. {
  17809. name: "Micro",
  17810. height: math.unit(1, "inch")
  17811. },
  17812. {
  17813. name: "Tiny",
  17814. height: math.unit(5, "inches")
  17815. },
  17816. {
  17817. name: "Standard",
  17818. height: math.unit(5 + 7 / 12, "inches")
  17819. },
  17820. {
  17821. name: "Macro",
  17822. height: math.unit(80, "meters"),
  17823. default: true
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(250, "meters")
  17828. },
  17829. {
  17830. name: "Gigamacro",
  17831. height: math.unit(5, "km")
  17832. },
  17833. {
  17834. name: "Cosmic",
  17835. height: math.unit(2.5e6, "miles")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(6, "feet"),
  17844. weight: math.unit(150, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/hanzo/front.svg",
  17848. extra: 374 / 344,
  17849. bottom: 0.02
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(8, "feet"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(7, "feet"),
  17866. weight: math.unit(130, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/anna/front.svg",
  17870. extra: 169 / 145,
  17871. bottom: 0.06
  17872. }
  17873. },
  17874. full: {
  17875. height: math.unit(4.96, "feet"),
  17876. weight: math.unit(220, "lb"),
  17877. name: "Full",
  17878. image: {
  17879. source: "./media/characters/anna/full.svg",
  17880. extra: 138 / 114,
  17881. bottom: 0.15
  17882. }
  17883. },
  17884. tongue: {
  17885. height: math.unit(2.53, "feet"),
  17886. name: "Tongue",
  17887. image: {
  17888. source: "./media/characters/anna/tongue.svg"
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(7, "feet"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(7, "feet"),
  17905. weight: math.unit(150, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/ian-corvid/front.svg",
  17909. extra: 150 / 142,
  17910. bottom: 0.02
  17911. }
  17912. },
  17913. back: {
  17914. height: math.unit(7, "feet"),
  17915. weight: math.unit(150, "lb"),
  17916. name: "Back",
  17917. image: {
  17918. source: "./media/characters/ian-corvid/back.svg",
  17919. extra: 150 / 143,
  17920. bottom: 0.01
  17921. }
  17922. },
  17923. stomping: {
  17924. height: math.unit(7, "feet"),
  17925. weight: math.unit(150, "lb"),
  17926. name: "Stomping",
  17927. image: {
  17928. source: "./media/characters/ian-corvid/stomping.svg",
  17929. extra: 76 / 72
  17930. }
  17931. },
  17932. sitting: {
  17933. height: math.unit(7 / 1.8, "feet"),
  17934. weight: math.unit(150, "lb"),
  17935. name: "Sitting",
  17936. image: {
  17937. source: "./media/characters/ian-corvid/sitting.svg",
  17938. extra: 1400 / 1269,
  17939. bottom: 0.15
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Tiny Microw",
  17946. height: math.unit(1, "inch")
  17947. },
  17948. {
  17949. name: "Microw",
  17950. height: math.unit(6, "inches")
  17951. },
  17952. {
  17953. name: "Crow",
  17954. height: math.unit(7 + 1 / 12, "feet"),
  17955. default: true
  17956. },
  17957. {
  17958. name: "Macrow",
  17959. height: math.unit(176, "feet")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(5 + 7 / 12, "feet"),
  17968. weight: math.unit(147, "lb"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/natalie-kellon/front.svg",
  17972. extra: 1214 / 1141,
  17973. bottom: 0.02
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Micro",
  17980. height: math.unit(1 / 16, "inch")
  17981. },
  17982. {
  17983. name: "Tiny",
  17984. height: math.unit(4, "inches")
  17985. },
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(5 + 7 / 12, "feet"),
  17989. default: true
  17990. },
  17991. {
  17992. name: "Amazon",
  17993. height: math.unit(12, "feet")
  17994. },
  17995. {
  17996. name: "Giantess",
  17997. height: math.unit(160, "meters")
  17998. },
  17999. {
  18000. name: "Titaness",
  18001. height: math.unit(800, "meters")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(6, "feet"),
  18010. weight: math.unit(150, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/alluria/front.svg",
  18014. extra: 806 / 738,
  18015. bottom: 0.01
  18016. }
  18017. },
  18018. side: {
  18019. height: math.unit(6, "feet"),
  18020. weight: math.unit(150, "lb"),
  18021. name: "Side",
  18022. image: {
  18023. source: "./media/characters/alluria/side.svg",
  18024. extra: 800 / 750,
  18025. }
  18026. },
  18027. back: {
  18028. height: math.unit(6, "feet"),
  18029. weight: math.unit(150, "lb"),
  18030. name: "Back",
  18031. image: {
  18032. source: "./media/characters/alluria/back.svg",
  18033. extra: 806 / 738,
  18034. }
  18035. },
  18036. frontMaid: {
  18037. height: math.unit(6, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Front (Maid)",
  18040. image: {
  18041. source: "./media/characters/alluria/front-maid.svg",
  18042. extra: 806 / 738,
  18043. bottom: 0.01
  18044. }
  18045. },
  18046. sideMaid: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Side (Maid)",
  18050. image: {
  18051. source: "./media/characters/alluria/side-maid.svg",
  18052. extra: 800 / 750,
  18053. bottom: 0.005
  18054. }
  18055. },
  18056. backMaid: {
  18057. height: math.unit(6, "feet"),
  18058. weight: math.unit(150, "lb"),
  18059. name: "Back (Maid)",
  18060. image: {
  18061. source: "./media/characters/alluria/back-maid.svg",
  18062. extra: 806 / 738,
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(6, "inches"),
  18070. default: true
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(6, "feet"),
  18079. weight: math.unit(150, "lb"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/kyle/front.svg",
  18083. extra: 1069 / 962,
  18084. bottom: 77.228 / 1727.45
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(150, "feet"),
  18092. default: true
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(300, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/duncan/front.svg",
  18105. extra: 1650 / 1482,
  18106. bottom: 0.05
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(100, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(5 + 4 / 12, "feet"),
  18123. weight: math.unit(220, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/memory/front.svg",
  18127. extra: 3641 / 3545,
  18128. bottom: 0.03
  18129. }
  18130. },
  18131. back: {
  18132. height: math.unit(5 + 4 / 12, "feet"),
  18133. weight: math.unit(220, "lb"),
  18134. name: "Back",
  18135. image: {
  18136. source: "./media/characters/memory/back.svg",
  18137. extra: 3641 / 3545,
  18138. bottom: 0.025
  18139. }
  18140. },
  18141. frontSkirt: {
  18142. height: math.unit(5 + 4 / 12, "feet"),
  18143. weight: math.unit(220, "lb"),
  18144. name: "Front (Skirt)",
  18145. image: {
  18146. source: "./media/characters/memory/front-skirt.svg",
  18147. extra: 3641 / 3545,
  18148. bottom: 0.03
  18149. }
  18150. },
  18151. frontDress: {
  18152. height: math.unit(5 + 4 / 12, "feet"),
  18153. weight: math.unit(220, "lb"),
  18154. name: "Front (Dress)",
  18155. image: {
  18156. source: "./media/characters/memory/front-dress.svg",
  18157. extra: 3641 / 3545,
  18158. bottom: 0.03
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Micro",
  18165. height: math.unit(6, "inches"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(5 + 4 / 12, "feet")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(4 + 11 / 12, "feet"),
  18179. weight: math.unit(100, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/luno/front.svg",
  18183. extra: 1535 / 1487,
  18184. bottom: 0.03
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Micro",
  18191. height: math.unit(3, "inches")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(4 + 11 / 12, "feet"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Macro",
  18200. height: math.unit(300, "feet")
  18201. },
  18202. {
  18203. name: "Megamacro",
  18204. height: math.unit(700, "miles")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(6 + 2 / 12, "feet"),
  18213. weight: math.unit(170, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/jamesy/front.svg",
  18217. extra: 440 / 382,
  18218. bottom: 0.005
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(3, "inches")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(6 + 2 / 12, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(300, "feet")
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(700, "miles")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(160, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/mark/front.svg",
  18251. extra: 3300 / 3100,
  18252. bottom: 136.42 / 3440.47
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Macro",
  18259. height: math.unit(120, "meters")
  18260. },
  18261. {
  18262. name: "Bigger Macro",
  18263. height: math.unit(350, "meters")
  18264. },
  18265. {
  18266. name: "Megamacro",
  18267. height: math.unit(8, "km"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Continental",
  18272. height: math.unit(4550, "km")
  18273. },
  18274. {
  18275. name: "Planetary",
  18276. height: math.unit(65000, "km")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(6, "feet"),
  18285. weight: math.unit(400, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/mac/front.svg",
  18289. extra: 1048 / 987.7,
  18290. bottom: 60 / 1107.6,
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Macro",
  18297. height: math.unit(500, "feet"),
  18298. default: true
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(5 + 2 / 12, "feet"),
  18307. weight: math.unit(190, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/bari/front.svg",
  18311. extra: 3156 / 2880,
  18312. bottom: 0.03
  18313. }
  18314. },
  18315. back: {
  18316. height: math.unit(5 + 2 / 12, "feet"),
  18317. weight: math.unit(190, "lb"),
  18318. name: "Back",
  18319. image: {
  18320. source: "./media/characters/bari/back.svg",
  18321. extra: 3260 / 2834,
  18322. bottom: 0.025
  18323. }
  18324. },
  18325. frontPlush: {
  18326. height: math.unit(5 + 2 / 12, "feet"),
  18327. weight: math.unit(190, "lb"),
  18328. name: "Front (Plush)",
  18329. image: {
  18330. source: "./media/characters/bari/front-plush.svg",
  18331. extra: 1112 / 1061,
  18332. bottom: 0.002
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(3, "inches")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 2 / 12, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(20, "feet")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6 + 1 / 12, "feet"),
  18357. weight: math.unit(275, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/hunter-misha-raven/front.svg"
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Mortal",
  18367. height: math.unit(6 + 1 / 12, "feet")
  18368. },
  18369. {
  18370. name: "Divine",
  18371. height: math.unit(1.12134e34, "parsecs"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(6 + 3 / 12, "feet"),
  18381. weight: math.unit(220, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/max-calore/front.svg",
  18385. extra: 1700 / 1648,
  18386. bottom: 0.01
  18387. }
  18388. },
  18389. back: {
  18390. height: math.unit(6 + 3 / 12, "feet"),
  18391. weight: math.unit(220, "lb"),
  18392. name: "Back",
  18393. image: {
  18394. source: "./media/characters/max-calore/back.svg",
  18395. extra: 1700 / 1648,
  18396. bottom: 0.01
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(6 + 3 / 12, "feet"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18410. {
  18411. side: {
  18412. height: math.unit(2 + 8 / 12, "feet"),
  18413. weight: math.unit(99, "lb"),
  18414. name: "Side",
  18415. image: {
  18416. source: "./media/characters/aspen/side.svg",
  18417. extra: 152 / 138,
  18418. bottom: 0.032
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(2 + 8 / 12, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18432. {
  18433. side: {
  18434. height: math.unit(3 + 2 / 12, "feet"),
  18435. weight: math.unit(224, "lb"),
  18436. name: "Side",
  18437. image: {
  18438. source: "./media/characters/sheila-feral-wolf/side.svg",
  18439. extra: 179 / 166,
  18440. bottom: 0.03
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(3 + 2 / 12, "feet"),
  18448. default: true
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18454. {
  18455. side: {
  18456. height: math.unit(1 + 9 / 12, "feet"),
  18457. weight: math.unit(38, "lb"),
  18458. name: "Side",
  18459. image: {
  18460. source: "./media/characters/michelle/side.svg",
  18461. extra: 147 / 136.7,
  18462. bottom: 0.03
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(1 + 9 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(1.54, "feet"),
  18479. weight: math.unit(50, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/nino/front.svg"
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(1.54, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(1.49, "feet"),
  18499. weight: math.unit(45, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/viola/front.svg"
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(1.49, "feet"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18516. {
  18517. front: {
  18518. height: math.unit(6 + 5 / 12, "feet"),
  18519. weight: math.unit(580, "lb"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/atlas/front.svg",
  18523. extra: 298.5 / 290,
  18524. bottom: 0.015
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(6 + 5 / 12, "feet"),
  18532. default: true
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18538. {
  18539. side: {
  18540. height: math.unit(15.6, "inches"),
  18541. weight: math.unit(10, "lb"),
  18542. name: "Side",
  18543. image: {
  18544. source: "./media/characters/davy/side.svg",
  18545. extra: 200 / 170,
  18546. bottom: 0.01
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(15.6, "inches"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18560. {
  18561. side: {
  18562. height: math.unit(4 + 8 / 12, "feet"),
  18563. weight: math.unit(166, "lb"),
  18564. name: "Side",
  18565. image: {
  18566. source: "./media/characters/fiona/side.svg",
  18567. extra: 232 / 220,
  18568. bottom: 0.03
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Normal",
  18575. height: math.unit(4 + 8 / 12, "feet"),
  18576. default: true
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18582. {
  18583. front: {
  18584. height: math.unit(26, "inches"),
  18585. weight: math.unit(35, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/lyla/front.svg",
  18589. bottom: 0.1
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(3, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18603. {
  18604. side: {
  18605. height: math.unit(1.8, "feet"),
  18606. weight: math.unit(44, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/perseus/side.svg",
  18610. bottom: 0.21
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(1.8, "feet"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18624. {
  18625. side: {
  18626. height: math.unit(4 + 2 / 12, "feet"),
  18627. weight: math.unit(20, "lb"),
  18628. name: "Side",
  18629. image: {
  18630. source: "./media/characters/remus/side.svg"
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(4 + 2 / 12, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(4 + 11 / 12, "feet"),
  18647. weight: math.unit(114, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/raf/front.svg",
  18651. extra: 1504/1339,
  18652. bottom: 26/1530
  18653. }
  18654. },
  18655. side: {
  18656. height: math.unit(4 + 11 / 12, "feet"),
  18657. weight: math.unit(114, "lb"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/raf/side.svg",
  18661. extra: 1466/1316,
  18662. bottom: 29/1495
  18663. }
  18664. },
  18665. paw: {
  18666. height: math.unit(1.45, "feet"),
  18667. name: "Paw",
  18668. image: {
  18669. source: "./media/characters/raf/paw.svg"
  18670. },
  18671. extraAttributes: {
  18672. "toeSize": {
  18673. name: "Toe Size",
  18674. power: 2,
  18675. type: "area",
  18676. base: math.unit(0.004, "m^2")
  18677. },
  18678. "padSize": {
  18679. name: "Pad Size",
  18680. power: 2,
  18681. type: "area",
  18682. base: math.unit(0.04, "m^2")
  18683. },
  18684. "footSize": {
  18685. name: "Foot Size",
  18686. power: 2,
  18687. type: "area",
  18688. base: math.unit(0.08, "m^2")
  18689. },
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Micro",
  18696. height: math.unit(2, "inches")
  18697. },
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(4 + 11 / 12, "feet"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(70, "feet")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(1.5, "meters"),
  18714. weight: math.unit(68, "kg"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/liam-einarr/front.svg",
  18718. extra: 2822 / 2666
  18719. }
  18720. },
  18721. back: {
  18722. height: math.unit(1.5, "meters"),
  18723. weight: math.unit(68, "kg"),
  18724. name: "Back",
  18725. image: {
  18726. source: "./media/characters/liam-einarr/back.svg",
  18727. extra: 2822 / 2666,
  18728. bottom: 0.015
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(1.5, "meters"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(150, "meters")
  18741. },
  18742. {
  18743. name: "Megamacro",
  18744. height: math.unit(35, "km")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6, "feet"),
  18753. weight: math.unit(75, "kg"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/linda/front.svg",
  18757. extra: 930 / 874,
  18758. bottom: 0.004
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(6, "feet"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(6 + 8 / 12, "feet"),
  18775. weight: math.unit(220, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/caylex/front.svg",
  18779. extra: 821 / 772,
  18780. bottom: 0.07
  18781. }
  18782. },
  18783. back: {
  18784. height: math.unit(6 + 8 / 12, "feet"),
  18785. weight: math.unit(220, "lb"),
  18786. name: "Back",
  18787. image: {
  18788. source: "./media/characters/caylex/back.svg",
  18789. extra: 821 / 772,
  18790. bottom: 0.022
  18791. }
  18792. },
  18793. hand: {
  18794. height: math.unit(1.25, "feet"),
  18795. name: "Hand",
  18796. image: {
  18797. source: "./media/characters/caylex/hand.svg"
  18798. }
  18799. },
  18800. foot: {
  18801. height: math.unit(1.6, "feet"),
  18802. name: "Foot",
  18803. image: {
  18804. source: "./media/characters/caylex/foot.svg"
  18805. }
  18806. },
  18807. armored: {
  18808. height: math.unit(6 + 8 / 12, "feet"),
  18809. weight: math.unit(250, "lb"),
  18810. name: "Armored",
  18811. image: {
  18812. source: "./media/characters/caylex/armored.svg",
  18813. extra: 1420 / 1310,
  18814. bottom: 0.045
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(6 + 8 / 12, "feet"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Normal+",
  18826. height: math.unit(12, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(7 + 6 / 12, "feet"),
  18835. weight: math.unit(288, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/alana/front.svg",
  18839. extra: 679 / 653,
  18840. bottom: 22.5 / 701
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(7 + 6 / 12, "feet")
  18848. },
  18849. {
  18850. name: "Large",
  18851. height: math.unit(50, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(100, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Macro+",
  18860. height: math.unit(200, "feet")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(6 + 1 / 12, "feet"),
  18869. weight: math.unit(210, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/hasani/front.svg",
  18873. extra: 244 / 232,
  18874. bottom: 0.01
  18875. }
  18876. },
  18877. back: {
  18878. height: math.unit(6 + 1 / 12, "feet"),
  18879. weight: math.unit(210, "lb"),
  18880. name: "Back",
  18881. image: {
  18882. source: "./media/characters/hasani/back.svg",
  18883. extra: 244 / 232,
  18884. bottom: 0.01
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(6 + 1 / 12, "feet")
  18892. },
  18893. {
  18894. name: "Macro",
  18895. height: math.unit(175, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(1.82, "meters"),
  18905. weight: math.unit(140, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/nita/front.svg",
  18909. extra: 2473 / 2363,
  18910. bottom: 0.01
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(1.82, "m")
  18918. },
  18919. {
  18920. name: "Macro",
  18921. height: math.unit(300, "m")
  18922. },
  18923. {
  18924. name: "Mistake Canon",
  18925. height: math.unit(0.5, "miles"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Big Mistake",
  18930. height: math.unit(13, "miles")
  18931. },
  18932. {
  18933. name: "Playing God",
  18934. height: math.unit(2450, "miles")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(4, "feet"),
  18943. weight: math.unit(120, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/shiriko/front.svg",
  18947. extra: 970/934,
  18948. bottom: 5/975
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(4, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(6, "feet"),
  18965. name: "front",
  18966. image: {
  18967. source: "./media/characters/deja/front.svg",
  18968. extra: 926 / 840,
  18969. bottom: 0.07
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Planck Length",
  18976. height: math.unit(1.6e-35, "meters")
  18977. },
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(30.48, "meters"),
  18981. default: true
  18982. },
  18983. {
  18984. name: "Universal",
  18985. height: math.unit(8.8e26, "meters")
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18991. {
  18992. side: {
  18993. height: math.unit(8, "feet"),
  18994. weight: math.unit(6300, "lb"),
  18995. name: "Side",
  18996. image: {
  18997. source: "./media/characters/anima/side.svg",
  18998. bottom: 0.035
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(8, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(8, "feet"),
  19015. weight: math.unit(350, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/bianca/front.svg",
  19019. extra: 234 / 225,
  19020. bottom: 0.03
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(8, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(11 + 5/12, "feet"),
  19037. weight: math.unit(1200, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/adinia/front.svg",
  19041. extra: 1767/1641,
  19042. bottom: 44/1811
  19043. },
  19044. extraAttributes: {
  19045. "energyIntake": {
  19046. name: "Energy Intake",
  19047. power: 3,
  19048. type: "energy",
  19049. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19050. },
  19051. }
  19052. },
  19053. back: {
  19054. height: math.unit(11 + 5/12, "feet"),
  19055. weight: math.unit(1200, "lb"),
  19056. name: "Back",
  19057. image: {
  19058. source: "./media/characters/adinia/back.svg",
  19059. extra: 1834/1684,
  19060. bottom: 14/1848
  19061. },
  19062. extraAttributes: {
  19063. "energyIntake": {
  19064. name: "Energy Intake",
  19065. power: 3,
  19066. type: "energy",
  19067. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19068. },
  19069. }
  19070. },
  19071. maw: {
  19072. height: math.unit(3.79, "feet"),
  19073. name: "Maw",
  19074. image: {
  19075. source: "./media/characters/adinia/maw.svg"
  19076. }
  19077. },
  19078. rump: {
  19079. height: math.unit(4.6, "feet"),
  19080. name: "Rump",
  19081. image: {
  19082. source: "./media/characters/adinia/rump.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(11 + 5 / 12, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(3, "meters"),
  19099. weight: math.unit(200, "kg"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/lykasa/front.svg",
  19103. extra: 1076 / 976,
  19104. bottom: 0.06
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(3, "meters")
  19112. },
  19113. {
  19114. name: "Kaiju",
  19115. height: math.unit(120, "meters"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Mega Kaiju",
  19120. height: math.unit(240, "km")
  19121. },
  19122. {
  19123. name: "Giga Kaiju",
  19124. height: math.unit(400, "megameters")
  19125. },
  19126. {
  19127. name: "Tera Kaiju",
  19128. height: math.unit(800, "gigameters")
  19129. },
  19130. {
  19131. name: "Kaiju Dragon Goddess",
  19132. height: math.unit(26, "zettaparsecs")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19138. {
  19139. side: {
  19140. height: math.unit(283 / 124 * 6, "feet"),
  19141. weight: math.unit(35000, "lb"),
  19142. name: "Side",
  19143. image: {
  19144. source: "./media/characters/malfaren/side.svg",
  19145. extra: 1310/529,
  19146. bottom: 24/1334
  19147. }
  19148. },
  19149. front: {
  19150. height: math.unit(22.36, "feet"),
  19151. weight: math.unit(35000, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/malfaren/front.svg",
  19155. extra: 1237/1115,
  19156. bottom: 32/1269
  19157. }
  19158. },
  19159. maw: {
  19160. height: math.unit(6.9, "feet"),
  19161. name: "Maw",
  19162. image: {
  19163. source: "./media/characters/malfaren/maw.svg"
  19164. }
  19165. },
  19166. dick: {
  19167. height: math.unit(6.19, "feet"),
  19168. name: "Dick",
  19169. image: {
  19170. source: "./media/characters/malfaren/dick.svg"
  19171. }
  19172. },
  19173. eye: {
  19174. height: math.unit(0.69, "feet"),
  19175. name: "Eye",
  19176. image: {
  19177. source: "./media/characters/malfaren/eye.svg"
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Big",
  19184. height: math.unit(283 / 162 * 6, "feet"),
  19185. },
  19186. {
  19187. name: "Bigger",
  19188. height: math.unit(283 / 124 * 6, "feet")
  19189. },
  19190. {
  19191. name: "Massive",
  19192. height: math.unit(283 / 92 * 6, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "👀💦",
  19197. height: math.unit(283 / 73 * 6, "feet"),
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(1.7, "m"),
  19206. weight: math.unit(70, "kg"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/kernel/front.svg",
  19210. extra: 222 / 210,
  19211. bottom: 0.007
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Nano",
  19218. height: math.unit(17, "micrometers")
  19219. },
  19220. {
  19221. name: "Micro",
  19222. height: math.unit(1.7, "mm")
  19223. },
  19224. {
  19225. name: "Small",
  19226. height: math.unit(1.7, "cm")
  19227. },
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(1.7, "m"),
  19231. default: true
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(1.75, "meters"),
  19240. weight: math.unit(65, "kg"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/jayne-folest/front.svg",
  19244. extra: 2115 / 2007,
  19245. bottom: 0.02
  19246. }
  19247. },
  19248. back: {
  19249. height: math.unit(1.75, "meters"),
  19250. weight: math.unit(65, "kg"),
  19251. name: "Back",
  19252. image: {
  19253. source: "./media/characters/jayne-folest/back.svg",
  19254. extra: 2115 / 2007,
  19255. bottom: 0.005
  19256. }
  19257. },
  19258. frontClothed: {
  19259. height: math.unit(1.75, "meters"),
  19260. weight: math.unit(65, "kg"),
  19261. name: "Front (Clothed)",
  19262. image: {
  19263. source: "./media/characters/jayne-folest/front-clothed.svg",
  19264. extra: 2115 / 2007,
  19265. bottom: 0.035
  19266. }
  19267. },
  19268. hand: {
  19269. height: math.unit(1 / 1.260, "feet"),
  19270. name: "Hand",
  19271. image: {
  19272. source: "./media/characters/jayne-folest/hand.svg"
  19273. }
  19274. },
  19275. foot: {
  19276. height: math.unit(1 / 0.918, "feet"),
  19277. name: "Foot",
  19278. image: {
  19279. source: "./media/characters/jayne-folest/foot.svg"
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Micro",
  19286. height: math.unit(4, "cm")
  19287. },
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(1.75, "meters")
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(47.5, "meters"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19301. {
  19302. front: {
  19303. height: math.unit(180, "cm"),
  19304. weight: math.unit(70, "kg"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/algier/front.svg",
  19308. extra: 596 / 572,
  19309. bottom: 0.04
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(180, "cm"),
  19314. weight: math.unit(70, "kg"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/algier/back.svg",
  19318. extra: 596 / 572,
  19319. bottom: 0.025
  19320. }
  19321. },
  19322. frontdressed: {
  19323. height: math.unit(180, "cm"),
  19324. weight: math.unit(150, "kg"),
  19325. name: "Front-dressed",
  19326. image: {
  19327. source: "./media/characters/algier/front-dressed.svg",
  19328. extra: 596 / 572,
  19329. bottom: 0.038
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Micro",
  19336. height: math.unit(5, "cm")
  19337. },
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(180, "cm"),
  19341. default: true
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(64, "m")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19351. {
  19352. upright: {
  19353. height: math.unit(7, "feet"),
  19354. weight: math.unit(300, "lb"),
  19355. name: "Upright",
  19356. image: {
  19357. source: "./media/characters/pretzel/upright.svg",
  19358. extra: 534 / 522,
  19359. bottom: 0.065
  19360. }
  19361. },
  19362. sprawling: {
  19363. height: math.unit(3.75, "feet"),
  19364. weight: math.unit(300, "lb"),
  19365. name: "Sprawling",
  19366. image: {
  19367. source: "./media/characters/pretzel/sprawling.svg",
  19368. extra: 314 / 281,
  19369. bottom: 0.1
  19370. }
  19371. },
  19372. tongue: {
  19373. height: math.unit(2, "feet"),
  19374. name: "Tongue",
  19375. image: {
  19376. source: "./media/characters/pretzel/tongue.svg"
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(7, "feet"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Oversized",
  19388. height: math.unit(15, "feet")
  19389. },
  19390. {
  19391. name: "Huge",
  19392. height: math.unit(30, "feet")
  19393. },
  19394. {
  19395. name: "Macro",
  19396. height: math.unit(250, "feet")
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19402. {
  19403. sideFront: {
  19404. height: math.unit(5 + 2 / 12, "feet"),
  19405. weight: math.unit(120, "lb"),
  19406. name: "Front Side",
  19407. image: {
  19408. source: "./media/characters/roxi/side-front.svg",
  19409. extra: 2924 / 2717,
  19410. bottom: 0.08
  19411. }
  19412. },
  19413. sideBack: {
  19414. height: math.unit(5 + 2 / 12, "feet"),
  19415. weight: math.unit(120, "lb"),
  19416. name: "Back Side",
  19417. image: {
  19418. source: "./media/characters/roxi/side-back.svg",
  19419. extra: 2904 / 2693,
  19420. bottom: 0.06
  19421. }
  19422. },
  19423. front: {
  19424. height: math.unit(5 + 2 / 12, "feet"),
  19425. weight: math.unit(120, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/roxi/front.svg",
  19429. extra: 2028 / 1907,
  19430. bottom: 0.01
  19431. }
  19432. },
  19433. frontAlt: {
  19434. height: math.unit(5 + 2 / 12, "feet"),
  19435. weight: math.unit(120, "lb"),
  19436. name: "Front (Alt)",
  19437. image: {
  19438. source: "./media/characters/roxi/front-alt.svg",
  19439. extra: 1828 / 1798,
  19440. bottom: 0.01
  19441. }
  19442. },
  19443. sitting: {
  19444. height: math.unit(2.8, "feet"),
  19445. weight: math.unit(120, "lb"),
  19446. name: "Sitting",
  19447. image: {
  19448. source: "./media/characters/roxi/sitting.svg",
  19449. extra: 2660 / 2462,
  19450. bottom: 0.1
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(5 + 2 / 12, "feet"),
  19458. default: true
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19464. {
  19465. side: {
  19466. height: math.unit(55, "feet"),
  19467. weight: math.unit(153, "tons"),
  19468. name: "Side",
  19469. image: {
  19470. source: "./media/characters/shadow/side.svg",
  19471. extra: 701 / 628,
  19472. bottom: 0.02
  19473. }
  19474. },
  19475. flying: {
  19476. height: math.unit(145, "feet"),
  19477. weight: math.unit(153, "tons"),
  19478. name: "Flying",
  19479. image: {
  19480. source: "./media/characters/shadow/flying.svg"
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(55, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(6, "feet"),
  19497. weight: math.unit(200, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/marcie/front.svg",
  19501. extra: 960 / 876,
  19502. bottom: 58 / 1017.87
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(1, "mile"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(7, "feet"),
  19519. weight: math.unit(200, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/kachina/front.svg",
  19523. extra: 1290.68 / 1119,
  19524. bottom: 36.5 / 1327.18
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(7, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19538. {
  19539. looking: {
  19540. height: math.unit(2, "meters"),
  19541. weight: math.unit(300, "kg"),
  19542. name: "Looking",
  19543. image: {
  19544. source: "./media/characters/kash/looking.svg",
  19545. extra: 474 / 344,
  19546. bottom: 0.03
  19547. }
  19548. },
  19549. side: {
  19550. height: math.unit(2, "meters"),
  19551. weight: math.unit(300, "kg"),
  19552. name: "Side",
  19553. image: {
  19554. source: "./media/characters/kash/side.svg",
  19555. extra: 302 / 251,
  19556. bottom: 0.03
  19557. }
  19558. },
  19559. front: {
  19560. height: math.unit(2, "meters"),
  19561. weight: math.unit(300, "kg"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/kash/front.svg",
  19565. extra: 495 / 360,
  19566. bottom: 0.015
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(2, "meters"),
  19574. default: true
  19575. },
  19576. {
  19577. name: "Big",
  19578. height: math.unit(3, "meters")
  19579. },
  19580. {
  19581. name: "Large",
  19582. height: math.unit(5, "meters")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19588. {
  19589. feeding: {
  19590. height: math.unit(6.7, "feet"),
  19591. weight: math.unit(350, "lb"),
  19592. name: "Feeding",
  19593. image: {
  19594. source: "./media/characters/lalim/feeding.svg",
  19595. }
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(6.7, "feet"),
  19602. default: true
  19603. },
  19604. ]
  19605. ))
  19606. characterMakers.push(() => makeCharacter(
  19607. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19608. {
  19609. front: {
  19610. height: math.unit(9.5, "feet"),
  19611. weight: math.unit(600, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/de'vout/front.svg",
  19615. extra: 1443 / 1328,
  19616. bottom: 0.025
  19617. }
  19618. },
  19619. back: {
  19620. height: math.unit(9.5, "feet"),
  19621. weight: math.unit(600, "lb"),
  19622. name: "Back",
  19623. image: {
  19624. source: "./media/characters/de'vout/back.svg",
  19625. extra: 1443 / 1328
  19626. }
  19627. },
  19628. frontDressed: {
  19629. height: math.unit(9.5, "feet"),
  19630. weight: math.unit(600, "lb"),
  19631. name: "Front (Dressed",
  19632. image: {
  19633. source: "./media/characters/de'vout/front-dressed.svg",
  19634. extra: 1443 / 1328,
  19635. bottom: 0.025
  19636. }
  19637. },
  19638. backDressed: {
  19639. height: math.unit(9.5, "feet"),
  19640. weight: math.unit(600, "lb"),
  19641. name: "Back (Dressed",
  19642. image: {
  19643. source: "./media/characters/de'vout/back-dressed.svg",
  19644. extra: 1443 / 1328
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(9.5, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(8, "feet"),
  19661. weight: math.unit(225, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/talana/front.svg",
  19665. extra: 1410 / 1300,
  19666. bottom: 0.015
  19667. }
  19668. },
  19669. frontDressed: {
  19670. height: math.unit(8, "feet"),
  19671. weight: math.unit(225, "lb"),
  19672. name: "Front (Dressed",
  19673. image: {
  19674. source: "./media/characters/talana/front-dressed.svg",
  19675. extra: 1410 / 1300,
  19676. bottom: 0.015
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(8, "feet"),
  19684. default: true
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19690. {
  19691. side: {
  19692. height: math.unit(7.2, "feet"),
  19693. weight: math.unit(150, "lb"),
  19694. name: "Side",
  19695. image: {
  19696. source: "./media/characters/xeauvok/side.svg",
  19697. extra: 1975 / 1523,
  19698. bottom: 0.07
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(7.2, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19712. {
  19713. side: {
  19714. height: math.unit(4, "meters"),
  19715. weight: math.unit(2200, "kg"),
  19716. name: "Side",
  19717. image: {
  19718. source: "./media/characters/zara/side.svg",
  19719. extra: 765/744,
  19720. bottom: 156/921
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(4, "meters"),
  19728. default: true
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19734. {
  19735. side: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/richard-dragon/side.svg",
  19741. extra: 845 / 340,
  19742. bottom: 0.017
  19743. }
  19744. },
  19745. maw: {
  19746. height: math.unit(2.97, "feet"),
  19747. name: "Maw",
  19748. image: {
  19749. source: "./media/characters/richard-dragon/maw.svg"
  19750. }
  19751. },
  19752. },
  19753. [
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(4, "feet"),
  19761. weight: math.unit(100, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/richard-smeargle/front.svg",
  19765. extra: 2952 / 2820,
  19766. bottom: 0.028
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(4, "feet"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Dynamax",
  19778. height: math.unit(20, "meters")
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6, "feet"),
  19787. weight: math.unit(110, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/klay/front.svg",
  19791. extra: 962 / 883,
  19792. bottom: 0.04
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6, "feet"),
  19797. weight: math.unit(110, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/klay/back.svg",
  19801. extra: 962 / 883
  19802. }
  19803. },
  19804. beans: {
  19805. height: math.unit(1.15, "feet"),
  19806. name: "Beans",
  19807. image: {
  19808. source: "./media/characters/klay/beans.svg"
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Micro",
  19815. height: math.unit(6, "inches")
  19816. },
  19817. {
  19818. name: "Mini",
  19819. height: math.unit(3, "feet")
  19820. },
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(6, "feet"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Big",
  19828. height: math.unit(25, "feet")
  19829. },
  19830. {
  19831. name: "Macro",
  19832. height: math.unit(100, "feet")
  19833. },
  19834. {
  19835. name: "Megamacro",
  19836. height: math.unit(400, "feet")
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19842. {
  19843. front: {
  19844. height: math.unit(6, "feet"),
  19845. weight: math.unit(160, "lb"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/marcus/front.svg",
  19849. extra: 734 / 676,
  19850. bottom: 0.03
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Little",
  19857. height: math.unit(6, "feet")
  19858. },
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(110, "feet"),
  19862. default: true
  19863. },
  19864. {
  19865. name: "Macro",
  19866. height: math.unit(250, "feet")
  19867. },
  19868. {
  19869. name: "Megamacro",
  19870. height: math.unit(1000, "feet")
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19876. {
  19877. front: {
  19878. height: math.unit(7, "feet"),
  19879. weight: math.unit(275, "lb"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/claude-delroute/front.svg",
  19883. extra: 902/827,
  19884. bottom: 26/928
  19885. }
  19886. },
  19887. side: {
  19888. height: math.unit(7, "feet"),
  19889. weight: math.unit(275, "lb"),
  19890. name: "Side",
  19891. image: {
  19892. source: "./media/characters/claude-delroute/side.svg",
  19893. extra: 908/853,
  19894. bottom: 16/924
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(7, "feet"),
  19899. weight: math.unit(275, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/claude-delroute/back.svg",
  19903. extra: 911/829,
  19904. bottom: 18/929
  19905. }
  19906. },
  19907. maw: {
  19908. height: math.unit(0.6407, "meters"),
  19909. name: "Maw",
  19910. image: {
  19911. source: "./media/characters/claude-delroute/maw.svg"
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(7, "feet"),
  19919. default: true
  19920. },
  19921. {
  19922. name: "Lorge",
  19923. height: math.unit(20, "feet")
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(8 + 4 / 12, "feet"),
  19932. weight: math.unit(600, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/dragonien/front.svg",
  19936. extra: 100 / 94,
  19937. bottom: 3.3 / 103.3445
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(8 + 4 / 12, "feet"),
  19942. weight: math.unit(600, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/dragonien/back.svg",
  19946. extra: 776 / 746,
  19947. bottom: 6.4 / 782.0616
  19948. }
  19949. },
  19950. foot: {
  19951. height: math.unit(1.54, "feet"),
  19952. name: "Foot",
  19953. image: {
  19954. source: "./media/characters/dragonien/foot.svg",
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(8 + 4 / 12, "feet"),
  19962. default: true
  19963. },
  19964. {
  19965. name: "Macro",
  19966. height: math.unit(200, "feet")
  19967. },
  19968. {
  19969. name: "Megamacro",
  19970. height: math.unit(1, "mile")
  19971. },
  19972. {
  19973. name: "Gigamacro",
  19974. height: math.unit(1000, "miles")
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19980. {
  19981. front: {
  19982. height: math.unit(5 + 2 / 12, "feet"),
  19983. weight: math.unit(110, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/desta/front.svg",
  19987. extra: 767 / 726,
  19988. bottom: 11.7 / 779
  19989. }
  19990. },
  19991. back: {
  19992. height: math.unit(5 + 2 / 12, "feet"),
  19993. weight: math.unit(110, "lb"),
  19994. name: "Back",
  19995. image: {
  19996. source: "./media/characters/desta/back.svg",
  19997. extra: 777 / 728,
  19998. bottom: 6 / 784
  19999. }
  20000. },
  20001. frontAlt: {
  20002. height: math.unit(5 + 2 / 12, "feet"),
  20003. weight: math.unit(110, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/desta/front-alt.svg",
  20007. extra: 1482 / 1417
  20008. }
  20009. },
  20010. side: {
  20011. height: math.unit(5 + 2 / 12, "feet"),
  20012. weight: math.unit(110, "lb"),
  20013. name: "Side",
  20014. image: {
  20015. source: "./media/characters/desta/side.svg",
  20016. extra: 2579 / 2491,
  20017. bottom: 0.053
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Micro",
  20024. height: math.unit(6, "inches")
  20025. },
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5 + 2 / 12, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Macro",
  20033. height: math.unit(62, "feet")
  20034. },
  20035. {
  20036. name: "Megamacro",
  20037. height: math.unit(1800, "feet")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(10, "feet"),
  20046. weight: math.unit(700, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/storm-alystar/front.svg",
  20050. extra: 2112 / 1898,
  20051. bottom: 0.034
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Micro",
  20058. height: math.unit(3.5, "inches")
  20059. },
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(10, "feet"),
  20063. default: true
  20064. },
  20065. {
  20066. name: "Macro",
  20067. height: math.unit(400, "feet")
  20068. },
  20069. {
  20070. name: "Deific",
  20071. height: math.unit(60, "miles")
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(2.35, "meters"),
  20080. weight: math.unit(119, "kg"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/ilia/front.svg",
  20084. extra: 1285 / 1255,
  20085. bottom: 0.06
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(2.35, "meters")
  20093. },
  20094. {
  20095. name: "Macro",
  20096. height: math.unit(140, "meters"),
  20097. default: true
  20098. },
  20099. {
  20100. name: "Megamacro",
  20101. height: math.unit(100, "miles")
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(6 + 5 / 12, "feet"),
  20110. weight: math.unit(190, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/kingdead/front.svg",
  20114. extra: 1228 / 1177
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Micro",
  20121. height: math.unit(7, "inches")
  20122. },
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(6 + 5 / 12, "feet")
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(150, "feet"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Megamacro",
  20134. height: math.unit(200, "miles")
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(8, "feet"),
  20143. weight: math.unit(600, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/kyrehx/front.svg",
  20147. extra: 1195 / 1095,
  20148. bottom: 0.034
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Micro",
  20155. height: math.unit(2, "inches")
  20156. },
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(8, "feet"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Macro",
  20164. height: math.unit(255, "feet")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20173. weight: math.unit(184, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/xang/front.svg",
  20177. extra: 845 / 755
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(0.935 * 146, "feet")
  20190. },
  20191. {
  20192. name: "Megamacro",
  20193. height: math.unit(0.935 * 3, "miles")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20199. {
  20200. frontDressed: {
  20201. height: math.unit(5 + 7 / 12, "feet"),
  20202. weight: math.unit(140, "lb"),
  20203. name: "Front (Dressed)",
  20204. image: {
  20205. source: "./media/characters/doc-weardno/front-dressed.svg",
  20206. extra: 263 / 234
  20207. }
  20208. },
  20209. backDressed: {
  20210. height: math.unit(5 + 7 / 12, "feet"),
  20211. weight: math.unit(140, "lb"),
  20212. name: "Back (Dressed)",
  20213. image: {
  20214. source: "./media/characters/doc-weardno/back-dressed.svg",
  20215. extra: 266 / 238
  20216. }
  20217. },
  20218. front: {
  20219. height: math.unit(5 + 7 / 12, "feet"),
  20220. weight: math.unit(140, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/doc-weardno/front.svg",
  20224. extra: 254 / 233
  20225. }
  20226. },
  20227. },
  20228. [
  20229. {
  20230. name: "Micro",
  20231. height: math.unit(3, "inches")
  20232. },
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(5 + 7 / 12, "feet"),
  20236. default: true
  20237. },
  20238. {
  20239. name: "Macro",
  20240. height: math.unit(25, "feet")
  20241. },
  20242. {
  20243. name: "Megamacro",
  20244. height: math.unit(2, "miles")
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(6 + 2 / 12, "feet"),
  20253. weight: math.unit(153, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/seth-whilst/front.svg",
  20257. bottom: 0.07
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Micro",
  20264. height: math.unit(5, "inches")
  20265. },
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(6 + 2 / 12, "feet"),
  20269. default: true
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20275. {
  20276. front: {
  20277. height: math.unit(3, "inches"),
  20278. weight: math.unit(8, "grams"),
  20279. name: "Front",
  20280. image: {
  20281. source: "./media/characters/pocket-jabari/front.svg",
  20282. extra: 1024 / 974,
  20283. bottom: 0.039
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Minimicro",
  20290. height: math.unit(8, "mm")
  20291. },
  20292. {
  20293. name: "Micro",
  20294. height: math.unit(3, "inches"),
  20295. default: true
  20296. },
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(3, "feet")
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20305. {
  20306. frontDressed: {
  20307. height: math.unit(15, "feet"),
  20308. weight: math.unit(3280, "lb"),
  20309. name: "Front (Dressed)",
  20310. image: {
  20311. source: "./media/characters/sapphy/front-dressed.svg",
  20312. extra: 1951/1654,
  20313. bottom: 194/2145
  20314. },
  20315. form: "anthro",
  20316. default: true
  20317. },
  20318. backDressed: {
  20319. height: math.unit(15, "feet"),
  20320. weight: math.unit(3280, "lb"),
  20321. name: "Back (Dressed)",
  20322. image: {
  20323. source: "./media/characters/sapphy/back-dressed.svg",
  20324. extra: 2058/1918,
  20325. bottom: 125/2183
  20326. },
  20327. form: "anthro"
  20328. },
  20329. frontNude: {
  20330. height: math.unit(15, "feet"),
  20331. weight: math.unit(3280, "lb"),
  20332. name: "Front (Nude)",
  20333. image: {
  20334. source: "./media/characters/sapphy/front-nude.svg",
  20335. extra: 1951/1654,
  20336. bottom: 194/2145
  20337. },
  20338. form: "anthro"
  20339. },
  20340. backNude: {
  20341. height: math.unit(15, "feet"),
  20342. weight: math.unit(3280, "lb"),
  20343. name: "Back (Nude)",
  20344. image: {
  20345. source: "./media/characters/sapphy/back-nude.svg",
  20346. extra: 2058/1918,
  20347. bottom: 125/2183
  20348. },
  20349. form: "anthro"
  20350. },
  20351. full: {
  20352. height: math.unit(15, "feet"),
  20353. weight: math.unit(3280, "lb"),
  20354. name: "Full",
  20355. image: {
  20356. source: "./media/characters/sapphy/full.svg",
  20357. extra: 1396/1317,
  20358. bottom: 44/1440
  20359. },
  20360. form: "anthro"
  20361. },
  20362. dick: {
  20363. height: math.unit(3.8, "feet"),
  20364. name: "Dick",
  20365. image: {
  20366. source: "./media/characters/sapphy/dick.svg"
  20367. },
  20368. form: "anthro"
  20369. },
  20370. feral: {
  20371. height: math.unit(35, "feet"),
  20372. weight: math.unit(160, "tons"),
  20373. name: "Feral",
  20374. image: {
  20375. source: "./media/characters/sapphy/feral.svg",
  20376. extra: 1050/573,
  20377. bottom: 60/1110
  20378. },
  20379. form: "feral",
  20380. default: true
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(15, "feet"),
  20387. form: "anthro"
  20388. },
  20389. {
  20390. name: "Casual Macro",
  20391. height: math.unit(120, "feet"),
  20392. form: "anthro"
  20393. },
  20394. {
  20395. name: "Macro",
  20396. height: math.unit(2150, "feet"),
  20397. default: true,
  20398. form: "anthro"
  20399. },
  20400. {
  20401. name: "Megamacro",
  20402. height: math.unit(8, "miles"),
  20403. form: "anthro"
  20404. },
  20405. {
  20406. name: "Galaxy Mom",
  20407. height: math.unit(6, "megalightyears"),
  20408. form: "anthro"
  20409. },
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(35, "feet"),
  20413. form: "feral",
  20414. default: true
  20415. },
  20416. {
  20417. name: "Macro",
  20418. height: math.unit(300, "feet"),
  20419. form: "feral"
  20420. },
  20421. {
  20422. name: "Galaxy Mom",
  20423. height: math.unit(10, "megalightyears"),
  20424. form: "feral"
  20425. },
  20426. ],
  20427. {
  20428. "anthro": {
  20429. name: "Anthro",
  20430. default: true
  20431. },
  20432. "feral": {
  20433. name: "Feral"
  20434. }
  20435. }
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20439. {
  20440. hyenaFront: {
  20441. height: math.unit(6, "feet"),
  20442. weight: math.unit(190, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/kiro/hyena-front.svg",
  20446. extra: 927/839,
  20447. bottom: 91/1018
  20448. },
  20449. form: "hyena",
  20450. default: true
  20451. },
  20452. front: {
  20453. height: math.unit(6, "feet"),
  20454. weight: math.unit(170, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/kiro/front.svg",
  20458. extra: 1064 / 1012,
  20459. bottom: 0.052
  20460. },
  20461. form: "folf",
  20462. default: true
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(6, "inches"),
  20469. form: "folf"
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(6, "feet"),
  20474. form: "folf",
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(72, "feet"),
  20480. form: "folf"
  20481. },
  20482. {
  20483. name: "Micro",
  20484. height: math.unit(6, "inches"),
  20485. form: "hyena"
  20486. },
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6, "feet"),
  20490. form: "hyena",
  20491. default: true
  20492. },
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(72, "feet"),
  20496. form: "hyena"
  20497. },
  20498. ],
  20499. {
  20500. "hyena": {
  20501. name: "Hyena",
  20502. default: true
  20503. },
  20504. "folf": {
  20505. name: "Folf",
  20506. },
  20507. }
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(5 + 9 / 12, "feet"),
  20514. weight: math.unit(175, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/irishfox/front.svg",
  20518. extra: 1912 / 1680,
  20519. bottom: 0.02
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Nano",
  20526. height: math.unit(1, "mm")
  20527. },
  20528. {
  20529. name: "Micro",
  20530. height: math.unit(2, "inches")
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(5 + 9 / 12, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Macro",
  20539. height: math.unit(45, "feet")
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(6 + 1 / 12, "feet"),
  20548. weight: math.unit(75, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/aronai-sieyes/front.svg",
  20552. extra: 1532/1450,
  20553. bottom: 42/1574
  20554. }
  20555. },
  20556. side: {
  20557. height: math.unit(6 + 1 / 12, "feet"),
  20558. weight: math.unit(75, "lb"),
  20559. name: "Side",
  20560. image: {
  20561. source: "./media/characters/aronai-sieyes/side.svg",
  20562. extra: 1422/1365,
  20563. bottom: 148/1570
  20564. }
  20565. },
  20566. back: {
  20567. height: math.unit(6 + 1 / 12, "feet"),
  20568. weight: math.unit(75, "lb"),
  20569. name: "Back",
  20570. image: {
  20571. source: "./media/characters/aronai-sieyes/back.svg",
  20572. extra: 1526/1464,
  20573. bottom: 51/1577
  20574. }
  20575. },
  20576. dressed: {
  20577. height: math.unit(6 + 1 / 12, "feet"),
  20578. weight: math.unit(75, "lb"),
  20579. name: "Dressed",
  20580. image: {
  20581. source: "./media/characters/aronai-sieyes/dressed.svg",
  20582. extra: 1559/1483,
  20583. bottom: 39/1598
  20584. }
  20585. },
  20586. slit: {
  20587. height: math.unit(1.3, "feet"),
  20588. name: "Slit",
  20589. image: {
  20590. source: "./media/characters/aronai-sieyes/slit.svg"
  20591. }
  20592. },
  20593. slitSpread: {
  20594. height: math.unit(0.9, "feet"),
  20595. name: "Slit (Spread)",
  20596. image: {
  20597. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20598. }
  20599. },
  20600. rump: {
  20601. height: math.unit(1.3, "feet"),
  20602. name: "Rump",
  20603. image: {
  20604. source: "./media/characters/aronai-sieyes/rump.svg"
  20605. }
  20606. },
  20607. maw: {
  20608. height: math.unit(1.25, "feet"),
  20609. name: "Maw",
  20610. image: {
  20611. source: "./media/characters/aronai-sieyes/maw.svg"
  20612. }
  20613. },
  20614. feral: {
  20615. height: math.unit(18, "feet"),
  20616. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20617. name: "Feral",
  20618. image: {
  20619. source: "./media/characters/aronai-sieyes/feral.svg",
  20620. extra: 1530 / 1240,
  20621. bottom: 0.035
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Micro",
  20628. height: math.unit(2, "inches")
  20629. },
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(6 + 1 / 12, "feet"),
  20633. default: true
  20634. }
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(12, "feet"),
  20642. weight: math.unit(410, "kg"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/xuna/front.svg",
  20646. extra: 2184 / 1980
  20647. }
  20648. },
  20649. side: {
  20650. height: math.unit(12, "feet"),
  20651. weight: math.unit(410, "kg"),
  20652. name: "Side",
  20653. image: {
  20654. source: "./media/characters/xuna/side.svg",
  20655. extra: 2184 / 1980
  20656. }
  20657. },
  20658. back: {
  20659. height: math.unit(12, "feet"),
  20660. weight: math.unit(410, "kg"),
  20661. name: "Back",
  20662. image: {
  20663. source: "./media/characters/xuna/back.svg",
  20664. extra: 2184 / 1980
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Nano glow",
  20671. height: math.unit(10, "nm")
  20672. },
  20673. {
  20674. name: "Micro floof",
  20675. height: math.unit(0.3, "m")
  20676. },
  20677. {
  20678. name: "Huggable softy boi",
  20679. height: math.unit(3.6576, "m"),
  20680. default: true
  20681. },
  20682. {
  20683. name: "Admirable floof",
  20684. height: math.unit(80, "meters")
  20685. },
  20686. {
  20687. name: "Gentle macro",
  20688. height: math.unit(300, "meters")
  20689. },
  20690. {
  20691. name: "Very careful floof",
  20692. height: math.unit(3200, "meters")
  20693. },
  20694. {
  20695. name: "The mega floof",
  20696. height: math.unit(36000, "meters")
  20697. },
  20698. {
  20699. name: "Giga-fur-Wicker",
  20700. height: math.unit(4800000, "meters")
  20701. },
  20702. {
  20703. name: "Licky world",
  20704. height: math.unit(20000000, "meters")
  20705. },
  20706. {
  20707. name: "Floofy cyan sun",
  20708. height: math.unit(1500000000, "meters")
  20709. },
  20710. {
  20711. name: "Milky Wicker",
  20712. height: math.unit(1000000000000000000000, "meters")
  20713. },
  20714. {
  20715. name: "The observing Wicker",
  20716. height: math.unit(999999999999999999999999999, "meters")
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20722. {
  20723. front: {
  20724. height: math.unit(5 + 9 / 12, "feet"),
  20725. weight: math.unit(150, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/arokha-sieyes/front.svg",
  20729. extra: 1425 / 1284,
  20730. bottom: 0.05
  20731. }
  20732. },
  20733. },
  20734. [
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(5 + 9 / 12, "feet")
  20738. },
  20739. {
  20740. name: "Macro",
  20741. height: math.unit(30, "meters"),
  20742. default: true
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(6, "feet"),
  20751. weight: math.unit(180, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/arokh-sieyes/front.svg",
  20755. extra: 1830 / 1769,
  20756. bottom: 0.01
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(6, "feet")
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(30, "meters"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20774. {
  20775. side: {
  20776. height: math.unit(13 + 1 / 12, "feet"),
  20777. weight: math.unit(8.5, "tonnes"),
  20778. preyCapacity: math.unit(36, "people"),
  20779. name: "Side",
  20780. image: {
  20781. source: "./media/characters/goldeneye/side.svg",
  20782. extra: 1139/741,
  20783. bottom: 98/1237
  20784. }
  20785. },
  20786. front: {
  20787. height: math.unit(5.1, "feet"),
  20788. weight: math.unit(8.5, "tonnes"),
  20789. preyCapacity: math.unit(36, "people"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/goldeneye/front.svg",
  20793. extra: 635/365,
  20794. bottom: 598/1233
  20795. }
  20796. },
  20797. maw: {
  20798. height: math.unit(6.6, "feet"),
  20799. name: "Maw",
  20800. image: {
  20801. source: "./media/characters/goldeneye/maw.svg"
  20802. }
  20803. },
  20804. headFront: {
  20805. height: math.unit(8, "feet"),
  20806. name: "Head (Front)",
  20807. image: {
  20808. source: "./media/characters/goldeneye/head-front.svg"
  20809. }
  20810. },
  20811. headSide: {
  20812. height: math.unit(6, "feet"),
  20813. name: "Head (Side)",
  20814. image: {
  20815. source: "./media/characters/goldeneye/head-side.svg"
  20816. }
  20817. },
  20818. headBack: {
  20819. height: math.unit(8, "feet"),
  20820. name: "Head (Back)",
  20821. image: {
  20822. source: "./media/characters/goldeneye/head-back.svg"
  20823. }
  20824. },
  20825. paw: {
  20826. height: math.unit(3.4, "feet"),
  20827. name: "Paw",
  20828. image: {
  20829. source: "./media/characters/goldeneye/paw.svg"
  20830. }
  20831. },
  20832. toering: {
  20833. height: math.unit(0.45, "feet"),
  20834. name: "Toering",
  20835. image: {
  20836. source: "./media/characters/goldeneye/toering.svg"
  20837. }
  20838. },
  20839. eyes: {
  20840. height: math.unit(0.5, "feet"),
  20841. name: "Eyes",
  20842. image: {
  20843. source: "./media/characters/goldeneye/eyes.svg"
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(13 + 1 / 12, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20857. {
  20858. front: {
  20859. height: math.unit(6 + 1 / 12, "feet"),
  20860. weight: math.unit(210, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/front.svg",
  20864. extra: 776/723,
  20865. bottom: 34/810
  20866. }
  20867. },
  20868. side: {
  20869. height: math.unit(6 + 1 / 12, "feet"),
  20870. weight: math.unit(210, "lb"),
  20871. name: "Side",
  20872. image: {
  20873. source: "./media/characters/leonardo-lycheborne/side.svg",
  20874. extra: 780/728,
  20875. bottom: 12/792
  20876. }
  20877. },
  20878. back: {
  20879. height: math.unit(6 + 1 / 12, "feet"),
  20880. weight: math.unit(210, "lb"),
  20881. name: "Back",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/back.svg",
  20884. extra: 775/721,
  20885. bottom: 17/792
  20886. }
  20887. },
  20888. hand: {
  20889. height: math.unit(1.08, "feet"),
  20890. name: "Hand",
  20891. image: {
  20892. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20893. }
  20894. },
  20895. foot: {
  20896. height: math.unit(1.32, "feet"),
  20897. name: "Foot",
  20898. image: {
  20899. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20900. }
  20901. },
  20902. maw: {
  20903. height: math.unit(1, "feet"),
  20904. name: "Maw",
  20905. image: {
  20906. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20907. }
  20908. },
  20909. were: {
  20910. height: math.unit(20, "feet"),
  20911. weight: math.unit(7800, "lb"),
  20912. name: "Were",
  20913. image: {
  20914. source: "./media/characters/leonardo-lycheborne/were.svg",
  20915. extra: 1224/1165,
  20916. bottom: 72/1296
  20917. }
  20918. },
  20919. feral: {
  20920. height: math.unit(7.5, "feet"),
  20921. weight: math.unit(600, "lb"),
  20922. name: "Feral",
  20923. image: {
  20924. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20925. extra: 797/702,
  20926. bottom: 139/936
  20927. }
  20928. },
  20929. taur: {
  20930. height: math.unit(11, "feet"),
  20931. weight: math.unit(3300, "lb"),
  20932. name: "Taur",
  20933. image: {
  20934. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20935. extra: 1271/1197,
  20936. bottom: 47/1318
  20937. }
  20938. },
  20939. barghest: {
  20940. height: math.unit(11, "feet"),
  20941. weight: math.unit(1300, "lb"),
  20942. name: "Barghest",
  20943. image: {
  20944. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20945. extra: 1291/1204,
  20946. bottom: 37/1328
  20947. }
  20948. },
  20949. dick: {
  20950. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20951. name: "Dick",
  20952. image: {
  20953. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20954. }
  20955. },
  20956. dickWere: {
  20957. height: math.unit((20) / 3.8, "feet"),
  20958. name: "Dick (Were)",
  20959. image: {
  20960. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(6 + 1 / 12, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(10, "feet"),
  20977. weight: math.unit(350, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/jet/front.svg",
  20981. extra: 2050 / 1980,
  20982. bottom: 0.013
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(10, "feet"),
  20987. weight: math.unit(350, "lb"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/jet/back.svg",
  20991. extra: 2050 / 1980,
  20992. bottom: 0.013
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Micro",
  20999. height: math.unit(6, "inches")
  21000. },
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(10, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(100, "feet")
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(15, "feet"),
  21017. weight: math.unit(2800, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/tanarath/front.svg",
  21021. extra: 2392 / 2220,
  21022. bottom: 0.03
  21023. }
  21024. },
  21025. back: {
  21026. height: math.unit(15, "feet"),
  21027. weight: math.unit(2800, "lb"),
  21028. name: "Back",
  21029. image: {
  21030. source: "./media/characters/tanarath/back.svg",
  21031. extra: 2392 / 2220,
  21032. bottom: 0.03
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(15, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(7 + 1 / 12, "feet"),
  21049. weight: math.unit(175, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/patty-cattybatty/front.svg",
  21053. extra: 908 / 874,
  21054. bottom: 0.025
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Micro",
  21061. height: math.unit(1, "inch")
  21062. },
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(7 + 1 / 12, "feet")
  21066. },
  21067. {
  21068. name: "Mini Macro",
  21069. height: math.unit(155, "feet")
  21070. },
  21071. {
  21072. name: "Macro",
  21073. height: math.unit(1077, "feet")
  21074. },
  21075. {
  21076. name: "Mega Macro",
  21077. height: math.unit(47650, "feet"),
  21078. default: true
  21079. },
  21080. {
  21081. name: "Giga Macro",
  21082. height: math.unit(440, "miles")
  21083. },
  21084. {
  21085. name: "Tera Macro",
  21086. height: math.unit(8700, "miles")
  21087. },
  21088. {
  21089. name: "Planetary Macro",
  21090. height: math.unit(32700, "miles")
  21091. },
  21092. {
  21093. name: "Solar Macro",
  21094. height: math.unit(550000, "miles")
  21095. },
  21096. {
  21097. name: "Celestial Macro",
  21098. height: math.unit(2.5, "AU")
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(4 + 5 / 12, "feet"),
  21107. weight: math.unit(90, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/cappu/front.svg",
  21111. extra: 1247 / 1152,
  21112. bottom: 0.012
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(4 + 5 / 12, "feet"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21126. {
  21127. frontDressed: {
  21128. height: math.unit(70, "cm"),
  21129. weight: math.unit(6, "kg"),
  21130. name: "Front (Dressed)",
  21131. image: {
  21132. source: "./media/characters/sebi/front-dressed.svg",
  21133. extra: 713.5 / 686.5,
  21134. bottom: 0.003
  21135. }
  21136. },
  21137. front: {
  21138. height: math.unit(70, "cm"),
  21139. weight: math.unit(5, "kg"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/sebi/front.svg",
  21143. extra: 713.5 / 686.5,
  21144. bottom: 0.003
  21145. }
  21146. }
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(70, "cm"),
  21152. default: true
  21153. },
  21154. {
  21155. name: "Macro",
  21156. height: math.unit(8, "meters")
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(6, "feet"),
  21165. weight: math.unit(150, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/typhek/front.svg",
  21169. extra: 1948 / 1929,
  21170. bottom: 0.025
  21171. }
  21172. },
  21173. side: {
  21174. height: math.unit(6, "feet"),
  21175. weight: math.unit(150, "lb"),
  21176. name: "Side",
  21177. image: {
  21178. source: "./media/characters/typhek/side.svg",
  21179. extra: 2034 / 2010,
  21180. bottom: 0.003
  21181. }
  21182. },
  21183. back: {
  21184. height: math.unit(6, "feet"),
  21185. weight: math.unit(150, "lb"),
  21186. name: "Back",
  21187. image: {
  21188. source: "./media/characters/typhek/back.svg",
  21189. extra: 2005 / 1978,
  21190. bottom: 0.004
  21191. }
  21192. },
  21193. palm: {
  21194. height: math.unit(1.2, "feet"),
  21195. name: "Palm",
  21196. image: {
  21197. source: "./media/characters/typhek/palm.svg"
  21198. }
  21199. },
  21200. fist: {
  21201. height: math.unit(1.1, "feet"),
  21202. name: "Fist",
  21203. image: {
  21204. source: "./media/characters/typhek/fist.svg"
  21205. }
  21206. },
  21207. foot: {
  21208. height: math.unit(1.57, "feet"),
  21209. name: "Foot",
  21210. image: {
  21211. source: "./media/characters/typhek/foot.svg"
  21212. }
  21213. },
  21214. sole: {
  21215. height: math.unit(2.05, "feet"),
  21216. name: "Sole",
  21217. image: {
  21218. source: "./media/characters/typhek/sole.svg"
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Macro",
  21225. height: math.unit(40, "stories"),
  21226. default: true
  21227. },
  21228. {
  21229. name: "Megamacro",
  21230. height: math.unit(1, "mile")
  21231. },
  21232. {
  21233. name: "Gigamacro",
  21234. height: math.unit(4000, "solarradii")
  21235. },
  21236. {
  21237. name: "Universal",
  21238. height: math.unit(1.1, "universes")
  21239. }
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21244. {
  21245. side: {
  21246. height: math.unit(5 + 7 / 12, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/kassy/side.svg",
  21251. extra: 1280 / 1225,
  21252. bottom: 0.002
  21253. }
  21254. },
  21255. front: {
  21256. height: math.unit(5 + 7 / 12, "feet"),
  21257. weight: math.unit(150, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/kassy/front.svg",
  21261. extra: 1280 / 1225,
  21262. bottom: 0.025
  21263. }
  21264. },
  21265. back: {
  21266. height: math.unit(5 + 7 / 12, "feet"),
  21267. weight: math.unit(150, "lb"),
  21268. name: "Back",
  21269. image: {
  21270. source: "./media/characters/kassy/back.svg",
  21271. extra: 1280 / 1225,
  21272. bottom: 0.002
  21273. }
  21274. },
  21275. foot: {
  21276. height: math.unit(1.266, "feet"),
  21277. name: "Foot",
  21278. image: {
  21279. source: "./media/characters/kassy/foot.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(5 + 7 / 12, "feet")
  21287. },
  21288. {
  21289. name: "Macro",
  21290. height: math.unit(137, "feet"),
  21291. default: true
  21292. },
  21293. {
  21294. name: "Megamacro",
  21295. height: math.unit(1, "mile")
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(6 + 1 / 12, "feet"),
  21304. weight: math.unit(200, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/neil/front.svg",
  21308. extra: 1326 / 1250,
  21309. bottom: 0.023
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(6 + 1 / 12, "feet"),
  21317. default: true
  21318. },
  21319. {
  21320. name: "Macro",
  21321. height: math.unit(200, "feet")
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21327. {
  21328. front: {
  21329. height: math.unit(5 + 9 / 12, "feet"),
  21330. weight: math.unit(190, "lb"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/atticus/front.svg",
  21334. extra: 2934 / 2785,
  21335. bottom: 0.025
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(5 + 9 / 12, "feet"),
  21343. default: true
  21344. },
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(180, "feet")
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21353. {
  21354. side: {
  21355. height: math.unit(9, "feet"),
  21356. weight: math.unit(650, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/milo/side.svg",
  21360. extra: 2644 / 2310,
  21361. bottom: 0.032
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(9, "feet"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(300, "feet")
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21379. {
  21380. side: {
  21381. height: math.unit(8, "meters"),
  21382. weight: math.unit(90000, "kg"),
  21383. name: "Side",
  21384. image: {
  21385. source: "./media/characters/ijzer/side.svg",
  21386. extra: 2756 / 1600,
  21387. bottom: 0.01
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Small",
  21394. height: math.unit(3, "meters")
  21395. },
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(8, "meters"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Normal+",
  21403. height: math.unit(10, "meters")
  21404. },
  21405. {
  21406. name: "Bigger",
  21407. height: math.unit(24, "meters")
  21408. },
  21409. {
  21410. name: "Huge",
  21411. height: math.unit(80, "meters")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(6 + 2 / 12, "feet"),
  21420. weight: math.unit(153, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/luca-cervicum/front.svg",
  21424. extra: 370 / 327,
  21425. bottom: 0.015
  21426. }
  21427. },
  21428. back: {
  21429. height: math.unit(6 + 2 / 12, "feet"),
  21430. weight: math.unit(153, "lb"),
  21431. name: "Back",
  21432. image: {
  21433. source: "./media/characters/luca-cervicum/back.svg",
  21434. extra: 367 / 333,
  21435. bottom: 0.005
  21436. }
  21437. },
  21438. frontGear: {
  21439. height: math.unit(6 + 2 / 12, "feet"),
  21440. weight: math.unit(173, "lb"),
  21441. name: "Front (Gear)",
  21442. image: {
  21443. source: "./media/characters/luca-cervicum/front-gear.svg",
  21444. extra: 377 / 333,
  21445. bottom: 0.006
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(6 + 2 / 12, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(6 + 1 / 12, "feet"),
  21462. weight: math.unit(304, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/oliver/front.svg",
  21466. extra: 157 / 143,
  21467. bottom: 0.08
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(6 + 1 / 12, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(5 + 7 / 12, "feet"),
  21484. weight: math.unit(140, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/shane/front.svg",
  21488. extra: 304 / 289,
  21489. bottom: 0.005
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(5 + 7 / 12, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(5 + 9 / 12, "feet"),
  21506. weight: math.unit(178, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/shin/front.svg",
  21510. extra: 159 / 151,
  21511. bottom: 0.015
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(5 + 9 / 12, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(5 + 10 / 12, "feet"),
  21528. weight: math.unit(168, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/xerxes/front.svg",
  21532. extra: 282 / 260,
  21533. bottom: 0.045
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5 + 10 / 12, "feet"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(6 + 7 / 12, "feet"),
  21550. weight: math.unit(208, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/chaska/front.svg",
  21554. extra: 332 / 319,
  21555. bottom: 0.015
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(6 + 7 / 12, "feet"),
  21563. default: true
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(5 + 8 / 12, "feet"),
  21572. weight: math.unit(208, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/enuk/front.svg",
  21576. extra: 437 / 406,
  21577. bottom: 0.02
  21578. }
  21579. },
  21580. },
  21581. [
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(5 + 8 / 12, "feet"),
  21585. default: true
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(5 + 10 / 12, "feet"),
  21594. weight: math.unit(252, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/bruun/front.svg",
  21598. extra: 197 / 187,
  21599. bottom: 0.012
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(5 + 10 / 12, "feet"),
  21607. default: true
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(6 + 10 / 12, "feet"),
  21616. weight: math.unit(255, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/alexeev/front.svg",
  21620. extra: 213 / 200,
  21621. bottom: 0.05
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(6 + 10 / 12, "feet"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(2 + 8 / 12, "feet"),
  21638. weight: math.unit(22, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/evelyn/front.svg",
  21642. extra: 208 / 180
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(2 + 8 / 12, "feet"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(5 + 9 / 12, "feet"),
  21659. weight: math.unit(139, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/inca/front.svg",
  21663. extra: 294 / 291,
  21664. bottom: 0.03
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(5 + 9 / 12, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(6 + 3 / 12, "feet"),
  21681. weight: math.unit(185, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/mera/front.svg",
  21685. extra: 291 / 277,
  21686. bottom: 0.03
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(6 + 3 / 12, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(6 + 7 / 12, "feet"),
  21703. weight: math.unit(160, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/ceres/front.svg",
  21707. extra: 1023 / 950,
  21708. bottom: 0.027
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(6 + 7 / 12, "feet"),
  21713. weight: math.unit(160, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/ceres/back.svg",
  21717. extra: 1023 / 950
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(6 + 7 / 12, "feet"),
  21725. default: true
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(5 + 10 / 12, "feet"),
  21734. weight: math.unit(150, "lb"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/kris/front.svg",
  21738. extra: 885 / 803,
  21739. bottom: 0.03
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Normal",
  21746. height: math.unit(5 + 10 / 12, "feet"),
  21747. default: true
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21753. {
  21754. front: {
  21755. height: math.unit(7, "feet"),
  21756. weight: math.unit(120, "kg"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/taluthus/front.svg",
  21760. extra: 903 / 833,
  21761. bottom: 0.015
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(7, "feet"),
  21769. default: true
  21770. },
  21771. {
  21772. name: "Macro",
  21773. height: math.unit(300, "feet")
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21779. {
  21780. front: {
  21781. height: math.unit(5 + 9 / 12, "feet"),
  21782. weight: math.unit(145, "lb"),
  21783. name: "Front",
  21784. image: {
  21785. source: "./media/characters/dawn/front.svg",
  21786. extra: 2094 / 2016,
  21787. bottom: 0.025
  21788. }
  21789. },
  21790. back: {
  21791. height: math.unit(5 + 9 / 12, "feet"),
  21792. weight: math.unit(160, "lb"),
  21793. name: "Back",
  21794. image: {
  21795. source: "./media/characters/dawn/back.svg",
  21796. extra: 2112 / 2080,
  21797. bottom: 0.005
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(6 + 7 / 12, "feet"),
  21805. default: true
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21811. {
  21812. anthro: {
  21813. height: math.unit(8 + 3 / 12, "feet"),
  21814. weight: math.unit(450, "lb"),
  21815. name: "Anthro",
  21816. image: {
  21817. source: "./media/characters/arador/anthro.svg",
  21818. extra: 1835 / 1718,
  21819. bottom: 0.025
  21820. }
  21821. },
  21822. feral: {
  21823. height: math.unit(4, "feet"),
  21824. weight: math.unit(200, "lb"),
  21825. name: "Feral",
  21826. image: {
  21827. source: "./media/characters/arador/feral.svg",
  21828. extra: 1683 / 1514,
  21829. bottom: 0.07
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Normal",
  21836. height: math.unit(8 + 3 / 12, "feet")
  21837. },
  21838. {
  21839. name: "Macro",
  21840. height: math.unit(82.5, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(5 + 10 / 12, "feet"),
  21850. weight: math.unit(125, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/dharsi/front.svg",
  21854. extra: 716 / 630,
  21855. bottom: 0.035
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Nano",
  21862. height: math.unit(100, "nm")
  21863. },
  21864. {
  21865. name: "Micro",
  21866. height: math.unit(2, "inches")
  21867. },
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(5 + 10 / 12, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(1000, "feet")
  21876. },
  21877. {
  21878. name: "Megamacro",
  21879. height: math.unit(10, "miles")
  21880. },
  21881. {
  21882. name: "Gigamacro",
  21883. height: math.unit(3000, "miles")
  21884. },
  21885. {
  21886. name: "Teramacro",
  21887. height: math.unit(500000, "miles")
  21888. },
  21889. {
  21890. name: "Teramacro+",
  21891. height: math.unit(30, "galaxies")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/deathy/front.svg",
  21904. extra: 1552 / 1463,
  21905. bottom: 0.025
  21906. }
  21907. },
  21908. side: {
  21909. height: math.unit(6, "feet"),
  21910. weight: math.unit(150, "lb"),
  21911. name: "Side",
  21912. image: {
  21913. source: "./media/characters/deathy/side.svg",
  21914. extra: 1604 / 1455,
  21915. bottom: 0.025
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(6, "feet"),
  21920. weight: math.unit(150, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/deathy/back.svg",
  21924. extra: 1580 / 1463,
  21925. bottom: 0.005
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Micro",
  21932. height: math.unit(5, "millimeters")
  21933. },
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(6 + 5 / 12, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21943. {
  21944. front: {
  21945. height: math.unit(16, "feet"),
  21946. weight: math.unit(4000, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/juniper/front.svg",
  21950. bottom: 0.04
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(16, "feet"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(6, "feet"),
  21967. weight: math.unit(150, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/hipster/front.svg",
  21971. extra: 1312 / 1209,
  21972. bottom: 0.025
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(6, "feet"),
  21977. weight: math.unit(150, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/hipster/back.svg",
  21981. extra: 1281 / 1196,
  21982. bottom: 0.01
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Micro",
  21989. height: math.unit(1, "mm")
  21990. },
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(4, "inches"),
  21994. default: true
  21995. },
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(500, "feet")
  21999. },
  22000. {
  22001. name: "Megamacro",
  22002. height: math.unit(1000, "miles")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(6, "feet"),
  22011. weight: math.unit(150, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/tendirmuldr/front.svg",
  22015. extra: 1878 / 1772,
  22016. bottom: 0.015
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Megamacro",
  22023. height: math.unit(1500, "miles"),
  22024. default: true
  22025. },
  22026. ]
  22027. ))
  22028. characterMakers.push(() => makeCharacter(
  22029. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22030. {
  22031. front: {
  22032. height: math.unit(14, "feet"),
  22033. weight: math.unit(12000, "lb"),
  22034. name: "Front",
  22035. image: {
  22036. source: "./media/characters/mort/front.svg",
  22037. extra: 365 / 318,
  22038. bottom: 0.01
  22039. }
  22040. },
  22041. side: {
  22042. height: math.unit(14, "feet"),
  22043. weight: math.unit(12000, "lb"),
  22044. name: "Side",
  22045. image: {
  22046. source: "./media/characters/mort/side.svg",
  22047. extra: 365 / 318,
  22048. bottom: 0.052
  22049. },
  22050. default: true
  22051. },
  22052. back: {
  22053. height: math.unit(14, "feet"),
  22054. weight: math.unit(12000, "lb"),
  22055. name: "Back",
  22056. image: {
  22057. source: "./media/characters/mort/back.svg",
  22058. extra: 371 / 332,
  22059. bottom: 0.18
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(14, "feet"),
  22067. default: true
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22073. {
  22074. front: {
  22075. height: math.unit(8, "feet"),
  22076. weight: math.unit(1, "ton"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/lycoa/front.svg",
  22080. extra: 1836/1728,
  22081. bottom: 81/1917
  22082. }
  22083. },
  22084. back: {
  22085. height: math.unit(8, "feet"),
  22086. weight: math.unit(1, "ton"),
  22087. name: "Back",
  22088. image: {
  22089. source: "./media/characters/lycoa/back.svg",
  22090. extra: 1785/1720,
  22091. bottom: 91/1876
  22092. }
  22093. },
  22094. head: {
  22095. height: math.unit(1.6243, "feet"),
  22096. name: "Head",
  22097. image: {
  22098. source: "./media/characters/lycoa/head.svg",
  22099. extra: 1011/782,
  22100. bottom: 0/1011
  22101. }
  22102. },
  22103. tailmaw: {
  22104. height: math.unit(1.9, "feet"),
  22105. name: "Tailmaw",
  22106. image: {
  22107. source: "./media/characters/lycoa/tailmaw.svg"
  22108. }
  22109. },
  22110. tentacles: {
  22111. height: math.unit(2.1, "feet"),
  22112. name: "Tentacles",
  22113. image: {
  22114. source: "./media/characters/lycoa/tentacles.svg"
  22115. }
  22116. },
  22117. dick: {
  22118. height: math.unit(1.73, "feet"),
  22119. name: "Dick",
  22120. image: {
  22121. source: "./media/characters/lycoa/dick.svg"
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(8, "feet"),
  22129. default: true
  22130. },
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(30, "feet")
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22139. {
  22140. front: {
  22141. height: math.unit(4 + 2 / 12, "feet"),
  22142. weight: math.unit(70, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/naldara/front.svg",
  22146. extra: 1664/1387,
  22147. bottom: 81/1745
  22148. },
  22149. form: "anthro",
  22150. default: true
  22151. },
  22152. naga: {
  22153. height: math.unit(20, "feet"),
  22154. weight: math.unit(15000, "kg"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/naldara/naga.svg",
  22158. extra: 1590/1396,
  22159. bottom: 285/1875
  22160. },
  22161. form: "naga",
  22162. default: true
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(4 + 2 / 12, "feet"),
  22169. form: "anthro",
  22170. default: true
  22171. },
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(20, "feet"),
  22175. form: "naga",
  22176. default: true
  22177. },
  22178. ],
  22179. {
  22180. "anthro": {
  22181. name: "Anthro",
  22182. default: true
  22183. },
  22184. "naga": {
  22185. name: "Naga"
  22186. }
  22187. }
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(13 + 7 / 12, "feet"),
  22194. weight: math.unit(1500, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/briar/front.svg",
  22198. extra: 1223/1157,
  22199. bottom: 123/1346
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(13 + 7 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22213. {
  22214. side: {
  22215. height: math.unit(16, "feet"),
  22216. weight: math.unit(500, "lb"),
  22217. name: "Side",
  22218. image: {
  22219. source: "./media/characters/vanguard/side.svg",
  22220. extra: 1022/914,
  22221. bottom: 30/1052
  22222. }
  22223. },
  22224. sideAlt: {
  22225. height: math.unit(10, "feet"),
  22226. weight: math.unit(500, "lb"),
  22227. name: "Side (Alt)",
  22228. image: {
  22229. source: "./media/characters/vanguard/side-alt.svg",
  22230. extra: 502 / 425,
  22231. bottom: 0.087
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(17.71, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(7.5, "feet"),
  22248. weight: math.unit(2, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/artemis/work-safe-front.svg",
  22252. extra: 1192 / 1075,
  22253. bottom: 0.07
  22254. },
  22255. form: "work-safe",
  22256. default: true
  22257. },
  22258. frontNsfw: {
  22259. height: math.unit(7.5, "feet"),
  22260. weight: math.unit(2, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/artemis/calibrating-front.svg",
  22264. extra: 1192 / 1075,
  22265. bottom: 0.07
  22266. },
  22267. form: "calibrating",
  22268. default: true
  22269. },
  22270. frontNsfwer: {
  22271. height: math.unit(7.5, "feet"),
  22272. weight: math.unit(2, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/artemis/oversize-load-front.svg",
  22276. extra: 1192 / 1075,
  22277. bottom: 0.07
  22278. },
  22279. form: "oversize-load",
  22280. default: true
  22281. },
  22282. side: {
  22283. height: math.unit(7.5, "feet"),
  22284. weight: math.unit(2, "lb"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/artemis/work-safe-side.svg",
  22288. extra: 1192 / 1075,
  22289. bottom: 0.07
  22290. },
  22291. form: "work-safe"
  22292. },
  22293. sideNsfw: {
  22294. height: math.unit(7.5, "feet"),
  22295. weight: math.unit(2, "lb"),
  22296. name: "Side",
  22297. image: {
  22298. source: "./media/characters/artemis/calibrating-side.svg",
  22299. extra: 1192 / 1075,
  22300. bottom: 0.07
  22301. },
  22302. form: "calibrating"
  22303. },
  22304. sideNsfwer: {
  22305. height: math.unit(7.5, "feet"),
  22306. weight: math.unit(2, "lb"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/artemis/oversize-load-side.svg",
  22310. extra: 1192 / 1075,
  22311. bottom: 0.07
  22312. },
  22313. form: "oversize-load"
  22314. },
  22315. maw: {
  22316. height: math.unit(1.1, "feet"),
  22317. name: "Maw",
  22318. image: {
  22319. source: "./media/characters/artemis/maw.svg"
  22320. },
  22321. form: "work-safe"
  22322. },
  22323. stomach: {
  22324. height: math.unit(0.95, "feet"),
  22325. name: "Stomach",
  22326. image: {
  22327. source: "./media/characters/artemis/stomach.svg"
  22328. },
  22329. form: "work-safe"
  22330. },
  22331. dickCanine: {
  22332. height: math.unit(1, "feet"),
  22333. name: "Dick (Canine)",
  22334. image: {
  22335. source: "./media/characters/artemis/dick-canine.svg"
  22336. },
  22337. form: "calibrating"
  22338. },
  22339. dickEquine: {
  22340. height: math.unit(0.85, "feet"),
  22341. name: "Dick (Equine)",
  22342. image: {
  22343. source: "./media/characters/artemis/dick-equine.svg"
  22344. },
  22345. form: "calibrating"
  22346. },
  22347. dickExotic: {
  22348. height: math.unit(0.85, "feet"),
  22349. name: "Dick (Exotic)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-exotic.svg"
  22352. },
  22353. form: "calibrating"
  22354. },
  22355. dickCanineBigger: {
  22356. height: math.unit(1 * 1.33, "feet"),
  22357. name: "Dick (Canine)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-canine.svg"
  22360. },
  22361. form: "oversize-load"
  22362. },
  22363. dickEquineBigger: {
  22364. height: math.unit(0.85 * 1.33, "feet"),
  22365. name: "Dick (Equine)",
  22366. image: {
  22367. source: "./media/characters/artemis/dick-equine.svg"
  22368. },
  22369. form: "oversize-load"
  22370. },
  22371. dickExoticBigger: {
  22372. height: math.unit(0.85 * 1.33, "feet"),
  22373. name: "Dick (Exotic)",
  22374. image: {
  22375. source: "./media/characters/artemis/dick-exotic.svg"
  22376. },
  22377. form: "oversize-load"
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(7.5, "feet"),
  22384. form: "work-safe",
  22385. default: true
  22386. },
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(7.5, "feet"),
  22390. form: "calibrating",
  22391. default: true
  22392. },
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(7.5, "feet"),
  22396. form: "oversize-load",
  22397. default: true
  22398. },
  22399. {
  22400. name: "Enlarged",
  22401. height: math.unit(12, "feet"),
  22402. form: "work-safe",
  22403. },
  22404. {
  22405. name: "Enlarged",
  22406. height: math.unit(12, "feet"),
  22407. form: "calibrating",
  22408. },
  22409. {
  22410. name: "Enlarged",
  22411. height: math.unit(12, "feet"),
  22412. form: "oversize-load",
  22413. },
  22414. ],
  22415. {
  22416. "work-safe": {
  22417. name: "Work-Safe",
  22418. default: true
  22419. },
  22420. "calibrating": {
  22421. name: "Calibrating"
  22422. },
  22423. "oversize-load": {
  22424. name: "Oversize Load"
  22425. }
  22426. }
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(5 + 3 / 12, "feet"),
  22433. weight: math.unit(160, "lb"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/kira/front.svg",
  22437. extra: 906 / 786,
  22438. bottom: 0.01
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(5 + 3 / 12, "feet"),
  22443. weight: math.unit(160, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/kira/back.svg",
  22447. extra: 882 / 757,
  22448. bottom: 0.005
  22449. }
  22450. },
  22451. frontDressed: {
  22452. height: math.unit(5 + 3 / 12, "feet"),
  22453. weight: math.unit(160, "lb"),
  22454. name: "Front (Dressed)",
  22455. image: {
  22456. source: "./media/characters/kira/front-dressed.svg",
  22457. extra: 906 / 786,
  22458. bottom: 0.01
  22459. }
  22460. },
  22461. beans: {
  22462. height: math.unit(0.92, "feet"),
  22463. name: "Beans",
  22464. image: {
  22465. source: "./media/characters/kira/beans.svg"
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 3 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(5 + 4 / 12, "feet"),
  22482. weight: math.unit(145, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/scramble/front.svg",
  22486. extra: 763 / 727,
  22487. bottom: 0.05
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(5 + 4 / 12, "feet"),
  22492. weight: math.unit(145, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/scramble/back.svg",
  22496. extra: 826 / 737,
  22497. bottom: 0.002
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(5 + 4 / 12, "feet"),
  22505. default: true
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22511. {
  22512. side: {
  22513. height: math.unit(6 + 2 / 12, "feet"),
  22514. weight: math.unit(190, "lb"),
  22515. name: "Side",
  22516. image: {
  22517. source: "./media/characters/biscuit/side.svg",
  22518. extra: 858 / 791,
  22519. bottom: 0.044
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Normal",
  22526. height: math.unit(6 + 2 / 12, "feet"),
  22527. default: true
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(5 + 2 / 12, "feet"),
  22536. weight: math.unit(120, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/poffin/front.svg",
  22540. extra: 786 / 680,
  22541. bottom: 0.005
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(5 + 2 / 12, "feet"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(6 + 3 / 12, "feet"),
  22558. weight: math.unit(519, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/dhari/front.svg",
  22562. extra: 1048 / 946,
  22563. bottom: 0.015
  22564. }
  22565. },
  22566. back: {
  22567. height: math.unit(6 + 3 / 12, "feet"),
  22568. weight: math.unit(519, "lb"),
  22569. name: "Back",
  22570. image: {
  22571. source: "./media/characters/dhari/back.svg",
  22572. extra: 1048 / 931,
  22573. bottom: 0.005
  22574. }
  22575. },
  22576. frontDressed: {
  22577. height: math.unit(6 + 3 / 12, "feet"),
  22578. weight: math.unit(519, "lb"),
  22579. name: "Front (Dressed)",
  22580. image: {
  22581. source: "./media/characters/dhari/front-dressed.svg",
  22582. extra: 1713 / 1546,
  22583. bottom: 0.02
  22584. }
  22585. },
  22586. backDressed: {
  22587. height: math.unit(6 + 3 / 12, "feet"),
  22588. weight: math.unit(519, "lb"),
  22589. name: "Back (Dressed)",
  22590. image: {
  22591. source: "./media/characters/dhari/back-dressed.svg",
  22592. extra: 1699 / 1537,
  22593. bottom: 0.01
  22594. }
  22595. },
  22596. maw: {
  22597. height: math.unit(0.95, "feet"),
  22598. name: "Maw",
  22599. image: {
  22600. source: "./media/characters/dhari/maw.svg"
  22601. }
  22602. },
  22603. wereFront: {
  22604. height: math.unit(12 + 8 / 12, "feet"),
  22605. weight: math.unit(4000, "lb"),
  22606. name: "Front (Were)",
  22607. image: {
  22608. source: "./media/characters/dhari/were-front.svg",
  22609. extra: 1065 / 969,
  22610. bottom: 0.015
  22611. }
  22612. },
  22613. wereBack: {
  22614. height: math.unit(12 + 8 / 12, "feet"),
  22615. weight: math.unit(4000, "lb"),
  22616. name: "Back (Were)",
  22617. image: {
  22618. source: "./media/characters/dhari/were-back.svg",
  22619. extra: 1065 / 969,
  22620. bottom: 0.012
  22621. }
  22622. },
  22623. wereMaw: {
  22624. height: math.unit(0.625, "meters"),
  22625. name: "Maw (Were)",
  22626. image: {
  22627. source: "./media/characters/dhari/were-maw.svg"
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(6 + 3 / 12, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22641. {
  22642. anthro: {
  22643. height: math.unit(5 + 7 / 12, "feet"),
  22644. weight: math.unit(175, "lb"),
  22645. name: "Anthro",
  22646. image: {
  22647. source: "./media/characters/rena-dyne/anthro.svg",
  22648. extra: 1849 / 1785,
  22649. bottom: 0.005
  22650. }
  22651. },
  22652. taur: {
  22653. height: math.unit(15 + 6 / 12, "feet"),
  22654. weight: math.unit(8000, "lb"),
  22655. name: "Taur",
  22656. image: {
  22657. source: "./media/characters/rena-dyne/taur.svg",
  22658. extra: 2315 / 2234,
  22659. bottom: 0.033
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(5 + 7 / 12, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22673. {
  22674. front: {
  22675. height: math.unit(8, "feet"),
  22676. weight: math.unit(600, "lb"),
  22677. name: "Front",
  22678. image: {
  22679. source: "./media/characters/weremeep/front.svg",
  22680. extra: 970/849,
  22681. bottom: 7/977
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(8, "feet"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Lorg",
  22693. height: math.unit(12, "feet")
  22694. },
  22695. {
  22696. name: "Oh Lawd She Comin'",
  22697. height: math.unit(20, "feet")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22703. {
  22704. front: {
  22705. height: math.unit(4, "feet"),
  22706. weight: math.unit(90, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/reza/front.svg",
  22710. extra: 1183 / 1111,
  22711. bottom: 0.017
  22712. }
  22713. },
  22714. back: {
  22715. height: math.unit(4, "feet"),
  22716. weight: math.unit(90, "lb"),
  22717. name: "Back",
  22718. image: {
  22719. source: "./media/characters/reza/back.svg",
  22720. extra: 1183 / 1111,
  22721. bottom: 0.01
  22722. }
  22723. },
  22724. drake: {
  22725. height: math.unit(30, "feet"),
  22726. weight: math.unit(246960, "lb"),
  22727. name: "Drake",
  22728. image: {
  22729. source: "./media/characters/reza/drake.svg",
  22730. extra: 2350 / 2024,
  22731. bottom: 60.7 / 2403
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(4, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22745. {
  22746. side: {
  22747. height: math.unit(15, "feet"),
  22748. weight: math.unit(14, "tons"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/athea/side.svg",
  22752. extra: 960 / 540,
  22753. bottom: 0.003
  22754. }
  22755. },
  22756. sitting: {
  22757. height: math.unit(6 * 2.85, "feet"),
  22758. weight: math.unit(14, "tons"),
  22759. name: "Sitting",
  22760. image: {
  22761. source: "./media/characters/athea/sitting.svg",
  22762. extra: 621 / 581,
  22763. bottom: 0.075
  22764. }
  22765. },
  22766. maw: {
  22767. height: math.unit(7.59498031496063, "feet"),
  22768. name: "Maw",
  22769. image: {
  22770. source: "./media/characters/athea/maw.svg"
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Lap Cat",
  22777. height: math.unit(2.5, "feet")
  22778. },
  22779. {
  22780. name: "Minimacro",
  22781. height: math.unit(15, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(120, "feet")
  22787. },
  22788. {
  22789. name: "Macro+",
  22790. height: math.unit(640, "feet")
  22791. },
  22792. {
  22793. name: "Colossus",
  22794. height: math.unit(2.2, "miles")
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(8 + 8 / 12, "feet"),
  22803. weight: math.unit(130, "kg"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/seroko/front.svg",
  22807. extra: 1385 / 1280,
  22808. bottom: 0.025
  22809. }
  22810. },
  22811. back: {
  22812. height: math.unit(8 + 8 / 12, "feet"),
  22813. weight: math.unit(130, "kg"),
  22814. name: "Back",
  22815. image: {
  22816. source: "./media/characters/seroko/back.svg",
  22817. extra: 1369 / 1238,
  22818. bottom: 0.018
  22819. }
  22820. },
  22821. frontDressed: {
  22822. height: math.unit(8 + 8 / 12, "feet"),
  22823. weight: math.unit(130, "kg"),
  22824. name: "Front (Dressed)",
  22825. image: {
  22826. source: "./media/characters/seroko/front-dressed.svg",
  22827. extra: 1366 / 1275,
  22828. bottom: 0.03
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(8 + 8 / 12, "feet"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(5.5, "feet"),
  22845. weight: math.unit(160, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/quatzi/front.svg",
  22849. extra: 2346 / 2242,
  22850. bottom: 0.015
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(5.5, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Big",
  22862. height: math.unit(7.7, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(5 + 11 / 12, "feet"),
  22871. weight: math.unit(180, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/sen/front.svg",
  22875. extra: 1321 / 1254,
  22876. bottom: 0.015
  22877. }
  22878. },
  22879. side: {
  22880. height: math.unit(5 + 11 / 12, "feet"),
  22881. weight: math.unit(180, "lb"),
  22882. name: "Side",
  22883. image: {
  22884. source: "./media/characters/sen/side.svg",
  22885. extra: 1321 / 1254,
  22886. bottom: 0.007
  22887. }
  22888. },
  22889. back: {
  22890. height: math.unit(5 + 11 / 12, "feet"),
  22891. weight: math.unit(180, "lb"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/sen/back.svg",
  22895. extra: 1321 / 1254
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(5 + 11 / 12, "feet"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(166.6, "cm"),
  22912. weight: math.unit(66.6, "kg"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/fruity/front.svg",
  22916. extra: 1510 / 1386,
  22917. bottom: 0.04
  22918. }
  22919. },
  22920. back: {
  22921. height: math.unit(166.6, "cm"),
  22922. weight: math.unit(66.6, "lb"),
  22923. name: "Back",
  22924. image: {
  22925. source: "./media/characters/fruity/back.svg",
  22926. extra: 1563 / 1435,
  22927. bottom: 0.005
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(166.6, "cm"),
  22935. default: true
  22936. },
  22937. {
  22938. name: "Demonic",
  22939. height: math.unit(166.6, "feet")
  22940. },
  22941. ]
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22945. {
  22946. side: {
  22947. height: math.unit(10, "feet"),
  22948. weight: math.unit(500, "lb"),
  22949. name: "Side",
  22950. image: {
  22951. source: "./media/characters/zost/side.svg",
  22952. extra: 2870/2533,
  22953. bottom: 252/3122
  22954. }
  22955. },
  22956. mawFront: {
  22957. height: math.unit(1.08, "meters"),
  22958. name: "Maw (Front)",
  22959. image: {
  22960. source: "./media/characters/zost/maw-front.svg"
  22961. }
  22962. },
  22963. mawSide: {
  22964. height: math.unit(2.66, "feet"),
  22965. name: "Maw (Side)",
  22966. image: {
  22967. source: "./media/characters/zost/maw-side.svg"
  22968. }
  22969. },
  22970. wingspan: {
  22971. height: math.unit(7.4, "feet"),
  22972. name: "Wingspan",
  22973. image: {
  22974. source: "./media/characters/zost/wingspan.svg"
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(10, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(5 + 4 / 12, "feet"),
  22991. weight: math.unit(120, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/luci/front.svg",
  22995. extra: 1985 / 1884,
  22996. bottom: 0.04
  22997. }
  22998. },
  22999. back: {
  23000. height: math.unit(5 + 4 / 12, "feet"),
  23001. weight: math.unit(120, "lb"),
  23002. name: "Back",
  23003. image: {
  23004. source: "./media/characters/luci/back.svg",
  23005. extra: 1892 / 1791,
  23006. bottom: 0.002
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(5 + 4 / 12, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(1500, "feet"),
  23023. weight: math.unit(3.8e6, "tons"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/2th/front.svg",
  23027. extra: 3489 / 3350,
  23028. bottom: 0.1
  23029. }
  23030. },
  23031. foot: {
  23032. height: math.unit(461, "feet"),
  23033. name: "Foot",
  23034. image: {
  23035. source: "./media/characters/2th/foot.svg"
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "\"Micro\"",
  23042. height: math.unit(15 + 7 / 12, "feet")
  23043. },
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(1500, "feet"),
  23047. default: true
  23048. },
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(5000, "feet")
  23052. },
  23053. {
  23054. name: "Megamacro",
  23055. height: math.unit(15, "miles")
  23056. },
  23057. {
  23058. name: "Gigamacro",
  23059. height: math.unit(4000, "miles")
  23060. },
  23061. {
  23062. name: "Galactic",
  23063. height: math.unit(50, "AU")
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(5 + 6 / 12, "feet"),
  23072. weight: math.unit(220, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/amethyst/front.svg",
  23076. extra: 2078 / 2040,
  23077. bottom: 0.045
  23078. }
  23079. },
  23080. back: {
  23081. height: math.unit(5 + 6 / 12, "feet"),
  23082. weight: math.unit(220, "lb"),
  23083. name: "Back",
  23084. image: {
  23085. source: "./media/characters/amethyst/back.svg",
  23086. extra: 2021 / 1989,
  23087. bottom: 0.02
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(5 + 6 / 12, "feet"),
  23095. default: true
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(4 + 11 / 12, "feet"),
  23104. weight: math.unit(120, "lb"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/yumi-akiyama/front.svg",
  23108. extra: 1327 / 1235,
  23109. bottom: 0.02
  23110. }
  23111. },
  23112. back: {
  23113. height: math.unit(4 + 11 / 12, "feet"),
  23114. weight: math.unit(120, "lb"),
  23115. name: "Back",
  23116. image: {
  23117. source: "./media/characters/yumi-akiyama/back.svg",
  23118. extra: 1287 / 1245,
  23119. bottom: 0.002
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Galactic",
  23126. height: math.unit(50, "galaxies"),
  23127. default: true
  23128. },
  23129. {
  23130. name: "Universal",
  23131. height: math.unit(100, "universes")
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23137. {
  23138. front: {
  23139. height: math.unit(8, "feet"),
  23140. weight: math.unit(500, "lb"),
  23141. name: "Front",
  23142. image: {
  23143. source: "./media/characters/rifter-yrmori/front.svg",
  23144. extra: 1180 / 1125,
  23145. bottom: 0.02
  23146. }
  23147. },
  23148. back: {
  23149. height: math.unit(8, "feet"),
  23150. weight: math.unit(500, "lb"),
  23151. name: "Back",
  23152. image: {
  23153. source: "./media/characters/rifter-yrmori/back.svg",
  23154. extra: 1190 / 1145,
  23155. bottom: 0.001
  23156. }
  23157. },
  23158. wings: {
  23159. height: math.unit(7.75, "feet"),
  23160. weight: math.unit(500, "lb"),
  23161. name: "Wings",
  23162. image: {
  23163. source: "./media/characters/rifter-yrmori/wings.svg",
  23164. extra: 1357 / 1285
  23165. }
  23166. },
  23167. maw: {
  23168. height: math.unit(0.8, "feet"),
  23169. name: "Maw",
  23170. image: {
  23171. source: "./media/characters/rifter-yrmori/maw.svg"
  23172. }
  23173. },
  23174. mawfront: {
  23175. height: math.unit(1.45, "feet"),
  23176. name: "Maw (Front)",
  23177. image: {
  23178. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(8, "feet"),
  23186. default: true
  23187. },
  23188. {
  23189. name: "Macro",
  23190. height: math.unit(42, "meters")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23196. {
  23197. were: {
  23198. height: math.unit(25 + 6 / 12, "feet"),
  23199. weight: math.unit(10000, "lb"),
  23200. name: "Were",
  23201. image: {
  23202. source: "./media/characters/tahajin/were.svg",
  23203. extra: 801 / 770,
  23204. bottom: 0.042
  23205. }
  23206. },
  23207. aquatic: {
  23208. height: math.unit(6 + 4 / 12, "feet"),
  23209. weight: math.unit(160, "lb"),
  23210. name: "Aquatic",
  23211. image: {
  23212. source: "./media/characters/tahajin/aquatic.svg",
  23213. extra: 572 / 542,
  23214. bottom: 0.04
  23215. }
  23216. },
  23217. chow: {
  23218. height: math.unit(8 + 11 / 12, "feet"),
  23219. weight: math.unit(450, "lb"),
  23220. name: "Chow",
  23221. image: {
  23222. source: "./media/characters/tahajin/chow.svg",
  23223. extra: 660 / 640,
  23224. bottom: 0.015
  23225. }
  23226. },
  23227. demiNaga: {
  23228. height: math.unit(6 + 8 / 12, "feet"),
  23229. weight: math.unit(300, "lb"),
  23230. name: "Demi Naga",
  23231. image: {
  23232. source: "./media/characters/tahajin/demi-naga.svg",
  23233. extra: 643 / 615,
  23234. bottom: 0.1
  23235. }
  23236. },
  23237. data: {
  23238. height: math.unit(5, "inches"),
  23239. weight: math.unit(0.1, "lb"),
  23240. name: "Data",
  23241. image: {
  23242. source: "./media/characters/tahajin/data.svg"
  23243. }
  23244. },
  23245. fluu: {
  23246. height: math.unit(5 + 7 / 12, "feet"),
  23247. weight: math.unit(140, "lb"),
  23248. name: "Fluu",
  23249. image: {
  23250. source: "./media/characters/tahajin/fluu.svg",
  23251. extra: 628 / 592,
  23252. bottom: 0.02
  23253. }
  23254. },
  23255. starWarrior: {
  23256. height: math.unit(4 + 5 / 12, "feet"),
  23257. weight: math.unit(50, "lb"),
  23258. name: "Star Warrior",
  23259. image: {
  23260. source: "./media/characters/tahajin/star-warrior.svg"
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(25 + 6 / 12, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(8, "feet"),
  23277. weight: math.unit(350, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/gabira/front.svg",
  23281. extra: 1261/1154,
  23282. bottom: 51/1312
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(8, "feet"),
  23287. weight: math.unit(350, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/gabira/back.svg",
  23291. extra: 1265/1163,
  23292. bottom: 46/1311
  23293. }
  23294. },
  23295. head: {
  23296. height: math.unit(2.85, "feet"),
  23297. name: "Head",
  23298. image: {
  23299. source: "./media/characters/gabira/head.svg"
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(8, "feet"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(5 + 3 / 12, "feet"),
  23316. weight: math.unit(137, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/sasha-katraine/front.svg",
  23320. extra: 1745/1694,
  23321. bottom: 37/1782
  23322. }
  23323. },
  23324. back: {
  23325. height: math.unit(5 + 3 / 12, "feet"),
  23326. weight: math.unit(137, "lb"),
  23327. name: "Back",
  23328. image: {
  23329. source: "./media/characters/sasha-katraine/back.svg",
  23330. extra: 1776/1699,
  23331. bottom: 26/1802
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Micro",
  23338. height: math.unit(5, "inches")
  23339. },
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(5 + 3 / 12, "feet"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23349. {
  23350. side: {
  23351. height: math.unit(4, "inches"),
  23352. weight: math.unit(200, "grams"),
  23353. name: "Side",
  23354. image: {
  23355. source: "./media/characters/der/side.svg",
  23356. extra: 719 / 400,
  23357. bottom: 30.6 / 749.9187
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Micro",
  23364. height: math.unit(4, "inches"),
  23365. default: true
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23371. {
  23372. side: {
  23373. height: math.unit(30, "meters"),
  23374. weight: math.unit(700, "tonnes"),
  23375. name: "Side",
  23376. image: {
  23377. source: "./media/characters/fixerdragon/side.svg",
  23378. extra: (1293.0514 - 116.03) / 1106.86,
  23379. bottom: 116.03 / 1293.0514
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Planck",
  23386. height: math.unit(1.6e-35, "meters")
  23387. },
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(0.4, "meters")
  23391. },
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(30, "meters"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Megamacro",
  23399. height: math.unit(1.2, "megameters")
  23400. },
  23401. {
  23402. name: "Teramacro",
  23403. height: math.unit(130, "terameters")
  23404. },
  23405. {
  23406. name: "Yottamacro",
  23407. height: math.unit(6200, "yottameters")
  23408. },
  23409. ]
  23410. ));
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23413. {
  23414. front: {
  23415. height: math.unit(8, "feet"),
  23416. weight: math.unit(250, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/kite/front.svg",
  23420. extra: 2796 / 2659,
  23421. bottom: 0.002
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Normal",
  23428. height: math.unit(8, "feet"),
  23429. default: true
  23430. },
  23431. {
  23432. name: "Macro",
  23433. height: math.unit(360, "feet")
  23434. },
  23435. {
  23436. name: "Megamacro",
  23437. height: math.unit(1500, "feet")
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(5 + 11/12, "feet"),
  23446. weight: math.unit(170, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/poojawa-vynar/front.svg",
  23450. extra: 1735/1585,
  23451. bottom: 96/1831
  23452. }
  23453. },
  23454. back: {
  23455. height: math.unit(5 + 11/12, "feet"),
  23456. weight: math.unit(170, "lb"),
  23457. name: "Back",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/back.svg",
  23460. extra: 1749/1607,
  23461. bottom: 28/1777
  23462. }
  23463. },
  23464. male: {
  23465. height: math.unit(5 + 11/12, "feet"),
  23466. weight: math.unit(170, "lb"),
  23467. name: "Male",
  23468. image: {
  23469. source: "./media/characters/poojawa-vynar/male.svg",
  23470. extra: 1855/1713,
  23471. bottom: 63/1918
  23472. }
  23473. },
  23474. taur: {
  23475. height: math.unit(5 + 11/12, "feet"),
  23476. weight: math.unit(170, "lb"),
  23477. name: "Taur",
  23478. image: {
  23479. source: "./media/characters/poojawa-vynar/taur.svg",
  23480. extra: 1151/1059,
  23481. bottom: 356/1507
  23482. }
  23483. },
  23484. frontDressed: {
  23485. height: math.unit(5 + 11/12, "feet"),
  23486. weight: math.unit(170, "lb"),
  23487. name: "Front (Dressed)",
  23488. image: {
  23489. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23490. extra: 1735/1585,
  23491. bottom: 96/1831
  23492. }
  23493. },
  23494. backDressed: {
  23495. height: math.unit(5 + 11/12, "feet"),
  23496. weight: math.unit(170, "lb"),
  23497. name: "Back (Dressed)",
  23498. image: {
  23499. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23500. extra: 1749/1607,
  23501. bottom: 28/1777
  23502. }
  23503. },
  23504. maleDressed: {
  23505. height: math.unit(5 + 11/12, "feet"),
  23506. weight: math.unit(170, "lb"),
  23507. name: "Male (Dressed)",
  23508. image: {
  23509. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23510. extra: 1855/1713,
  23511. bottom: 63/1918
  23512. }
  23513. },
  23514. taurDressed: {
  23515. height: math.unit(5 + 11/12, "feet"),
  23516. weight: math.unit(170, "lb"),
  23517. name: "Taur (Dressed)",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23520. extra: 1151/1059,
  23521. bottom: 356/1507
  23522. }
  23523. },
  23524. maw: {
  23525. height: math.unit(1.46, "feet"),
  23526. name: "Maw",
  23527. image: {
  23528. source: "./media/characters/poojawa-vynar/maw.svg"
  23529. }
  23530. },
  23531. head: {
  23532. height: math.unit(2.34, "feet"),
  23533. name: "Head",
  23534. image: {
  23535. source: "./media/characters/poojawa-vynar/head.svg"
  23536. }
  23537. },
  23538. paw: {
  23539. height: math.unit(1.61, "feet"),
  23540. name: "Paw",
  23541. image: {
  23542. source: "./media/characters/poojawa-vynar/paw.svg"
  23543. }
  23544. },
  23545. pawToering: {
  23546. height: math.unit(1.72, "feet"),
  23547. name: "Paw (Toering)",
  23548. image: {
  23549. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23550. }
  23551. },
  23552. toering: {
  23553. height: math.unit(2.9, "inches"),
  23554. name: "Toering",
  23555. image: {
  23556. source: "./media/characters/poojawa-vynar/toering.svg"
  23557. }
  23558. },
  23559. shaft: {
  23560. height: math.unit(0.625, "feet"),
  23561. name: "Shaft",
  23562. image: {
  23563. source: "./media/characters/poojawa-vynar/shaft.svg"
  23564. }
  23565. },
  23566. spade: {
  23567. height: math.unit(0.42, "feet"),
  23568. name: "Spade",
  23569. image: {
  23570. source: "./media/characters/poojawa-vynar/spade.svg"
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Shortstack",
  23577. height: math.unit(4, "feet")
  23578. },
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(5 + 11 / 12, "feet"),
  23582. default: true
  23583. },
  23584. {
  23585. name: "Tauric",
  23586. height: math.unit(4, "meters")
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23592. {
  23593. front: {
  23594. height: math.unit(293, "meters"),
  23595. weight: math.unit(70400, "tons"),
  23596. name: "Front",
  23597. image: {
  23598. source: "./media/characters/violette/front.svg",
  23599. extra: 1227 / 1180,
  23600. bottom: 0.005
  23601. }
  23602. },
  23603. back: {
  23604. height: math.unit(293, "meters"),
  23605. weight: math.unit(70400, "tons"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/violette/back.svg",
  23609. extra: 1227 / 1180,
  23610. bottom: 0.005
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Macro",
  23617. height: math.unit(293, "meters"),
  23618. default: true
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23624. {
  23625. front: {
  23626. height: math.unit(1050, "feet"),
  23627. weight: math.unit(200000, "tons"),
  23628. name: "Front",
  23629. image: {
  23630. source: "./media/characters/alessandra/front.svg",
  23631. extra: 960 / 912,
  23632. bottom: 0.06
  23633. }
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Macro",
  23639. height: math.unit(1050, "feet")
  23640. },
  23641. {
  23642. name: "Macro+",
  23643. height: math.unit(900, "meters"),
  23644. default: true
  23645. },
  23646. ]
  23647. ))
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(5, "feet"),
  23653. weight: math.unit(187, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/person/front.svg",
  23657. extra: 3087 / 2945,
  23658. bottom: 91 / 3181
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Micro",
  23665. height: math.unit(3, "inches")
  23666. },
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(5, "feet"),
  23670. default: true
  23671. },
  23672. {
  23673. name: "Macro",
  23674. height: math.unit(90, "feet")
  23675. },
  23676. {
  23677. name: "Max Size",
  23678. height: math.unit(280, "feet")
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23684. {
  23685. front: {
  23686. height: math.unit(4.5, "meters"),
  23687. weight: math.unit(3200, "lb"),
  23688. name: "Front",
  23689. image: {
  23690. source: "./media/characters/ty/front.svg",
  23691. extra: 1038 / 960,
  23692. bottom: 31.156 / 1068
  23693. }
  23694. },
  23695. back: {
  23696. height: math.unit(4.5, "meters"),
  23697. weight: math.unit(3200, "lb"),
  23698. name: "Back",
  23699. image: {
  23700. source: "./media/characters/ty/back.svg",
  23701. extra: 1044 / 966,
  23702. bottom: 7.48 / 1049
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(4.5, "meters"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(5 + 4 / 12, "feet"),
  23719. weight: math.unit(115, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/rocky/front.svg",
  23723. extra: 1012 / 975,
  23724. bottom: 54 / 1066
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(5 + 4 / 12, "feet"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23738. {
  23739. upright: {
  23740. height: math.unit(6, "meters"),
  23741. weight: math.unit(4000, "kg"),
  23742. name: "Upright",
  23743. image: {
  23744. source: "./media/characters/ruin/upright.svg",
  23745. extra: 668 / 661,
  23746. bottom: 42 / 799.8396
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(6, "meters"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(5, "feet"),
  23763. weight: math.unit(106, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/robin/front.svg",
  23767. extra: 862 / 799,
  23768. bottom: 42.4 / 914.8856
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(5, "feet"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23782. {
  23783. side: {
  23784. height: math.unit(3, "feet"),
  23785. weight: math.unit(225, "lb"),
  23786. name: "Side",
  23787. image: {
  23788. source: "./media/characters/saian/side.svg",
  23789. extra: 566 / 356,
  23790. bottom: 79.7 / 643
  23791. }
  23792. },
  23793. maw: {
  23794. height: math.unit(2.85, "feet"),
  23795. name: "Maw",
  23796. image: {
  23797. source: "./media/characters/saian/maw.svg"
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(3, "feet"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23811. {
  23812. side: {
  23813. height: math.unit(8, "feet"),
  23814. weight: math.unit(300, "lb"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/equus-silvermane/side.svg",
  23818. extra: 2176 / 2050,
  23819. bottom: 65.7 / 2245
  23820. }
  23821. },
  23822. front: {
  23823. height: math.unit(8, "feet"),
  23824. weight: math.unit(300, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/equus-silvermane/front.svg",
  23828. extra: 4633 / 4400,
  23829. bottom: 71.3 / 4706.915
  23830. }
  23831. },
  23832. sideStepping: {
  23833. height: math.unit(8, "feet"),
  23834. weight: math.unit(300, "lb"),
  23835. name: "Side (Stepping)",
  23836. image: {
  23837. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23838. extra: 1968 / 1860,
  23839. bottom: 16.4 / 1989
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(8, "feet")
  23847. },
  23848. {
  23849. name: "Minimacro",
  23850. height: math.unit(75, "feet"),
  23851. default: true
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(150, "feet")
  23856. },
  23857. {
  23858. name: "Macro+",
  23859. height: math.unit(1000, "feet")
  23860. },
  23861. {
  23862. name: "Megamacro",
  23863. height: math.unit(1, "mile")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23869. {
  23870. side: {
  23871. height: math.unit(20, "feet"),
  23872. weight: math.unit(30000, "kg"),
  23873. name: "Side",
  23874. image: {
  23875. source: "./media/characters/windar/side.svg",
  23876. extra: 1491 / 1248,
  23877. bottom: 82.56 / 1568
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(20, "feet"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23891. {
  23892. side: {
  23893. height: math.unit(15.66, "feet"),
  23894. weight: math.unit(150, "lb"),
  23895. name: "Side",
  23896. image: {
  23897. source: "./media/characters/melody/side.svg",
  23898. extra: 1097 / 944,
  23899. bottom: 11.8 / 1109
  23900. }
  23901. },
  23902. sideOutfit: {
  23903. height: math.unit(15.66, "feet"),
  23904. weight: math.unit(150, "lb"),
  23905. name: "Side (Outfit)",
  23906. image: {
  23907. source: "./media/characters/melody/side-outfit.svg",
  23908. extra: 1097 / 944,
  23909. bottom: 11.8 / 1109
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(15.66, "feet"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23923. {
  23924. armoredFront: {
  23925. height: math.unit(8, "feet"),
  23926. weight: math.unit(325, "lb"),
  23927. name: "Front",
  23928. image: {
  23929. source: "./media/characters/windera/armored-front.svg",
  23930. extra: 1830/1598,
  23931. bottom: 151/1981
  23932. },
  23933. form: "armored",
  23934. default: true
  23935. },
  23936. macroFront: {
  23937. height: math.unit(70, "feet"),
  23938. weight: math.unit(315453, "lb"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/windera/macro-front.svg",
  23942. extra: 963/883,
  23943. bottom: 23/986
  23944. },
  23945. form: "macro",
  23946. default: true
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(8, "feet"),
  23953. default: true,
  23954. form: "armored"
  23955. },
  23956. {
  23957. name: "Normal",
  23958. height: math.unit(70, "feet"),
  23959. default: true,
  23960. form: "macro"
  23961. },
  23962. ],
  23963. {
  23964. "armored": {
  23965. name: "Armored",
  23966. default: true
  23967. },
  23968. "macro": {
  23969. name: "Macro",
  23970. },
  23971. }
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23975. {
  23976. front: {
  23977. height: math.unit(28.75, "feet"),
  23978. weight: math.unit(2000, "kg"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/sonear/front.svg",
  23982. extra: 1041.1 / 964.9,
  23983. bottom: 53.7 / 1096.6
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(28.75, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23997. {
  23998. side: {
  23999. height: math.unit(25.5, "feet"),
  24000. weight: math.unit(23000, "kg"),
  24001. name: "Side",
  24002. image: {
  24003. source: "./media/characters/kanara/side.svg"
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(25.5, "feet"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24017. {
  24018. side: {
  24019. height: math.unit(10, "feet"),
  24020. weight: math.unit(1000, "kg"),
  24021. name: "Side",
  24022. image: {
  24023. source: "./media/characters/ereus/side.svg",
  24024. extra: 1157 / 959,
  24025. bottom: 153 / 1312.5
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(10, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24039. {
  24040. side: {
  24041. height: math.unit(4.5, "feet"),
  24042. weight: math.unit(500, "lb"),
  24043. name: "Side",
  24044. image: {
  24045. source: "./media/characters/e-ter/side.svg",
  24046. extra: 1550 / 1248,
  24047. bottom: 146 / 1694
  24048. }
  24049. },
  24050. },
  24051. [
  24052. {
  24053. name: "Normal",
  24054. height: math.unit(4.5, "feet"),
  24055. default: true
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24061. {
  24062. side: {
  24063. height: math.unit(9.7, "feet"),
  24064. weight: math.unit(4000, "kg"),
  24065. name: "Side",
  24066. image: {
  24067. source: "./media/characters/yamie/side.svg"
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Normal",
  24074. height: math.unit(9.7, "feet"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(50, "feet"),
  24084. weight: math.unit(50000, "kg"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/anders/front.svg",
  24088. extra: 570 / 539,
  24089. bottom: 14.7 / 586.7
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Large",
  24096. height: math.unit(50, "feet")
  24097. },
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(2000, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Megamacro",
  24105. height: math.unit(12, "miles")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(7 + 2 / 12, "feet"),
  24114. weight: math.unit(300, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/reban/front.svg",
  24118. extra: 1287/1212,
  24119. bottom: 148/1435
  24120. }
  24121. },
  24122. head: {
  24123. height: math.unit(1.95, "feet"),
  24124. name: "Head",
  24125. image: {
  24126. source: "./media/characters/reban/head.svg"
  24127. }
  24128. },
  24129. maw: {
  24130. height: math.unit(0.95, "feet"),
  24131. name: "Maw",
  24132. image: {
  24133. source: "./media/characters/reban/maw.svg"
  24134. }
  24135. },
  24136. foot: {
  24137. height: math.unit(1.65, "feet"),
  24138. name: "Foot",
  24139. image: {
  24140. source: "./media/characters/reban/foot.svg"
  24141. }
  24142. },
  24143. dick: {
  24144. height: math.unit(7 / 5, "feet"),
  24145. name: "Dick",
  24146. image: {
  24147. source: "./media/characters/reban/dick.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Natural Height",
  24154. height: math.unit(7 + 2 / 12, "feet")
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(500, "feet"),
  24159. default: true
  24160. },
  24161. {
  24162. name: "Canon Height",
  24163. height: math.unit(50, "AU")
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(6, "feet"),
  24172. weight: math.unit(150, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/terrance-keayes/front.svg",
  24176. extra: 1.005,
  24177. bottom: 151 / 1615
  24178. }
  24179. },
  24180. side: {
  24181. height: math.unit(6, "feet"),
  24182. weight: math.unit(150, "lb"),
  24183. name: "Side",
  24184. image: {
  24185. source: "./media/characters/terrance-keayes/side.svg",
  24186. extra: 1.005,
  24187. bottom: 129.4 / 1544
  24188. }
  24189. },
  24190. back: {
  24191. height: math.unit(6, "feet"),
  24192. weight: math.unit(150, "lb"),
  24193. name: "Back",
  24194. image: {
  24195. source: "./media/characters/terrance-keayes/back.svg",
  24196. extra: 1.005,
  24197. bottom: 58.4 / 1557.3
  24198. }
  24199. },
  24200. dick: {
  24201. height: math.unit(6 * 0.208, "feet"),
  24202. name: "Dick",
  24203. image: {
  24204. source: "./media/characters/terrance-keayes/dick.svg"
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Canon Height",
  24211. height: math.unit(35, "miles"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(6, "feet"),
  24221. weight: math.unit(150, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/ofelia/front.svg",
  24225. extra: 1130/1117,
  24226. bottom: 91/1221
  24227. }
  24228. },
  24229. back: {
  24230. height: math.unit(6, "feet"),
  24231. weight: math.unit(150, "lb"),
  24232. name: "Back",
  24233. image: {
  24234. source: "./media/characters/ofelia/back.svg",
  24235. extra: 1172/1159,
  24236. bottom: 28/1200
  24237. }
  24238. },
  24239. maw: {
  24240. height: math.unit(1, "feet"),
  24241. name: "Maw",
  24242. image: {
  24243. source: "./media/characters/ofelia/maw.svg"
  24244. }
  24245. },
  24246. foot: {
  24247. height: math.unit(1.949, "feet"),
  24248. name: "Foot",
  24249. image: {
  24250. source: "./media/characters/ofelia/foot.svg"
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Canon Height",
  24257. height: math.unit(2000, "miles"),
  24258. default: true
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(6, "feet"),
  24267. weight: math.unit(150, "lb"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/samuel/front.svg",
  24271. extra: 265 / 258,
  24272. bottom: 2 / 266.1566
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Macro",
  24279. height: math.unit(100, "feet"),
  24280. default: true
  24281. },
  24282. {
  24283. name: "Full Size",
  24284. height: math.unit(1000, "miles")
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(6, "feet"),
  24293. weight: math.unit(300, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/beishir-kiel/front.svg",
  24297. extra: 569 / 547,
  24298. bottom: 41.9 / 609
  24299. }
  24300. },
  24301. maw: {
  24302. height: math.unit(6 * 0.202, "feet"),
  24303. name: "Maw",
  24304. image: {
  24305. source: "./media/characters/beishir-kiel/maw.svg"
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Macro",
  24312. height: math.unit(300, "feet"),
  24313. default: true
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24319. {
  24320. front: {
  24321. height: math.unit(5 + 7/12, "feet"),
  24322. weight: math.unit(120, "lb"),
  24323. name: "Front",
  24324. image: {
  24325. source: "./media/characters/logan-grey/front.svg",
  24326. extra: 1836/1738,
  24327. bottom: 108/1944
  24328. }
  24329. },
  24330. back: {
  24331. height: math.unit(5 + 7/12, "feet"),
  24332. weight: math.unit(120, "lb"),
  24333. name: "Back",
  24334. image: {
  24335. source: "./media/characters/logan-grey/back.svg",
  24336. extra: 1880/1794,
  24337. bottom: 24/1904
  24338. }
  24339. },
  24340. frontSfw: {
  24341. height: math.unit(5 + 7/12, "feet"),
  24342. weight: math.unit(120, "lb"),
  24343. name: "Front (SFW)",
  24344. image: {
  24345. source: "./media/characters/logan-grey/front-sfw.svg",
  24346. extra: 1836/1738,
  24347. bottom: 108/1944
  24348. }
  24349. },
  24350. backSfw: {
  24351. height: math.unit(5 + 7/12, "feet"),
  24352. weight: math.unit(120, "lb"),
  24353. name: "Back (SFW)",
  24354. image: {
  24355. source: "./media/characters/logan-grey/back-sfw.svg",
  24356. extra: 1880/1794,
  24357. bottom: 24/1904
  24358. }
  24359. },
  24360. hands: {
  24361. height: math.unit(0.84, "feet"),
  24362. name: "Hands",
  24363. image: {
  24364. source: "./media/characters/logan-grey/hands.svg"
  24365. }
  24366. },
  24367. paws: {
  24368. height: math.unit(0.72, "feet"),
  24369. name: "Paws",
  24370. image: {
  24371. source: "./media/characters/logan-grey/paws.svg"
  24372. }
  24373. },
  24374. cock: {
  24375. height: math.unit(1.45, "feet"),
  24376. name: "Cock",
  24377. image: {
  24378. source: "./media/characters/logan-grey/cock.svg"
  24379. }
  24380. },
  24381. cockAlt: {
  24382. height: math.unit(1.437, "feet"),
  24383. name: "Cock (alt)",
  24384. image: {
  24385. source: "./media/characters/logan-grey/cock-alt.svg"
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(5 + 8 / 12, "feet")
  24393. },
  24394. {
  24395. name: "The 500 Foot Femboy",
  24396. height: math.unit(500, "feet"),
  24397. default: true
  24398. },
  24399. {
  24400. name: "Megmacro",
  24401. height: math.unit(20, "miles")
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(8 + 2 / 12, "feet"),
  24410. weight: math.unit(275, "lb"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/draganta/front.svg",
  24414. extra: 1177 / 1135,
  24415. bottom: 33.46 / 1212.1
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(8 + 6 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(150, "feet")
  24428. },
  24429. {
  24430. name: "Megamacro",
  24431. height: math.unit(1000, "miles")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(1.72, "m"),
  24440. weight: math.unit(80, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/voski/front.svg",
  24444. extra: 2076.22 / 2022.4,
  24445. bottom: 102.7 / 2177.3866
  24446. }
  24447. },
  24448. frontFlaccid: {
  24449. height: math.unit(1.72, "m"),
  24450. weight: math.unit(80, "lb"),
  24451. name: "Front (Flaccid)",
  24452. image: {
  24453. source: "./media/characters/voski/front-flaccid.svg",
  24454. extra: 2076.22 / 2022.4,
  24455. bottom: 102.7 / 2177.3866
  24456. }
  24457. },
  24458. frontErect: {
  24459. height: math.unit(1.72, "m"),
  24460. weight: math.unit(80, "lb"),
  24461. name: "Front (Erect)",
  24462. image: {
  24463. source: "./media/characters/voski/front-erect.svg",
  24464. extra: 2076.22 / 2022.4,
  24465. bottom: 102.7 / 2177.3866
  24466. }
  24467. },
  24468. back: {
  24469. height: math.unit(1.72, "m"),
  24470. weight: math.unit(80, "lb"),
  24471. name: "Back",
  24472. image: {
  24473. source: "./media/characters/voski/back.svg",
  24474. extra: 2104 / 2051,
  24475. bottom: 10.45 / 2113.63
  24476. }
  24477. },
  24478. },
  24479. [
  24480. {
  24481. name: "Normal",
  24482. height: math.unit(1.72, "m")
  24483. },
  24484. {
  24485. name: "Macro",
  24486. height: math.unit(55, "m"),
  24487. default: true
  24488. },
  24489. {
  24490. name: "Macro+",
  24491. height: math.unit(300, "m")
  24492. },
  24493. {
  24494. name: "Macro++",
  24495. height: math.unit(700, "m")
  24496. },
  24497. {
  24498. name: "Macro+++",
  24499. height: math.unit(4500, "m")
  24500. },
  24501. {
  24502. name: "Macro++++",
  24503. height: math.unit(45, "km")
  24504. },
  24505. {
  24506. name: "Macro+++++",
  24507. height: math.unit(1220, "km")
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(2.3, "m"),
  24516. weight: math.unit(304, "kg"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/icowom-lee/front.svg",
  24520. extra: 985 / 955,
  24521. bottom: 25.4 / 1012
  24522. }
  24523. },
  24524. fronttentacles: {
  24525. height: math.unit(2.3, "m"),
  24526. weight: math.unit(304, "kg"),
  24527. name: "Front-tentacles",
  24528. image: {
  24529. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24530. extra: 985 / 955,
  24531. bottom: 25.4 / 1012
  24532. }
  24533. },
  24534. back: {
  24535. height: math.unit(2.3, "m"),
  24536. weight: math.unit(304, "kg"),
  24537. name: "Back",
  24538. image: {
  24539. source: "./media/characters/icowom-lee/back.svg",
  24540. extra: 975 / 954,
  24541. bottom: 9.5 / 985
  24542. }
  24543. },
  24544. backtentacles: {
  24545. height: math.unit(2.3, "m"),
  24546. weight: math.unit(304, "kg"),
  24547. name: "Back-tentacles",
  24548. image: {
  24549. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24550. extra: 975 / 954,
  24551. bottom: 9.5 / 985
  24552. }
  24553. },
  24554. frontDressed: {
  24555. height: math.unit(2.3, "m"),
  24556. weight: math.unit(304, "kg"),
  24557. name: "Front (Dressed)",
  24558. image: {
  24559. source: "./media/characters/icowom-lee/front-dressed.svg",
  24560. extra: 3076 / 2933,
  24561. bottom: 51.4 / 3125.1889
  24562. }
  24563. },
  24564. rump: {
  24565. height: math.unit(0.776, "meters"),
  24566. name: "Rump",
  24567. image: {
  24568. source: "./media/characters/icowom-lee/rump.svg"
  24569. }
  24570. },
  24571. genitals: {
  24572. height: math.unit(0.78, "meters"),
  24573. name: "Genitals",
  24574. image: {
  24575. source: "./media/characters/icowom-lee/genitals.svg"
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(2.3, "meters"),
  24583. default: true
  24584. },
  24585. {
  24586. name: "Macro",
  24587. height: math.unit(94, "meters"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(22, "meters"),
  24597. weight: math.unit(21000, "kg"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/shock-diamond/front.svg",
  24601. extra: 2204 / 2053,
  24602. bottom: 65 / 2239.47
  24603. }
  24604. },
  24605. frontNude: {
  24606. height: math.unit(22, "meters"),
  24607. weight: math.unit(21000, "kg"),
  24608. name: "Front (Nude)",
  24609. image: {
  24610. source: "./media/characters/shock-diamond/front-nude.svg",
  24611. extra: 2514 / 2285,
  24612. bottom: 13 / 2527.56
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(3, "meters")
  24620. },
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(22, "meters"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(5 + 4/12, "feet"),
  24633. weight: math.unit(125, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/rory/front.svg",
  24637. extra: 1790/1681,
  24638. bottom: 66/1856
  24639. },
  24640. form: "normal",
  24641. default: true
  24642. },
  24643. back: {
  24644. height: math.unit(5 + 4/12, "feet"),
  24645. weight: math.unit(125, "lb"),
  24646. name: "Back",
  24647. image: {
  24648. source: "./media/characters/rory/back.svg",
  24649. extra: 1805/1690,
  24650. bottom: 56/1861
  24651. },
  24652. form: "normal"
  24653. },
  24654. frontDressed: {
  24655. height: math.unit(5 + 4/12, "feet"),
  24656. weight: math.unit(125, "lb"),
  24657. name: "Front (Dressed)",
  24658. image: {
  24659. source: "./media/characters/rory/front-dressed.svg",
  24660. extra: 1790/1681,
  24661. bottom: 66/1856
  24662. },
  24663. form: "normal"
  24664. },
  24665. backDressed: {
  24666. height: math.unit(5 + 4/12, "feet"),
  24667. weight: math.unit(125, "lb"),
  24668. name: "Back (Dressed)",
  24669. image: {
  24670. source: "./media/characters/rory/back-dressed.svg",
  24671. extra: 1805/1690,
  24672. bottom: 56/1861
  24673. },
  24674. form: "normal"
  24675. },
  24676. frontNsfw: {
  24677. height: math.unit(5 + 4/12, "feet"),
  24678. weight: math.unit(125, "lb"),
  24679. name: "Front (NSFW)",
  24680. image: {
  24681. source: "./media/characters/rory/front-nsfw.svg",
  24682. extra: 1790/1681,
  24683. bottom: 66/1856
  24684. },
  24685. form: "normal"
  24686. },
  24687. backNsfw: {
  24688. height: math.unit(5 + 4/12, "feet"),
  24689. weight: math.unit(125, "lb"),
  24690. name: "Back (NSFW)",
  24691. image: {
  24692. source: "./media/characters/rory/back-nsfw.svg",
  24693. extra: 1805/1690,
  24694. bottom: 56/1861
  24695. },
  24696. form: "normal"
  24697. },
  24698. dick: {
  24699. height: math.unit(0.8, "feet"),
  24700. name: "Dick",
  24701. image: {
  24702. source: "./media/characters/rory/dick.svg"
  24703. },
  24704. form: "normal"
  24705. },
  24706. thicc_front: {
  24707. height: math.unit(5 + 4/12, "feet"),
  24708. weight: math.unit(195, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/rory/thicc-front.svg",
  24712. extra: 1220/1100,
  24713. bottom: 103/1323
  24714. },
  24715. form: "thicc",
  24716. default: true
  24717. },
  24718. thicc_back: {
  24719. height: math.unit(5 + 4/12, "feet"),
  24720. weight: math.unit(195, "lb"),
  24721. name: "Back",
  24722. image: {
  24723. source: "./media/characters/rory/thicc-back.svg",
  24724. extra: 1166/1086,
  24725. bottom: 35/1201
  24726. },
  24727. form: "thicc"
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Micro",
  24733. height: math.unit(3, "inches"),
  24734. allForms: true
  24735. },
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(5 + 4/12, "feet"),
  24739. allForms: true,
  24740. default: true
  24741. },
  24742. {
  24743. name: "Macro",
  24744. height: math.unit(90, "feet"),
  24745. allForms: true
  24746. },
  24747. {
  24748. name: "Supercharged",
  24749. height: math.unit(270, "feet"),
  24750. allForms: true
  24751. },
  24752. ],
  24753. {
  24754. "normal": {
  24755. name: "Normal",
  24756. default: true
  24757. },
  24758. "thicc": {
  24759. name: "Thicc",
  24760. },
  24761. }
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24765. {
  24766. front: {
  24767. height: math.unit(5 + 9 / 12, "feet"),
  24768. weight: math.unit(190, "lb"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/sprisk/front.svg",
  24772. extra: 1225 / 1180,
  24773. bottom: 42.7 / 1266.4
  24774. }
  24775. },
  24776. frontNsfw: {
  24777. height: math.unit(5 + 9 / 12, "feet"),
  24778. weight: math.unit(190, "lb"),
  24779. name: "Front (NSFW)",
  24780. image: {
  24781. source: "./media/characters/sprisk/front-nsfw.svg",
  24782. extra: 1225 / 1180,
  24783. bottom: 42.7 / 1266.4
  24784. }
  24785. },
  24786. back: {
  24787. height: math.unit(5 + 9 / 12, "feet"),
  24788. weight: math.unit(190, "lb"),
  24789. name: "Back",
  24790. image: {
  24791. source: "./media/characters/sprisk/back.svg",
  24792. extra: 1247 / 1200,
  24793. bottom: 5.6 / 1253.04
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Tiny",
  24800. height: math.unit(2, "inches")
  24801. },
  24802. {
  24803. name: "Normal",
  24804. height: math.unit(5 + 9 / 12, "feet"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Mini Macro",
  24809. height: math.unit(18, "feet")
  24810. },
  24811. {
  24812. name: "Macro",
  24813. height: math.unit(100, "feet")
  24814. },
  24815. {
  24816. name: "MACRO",
  24817. height: math.unit(50, "miles")
  24818. },
  24819. {
  24820. name: "M A C R O",
  24821. height: math.unit(300, "miles")
  24822. },
  24823. ]
  24824. ))
  24825. characterMakers.push(() => makeCharacter(
  24826. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24827. {
  24828. side: {
  24829. height: math.unit(15.6, "meters"),
  24830. weight: math.unit(700000, "kg"),
  24831. name: "Side",
  24832. image: {
  24833. source: "./media/characters/bunsen/side.svg",
  24834. extra: 1644 / 358
  24835. }
  24836. },
  24837. foot: {
  24838. height: math.unit(1.611 * 1644 / 358, "meter"),
  24839. name: "Foot",
  24840. image: {
  24841. source: "./media/characters/bunsen/foot.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Small",
  24848. height: math.unit(10, "feet")
  24849. },
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(15.6, "meters"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(4 + 11 / 12, "feet"),
  24862. weight: math.unit(140, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/sesh/front.svg",
  24866. extra: 3420 / 3231,
  24867. bottom: 72 / 3949.5
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Normal",
  24874. height: math.unit(4 + 11 / 12, "feet")
  24875. },
  24876. {
  24877. name: "Grown",
  24878. height: math.unit(15, "feet"),
  24879. default: true
  24880. },
  24881. {
  24882. name: "Macro",
  24883. height: math.unit(1500, "feet")
  24884. },
  24885. {
  24886. name: "Megamacro",
  24887. height: math.unit(30, "miles")
  24888. },
  24889. {
  24890. name: "Continental",
  24891. height: math.unit(3000, "miles")
  24892. },
  24893. {
  24894. name: "Gravity Mass",
  24895. height: math.unit(300000, "miles")
  24896. },
  24897. {
  24898. name: "Planet Buster",
  24899. height: math.unit(30000000, "miles")
  24900. },
  24901. {
  24902. name: "Big",
  24903. height: math.unit(3000000000, "miles")
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(9, "feet"),
  24912. weight: math.unit(350, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/pepper/front.svg",
  24916. extra: 1448 / 1312,
  24917. bottom: 9.4 / 1457.88
  24918. }
  24919. },
  24920. back: {
  24921. height: math.unit(9, "feet"),
  24922. weight: math.unit(350, "lb"),
  24923. name: "Back",
  24924. image: {
  24925. source: "./media/characters/pepper/back.svg",
  24926. extra: 1423 / 1300,
  24927. bottom: 4.6 / 1429
  24928. }
  24929. },
  24930. maw: {
  24931. height: math.unit(0.932, "feet"),
  24932. name: "Maw",
  24933. image: {
  24934. source: "./media/characters/pepper/maw.svg"
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(9, "feet"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(6, "feet"),
  24951. weight: math.unit(150, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/maelstrom/front.svg",
  24955. extra: 2100 / 1883,
  24956. bottom: 94 / 2196.7
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Less Kaiju",
  24963. height: math.unit(200, "feet")
  24964. },
  24965. {
  24966. name: "Kaiju",
  24967. height: math.unit(400, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Kaiju-er",
  24972. height: math.unit(600, "feet")
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(6 + 5 / 12, "feet"),
  24981. weight: math.unit(180, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/lexir/front.svg",
  24985. extra: 180 / 172,
  24986. bottom: 12 / 192
  24987. }
  24988. },
  24989. back: {
  24990. height: math.unit(6 + 5 / 12, "feet"),
  24991. weight: math.unit(180, "lb"),
  24992. name: "Back",
  24993. image: {
  24994. source: "./media/characters/lexir/back.svg",
  24995. extra: 1273/1201,
  24996. bottom: 39/1312
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Very Smal",
  25003. height: math.unit(1, "nm")
  25004. },
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(6 + 5 / 12, "feet"),
  25008. default: true
  25009. },
  25010. {
  25011. name: "Macro",
  25012. height: math.unit(1, "mile")
  25013. },
  25014. {
  25015. name: "Megamacro",
  25016. height: math.unit(50, "miles")
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(1.5, "meters"),
  25025. weight: math.unit(100, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/maksio/front.svg",
  25029. extra: 1549 / 1531,
  25030. bottom: 123.7 / 1674.5429
  25031. }
  25032. },
  25033. back: {
  25034. height: math.unit(1.5, "meters"),
  25035. weight: math.unit(100, "lb"),
  25036. name: "Back",
  25037. image: {
  25038. source: "./media/characters/maksio/back.svg",
  25039. extra: 1541 / 1509,
  25040. bottom: 97 / 1639
  25041. }
  25042. },
  25043. hand: {
  25044. height: math.unit(0.621, "feet"),
  25045. name: "Hand",
  25046. image: {
  25047. source: "./media/characters/maksio/hand.svg"
  25048. }
  25049. },
  25050. foot: {
  25051. height: math.unit(1.611, "feet"),
  25052. name: "Foot",
  25053. image: {
  25054. source: "./media/characters/maksio/foot.svg"
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Shrunken",
  25061. height: math.unit(10, "cm")
  25062. },
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(150, "cm"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(100, "feet"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/erza-bear/front.svg",
  25078. extra: 2449 / 2390,
  25079. bottom: 46 / 2494
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(100, "feet"),
  25084. name: "Back",
  25085. image: {
  25086. source: "./media/characters/erza-bear/back.svg",
  25087. extra: 2489 / 2430,
  25088. bottom: 85.4 / 2480
  25089. }
  25090. },
  25091. tail: {
  25092. height: math.unit(42, "feet"),
  25093. name: "Tail",
  25094. image: {
  25095. source: "./media/characters/erza-bear/tail.svg"
  25096. }
  25097. },
  25098. tongue: {
  25099. height: math.unit(8, "feet"),
  25100. name: "Tongue",
  25101. image: {
  25102. source: "./media/characters/erza-bear/tongue.svg"
  25103. }
  25104. },
  25105. dick: {
  25106. height: math.unit(10.5, "feet"),
  25107. name: "Dick",
  25108. image: {
  25109. source: "./media/characters/erza-bear/dick.svg"
  25110. }
  25111. },
  25112. dickVertical: {
  25113. height: math.unit(16.9, "feet"),
  25114. name: "Dick (Vertical)",
  25115. image: {
  25116. source: "./media/characters/erza-bear/dick-vertical.svg"
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Macro",
  25123. height: math.unit(100, "feet"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(172, "cm"),
  25133. weight: math.unit(73, "kg"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/violet-flor/front.svg",
  25137. extra: 1530 / 1442,
  25138. bottom: 61.9 / 1588.8
  25139. }
  25140. },
  25141. back: {
  25142. height: math.unit(180, "cm"),
  25143. weight: math.unit(73, "kg"),
  25144. name: "Back",
  25145. image: {
  25146. source: "./media/characters/violet-flor/back.svg",
  25147. extra: 1692 / 1630,
  25148. bottom: 20 / 1712
  25149. }
  25150. },
  25151. },
  25152. [
  25153. {
  25154. name: "Normal",
  25155. height: math.unit(172, "cm"),
  25156. default: true
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(6, "feet"),
  25165. weight: math.unit(220, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/lynn-rhea/front.svg",
  25169. extra: 310 / 273
  25170. }
  25171. },
  25172. back: {
  25173. height: math.unit(6, "feet"),
  25174. weight: math.unit(220, "lb"),
  25175. name: "Back",
  25176. image: {
  25177. source: "./media/characters/lynn-rhea/back.svg",
  25178. extra: 310 / 273
  25179. }
  25180. },
  25181. dicks: {
  25182. height: math.unit(0.9, "feet"),
  25183. name: "Dicks",
  25184. image: {
  25185. source: "./media/characters/lynn-rhea/dicks.svg"
  25186. }
  25187. },
  25188. slit: {
  25189. height: math.unit(0.4, "feet"),
  25190. name: "Slit",
  25191. image: {
  25192. source: "./media/characters/lynn-rhea/slit.svg"
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Micro",
  25199. height: math.unit(1, "inch")
  25200. },
  25201. {
  25202. name: "Macro",
  25203. height: math.unit(60, "feet"),
  25204. default: true
  25205. },
  25206. {
  25207. name: "Megamacro",
  25208. height: math.unit(2, "miles")
  25209. },
  25210. {
  25211. name: "Gigamacro",
  25212. height: math.unit(3, "earths")
  25213. },
  25214. {
  25215. name: "Galactic",
  25216. height: math.unit(0.8, "galaxies")
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25222. {
  25223. front: {
  25224. height: math.unit(1600, "feet"),
  25225. weight: math.unit(85758785169, "kg"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/valathos/front.svg",
  25229. extra: 1451 / 1339
  25230. }
  25231. },
  25232. },
  25233. [
  25234. {
  25235. name: "Macro",
  25236. height: math.unit(1600, "feet"),
  25237. default: true
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(7 + 5 / 12, "feet"),
  25246. weight: math.unit(300, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/azula/front.svg",
  25250. extra: 3208 / 2880,
  25251. bottom: 80.2 / 3277
  25252. }
  25253. },
  25254. back: {
  25255. height: math.unit(7 + 5 / 12, "feet"),
  25256. weight: math.unit(300, "lb"),
  25257. name: "Back",
  25258. image: {
  25259. source: "./media/characters/azula/back.svg",
  25260. extra: 3169 / 2822,
  25261. bottom: 150.6 / 3321
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(7 + 5 / 12, "feet"),
  25269. default: true
  25270. },
  25271. {
  25272. name: "Big",
  25273. height: math.unit(20, "feet")
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(5 + 1 / 12, "feet"),
  25282. weight: math.unit(110, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/rupert/front.svg",
  25286. extra: 1549 / 1495,
  25287. bottom: 54.2 / 1604.4
  25288. }
  25289. },
  25290. },
  25291. [
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(5 + 1 / 12, "feet"),
  25295. default: true
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25301. {
  25302. front: {
  25303. height: math.unit(8 + 4 / 12, "feet"),
  25304. weight: math.unit(350, "lb"),
  25305. name: "Front",
  25306. image: {
  25307. source: "./media/characters/sheera-castellar/front.svg",
  25308. extra: 1957 / 1894,
  25309. bottom: 26.97 / 1975.017
  25310. }
  25311. },
  25312. side: {
  25313. height: math.unit(8 + 4 / 12, "feet"),
  25314. weight: math.unit(350, "lb"),
  25315. name: "Side",
  25316. image: {
  25317. source: "./media/characters/sheera-castellar/side.svg",
  25318. extra: 1957 / 1894
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(8 + 4 / 12, "feet"),
  25323. weight: math.unit(350, "lb"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/sheera-castellar/back.svg",
  25327. extra: 1957 / 1894
  25328. }
  25329. },
  25330. angled: {
  25331. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25332. weight: math.unit(350, "lb"),
  25333. name: "Angled",
  25334. image: {
  25335. source: "./media/characters/sheera-castellar/angled.svg",
  25336. extra: 1807 / 1707,
  25337. bottom: 68 / 1875
  25338. }
  25339. },
  25340. genitals: {
  25341. height: math.unit(2.2, "feet"),
  25342. name: "Genitals",
  25343. image: {
  25344. source: "./media/characters/sheera-castellar/genitals.svg"
  25345. }
  25346. },
  25347. taur: {
  25348. height: math.unit(10 + 6/12, "feet"),
  25349. name: "Taur",
  25350. image: {
  25351. source: "./media/characters/sheera-castellar/taur.svg",
  25352. extra: 2017/1909,
  25353. bottom: 185/2202
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(8 + 4 / 12, "feet")
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(150, "feet"),
  25365. default: true
  25366. },
  25367. {
  25368. name: "Macro+",
  25369. height: math.unit(800, "feet")
  25370. },
  25371. ]
  25372. ))
  25373. characterMakers.push(() => makeCharacter(
  25374. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25375. {
  25376. front: {
  25377. height: math.unit(6, "feet"),
  25378. weight: math.unit(150, "lb"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/jaipur/front.svg",
  25382. extra: 3860 / 3731,
  25383. bottom: 287 / 4140
  25384. }
  25385. },
  25386. back: {
  25387. height: math.unit(6, "feet"),
  25388. weight: math.unit(150, "lb"),
  25389. name: "Back",
  25390. image: {
  25391. source: "./media/characters/jaipur/back.svg",
  25392. extra: 1637/1561,
  25393. bottom: 154/1791
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(1.85, "meters"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(150, "meters")
  25406. },
  25407. {
  25408. name: "Macro+",
  25409. height: math.unit(0.5, "miles")
  25410. },
  25411. {
  25412. name: "Macro++",
  25413. height: math.unit(2.5, "miles")
  25414. },
  25415. {
  25416. name: "Macro+++",
  25417. height: math.unit(12, "miles")
  25418. },
  25419. {
  25420. name: "Macro++++",
  25421. height: math.unit(120, "miles")
  25422. },
  25423. {
  25424. name: "Macro+++++",
  25425. height: math.unit(1200, "miles")
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(6, "feet"),
  25434. weight: math.unit(150, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/sheila-wolf/front.svg",
  25438. extra: 1931 / 1808,
  25439. bottom: 29.5 / 1960
  25440. }
  25441. },
  25442. dick: {
  25443. height: math.unit(1.464, "feet"),
  25444. name: "Dick",
  25445. image: {
  25446. source: "./media/characters/sheila-wolf/dick.svg"
  25447. }
  25448. },
  25449. muzzle: {
  25450. height: math.unit(0.513, "feet"),
  25451. name: "Muzzle",
  25452. image: {
  25453. source: "./media/characters/sheila-wolf/muzzle.svg"
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(70, "feet"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(32, "meters"),
  25470. weight: math.unit(300000, "kg"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/almor/front.svg",
  25474. extra: 1408 / 1322,
  25475. bottom: 94.6 / 1506.5
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(32, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(7, "feet"),
  25492. weight: math.unit(200, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/silver/front.svg",
  25496. extra: 472.1 / 450.5,
  25497. bottom: 26.5 / 499.424
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(7, "feet"),
  25505. default: true
  25506. },
  25507. {
  25508. name: "Macro",
  25509. height: math.unit(800, "feet")
  25510. },
  25511. {
  25512. name: "Megamacro",
  25513. height: math.unit(250, "miles")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(6, "feet"),
  25522. weight: math.unit(150, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/pliskin/front.svg",
  25526. extra: 1469 / 1359,
  25527. bottom: 70 / 1540
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Micro",
  25534. height: math.unit(3, "inches")
  25535. },
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(5 + 11 / 12, "feet"),
  25539. default: true
  25540. },
  25541. {
  25542. name: "Macro",
  25543. height: math.unit(120, "feet")
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(6, "feet"),
  25552. weight: math.unit(150, "lb"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/sammy/front.svg",
  25556. extra: 1193 / 1089,
  25557. bottom: 30.5 / 1226
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Macro",
  25564. height: math.unit(1700, "feet"),
  25565. default: true
  25566. },
  25567. {
  25568. name: "Examacro",
  25569. height: math.unit(2.5e9, "lightyears")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(21, "meters"),
  25578. weight: math.unit(12, "tonnes"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/kuru/front.svg",
  25582. extra: 4301 / 3785,
  25583. bottom: 371.3 / 4691
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Macro",
  25590. height: math.unit(21, "meters"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(23, "meters"),
  25600. weight: math.unit(12.2, "tonnes"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/rakka/front.svg",
  25604. extra: 4670 / 4169,
  25605. bottom: 301 / 4968.7
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(23, "meters"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(6, "feet"),
  25622. weight: math.unit(150, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/rhys-feline/front.svg",
  25626. extra: 2488 / 2308,
  25627. bottom: 35.67 / 2519.19
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Really Small",
  25634. height: math.unit(1, "nm")
  25635. },
  25636. {
  25637. name: "Micro",
  25638. height: math.unit(4, "inches")
  25639. },
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(4 + 10 / 12, "feet"),
  25643. default: true
  25644. },
  25645. {
  25646. name: "Macro",
  25647. height: math.unit(100, "feet")
  25648. },
  25649. {
  25650. name: "Megamacto",
  25651. height: math.unit(50, "miles")
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25657. {
  25658. side: {
  25659. height: math.unit(30, "feet"),
  25660. weight: math.unit(35000, "kg"),
  25661. name: "Side",
  25662. image: {
  25663. source: "./media/characters/alydar/side.svg",
  25664. extra: 234 / 222,
  25665. bottom: 6.5 / 241
  25666. }
  25667. },
  25668. front: {
  25669. height: math.unit(30, "feet"),
  25670. weight: math.unit(35000, "kg"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/alydar/front.svg",
  25674. extra: 223.37 / 210.2,
  25675. bottom: 22.3 / 246.76
  25676. }
  25677. },
  25678. top: {
  25679. height: math.unit(64.54, "feet"),
  25680. weight: math.unit(35000, "kg"),
  25681. name: "Top",
  25682. image: {
  25683. source: "./media/characters/alydar/top.svg"
  25684. }
  25685. },
  25686. anthro: {
  25687. height: math.unit(30, "feet"),
  25688. weight: math.unit(9000, "kg"),
  25689. name: "Anthro",
  25690. image: {
  25691. source: "./media/characters/alydar/anthro.svg",
  25692. extra: 432 / 421,
  25693. bottom: 7.18 / 440
  25694. }
  25695. },
  25696. maw: {
  25697. height: math.unit(11.693, "feet"),
  25698. name: "Maw",
  25699. image: {
  25700. source: "./media/characters/alydar/maw.svg"
  25701. }
  25702. },
  25703. head: {
  25704. height: math.unit(11.693, "feet"),
  25705. name: "Head",
  25706. image: {
  25707. source: "./media/characters/alydar/head.svg"
  25708. }
  25709. },
  25710. headAlt: {
  25711. height: math.unit(12.861, "feet"),
  25712. name: "Head (Alt)",
  25713. image: {
  25714. source: "./media/characters/alydar/head-alt.svg"
  25715. }
  25716. },
  25717. wing: {
  25718. height: math.unit(20.712, "feet"),
  25719. name: "Wing",
  25720. image: {
  25721. source: "./media/characters/alydar/wing.svg"
  25722. }
  25723. },
  25724. wingFeather: {
  25725. height: math.unit(9.662, "feet"),
  25726. name: "Wing Feather",
  25727. image: {
  25728. source: "./media/characters/alydar/wing-feather.svg"
  25729. }
  25730. },
  25731. countourFeather: {
  25732. height: math.unit(4.154, "feet"),
  25733. name: "Contour Feather",
  25734. image: {
  25735. source: "./media/characters/alydar/contour-feather.svg"
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Diplomatic",
  25742. height: math.unit(13, "feet"),
  25743. default: true
  25744. },
  25745. {
  25746. name: "Small",
  25747. height: math.unit(30, "feet")
  25748. },
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(95, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Large",
  25756. height: math.unit(285, "feet")
  25757. },
  25758. {
  25759. name: "Incomprehensible",
  25760. height: math.unit(450, "megameters")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25766. {
  25767. side: {
  25768. height: math.unit(11, "feet"),
  25769. weight: math.unit(1750, "kg"),
  25770. name: "Side",
  25771. image: {
  25772. source: "./media/characters/selicia/side.svg",
  25773. extra: 440 / 396,
  25774. bottom: 24.8 / 465.979
  25775. }
  25776. },
  25777. maw: {
  25778. height: math.unit(4.665, "feet"),
  25779. name: "Maw",
  25780. image: {
  25781. source: "./media/characters/selicia/maw.svg"
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(11, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25795. {
  25796. side: {
  25797. height: math.unit(2 + 6 / 12, "feet"),
  25798. weight: math.unit(30, "lb"),
  25799. name: "Side",
  25800. image: {
  25801. source: "./media/characters/layla/side.svg",
  25802. extra: 244 / 188,
  25803. bottom: 18.2 / 262.1
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(2 + 6 / 12, "feet"),
  25808. weight: math.unit(30, "lb"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/layla/back.svg",
  25812. extra: 308 / 241.5,
  25813. bottom: 8.9 / 316.8
  25814. }
  25815. },
  25816. cumming: {
  25817. height: math.unit(2 + 6 / 12, "feet"),
  25818. weight: math.unit(30, "lb"),
  25819. name: "Cumming",
  25820. image: {
  25821. source: "./media/characters/layla/cumming.svg",
  25822. extra: 342 / 279,
  25823. bottom: 595 / 938
  25824. }
  25825. },
  25826. dickFlaccid: {
  25827. height: math.unit(2.595, "feet"),
  25828. name: "Flaccid Genitals",
  25829. image: {
  25830. source: "./media/characters/layla/dick-flaccid.svg"
  25831. }
  25832. },
  25833. dickErect: {
  25834. height: math.unit(2.359, "feet"),
  25835. name: "Erect Genitals",
  25836. image: {
  25837. source: "./media/characters/layla/dick-erect.svg"
  25838. }
  25839. },
  25840. dragon: {
  25841. height: math.unit(40, "feet"),
  25842. name: "Dragon",
  25843. image: {
  25844. source: "./media/characters/layla/dragon.svg",
  25845. extra: 610/535,
  25846. bottom: 367/977
  25847. }
  25848. },
  25849. taur: {
  25850. height: math.unit(30, "feet"),
  25851. name: "Taur",
  25852. image: {
  25853. source: "./media/characters/layla/taur.svg",
  25854. extra: 1268/1199,
  25855. bottom: 112/1380
  25856. }
  25857. },
  25858. },
  25859. [
  25860. {
  25861. name: "Micro",
  25862. height: math.unit(1, "inch")
  25863. },
  25864. {
  25865. name: "Small",
  25866. height: math.unit(1, "foot")
  25867. },
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(2 + 6 / 12, "feet"),
  25871. default: true
  25872. },
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(200, "feet")
  25876. },
  25877. {
  25878. name: "Megamacro",
  25879. height: math.unit(1000, "miles")
  25880. },
  25881. {
  25882. name: "Planetary",
  25883. height: math.unit(8000, "miles")
  25884. },
  25885. {
  25886. name: "True Layla",
  25887. height: math.unit(200000 * 7, "multiverses")
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25893. {
  25894. back: {
  25895. height: math.unit(10.5, "feet"),
  25896. weight: math.unit(800, "lb"),
  25897. name: "Back",
  25898. image: {
  25899. source: "./media/characters/knox/back.svg",
  25900. extra: 1486 / 1089,
  25901. bottom: 107 / 1601.4
  25902. }
  25903. },
  25904. side: {
  25905. height: math.unit(10.5, "feet"),
  25906. weight: math.unit(800, "lb"),
  25907. name: "Side",
  25908. image: {
  25909. source: "./media/characters/knox/side.svg",
  25910. extra: 244 / 218,
  25911. bottom: 14 / 260
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Compact",
  25918. height: math.unit(10.5, "feet"),
  25919. default: true
  25920. },
  25921. {
  25922. name: "Dynamax",
  25923. height: math.unit(210, "feet")
  25924. },
  25925. {
  25926. name: "Full Macro",
  25927. height: math.unit(850, "feet")
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25933. {
  25934. front: {
  25935. height: math.unit(28, "feet"),
  25936. weight: math.unit(10500, "lb"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/kayda/front.svg",
  25940. extra: 1536 / 1428,
  25941. bottom: 68.7 / 1603
  25942. }
  25943. },
  25944. back: {
  25945. height: math.unit(28, "feet"),
  25946. weight: math.unit(10500, "lb"),
  25947. name: "Back",
  25948. image: {
  25949. source: "./media/characters/kayda/back.svg",
  25950. extra: 1557 / 1464,
  25951. bottom: 39.5 / 1597.49
  25952. }
  25953. },
  25954. dick: {
  25955. height: math.unit(3.858, "feet"),
  25956. name: "Dick",
  25957. image: {
  25958. source: "./media/characters/kayda/dick.svg"
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(28, "feet"),
  25966. default: true
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(10 + 11 / 12, "feet"),
  25975. weight: math.unit(1400, "lb"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/brian/front.svg",
  25979. extra: 737 / 692,
  25980. bottom: 55.4 / 785
  25981. }
  25982. },
  25983. },
  25984. [
  25985. {
  25986. name: "Normal",
  25987. height: math.unit(10 + 11 / 12, "feet"),
  25988. default: true
  25989. },
  25990. ]
  25991. ))
  25992. characterMakers.push(() => makeCharacter(
  25993. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25994. {
  25995. front: {
  25996. height: math.unit(5 + 8 / 12, "feet"),
  25997. weight: math.unit(140, "lb"),
  25998. name: "Front",
  25999. image: {
  26000. source: "./media/characters/khemri/front.svg",
  26001. extra: 4780 / 4059,
  26002. bottom: 80.1 / 4859.25
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Micro",
  26009. height: math.unit(6, "inches")
  26010. },
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(5 + 8 / 12, "feet"),
  26014. default: true
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26020. {
  26021. front: {
  26022. height: math.unit(13, "feet"),
  26023. weight: math.unit(1700, "lb"),
  26024. name: "Front",
  26025. image: {
  26026. source: "./media/characters/felix-braveheart/front.svg",
  26027. extra: 1222 / 1157,
  26028. bottom: 53.2 / 1280
  26029. }
  26030. },
  26031. back: {
  26032. height: math.unit(13, "feet"),
  26033. weight: math.unit(1700, "lb"),
  26034. name: "Back",
  26035. image: {
  26036. source: "./media/characters/felix-braveheart/back.svg",
  26037. extra: 1277 / 1203,
  26038. bottom: 50.2 / 1327
  26039. }
  26040. },
  26041. feral: {
  26042. height: math.unit(6, "feet"),
  26043. weight: math.unit(400, "lb"),
  26044. name: "Feral",
  26045. image: {
  26046. source: "./media/characters/felix-braveheart/feral.svg",
  26047. extra: 682 / 625,
  26048. bottom: 6.9 / 688
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(13, "feet"),
  26056. default: true
  26057. },
  26058. ]
  26059. ))
  26060. characterMakers.push(() => makeCharacter(
  26061. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26062. {
  26063. side: {
  26064. height: math.unit(5 + 11 / 12, "feet"),
  26065. weight: math.unit(1400, "lb"),
  26066. name: "Side",
  26067. image: {
  26068. source: "./media/characters/shadow-blade/side.svg",
  26069. extra: 1726 / 1267,
  26070. bottom: 58.4 / 1785
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(5 + 11 / 12, "feet"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(1 + 6 / 12, "feet"),
  26087. weight: math.unit(25, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/karla-halldor/front.svg",
  26091. extra: 1459 / 1383,
  26092. bottom: 12 / 1472
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(1 + 6 / 12, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(6 + 2 / 12, "feet"),
  26109. weight: math.unit(160, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/ariam/front.svg",
  26113. extra: 1073/976,
  26114. bottom: 52/1125
  26115. }
  26116. },
  26117. back: {
  26118. height: math.unit(6 + 2/12, "feet"),
  26119. weight: math.unit(160, "lb"),
  26120. name: "Back",
  26121. image: {
  26122. source: "./media/characters/ariam/back.svg",
  26123. extra: 1103/1023,
  26124. bottom: 9/1112
  26125. }
  26126. },
  26127. dressed: {
  26128. height: math.unit(6 + 2/12, "feet"),
  26129. weight: math.unit(160, "lb"),
  26130. name: "Dressed",
  26131. image: {
  26132. source: "./media/characters/ariam/dressed.svg",
  26133. extra: 1099/1009,
  26134. bottom: 25/1124
  26135. }
  26136. },
  26137. squatting: {
  26138. height: math.unit(4.1, "feet"),
  26139. weight: math.unit(160, "lb"),
  26140. name: "Squatting",
  26141. image: {
  26142. source: "./media/characters/ariam/squatting.svg",
  26143. extra: 2617 / 2112,
  26144. bottom: 61.2 / 2681,
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(6 + 2 / 12, "feet"),
  26152. default: true
  26153. },
  26154. {
  26155. name: "Normal+",
  26156. height: math.unit(4, "meters")
  26157. },
  26158. {
  26159. name: "Macro",
  26160. height: math.unit(50, "meters")
  26161. },
  26162. {
  26163. name: "Macro+",
  26164. height: math.unit(100, "meters")
  26165. },
  26166. {
  26167. name: "Megamacro",
  26168. height: math.unit(20, "km")
  26169. },
  26170. {
  26171. name: "Caretaker",
  26172. height: math.unit(444, "megameters")
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(1.67, "meters"),
  26181. weight: math.unit(140, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26185. extra: 438 / 410,
  26186. bottom: 0.75 / 439
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Shrunken",
  26193. height: math.unit(7.6, "cm")
  26194. },
  26195. {
  26196. name: "Human Scale",
  26197. height: math.unit(1.67, "meters")
  26198. },
  26199. {
  26200. name: "Wolxi Scale",
  26201. height: math.unit(36.7, "meters"),
  26202. default: true
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(1.73, "meters"),
  26211. weight: math.unit(240, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/izue-two-mothers/front.svg",
  26215. extra: 469 / 437,
  26216. bottom: 1.24 / 470.6
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Shrunken",
  26223. height: math.unit(7.86, "cm")
  26224. },
  26225. {
  26226. name: "Human Scale",
  26227. height: math.unit(1.73, "meters")
  26228. },
  26229. {
  26230. name: "Wolxi Scale",
  26231. height: math.unit(38, "meters"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(1.55, "meters"),
  26241. weight: math.unit(120, "lb"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/teeku-love-shack/front.svg",
  26245. extra: 387 / 362,
  26246. bottom: 1.51 / 388
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Shrunken",
  26253. height: math.unit(7, "cm")
  26254. },
  26255. {
  26256. name: "Human Scale",
  26257. height: math.unit(1.55, "meters")
  26258. },
  26259. {
  26260. name: "Wolxi Scale",
  26261. height: math.unit(34.1, "meters"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(1.83, "meters"),
  26271. weight: math.unit(135, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/dejma-the-red/front.svg",
  26275. extra: 480 / 458,
  26276. bottom: 1.8 / 482
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Shrunken",
  26283. height: math.unit(8.3, "cm")
  26284. },
  26285. {
  26286. name: "Human Scale",
  26287. height: math.unit(1.83, "meters")
  26288. },
  26289. {
  26290. name: "Wolxi Scale",
  26291. height: math.unit(40, "meters"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(1.78, "meters"),
  26301. weight: math.unit(65, "kg"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/aki/front.svg",
  26305. extra: 452 / 415
  26306. }
  26307. },
  26308. frontNsfw: {
  26309. height: math.unit(1.78, "meters"),
  26310. weight: math.unit(65, "kg"),
  26311. name: "Front (NSFW)",
  26312. image: {
  26313. source: "./media/characters/aki/front-nsfw.svg",
  26314. extra: 452 / 415
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(1.78, "meters"),
  26319. weight: math.unit(65, "kg"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/aki/back.svg",
  26323. extra: 452 / 415
  26324. }
  26325. },
  26326. rump: {
  26327. height: math.unit(2.05, "feet"),
  26328. name: "Rump",
  26329. image: {
  26330. source: "./media/characters/aki/rump.svg"
  26331. }
  26332. },
  26333. dick: {
  26334. height: math.unit(0.95, "feet"),
  26335. name: "Dick",
  26336. image: {
  26337. source: "./media/characters/aki/dick.svg"
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Micro",
  26344. height: math.unit(15, "cm")
  26345. },
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(178, "cm"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(214, "m")
  26354. },
  26355. {
  26356. name: "Macro+",
  26357. height: math.unit(534, "m")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(5 + 5 / 12, "feet"),
  26366. weight: math.unit(120, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/ari/front.svg",
  26370. extra: 1550/1471,
  26371. bottom: 39/1589
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(5 + 5 / 12, "feet")
  26379. },
  26380. {
  26381. name: "Macro",
  26382. height: math.unit(100, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Megamacro",
  26387. height: math.unit(100, "miles")
  26388. },
  26389. {
  26390. name: "Gigamacro",
  26391. height: math.unit(80000, "miles")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26397. {
  26398. side: {
  26399. height: math.unit(9, "feet"),
  26400. weight: math.unit(400, "kg"),
  26401. name: "Side",
  26402. image: {
  26403. source: "./media/characters/bolt/side.svg",
  26404. extra: 1126 / 896,
  26405. bottom: 60 / 1187.3,
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Micro",
  26412. height: math.unit(5, "inches")
  26413. },
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(9, "feet"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Macro",
  26421. height: math.unit(700, "feet")
  26422. },
  26423. {
  26424. name: "Max Size",
  26425. height: math.unit(1.52e22, "yottameters")
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(4.3, "meters"),
  26434. weight: math.unit(3, "tons"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/draekon-sylviar/front.svg",
  26438. extra: 2072/1512,
  26439. bottom: 74/2146
  26440. }
  26441. },
  26442. back: {
  26443. height: math.unit(4.3, "meters"),
  26444. weight: math.unit(3, "tons"),
  26445. name: "Back",
  26446. image: {
  26447. source: "./media/characters/draekon-sylviar/back.svg",
  26448. extra: 1639/1483,
  26449. bottom: 41/1680
  26450. }
  26451. },
  26452. feral: {
  26453. height: math.unit(1.15, "meters"),
  26454. weight: math.unit(3, "tons"),
  26455. name: "Feral",
  26456. image: {
  26457. source: "./media/characters/draekon-sylviar/feral.svg",
  26458. extra: 1033/395,
  26459. bottom: 130/1163
  26460. }
  26461. },
  26462. maw: {
  26463. height: math.unit(1.3, "meters"),
  26464. name: "Maw",
  26465. image: {
  26466. source: "./media/characters/draekon-sylviar/maw.svg"
  26467. }
  26468. },
  26469. mawSeparated: {
  26470. height: math.unit(1.53, "meters"),
  26471. name: "Separated Maw",
  26472. image: {
  26473. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26474. }
  26475. },
  26476. tail: {
  26477. height: math.unit(1.15, "meters"),
  26478. name: "Tail",
  26479. image: {
  26480. source: "./media/characters/draekon-sylviar/tail.svg"
  26481. }
  26482. },
  26483. tailDick: {
  26484. height: math.unit(1.15, "meters"),
  26485. name: "Tail (Dick)",
  26486. image: {
  26487. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26488. }
  26489. },
  26490. tailDickSeparated: {
  26491. height: math.unit(1.19, "meters"),
  26492. name: "Tail (Separated Dick)",
  26493. image: {
  26494. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26495. }
  26496. },
  26497. slit: {
  26498. height: math.unit(1, "meters"),
  26499. name: "Slit",
  26500. image: {
  26501. source: "./media/characters/draekon-sylviar/slit.svg"
  26502. }
  26503. },
  26504. dick: {
  26505. height: math.unit(1.15, "meters"),
  26506. name: "Dick",
  26507. image: {
  26508. source: "./media/characters/draekon-sylviar/dick.svg"
  26509. }
  26510. },
  26511. dickSeparated: {
  26512. height: math.unit(1.1, "meters"),
  26513. name: "Separated Dick",
  26514. image: {
  26515. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26516. }
  26517. },
  26518. sheath: {
  26519. height: math.unit(1.15, "meters"),
  26520. name: "Sheath",
  26521. image: {
  26522. source: "./media/characters/draekon-sylviar/sheath.svg"
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Small",
  26529. height: math.unit(4.53 / 2, "meters"),
  26530. default: true
  26531. },
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(4.53, "meters"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Large",
  26539. height: math.unit(4.53 * 2, "meters"),
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(6 + 2 / 12, "feet"),
  26548. weight: math.unit(180, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/brawler/front.svg",
  26552. extra: 3301 / 3027,
  26553. bottom: 138 / 3439
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(6 + 2 / 12, "feet"),
  26561. default: true
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(11, "feet"),
  26570. weight: math.unit(1000, "lb"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/alex/front.svg",
  26574. bottom: 44.5 / 620
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Micro",
  26581. height: math.unit(5, "inches")
  26582. },
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(11, "feet"),
  26586. default: true
  26587. },
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(9.5e9, "feet")
  26591. },
  26592. {
  26593. name: "Max Size",
  26594. height: math.unit(1.4e283, "yottameters")
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26600. {
  26601. female: {
  26602. height: math.unit(29.9, "m"),
  26603. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26604. name: "Female",
  26605. image: {
  26606. source: "./media/characters/zenari/female.svg",
  26607. extra: 3281.6 / 3217,
  26608. bottom: 72.2 / 3353
  26609. }
  26610. },
  26611. male: {
  26612. height: math.unit(27.7, "m"),
  26613. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26614. name: "Male",
  26615. image: {
  26616. source: "./media/characters/zenari/male.svg",
  26617. extra: 3008 / 2991,
  26618. bottom: 54.6 / 3069
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Macro",
  26625. height: math.unit(29.7, "meters"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26632. {
  26633. female: {
  26634. height: math.unit(23.8, "m"),
  26635. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26636. name: "Female",
  26637. image: {
  26638. source: "./media/characters/mactarian/female.svg",
  26639. extra: 2662 / 2569,
  26640. bottom: 73 / 2736
  26641. }
  26642. },
  26643. male: {
  26644. height: math.unit(23.8, "m"),
  26645. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26646. name: "Male",
  26647. image: {
  26648. source: "./media/characters/mactarian/male.svg",
  26649. extra: 2673 / 2600,
  26650. bottom: 76 / 2750
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Macro",
  26657. height: math.unit(23.8, "meters"),
  26658. default: true
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26664. {
  26665. female: {
  26666. height: math.unit(19.3, "m"),
  26667. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26668. name: "Female",
  26669. image: {
  26670. source: "./media/characters/umok/female.svg",
  26671. extra: 2186 / 2078,
  26672. bottom: 87 / 2277
  26673. }
  26674. },
  26675. male: {
  26676. height: math.unit(19.5, "m"),
  26677. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26678. name: "Male",
  26679. image: {
  26680. source: "./media/characters/umok/male.svg",
  26681. extra: 2233 / 2140,
  26682. bottom: 24.4 / 2258
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Macro",
  26689. height: math.unit(19.3, "meters"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26696. {
  26697. female: {
  26698. height: math.unit(26.15, "m"),
  26699. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26700. name: "Female",
  26701. image: {
  26702. source: "./media/characters/joraxian/female.svg",
  26703. extra: 2912 / 2824,
  26704. bottom: 36 / 2956
  26705. }
  26706. },
  26707. male: {
  26708. height: math.unit(25.4, "m"),
  26709. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26710. name: "Male",
  26711. image: {
  26712. source: "./media/characters/joraxian/male.svg",
  26713. extra: 2877 / 2721,
  26714. bottom: 82 / 2967
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(26.15, "meters"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26728. {
  26729. female: {
  26730. height: math.unit(21.6, "m"),
  26731. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26732. name: "Female",
  26733. image: {
  26734. source: "./media/characters/sthara/female.svg",
  26735. extra: 2516 / 2347,
  26736. bottom: 21.5 / 2537
  26737. }
  26738. },
  26739. male: {
  26740. height: math.unit(24, "m"),
  26741. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26742. name: "Male",
  26743. image: {
  26744. source: "./media/characters/sthara/male.svg",
  26745. extra: 2732 / 2607,
  26746. bottom: 23 / 2732
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Macro",
  26753. height: math.unit(21.6, "meters"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26760. {
  26761. front: {
  26762. height: math.unit(6 + 4 / 12, "feet"),
  26763. weight: math.unit(175, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/luka-bryzant/front.svg",
  26767. extra: 311 / 289,
  26768. bottom: 4 / 315
  26769. }
  26770. },
  26771. back: {
  26772. height: math.unit(6 + 4 / 12, "feet"),
  26773. weight: math.unit(175, "lb"),
  26774. name: "Back",
  26775. image: {
  26776. source: "./media/characters/luka-bryzant/back.svg",
  26777. extra: 311 / 289,
  26778. bottom: 3.8 / 313.7
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Micro",
  26785. height: math.unit(10, "inches")
  26786. },
  26787. {
  26788. name: "Normal",
  26789. height: math.unit(6 + 4 / 12, "feet"),
  26790. default: true
  26791. },
  26792. {
  26793. name: "Large",
  26794. height: math.unit(12, "feet")
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(5 + 7 / 12, "feet"),
  26803. weight: math.unit(185, "lb"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/aman-aquila/front.svg",
  26807. extra: 1013 / 976,
  26808. bottom: 45.6 / 1057
  26809. }
  26810. },
  26811. side: {
  26812. height: math.unit(5 + 7 / 12, "feet"),
  26813. weight: math.unit(185, "lb"),
  26814. name: "Side",
  26815. image: {
  26816. source: "./media/characters/aman-aquila/side.svg",
  26817. extra: 1054 / 1011,
  26818. bottom: 15 / 1070
  26819. }
  26820. },
  26821. back: {
  26822. height: math.unit(5 + 7 / 12, "feet"),
  26823. weight: math.unit(185, "lb"),
  26824. name: "Back",
  26825. image: {
  26826. source: "./media/characters/aman-aquila/back.svg",
  26827. extra: 1026 / 970,
  26828. bottom: 12 / 1039
  26829. }
  26830. },
  26831. head: {
  26832. height: math.unit(1.211, "feet"),
  26833. name: "Head",
  26834. image: {
  26835. source: "./media/characters/aman-aquila/head.svg",
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Minimicro",
  26842. height: math.unit(0.057, "inches")
  26843. },
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(7, "inches")
  26847. },
  26848. {
  26849. name: "Mini",
  26850. height: math.unit(3 + 7 / 12, "feet")
  26851. },
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(5 + 7 / 12, "feet"),
  26855. default: true
  26856. },
  26857. {
  26858. name: "Macro",
  26859. height: math.unit(157 + 7 / 12, "feet")
  26860. },
  26861. {
  26862. name: "Megamacro",
  26863. height: math.unit(1557 + 7 / 12, "feet")
  26864. },
  26865. {
  26866. name: "Gigamacro",
  26867. height: math.unit(15557 + 7 / 12, "feet")
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26873. {
  26874. front: {
  26875. height: math.unit(3 + 2 / 12, "inches"),
  26876. weight: math.unit(0.3, "ounces"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/hiphae/front.svg",
  26880. extra: 1931 / 1683,
  26881. bottom: 24 / 1955
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(3 + 1 / 2, "inches"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(5 + 10 / 12, "feet"),
  26898. weight: math.unit(165, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/nicky/front.svg",
  26902. extra: 3144 / 2886,
  26903. bottom: 45.6 / 3192
  26904. }
  26905. },
  26906. back: {
  26907. height: math.unit(5 + 10 / 12, "feet"),
  26908. weight: math.unit(165, "lb"),
  26909. name: "Back",
  26910. image: {
  26911. source: "./media/characters/nicky/back.svg",
  26912. extra: 3055 / 2804,
  26913. bottom: 28.4 / 3087
  26914. }
  26915. },
  26916. frontclothed: {
  26917. height: math.unit(5 + 10 / 12, "feet"),
  26918. weight: math.unit(165, "lb"),
  26919. name: "Front-clothed",
  26920. image: {
  26921. source: "./media/characters/nicky/front-clothed.svg",
  26922. extra: 3184.9 / 2926.9,
  26923. bottom: 86.5 / 3239.9
  26924. }
  26925. },
  26926. foot: {
  26927. height: math.unit(1.16, "feet"),
  26928. name: "Foot",
  26929. image: {
  26930. source: "./media/characters/nicky/foot.svg"
  26931. }
  26932. },
  26933. feet: {
  26934. height: math.unit(1.34, "feet"),
  26935. name: "Feet",
  26936. image: {
  26937. source: "./media/characters/nicky/feet.svg"
  26938. }
  26939. },
  26940. maw: {
  26941. height: math.unit(0.9, "feet"),
  26942. name: "Maw",
  26943. image: {
  26944. source: "./media/characters/nicky/maw.svg"
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(5 + 10 / 12, "feet"),
  26952. default: true
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(60, "feet")
  26957. },
  26958. {
  26959. name: "Megamacro",
  26960. height: math.unit(1, "mile")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26966. {
  26967. side: {
  26968. height: math.unit(10, "feet"),
  26969. weight: math.unit(600, "lb"),
  26970. name: "Side",
  26971. image: {
  26972. source: "./media/characters/blair/side.svg",
  26973. bottom: 16.6 / 475,
  26974. extra: 458 / 431
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Micro",
  26981. height: math.unit(8, "inches")
  26982. },
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(10, "feet"),
  26986. default: true
  26987. },
  26988. {
  26989. name: "Macro",
  26990. height: math.unit(180, "feet")
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(5 + 4 / 12, "feet"),
  26999. weight: math.unit(125, "lb"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/fisher/front.svg",
  27003. extra: 444 / 390,
  27004. bottom: 2 / 444.8
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Micro",
  27011. height: math.unit(4, "inches")
  27012. },
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(5 + 4 / 12, "feet"),
  27016. default: true
  27017. },
  27018. {
  27019. name: "Macro",
  27020. height: math.unit(100, "feet")
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(6.71, "feet"),
  27029. weight: math.unit(200, "lb"),
  27030. preyCapacity: math.unit(1000000, "people"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/gliss/front.svg",
  27034. extra: 2347 / 2231,
  27035. bottom: 113 / 2462
  27036. }
  27037. },
  27038. hammerspaceSize: {
  27039. height: math.unit(6.71 * 717, "feet"),
  27040. weight: math.unit(200, "lb"),
  27041. preyCapacity: math.unit(1000000, "people"),
  27042. name: "Hammerspace Size",
  27043. image: {
  27044. source: "./media/characters/gliss/front.svg",
  27045. extra: 2347 / 2231,
  27046. bottom: 113 / 2462
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Normal",
  27053. height: math.unit(6.71, "feet"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27060. {
  27061. side: {
  27062. height: math.unit(1.44, "m"),
  27063. weight: math.unit(80, "kg"),
  27064. name: "Side",
  27065. image: {
  27066. source: "./media/characters/dune-anderson/side.svg",
  27067. bottom: 49 / 1426
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Wolf-sized",
  27074. height: math.unit(1.44, "meters")
  27075. },
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(5.05, "meters"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Big",
  27083. height: math.unit(14.4, "meters")
  27084. },
  27085. {
  27086. name: "Huge",
  27087. height: math.unit(144, "meters")
  27088. },
  27089. ]
  27090. ))
  27091. characterMakers.push(() => makeCharacter(
  27092. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27093. {
  27094. front: {
  27095. height: math.unit(7, "feet"),
  27096. weight: math.unit(425, "lb"),
  27097. name: "Front",
  27098. image: {
  27099. source: "./media/characters/hind/front.svg",
  27100. extra: 2091 / 1860,
  27101. bottom: 129 / 2220
  27102. }
  27103. },
  27104. back: {
  27105. height: math.unit(7, "feet"),
  27106. weight: math.unit(425, "lb"),
  27107. name: "Back",
  27108. image: {
  27109. source: "./media/characters/hind/back.svg",
  27110. extra: 2091 / 1860,
  27111. bottom: 24.6 / 2309
  27112. }
  27113. },
  27114. tail: {
  27115. height: math.unit(2.8, "feet"),
  27116. name: "Tail",
  27117. image: {
  27118. source: "./media/characters/hind/tail.svg"
  27119. }
  27120. },
  27121. head: {
  27122. height: math.unit(2.55, "feet"),
  27123. name: "Head",
  27124. image: {
  27125. source: "./media/characters/hind/head.svg"
  27126. }
  27127. },
  27128. },
  27129. [
  27130. {
  27131. name: "XS",
  27132. height: math.unit(0.7, "feet")
  27133. },
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(7, "feet"),
  27137. default: true
  27138. },
  27139. {
  27140. name: "XL",
  27141. height: math.unit(70, "feet")
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(2.1, "meters"),
  27150. weight: math.unit(150, "lb"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/tharquench-sizestealer/front.svg",
  27154. extra: 1605/1470,
  27155. bottom: 36/1641
  27156. }
  27157. },
  27158. frontAlt: {
  27159. height: math.unit(2.1, "meters"),
  27160. weight: math.unit(150, "lb"),
  27161. name: "Front (Alt)",
  27162. image: {
  27163. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27164. extra: 2318 / 2063,
  27165. bottom: 93.4 / 2410
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Nano",
  27172. height: math.unit(1, "mm")
  27173. },
  27174. {
  27175. name: "Micro",
  27176. height: math.unit(1, "cm")
  27177. },
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(2.1, "meters"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(7 + 5 / 12, "feet"),
  27190. weight: math.unit(357, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/solex-draconov/front.svg",
  27194. extra: 1993 / 1865,
  27195. bottom: 117 / 2111
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Natural Height",
  27202. height: math.unit(7 + 5 / 12, "feet"),
  27203. default: true
  27204. },
  27205. {
  27206. name: "Macro",
  27207. height: math.unit(350, "feet")
  27208. },
  27209. {
  27210. name: "Macro+",
  27211. height: math.unit(1000, "feet")
  27212. },
  27213. {
  27214. name: "Megamacro",
  27215. height: math.unit(20, "km")
  27216. },
  27217. {
  27218. name: "Megamacro+",
  27219. height: math.unit(1000, "km")
  27220. },
  27221. {
  27222. name: "Gigamacro",
  27223. height: math.unit(2.5, "Gm")
  27224. },
  27225. {
  27226. name: "Teramacro",
  27227. height: math.unit(15, "Tm")
  27228. },
  27229. {
  27230. name: "Galactic",
  27231. height: math.unit(30, "Zm")
  27232. },
  27233. {
  27234. name: "Universal",
  27235. height: math.unit(21000, "Ym")
  27236. },
  27237. {
  27238. name: "Omniversal",
  27239. height: math.unit(9.861e50, "Ym")
  27240. },
  27241. {
  27242. name: "Existential",
  27243. height: math.unit(1e300, "meters")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27249. {
  27250. side: {
  27251. height: math.unit(25, "feet"),
  27252. weight: math.unit(90000, "lb"),
  27253. name: "Side",
  27254. image: {
  27255. source: "./media/characters/mandarax/side.svg",
  27256. extra: 614 / 332,
  27257. bottom: 55 / 630
  27258. }
  27259. },
  27260. lounging: {
  27261. height: math.unit(15.4, "feet"),
  27262. weight: math.unit(90000, "lb"),
  27263. name: "Lounging",
  27264. image: {
  27265. source: "./media/characters/mandarax/lounging.svg",
  27266. extra: 817/609,
  27267. bottom: 685/1502
  27268. }
  27269. },
  27270. head: {
  27271. height: math.unit(11.4, "feet"),
  27272. name: "Head",
  27273. image: {
  27274. source: "./media/characters/mandarax/head.svg"
  27275. }
  27276. },
  27277. belly: {
  27278. height: math.unit(33, "feet"),
  27279. name: "Belly",
  27280. preyCapacity: math.unit(500, "people"),
  27281. image: {
  27282. source: "./media/characters/mandarax/belly.svg"
  27283. }
  27284. },
  27285. dick: {
  27286. height: math.unit(8.46, "feet"),
  27287. name: "Dick",
  27288. image: {
  27289. source: "./media/characters/mandarax/dick.svg"
  27290. }
  27291. },
  27292. top: {
  27293. height: math.unit(28, "meters"),
  27294. name: "Top",
  27295. image: {
  27296. source: "./media/characters/mandarax/top.svg"
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(25, "feet"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(5, "feet"),
  27313. weight: math.unit(90, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/pixil/front.svg",
  27317. extra: 2000 / 1618,
  27318. bottom: 12.3 / 2011
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(5, "feet"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Megamacro",
  27330. height: math.unit(10, "miles"),
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27336. {
  27337. front: {
  27338. height: math.unit(7 + 2 / 12, "feet"),
  27339. weight: math.unit(200, "lb"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/angel/front.svg",
  27343. extra: 1830 / 1737,
  27344. bottom: 22.6 / 1854,
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(7 + 2 / 12, "feet"),
  27352. default: true
  27353. },
  27354. {
  27355. name: "Macro",
  27356. height: math.unit(1000, "feet")
  27357. },
  27358. {
  27359. name: "Megamacro",
  27360. height: math.unit(2, "miles")
  27361. },
  27362. {
  27363. name: "Gigamacro",
  27364. height: math.unit(20, "earths")
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(5, "feet"),
  27373. weight: math.unit(180, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/mekana/front.svg",
  27377. extra: 1671 / 1605,
  27378. bottom: 3.5 / 1691
  27379. }
  27380. },
  27381. side: {
  27382. height: math.unit(5, "feet"),
  27383. weight: math.unit(180, "lb"),
  27384. name: "Side",
  27385. image: {
  27386. source: "./media/characters/mekana/side.svg",
  27387. extra: 1671 / 1605,
  27388. bottom: 3.5 / 1691
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(5, "feet"),
  27393. weight: math.unit(180, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/mekana/back.svg",
  27397. extra: 1671 / 1605,
  27398. bottom: 3.5 / 1691
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(5, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(4 + 6 / 12, "feet"),
  27415. weight: math.unit(80, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/pixie/front.svg",
  27419. extra: 1924 / 1825,
  27420. bottom: 22.4 / 1946
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(4 + 6 / 12, "feet"),
  27428. default: true
  27429. },
  27430. {
  27431. name: "Macro",
  27432. height: math.unit(40, "feet")
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27438. {
  27439. front: {
  27440. height: math.unit(2.1, "meters"),
  27441. weight: math.unit(200, "lb"),
  27442. name: "Front",
  27443. image: {
  27444. source: "./media/characters/the-lascivious/front.svg",
  27445. extra: 1 / 0.893,
  27446. bottom: 3.5 / 573.7
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Human Scale",
  27453. height: math.unit(2.1, "meters")
  27454. },
  27455. {
  27456. name: "Wolxi Scale",
  27457. height: math.unit(46.2, "m"),
  27458. default: true
  27459. },
  27460. {
  27461. name: "Boinker of Buildings",
  27462. height: math.unit(10, "km")
  27463. },
  27464. {
  27465. name: "Shagger of Skyscrapers",
  27466. height: math.unit(40, "km")
  27467. },
  27468. {
  27469. name: "Banger of Boroughs",
  27470. height: math.unit(4000, "km")
  27471. },
  27472. {
  27473. name: "Screwer of States",
  27474. height: math.unit(100000, "km")
  27475. },
  27476. {
  27477. name: "Pounder of Planets",
  27478. height: math.unit(2000000, "km")
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27484. {
  27485. front: {
  27486. height: math.unit(6, "feet"),
  27487. weight: math.unit(150, "lb"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/aj/front.svg",
  27491. extra: 2039 / 1562,
  27492. bottom: 40 / 2079
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Normal",
  27499. height: math.unit(11 + 6 / 12, "feet"),
  27500. default: true
  27501. },
  27502. {
  27503. name: "Megamacro",
  27504. height: math.unit(60, "megameters")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27510. {
  27511. side: {
  27512. height: math.unit(31 + 8 / 12, "feet"),
  27513. weight: math.unit(75000, "kg"),
  27514. name: "Side",
  27515. image: {
  27516. source: "./media/characters/koros/side.svg",
  27517. extra: 1442 / 1297,
  27518. bottom: 122.7 / 1562
  27519. }
  27520. },
  27521. dicksKingsCrown: {
  27522. height: math.unit(6, "feet"),
  27523. name: "Dicks (King's Crown)",
  27524. image: {
  27525. source: "./media/characters/koros/dicks-kings-crown.svg"
  27526. }
  27527. },
  27528. dicksTailSet: {
  27529. height: math.unit(3, "feet"),
  27530. name: "Dicks (Tail Set)",
  27531. image: {
  27532. source: "./media/characters/koros/dicks-tail-set.svg"
  27533. }
  27534. },
  27535. dickCumming: {
  27536. height: math.unit(7.98, "feet"),
  27537. name: "Dick (Cumming)",
  27538. image: {
  27539. source: "./media/characters/koros/dick-cumming.svg"
  27540. }
  27541. },
  27542. dicksBack: {
  27543. height: math.unit(5.9, "feet"),
  27544. name: "Dicks (Back)",
  27545. image: {
  27546. source: "./media/characters/koros/dicks-back.svg"
  27547. }
  27548. },
  27549. dicksFront: {
  27550. height: math.unit(3.72, "feet"),
  27551. name: "Dicks (Front)",
  27552. image: {
  27553. source: "./media/characters/koros/dicks-front.svg"
  27554. }
  27555. },
  27556. dicksPeeking: {
  27557. height: math.unit(3.0, "feet"),
  27558. name: "Dicks (Peeking)",
  27559. image: {
  27560. source: "./media/characters/koros/dicks-peeking.svg"
  27561. }
  27562. },
  27563. eye: {
  27564. height: math.unit(1.7, "feet"),
  27565. name: "Eye",
  27566. image: {
  27567. source: "./media/characters/koros/eye.svg"
  27568. }
  27569. },
  27570. headFront: {
  27571. height: math.unit(11.69, "feet"),
  27572. name: "Head (Front)",
  27573. image: {
  27574. source: "./media/characters/koros/head-front.svg"
  27575. }
  27576. },
  27577. headSide: {
  27578. height: math.unit(14, "feet"),
  27579. name: "Head (Side)",
  27580. image: {
  27581. source: "./media/characters/koros/head-side.svg"
  27582. }
  27583. },
  27584. leg: {
  27585. height: math.unit(17, "feet"),
  27586. name: "Leg",
  27587. image: {
  27588. source: "./media/characters/koros/leg.svg"
  27589. }
  27590. },
  27591. mawSide: {
  27592. height: math.unit(12.8, "feet"),
  27593. name: "Maw (Side)",
  27594. image: {
  27595. source: "./media/characters/koros/maw-side.svg"
  27596. }
  27597. },
  27598. mawSpitting: {
  27599. height: math.unit(17, "feet"),
  27600. name: "Maw (Spitting)",
  27601. image: {
  27602. source: "./media/characters/koros/maw-spitting.svg"
  27603. }
  27604. },
  27605. slit: {
  27606. height: math.unit(2.8, "feet"),
  27607. name: "Slit",
  27608. image: {
  27609. source: "./media/characters/koros/slit.svg"
  27610. }
  27611. },
  27612. stomach: {
  27613. height: math.unit(6.8, "feet"),
  27614. preyCapacity: math.unit(20, "people"),
  27615. name: "Stomach",
  27616. image: {
  27617. source: "./media/characters/koros/stomach.svg"
  27618. }
  27619. },
  27620. wingspanBottom: {
  27621. height: math.unit(114, "feet"),
  27622. name: "Wingspan (Bottom)",
  27623. image: {
  27624. source: "./media/characters/koros/wingspan-bottom.svg"
  27625. }
  27626. },
  27627. wingspanTop: {
  27628. height: math.unit(104, "feet"),
  27629. name: "Wingspan (Top)",
  27630. image: {
  27631. source: "./media/characters/koros/wingspan-top.svg"
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(31 + 8 / 12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(18 + 5 / 12, "feet"),
  27648. weight: math.unit(3750, "kg"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/vexx/front.svg",
  27652. extra: 426 / 396,
  27653. bottom: 31.5 / 458
  27654. }
  27655. },
  27656. maw: {
  27657. height: math.unit(6, "feet"),
  27658. name: "Maw",
  27659. image: {
  27660. source: "./media/characters/vexx/maw.svg"
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Normal",
  27667. height: math.unit(18 + 5 / 12, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(17 + 6 / 12, "feet"),
  27677. weight: math.unit(150, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/baadra/front.svg",
  27681. extra: 1694/1553,
  27682. bottom: 179/1873
  27683. }
  27684. },
  27685. frontAlt: {
  27686. height: math.unit(17 + 6 / 12, "feet"),
  27687. weight: math.unit(150, "lb"),
  27688. name: "Front (Alt)",
  27689. image: {
  27690. source: "./media/characters/baadra/front-alt.svg",
  27691. extra: 3137 / 2890,
  27692. bottom: 168.4 / 3305
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(17 + 6 / 12, "feet"),
  27697. weight: math.unit(150, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/baadra/back.svg",
  27701. extra: 3142 / 2890,
  27702. bottom: 220 / 3371
  27703. }
  27704. },
  27705. head: {
  27706. height: math.unit(5.45, "feet"),
  27707. name: "Head",
  27708. image: {
  27709. source: "./media/characters/baadra/head.svg"
  27710. }
  27711. },
  27712. headAngry: {
  27713. height: math.unit(4.95, "feet"),
  27714. name: "Head (Angry)",
  27715. image: {
  27716. source: "./media/characters/baadra/head-angry.svg"
  27717. }
  27718. },
  27719. headOpen: {
  27720. height: math.unit(6, "feet"),
  27721. name: "Head (Open)",
  27722. image: {
  27723. source: "./media/characters/baadra/head-open.svg"
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(17 + 6 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(7 + 3 / 12, "feet"),
  27740. weight: math.unit(180, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/juri/front.svg",
  27744. extra: 1401 / 1237,
  27745. bottom: 18.5 / 1418
  27746. }
  27747. },
  27748. side: {
  27749. height: math.unit(7 + 3 / 12, "feet"),
  27750. weight: math.unit(180, "lb"),
  27751. name: "Side",
  27752. image: {
  27753. source: "./media/characters/juri/side.svg",
  27754. extra: 1424 / 1242,
  27755. bottom: 18.5 / 1447
  27756. }
  27757. },
  27758. sitting: {
  27759. height: math.unit(6, "feet"),
  27760. weight: math.unit(180, "lb"),
  27761. name: "Sitting",
  27762. image: {
  27763. source: "./media/characters/juri/sitting.svg",
  27764. extra: 1270 / 1143,
  27765. bottom: 100 / 1343
  27766. }
  27767. },
  27768. back: {
  27769. height: math.unit(7 + 3 / 12, "feet"),
  27770. weight: math.unit(180, "lb"),
  27771. name: "Back",
  27772. image: {
  27773. source: "./media/characters/juri/back.svg",
  27774. extra: 1377 / 1240,
  27775. bottom: 23.7 / 1405
  27776. }
  27777. },
  27778. maw: {
  27779. height: math.unit(2.8, "feet"),
  27780. name: "Maw",
  27781. image: {
  27782. source: "./media/characters/juri/maw.svg"
  27783. }
  27784. },
  27785. stomach: {
  27786. height: math.unit(0.89, "feet"),
  27787. preyCapacity: math.unit(4, "liters"),
  27788. name: "Stomach",
  27789. image: {
  27790. source: "./media/characters/juri/stomach.svg"
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(7 + 3 / 12, "feet"),
  27798. default: true
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27804. {
  27805. fox: {
  27806. height: math.unit(5 + 6 / 12, "feet"),
  27807. weight: math.unit(140, "lb"),
  27808. name: "Fox",
  27809. image: {
  27810. source: "./media/characters/maxene-sita/fox.svg",
  27811. extra: 146 / 138,
  27812. bottom: 2.1 / 148.19
  27813. }
  27814. },
  27815. foxLaying: {
  27816. height: math.unit(1.70, "feet"),
  27817. weight: math.unit(140, "lb"),
  27818. name: "Fox (Laying)",
  27819. image: {
  27820. source: "./media/characters/maxene-sita/fox-laying.svg",
  27821. extra: 910 / 572,
  27822. bottom: 71 / 981
  27823. }
  27824. },
  27825. kitsune: {
  27826. height: math.unit(10, "feet"),
  27827. weight: math.unit(800, "lb"),
  27828. name: "Kitsune",
  27829. image: {
  27830. source: "./media/characters/maxene-sita/kitsune.svg",
  27831. extra: 185 / 176,
  27832. bottom: 4.7 / 189.9
  27833. }
  27834. },
  27835. hellhound: {
  27836. height: math.unit(10, "feet"),
  27837. weight: math.unit(700, "lb"),
  27838. name: "Hellhound",
  27839. image: {
  27840. source: "./media/characters/maxene-sita/hellhound.svg",
  27841. extra: 1600 / 1545,
  27842. bottom: 81 / 1681
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(5 + 6 / 12, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27856. {
  27857. front: {
  27858. height: math.unit(3 + 4 / 12, "feet"),
  27859. weight: math.unit(70, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/maia/front.svg",
  27863. extra: 227 / 219.5,
  27864. bottom: 40 / 267
  27865. }
  27866. },
  27867. back: {
  27868. height: math.unit(3 + 4 / 12, "feet"),
  27869. weight: math.unit(70, "lb"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/maia/back.svg",
  27873. extra: 237 / 225
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(3 + 4 / 12, "feet"),
  27881. default: true
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27887. {
  27888. front: {
  27889. height: math.unit(5 + 10 / 12, "feet"),
  27890. weight: math.unit(197, "lb"),
  27891. name: "Front",
  27892. image: {
  27893. source: "./media/characters/jabaro/front.svg",
  27894. extra: 225 / 216,
  27895. bottom: 5.06 / 230
  27896. }
  27897. },
  27898. back: {
  27899. height: math.unit(5 + 10 / 12, "feet"),
  27900. weight: math.unit(197, "lb"),
  27901. name: "Back",
  27902. image: {
  27903. source: "./media/characters/jabaro/back.svg",
  27904. extra: 225 / 219,
  27905. bottom: 1.9 / 227
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(5 + 10 / 12, "feet"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27919. {
  27920. front: {
  27921. height: math.unit(5 + 8 / 12, "feet"),
  27922. weight: math.unit(139, "lb"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/risa/front.svg",
  27926. extra: 270 / 260,
  27927. bottom: 11.2 / 282
  27928. }
  27929. },
  27930. back: {
  27931. height: math.unit(5 + 8 / 12, "feet"),
  27932. weight: math.unit(139, "lb"),
  27933. name: "Back",
  27934. image: {
  27935. source: "./media/characters/risa/back.svg",
  27936. extra: 264 / 255,
  27937. bottom: 4 / 268
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(5 + 8 / 12, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(2 + 11 / 12, "feet"),
  27954. weight: math.unit(30, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/weatley/front.svg",
  27958. bottom: 10.7 / 414,
  27959. extra: 403.5 / 362
  27960. }
  27961. },
  27962. back: {
  27963. height: math.unit(2 + 11 / 12, "feet"),
  27964. weight: math.unit(30, "lb"),
  27965. name: "Back",
  27966. image: {
  27967. source: "./media/characters/weatley/back.svg",
  27968. bottom: 10.7 / 414,
  27969. extra: 403.5 / 362
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(2 + 11 / 12, "feet"),
  27977. default: true
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(5 + 2 / 12, "feet"),
  27986. weight: math.unit(50, "kg"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/mercury-crescent/front.svg",
  27990. extra: 1088 / 1033,
  27991. bottom: 18.9 / 1109
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(5 + 2 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(2, "feet"),
  28008. weight: math.unit(15, "kg"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/diamond-jones/front.svg",
  28012. extra: 727/723,
  28013. bottom: 46/773
  28014. }
  28015. },
  28016. },
  28017. [
  28018. {
  28019. name: "Normal",
  28020. height: math.unit(2, "feet"),
  28021. default: true
  28022. },
  28023. ]
  28024. ))
  28025. characterMakers.push(() => makeCharacter(
  28026. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28027. {
  28028. front: {
  28029. height: math.unit(3, "feet"),
  28030. weight: math.unit(30, "kg"),
  28031. name: "Front",
  28032. image: {
  28033. source: "./media/characters/sweet-bit/front.svg",
  28034. extra: 675 / 567,
  28035. bottom: 27.7 / 703
  28036. }
  28037. },
  28038. },
  28039. [
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(3, "feet"),
  28043. default: true
  28044. },
  28045. ]
  28046. ))
  28047. characterMakers.push(() => makeCharacter(
  28048. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28049. {
  28050. side: {
  28051. height: math.unit(9.178, "feet"),
  28052. weight: math.unit(500, "lb"),
  28053. name: "Side",
  28054. image: {
  28055. source: "./media/characters/umbrazen/side.svg",
  28056. extra: 1730 / 1473,
  28057. bottom: 34.6 / 1765
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(9.178, "feet"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(10, "feet"),
  28074. weight: math.unit(750, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/arlist/front.svg",
  28078. extra: 961 / 778,
  28079. bottom: 6.2 / 986
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(10, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(5 + 1 / 12, "feet"),
  28096. weight: math.unit(110, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/aradel/front.svg",
  28100. extra: 324 / 303,
  28101. bottom: 3.6 / 329.4
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(5 + 1 / 12, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28115. {
  28116. dressed: {
  28117. height: math.unit(3 + 8 / 12, "feet"),
  28118. weight: math.unit(50, "lb"),
  28119. name: "Dressed",
  28120. image: {
  28121. source: "./media/characters/serryn/dressed.svg",
  28122. extra: 1792 / 1656,
  28123. bottom: 43.5 / 1840
  28124. }
  28125. },
  28126. nude: {
  28127. height: math.unit(3 + 8 / 12, "feet"),
  28128. weight: math.unit(50, "lb"),
  28129. name: "Nude",
  28130. image: {
  28131. source: "./media/characters/serryn/nude.svg",
  28132. extra: 1792 / 1656,
  28133. bottom: 43.5 / 1840
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Normal",
  28140. height: math.unit(3 + 8 / 12, "feet"),
  28141. default: true
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(7 + 10 / 12, "feet"),
  28150. weight: math.unit(255, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/xavier-thyme/front.svg",
  28154. extra: 3733 / 3642,
  28155. bottom: 131 / 3869
  28156. }
  28157. },
  28158. frontRaven: {
  28159. height: math.unit(7 + 10 / 12, "feet"),
  28160. weight: math.unit(255, "lb"),
  28161. name: "Front (Raven)",
  28162. image: {
  28163. source: "./media/characters/xavier-thyme/front-raven.svg",
  28164. extra: 4385 / 3642,
  28165. bottom: 131 / 4517
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Normal",
  28172. height: math.unit(7 + 10 / 12, "feet"),
  28173. default: true
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(1.6, "m"),
  28182. weight: math.unit(50, "kg"),
  28183. name: "Front",
  28184. image: {
  28185. source: "./media/characters/kiki/front.svg",
  28186. extra: 4682 / 3610,
  28187. bottom: 115 / 4777
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(1.6, "meters"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(50, "m"),
  28204. weight: math.unit(500, "tonnes"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/ryoko/front.svg",
  28208. extra: 4632 / 3926,
  28209. bottom: 193 / 4823
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(50, "meters"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(30, "m"),
  28226. weight: math.unit(22, "tonnes"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/elio/front.svg",
  28230. extra: 4582 / 3720,
  28231. bottom: 236 / 4828
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(30, "meters"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(6 + 3 / 12, "feet"),
  28248. weight: math.unit(120, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/azura/front.svg",
  28252. extra: 1149 / 1135,
  28253. bottom: 45 / 1194
  28254. }
  28255. },
  28256. frontClothed: {
  28257. height: math.unit(6 + 3 / 12, "feet"),
  28258. weight: math.unit(120, "lb"),
  28259. name: "Front (Clothed)",
  28260. image: {
  28261. source: "./media/characters/azura/front-clothed.svg",
  28262. extra: 1149 / 1135,
  28263. bottom: 45 / 1194
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(6 + 3 / 12, "feet"),
  28271. default: true
  28272. },
  28273. {
  28274. name: "Macro",
  28275. height: math.unit(20 + 6 / 12, "feet")
  28276. },
  28277. {
  28278. name: "Megamacro",
  28279. height: math.unit(12, "miles")
  28280. },
  28281. {
  28282. name: "Gigamacro",
  28283. height: math.unit(10000, "miles")
  28284. },
  28285. {
  28286. name: "Teramacro",
  28287. height: math.unit(900000, "miles")
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(12, "feet"),
  28296. weight: math.unit(1, "ton"),
  28297. capacity: math.unit(660000, "gallons"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/zeus/front.svg",
  28301. extra: 5005 / 4717,
  28302. bottom: 363 / 5388
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(12, "feet")
  28310. },
  28311. {
  28312. name: "Preferred Size",
  28313. height: math.unit(0.5, "miles"),
  28314. default: true
  28315. },
  28316. {
  28317. name: "Giga Horse",
  28318. height: math.unit(300, "miles")
  28319. },
  28320. {
  28321. name: "Riding Planets",
  28322. height: math.unit(30, "megameters")
  28323. },
  28324. {
  28325. name: "Cosmic Giant",
  28326. height: math.unit(3, "zettameters")
  28327. },
  28328. {
  28329. name: "Breeding God",
  28330. height: math.unit(9.92e22, "yottameters")
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28336. {
  28337. side: {
  28338. height: math.unit(9, "feet"),
  28339. weight: math.unit(1500, "kg"),
  28340. name: "Side",
  28341. image: {
  28342. source: "./media/characters/fang/side.svg",
  28343. extra: 924 / 866,
  28344. bottom: 47.5 / 972.3
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(9, "feet"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Macro",
  28356. height: math.unit(75 + 6 / 12, "feet")
  28357. },
  28358. {
  28359. name: "Teramacro",
  28360. height: math.unit(50000, "miles")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(10, "feet"),
  28369. weight: math.unit(2, "tons"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/rekhit/front.svg",
  28373. extra: 2796 / 2590,
  28374. bottom: 225 / 3022
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(10, "feet"),
  28382. default: true
  28383. },
  28384. {
  28385. name: "Macro",
  28386. height: math.unit(500, "feet")
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(7 + 6.451 / 12, "feet"),
  28395. weight: math.unit(310, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/dahlia-verrick/front.svg",
  28399. extra: 1488 / 1365,
  28400. bottom: 6.2 / 1495
  28401. }
  28402. },
  28403. back: {
  28404. height: math.unit(7 + 6.451 / 12, "feet"),
  28405. weight: math.unit(310, "lb"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/dahlia-verrick/back.svg",
  28409. extra: 1472 / 1351,
  28410. bottom: 5.28 / 1477
  28411. }
  28412. },
  28413. frontBusiness: {
  28414. height: math.unit(7 + 6.451 / 12, "feet"),
  28415. weight: math.unit(200, "lb"),
  28416. name: "Front (Business)",
  28417. image: {
  28418. source: "./media/characters/dahlia-verrick/front-business.svg",
  28419. extra: 1478 / 1381,
  28420. bottom: 5.5 / 1484
  28421. }
  28422. },
  28423. frontCasual: {
  28424. height: math.unit(7 + 6.451 / 12, "feet"),
  28425. weight: math.unit(200, "lb"),
  28426. name: "Front (Casual)",
  28427. image: {
  28428. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28429. extra: 1478 / 1381,
  28430. bottom: 5.5 / 1484
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Travel-Sized",
  28437. height: math.unit(7.45, "inches")
  28438. },
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(7 + 6.451 / 12, "feet"),
  28442. default: true
  28443. },
  28444. {
  28445. name: "Hitting the Town",
  28446. height: math.unit(37 + 8 / 12, "feet")
  28447. },
  28448. {
  28449. name: "Stomp in the Suburbs",
  28450. height: math.unit(964 + 9.728 / 12, "feet")
  28451. },
  28452. {
  28453. name: "Sit on the City",
  28454. height: math.unit(61747 + 10.592 / 12, "feet")
  28455. },
  28456. {
  28457. name: "Glomp the Globe",
  28458. height: math.unit(252919327 + 4.832 / 12, "feet")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(6 + 4 / 12, "feet"),
  28467. weight: math.unit(320, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/balina-mahigan/front.svg",
  28471. extra: 447 / 428,
  28472. bottom: 18 / 466
  28473. }
  28474. },
  28475. back: {
  28476. height: math.unit(6 + 4 / 12, "feet"),
  28477. weight: math.unit(320, "lb"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/balina-mahigan/back.svg",
  28481. extra: 445 / 428,
  28482. bottom: 4.07 / 448
  28483. }
  28484. },
  28485. arm: {
  28486. height: math.unit(1.88, "feet"),
  28487. name: "Arm",
  28488. image: {
  28489. source: "./media/characters/balina-mahigan/arm.svg"
  28490. }
  28491. },
  28492. backPort: {
  28493. height: math.unit(0.685, "feet"),
  28494. name: "Back Port",
  28495. image: {
  28496. source: "./media/characters/balina-mahigan/back-port.svg"
  28497. }
  28498. },
  28499. hoofpaw: {
  28500. height: math.unit(1.41, "feet"),
  28501. name: "Hoofpaw",
  28502. image: {
  28503. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28504. }
  28505. },
  28506. leftHandBack: {
  28507. height: math.unit(0.938, "feet"),
  28508. name: "Left Hand (Back)",
  28509. image: {
  28510. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28511. }
  28512. },
  28513. leftHandFront: {
  28514. height: math.unit(0.938, "feet"),
  28515. name: "Left Hand (Front)",
  28516. image: {
  28517. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28518. }
  28519. },
  28520. rightHandBack: {
  28521. height: math.unit(0.95, "feet"),
  28522. name: "Right Hand (Back)",
  28523. image: {
  28524. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28525. }
  28526. },
  28527. rightHandFront: {
  28528. height: math.unit(0.95, "feet"),
  28529. name: "Right Hand (Front)",
  28530. image: {
  28531. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(6 + 4 / 12, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(6, "feet"),
  28548. weight: math.unit(320, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/balina-mejeri/front.svg",
  28552. extra: 517 / 488,
  28553. bottom: 44.2 / 561
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(6 + 4 / 12, "feet")
  28561. },
  28562. {
  28563. name: "Business",
  28564. height: math.unit(155, "feet"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28571. {
  28572. kneeling: {
  28573. height: math.unit(6 + 4 / 12, "feet"),
  28574. weight: math.unit(300 * 20, "lb"),
  28575. name: "Kneeling",
  28576. image: {
  28577. source: "./media/characters/balbarian/kneeling.svg",
  28578. extra: 922 / 862,
  28579. bottom: 42.4 / 965
  28580. }
  28581. },
  28582. },
  28583. [
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(6 + 4 / 12, "feet")
  28587. },
  28588. {
  28589. name: "Treasured",
  28590. height: math.unit(18 + 9 / 12, "feet"),
  28591. default: true
  28592. },
  28593. {
  28594. name: "Macro",
  28595. height: math.unit(900, "feet")
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(6 + 4 / 12, "feet"),
  28604. weight: math.unit(325, "lb"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/balina-amarini/front.svg",
  28608. extra: 415 / 403,
  28609. bottom: 19 / 433.4
  28610. }
  28611. },
  28612. back: {
  28613. height: math.unit(6 + 4 / 12, "feet"),
  28614. weight: math.unit(325, "lb"),
  28615. name: "Back",
  28616. image: {
  28617. source: "./media/characters/balina-amarini/back.svg",
  28618. extra: 415 / 403,
  28619. bottom: 13.5 / 432
  28620. }
  28621. },
  28622. overdrive: {
  28623. height: math.unit(6 + 4 / 12, "feet"),
  28624. weight: math.unit(400, "lb"),
  28625. name: "Overdrive",
  28626. image: {
  28627. source: "./media/characters/balina-amarini/overdrive.svg",
  28628. extra: 269 / 259,
  28629. bottom: 12 / 282
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Boom",
  28636. height: math.unit(9 + 10 / 12, "feet"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(280, "feet")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28647. {
  28648. goddess: {
  28649. height: math.unit(600, "feet"),
  28650. weight: math.unit(2000000, "tons"),
  28651. name: "Goddess",
  28652. image: {
  28653. source: "./media/characters/lady-kubwa/goddess.svg",
  28654. extra: 1240.5 / 1223,
  28655. bottom: 22 / 1263
  28656. }
  28657. },
  28658. goddesser: {
  28659. height: math.unit(900, "feet"),
  28660. weight: math.unit(20000000, "lb"),
  28661. name: "Goddess-er",
  28662. image: {
  28663. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28664. extra: 899 / 888,
  28665. bottom: 12.6 / 912
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(600, "feet"),
  28673. default: true
  28674. },
  28675. {
  28676. name: "Megamacro",
  28677. height: math.unit(250, "miles")
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(7 + 7 / 12, "feet"),
  28686. weight: math.unit(250, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/tala-grovehorn/front.svg",
  28690. extra: 2636 / 2525,
  28691. bottom: 147 / 2781
  28692. }
  28693. },
  28694. back: {
  28695. height: math.unit(7 + 7 / 12, "feet"),
  28696. weight: math.unit(250, "lb"),
  28697. name: "Back",
  28698. image: {
  28699. source: "./media/characters/tala-grovehorn/back.svg",
  28700. extra: 2635 / 2539,
  28701. bottom: 100 / 2732.8
  28702. }
  28703. },
  28704. mouth: {
  28705. height: math.unit(1.15, "feet"),
  28706. name: "Mouth",
  28707. image: {
  28708. source: "./media/characters/tala-grovehorn/mouth.svg"
  28709. }
  28710. },
  28711. dick: {
  28712. height: math.unit(2.36, "feet"),
  28713. name: "Dick",
  28714. image: {
  28715. source: "./media/characters/tala-grovehorn/dick.svg"
  28716. }
  28717. },
  28718. slit: {
  28719. height: math.unit(0.61, "feet"),
  28720. name: "Slit",
  28721. image: {
  28722. source: "./media/characters/tala-grovehorn/slit.svg"
  28723. }
  28724. },
  28725. },
  28726. [
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(7 + 7 / 12, "feet"),
  28734. weight: math.unit(225, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/epona/front.svg",
  28738. extra: 2445 / 2290,
  28739. bottom: 251 / 2696
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(7 + 7 / 12, "feet"),
  28744. weight: math.unit(225, "lb"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/epona/back.svg",
  28748. extra: 2546 / 2408,
  28749. bottom: 44 / 2589
  28750. }
  28751. },
  28752. genitals: {
  28753. height: math.unit(1.5, "feet"),
  28754. name: "Genitals",
  28755. image: {
  28756. source: "./media/characters/epona/genitals.svg"
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(7 + 7 / 12, "feet"),
  28764. default: true
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(7, "feet"),
  28773. weight: math.unit(518, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/avia-bloodbourn/front.svg",
  28777. extra: 1466 / 1350,
  28778. bottom: 65 / 1527
  28779. }
  28780. },
  28781. },
  28782. [
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(9.35, "feet"),
  28790. weight: math.unit(600, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/amera/front.svg",
  28794. extra: 891 / 818,
  28795. bottom: 30 / 922.7
  28796. }
  28797. },
  28798. back: {
  28799. height: math.unit(9.35, "feet"),
  28800. weight: math.unit(600, "lb"),
  28801. name: "Back",
  28802. image: {
  28803. source: "./media/characters/amera/back.svg",
  28804. extra: 876 / 824,
  28805. bottom: 6.8 / 884
  28806. }
  28807. },
  28808. dick: {
  28809. height: math.unit(2.14, "feet"),
  28810. name: "Dick",
  28811. image: {
  28812. source: "./media/characters/amera/dick.svg"
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Normal",
  28819. height: math.unit(9.35, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28826. {
  28827. kneeling: {
  28828. height: math.unit(3 + 4 / 12, "feet"),
  28829. weight: math.unit(90, "lb"),
  28830. name: "Kneeling",
  28831. image: {
  28832. source: "./media/characters/rosewen/kneeling.svg",
  28833. extra: 1835 / 1571,
  28834. bottom: 27.7 / 1862
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(3 + 4 / 12, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(5 + 10 / 12, "feet"),
  28851. weight: math.unit(200, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/sabah/front.svg",
  28855. extra: 849 / 763,
  28856. bottom: 33.9 / 881
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(5 + 10 / 12, "feet"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28870. {
  28871. front: {
  28872. height: math.unit(3 + 5 / 12, "feet"),
  28873. weight: math.unit(40, "kg"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/purple-flame/front.svg",
  28877. extra: 1577 / 1412,
  28878. bottom: 97 / 1694
  28879. }
  28880. },
  28881. frontDressed: {
  28882. height: math.unit(3 + 5 / 12, "feet"),
  28883. weight: math.unit(40, "kg"),
  28884. name: "Front (Dressed)",
  28885. image: {
  28886. source: "./media/characters/purple-flame/front-dressed.svg",
  28887. extra: 1577 / 1412,
  28888. bottom: 97 / 1694
  28889. }
  28890. },
  28891. headphones: {
  28892. height: math.unit(0.85, "feet"),
  28893. name: "Headphones",
  28894. image: {
  28895. source: "./media/characters/purple-flame/headphones.svg"
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Really Small",
  28902. height: math.unit(5, "cm")
  28903. },
  28904. {
  28905. name: "Micro",
  28906. height: math.unit(1 + 5 / 12, "feet")
  28907. },
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(3 + 5 / 12, "feet"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Minimacro",
  28915. height: math.unit(125, "feet")
  28916. },
  28917. {
  28918. name: "Macro",
  28919. height: math.unit(0.5, "miles")
  28920. },
  28921. {
  28922. name: "Megamacro",
  28923. height: math.unit(50, "miles")
  28924. },
  28925. {
  28926. name: "Gigantic",
  28927. height: math.unit(750, "miles")
  28928. },
  28929. {
  28930. name: "Planetary",
  28931. height: math.unit(15000, "miles")
  28932. },
  28933. ]
  28934. ))
  28935. characterMakers.push(() => makeCharacter(
  28936. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28937. {
  28938. front: {
  28939. height: math.unit(14, "feet"),
  28940. weight: math.unit(959, "lb"),
  28941. name: "Front",
  28942. image: {
  28943. source: "./media/characters/arsenal/front.svg",
  28944. extra: 2357 / 2157,
  28945. bottom: 93 / 2458
  28946. }
  28947. },
  28948. },
  28949. [
  28950. {
  28951. name: "Normal",
  28952. height: math.unit(14, "feet"),
  28953. default: true
  28954. },
  28955. ]
  28956. ))
  28957. characterMakers.push(() => makeCharacter(
  28958. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28959. {
  28960. front: {
  28961. height: math.unit(6, "feet"),
  28962. weight: math.unit(150, "lb"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/adira/front.svg",
  28966. extra: 1078 / 1029,
  28967. bottom: 87 / 1166
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Micro",
  28974. height: math.unit(4, "inches"),
  28975. default: true
  28976. },
  28977. {
  28978. name: "Macro",
  28979. height: math.unit(50, "feet")
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28985. {
  28986. front: {
  28987. height: math.unit(16, "feet"),
  28988. weight: math.unit(1000, "lb"),
  28989. name: "Front",
  28990. image: {
  28991. source: "./media/characters/grim/front.svg",
  28992. extra: 622 / 614,
  28993. bottom: 18.1 / 642
  28994. }
  28995. },
  28996. back: {
  28997. height: math.unit(16, "feet"),
  28998. weight: math.unit(1000, "lb"),
  28999. name: "Back",
  29000. image: {
  29001. source: "./media/characters/grim/back.svg",
  29002. extra: 610.6 / 602,
  29003. bottom: 40.8 / 652
  29004. }
  29005. },
  29006. hunched: {
  29007. height: math.unit(9.75, "feet"),
  29008. weight: math.unit(1000, "lb"),
  29009. name: "Hunched",
  29010. image: {
  29011. source: "./media/characters/grim/hunched.svg",
  29012. extra: 304 / 297,
  29013. bottom: 35.4 / 394
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(16, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(2.3, "meters"),
  29030. weight: math.unit(300, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/sinja/front-sfw.svg",
  29034. extra: 1393 / 1294,
  29035. bottom: 70 / 1463
  29036. }
  29037. },
  29038. frontNsfw: {
  29039. height: math.unit(2.3, "meters"),
  29040. weight: math.unit(300, "lb"),
  29041. name: "Front (NSFW)",
  29042. image: {
  29043. source: "./media/characters/sinja/front-nsfw.svg",
  29044. extra: 1393 / 1294,
  29045. bottom: 70 / 1463
  29046. }
  29047. },
  29048. back: {
  29049. height: math.unit(2.3, "meters"),
  29050. weight: math.unit(300, "lb"),
  29051. name: "Back",
  29052. image: {
  29053. source: "./media/characters/sinja/back.svg",
  29054. extra: 1393 / 1294,
  29055. bottom: 70 / 1463
  29056. }
  29057. },
  29058. head: {
  29059. height: math.unit(1.771, "feet"),
  29060. name: "Head",
  29061. image: {
  29062. source: "./media/characters/sinja/head.svg"
  29063. }
  29064. },
  29065. slit: {
  29066. height: math.unit(0.8, "feet"),
  29067. name: "Slit",
  29068. image: {
  29069. source: "./media/characters/sinja/slit.svg"
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(2.3, "meters")
  29077. },
  29078. {
  29079. name: "Macro",
  29080. height: math.unit(91, "meters"),
  29081. default: true
  29082. },
  29083. {
  29084. name: "Megamacro",
  29085. height: math.unit(91440, "meters")
  29086. },
  29087. {
  29088. name: "Gigamacro",
  29089. height: math.unit(60960000, "meters")
  29090. },
  29091. {
  29092. name: "Teramacro",
  29093. height: math.unit(9144000000, "meters")
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29099. {
  29100. front: {
  29101. height: math.unit(1.7, "meters"),
  29102. weight: math.unit(130, "lb"),
  29103. name: "Front",
  29104. image: {
  29105. source: "./media/characters/kyu/front.svg",
  29106. extra: 415 / 395,
  29107. bottom: 5 / 420
  29108. }
  29109. },
  29110. head: {
  29111. height: math.unit(1.75, "feet"),
  29112. name: "Head",
  29113. image: {
  29114. source: "./media/characters/kyu/head.svg"
  29115. }
  29116. },
  29117. foot: {
  29118. height: math.unit(0.81, "feet"),
  29119. name: "Foot",
  29120. image: {
  29121. source: "./media/characters/kyu/foot.svg"
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(1.7, "meters")
  29129. },
  29130. {
  29131. name: "Macro",
  29132. height: math.unit(131, "feet"),
  29133. default: true
  29134. },
  29135. {
  29136. name: "Megamacro",
  29137. height: math.unit(91440, "meters")
  29138. },
  29139. {
  29140. name: "Gigamacro",
  29141. height: math.unit(60960000, "meters")
  29142. },
  29143. {
  29144. name: "Teramacro",
  29145. height: math.unit(9144000000, "meters")
  29146. },
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29151. {
  29152. front: {
  29153. height: math.unit(7 + 1 / 12, "feet"),
  29154. weight: math.unit(250, "lb"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/joey/front.svg",
  29158. extra: 1791 / 1537,
  29159. bottom: 28 / 1816
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Micro",
  29166. height: math.unit(3, "inches")
  29167. },
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(7 + 1 / 12, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(165, "cm"),
  29180. weight: math.unit(140, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/sam-evans/front.svg",
  29184. extra: 3417 / 3230,
  29185. bottom: 41.3 / 3417
  29186. }
  29187. },
  29188. frontSixTails: {
  29189. height: math.unit(165, "cm"),
  29190. weight: math.unit(140, "lb"),
  29191. name: "Front-six-tails",
  29192. image: {
  29193. source: "./media/characters/sam-evans/front-six-tails.svg",
  29194. extra: 3417 / 3230,
  29195. bottom: 41.3 / 3417
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(165, "cm"),
  29200. weight: math.unit(140, "lb"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/sam-evans/back.svg",
  29204. extra: 3227 / 3032,
  29205. bottom: 6.8 / 3234
  29206. }
  29207. },
  29208. face: {
  29209. height: math.unit(0.68, "feet"),
  29210. name: "Face",
  29211. image: {
  29212. source: "./media/characters/sam-evans/face.svg"
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(165, "cm"),
  29220. default: true
  29221. },
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(100, "meters")
  29225. },
  29226. {
  29227. name: "Macro+",
  29228. height: math.unit(800, "meters")
  29229. },
  29230. {
  29231. name: "Macro++",
  29232. height: math.unit(3, "km")
  29233. },
  29234. {
  29235. name: "Macro+++",
  29236. height: math.unit(30, "km")
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(10, "feet"),
  29245. weight: math.unit(750, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/juliet-a/front.svg",
  29249. extra: 1766 / 1720,
  29250. bottom: 43 / 1809
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(10, "feet"),
  29255. weight: math.unit(750, "lb"),
  29256. name: "Back",
  29257. image: {
  29258. source: "./media/characters/juliet-a/back.svg",
  29259. extra: 1781 / 1734,
  29260. bottom: 35 / 1810,
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(10, "feet"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Dragon Form",
  29272. height: math.unit(250, "feet")
  29273. },
  29274. {
  29275. name: "Macro",
  29276. height: math.unit(1000, "feet")
  29277. },
  29278. {
  29279. name: "Megamacro",
  29280. height: math.unit(10000, "feet")
  29281. }
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29286. {
  29287. regular: {
  29288. height: math.unit(7 + 3 / 12, "feet"),
  29289. weight: math.unit(260, "lb"),
  29290. name: "Regular",
  29291. image: {
  29292. source: "./media/characters/wild/regular.svg",
  29293. extra: 97.45 / 92,
  29294. bottom: 6.8 / 104.3
  29295. }
  29296. },
  29297. biggums: {
  29298. height: math.unit(8 + 6 / 12, "feet"),
  29299. weight: math.unit(425, "lb"),
  29300. name: "Biggums",
  29301. image: {
  29302. source: "./media/characters/wild/biggums.svg",
  29303. extra: 97.45 / 92,
  29304. bottom: 7.5 / 132.34
  29305. }
  29306. },
  29307. mawRegular: {
  29308. height: math.unit(1.24, "feet"),
  29309. name: "Maw (Regular)",
  29310. image: {
  29311. source: "./media/characters/wild/maw.svg"
  29312. }
  29313. },
  29314. mawBiggums: {
  29315. height: math.unit(1.47, "feet"),
  29316. name: "Maw (Biggums)",
  29317. image: {
  29318. source: "./media/characters/wild/maw.svg"
  29319. }
  29320. },
  29321. },
  29322. [
  29323. {
  29324. name: "Normal",
  29325. height: math.unit(7 + 3 / 12, "feet"),
  29326. default: true
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29332. {
  29333. front: {
  29334. height: math.unit(2.5, "meters"),
  29335. weight: math.unit(200, "kg"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/vidar/front.svg",
  29339. extra: 2994 / 2795,
  29340. bottom: 56 / 3061
  29341. }
  29342. },
  29343. back: {
  29344. height: math.unit(2.5, "meters"),
  29345. weight: math.unit(200, "kg"),
  29346. name: "Back",
  29347. image: {
  29348. source: "./media/characters/vidar/back.svg",
  29349. extra: 3131 / 2928,
  29350. bottom: 13.5 / 3141.5
  29351. }
  29352. },
  29353. feral: {
  29354. height: math.unit(2.5, "meters"),
  29355. weight: math.unit(2000, "kg"),
  29356. name: "Feral",
  29357. image: {
  29358. source: "./media/characters/vidar/feral.svg",
  29359. extra: 2790 / 1765,
  29360. bottom: 6 / 2796
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Normal",
  29367. height: math.unit(2.5, "meters"),
  29368. default: true
  29369. },
  29370. {
  29371. name: "Macro",
  29372. height: math.unit(100, "meters")
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29378. {
  29379. front: {
  29380. height: math.unit(5 + 9 / 12, "feet"),
  29381. weight: math.unit(120, "lb"),
  29382. name: "Front",
  29383. image: {
  29384. source: "./media/characters/ash/front.svg",
  29385. extra: 2189 / 1961,
  29386. bottom: 5.2 / 2194
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(5 + 9 / 12, "feet"),
  29394. default: true
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(9, "feet"),
  29403. weight: math.unit(10000, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/gygabite/front.svg",
  29407. bottom: 31.7 / 537.8,
  29408. extra: 505 / 370
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(9, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(12, "feet"),
  29425. weight: math.unit(4000, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/p0tat0/front.svg",
  29429. extra: 1065 / 921,
  29430. bottom: 55.7 / 1121.25
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(12, "feet"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29444. {
  29445. side: {
  29446. height: math.unit(6.5, "feet"),
  29447. weight: math.unit(800, "lb"),
  29448. name: "Side",
  29449. image: {
  29450. source: "./media/characters/dusk/side.svg",
  29451. extra: 615 / 373,
  29452. bottom: 53 / 664
  29453. }
  29454. },
  29455. sitting: {
  29456. height: math.unit(7, "feet"),
  29457. weight: math.unit(800, "lb"),
  29458. name: "Sitting",
  29459. image: {
  29460. source: "./media/characters/dusk/sitting.svg",
  29461. extra: 753 / 425,
  29462. bottom: 33 / 774
  29463. }
  29464. },
  29465. head: {
  29466. height: math.unit(6.1, "feet"),
  29467. name: "Head",
  29468. image: {
  29469. source: "./media/characters/dusk/head.svg"
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(7, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(15, "feet"),
  29486. weight: math.unit(7000, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/jay-direwolf/front.svg",
  29490. extra: 1810 / 1732,
  29491. bottom: 66 / 1892
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(15, "feet"),
  29499. default: true
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(4 + 9 / 12, "feet"),
  29508. weight: math.unit(130, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/anchovie/front.svg",
  29512. extra: 382 / 350,
  29513. bottom: 25 / 409
  29514. }
  29515. },
  29516. back: {
  29517. height: math.unit(4 + 9 / 12, "feet"),
  29518. weight: math.unit(130, "lb"),
  29519. name: "Back",
  29520. image: {
  29521. source: "./media/characters/anchovie/back.svg",
  29522. extra: 385 / 352,
  29523. bottom: 16.6 / 402
  29524. }
  29525. },
  29526. frontDressed: {
  29527. height: math.unit(4 + 9 / 12, "feet"),
  29528. weight: math.unit(130, "lb"),
  29529. name: "Front (Dressed)",
  29530. image: {
  29531. source: "./media/characters/anchovie/front-dressed.svg",
  29532. extra: 382 / 350,
  29533. bottom: 25 / 409
  29534. }
  29535. },
  29536. backDressed: {
  29537. height: math.unit(4 + 9 / 12, "feet"),
  29538. weight: math.unit(130, "lb"),
  29539. name: "Back (Dressed)",
  29540. image: {
  29541. source: "./media/characters/anchovie/back-dressed.svg",
  29542. extra: 385 / 352,
  29543. bottom: 16.6 / 402
  29544. }
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Micro",
  29550. height: math.unit(6.4, "inches")
  29551. },
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(4 + 9 / 12, "feet"),
  29555. default: true
  29556. },
  29557. ]
  29558. ))
  29559. characterMakers.push(() => makeCharacter(
  29560. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29561. {
  29562. front: {
  29563. height: math.unit(2, "meters"),
  29564. weight: math.unit(180, "lb"),
  29565. name: "Front",
  29566. image: {
  29567. source: "./media/characters/acidrenamon/front.svg",
  29568. extra: 987 / 890,
  29569. bottom: 22.8 / 1009
  29570. }
  29571. },
  29572. back: {
  29573. height: math.unit(2, "meters"),
  29574. weight: math.unit(180, "lb"),
  29575. name: "Back",
  29576. image: {
  29577. source: "./media/characters/acidrenamon/back.svg",
  29578. extra: 983 / 891,
  29579. bottom: 8.4 / 992
  29580. }
  29581. },
  29582. head: {
  29583. height: math.unit(1.92, "feet"),
  29584. name: "Head",
  29585. image: {
  29586. source: "./media/characters/acidrenamon/head.svg"
  29587. }
  29588. },
  29589. rump: {
  29590. height: math.unit(1.72, "feet"),
  29591. name: "Rump",
  29592. image: {
  29593. source: "./media/characters/acidrenamon/rump.svg"
  29594. }
  29595. },
  29596. tail: {
  29597. height: math.unit(4.2, "feet"),
  29598. name: "Tail",
  29599. image: {
  29600. source: "./media/characters/acidrenamon/tail.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(2, "meters"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Minimacro",
  29612. height: math.unit(7, "meters")
  29613. },
  29614. {
  29615. name: "Macro",
  29616. height: math.unit(200, "meters")
  29617. },
  29618. {
  29619. name: "Gigamacro",
  29620. height: math.unit(0.2, "earths")
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(152, "feet"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/kenzie-lee/front.svg",
  29632. extra: 1869/1774,
  29633. bottom: 128/1997
  29634. }
  29635. },
  29636. side: {
  29637. height: math.unit(86, "feet"),
  29638. name: "Side",
  29639. image: {
  29640. source: "./media/characters/kenzie-lee/side.svg",
  29641. extra: 930/815,
  29642. bottom: 177/1107
  29643. }
  29644. },
  29645. paw: {
  29646. height: math.unit(15, "feet"),
  29647. name: "Paw",
  29648. image: {
  29649. source: "./media/characters/kenzie-lee/paw.svg"
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Kenzie Flea",
  29656. height: math.unit(2, "mm"),
  29657. default: true
  29658. },
  29659. {
  29660. name: "Micro",
  29661. height: math.unit(2, "inches")
  29662. },
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(152, "feet")
  29666. },
  29667. {
  29668. name: "Megamacro",
  29669. height: math.unit(7, "miles")
  29670. },
  29671. {
  29672. name: "Gigamacro",
  29673. height: math.unit(8000, "miles")
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(6, "feet"),
  29682. name: "Front",
  29683. image: {
  29684. source: "./media/characters/withers/front.svg",
  29685. extra: 1935/1760,
  29686. bottom: 72/2007
  29687. }
  29688. },
  29689. back: {
  29690. height: math.unit(6, "feet"),
  29691. name: "Back",
  29692. image: {
  29693. source: "./media/characters/withers/back.svg",
  29694. extra: 1944/1792,
  29695. bottom: 12/1956
  29696. }
  29697. },
  29698. dressed: {
  29699. height: math.unit(6, "feet"),
  29700. name: "Dressed",
  29701. image: {
  29702. source: "./media/characters/withers/dressed.svg",
  29703. extra: 1937/1765,
  29704. bottom: 73/2010
  29705. }
  29706. },
  29707. phase1: {
  29708. height: math.unit(1.1, "feet"),
  29709. name: "Phase 1",
  29710. image: {
  29711. source: "./media/characters/withers/phase-1.svg",
  29712. extra: 1885/1232,
  29713. bottom: 0/1885
  29714. }
  29715. },
  29716. phase2: {
  29717. height: math.unit(1.05, "feet"),
  29718. name: "Phase 2",
  29719. image: {
  29720. source: "./media/characters/withers/phase-2.svg",
  29721. extra: 1792/1090,
  29722. bottom: 0/1792
  29723. }
  29724. },
  29725. partyWipe: {
  29726. height: math.unit(1.1, "feet"),
  29727. name: "Party Wipe",
  29728. image: {
  29729. source: "./media/characters/withers/party-wipe.svg",
  29730. extra: 1864/1207,
  29731. bottom: 0/1864
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Macro",
  29738. height: math.unit(167, "feet"),
  29739. default: true
  29740. },
  29741. {
  29742. name: "Megamacro",
  29743. height: math.unit(15, "miles")
  29744. }
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29749. {
  29750. front: {
  29751. height: math.unit(6 + 7 / 12, "feet"),
  29752. weight: math.unit(250, "lb"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/nemoskii/front.svg",
  29756. extra: 2270 / 1734,
  29757. bottom: 86 / 2354
  29758. }
  29759. },
  29760. back: {
  29761. height: math.unit(6 + 7 / 12, "feet"),
  29762. weight: math.unit(250, "lb"),
  29763. name: "Back",
  29764. image: {
  29765. source: "./media/characters/nemoskii/back.svg",
  29766. extra: 1845 / 1788,
  29767. bottom: 10.5 / 1852
  29768. }
  29769. },
  29770. head: {
  29771. height: math.unit(1.31, "feet"),
  29772. name: "Head",
  29773. image: {
  29774. source: "./media/characters/nemoskii/head.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Micro",
  29781. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29782. },
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(6 + 7 / 12, "feet"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit((6 + 7 / 12) * 150, "feet")
  29791. },
  29792. {
  29793. name: "Macro+",
  29794. height: math.unit((6 + 7 / 12) * 500, "feet")
  29795. },
  29796. {
  29797. name: "Megamacro",
  29798. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(1, "mile"),
  29807. weight: math.unit(265261.9, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/shui/front.svg",
  29811. extra: 1633 / 1564,
  29812. bottom: 91.5 / 1726
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(1, "mile"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(12 + 6 / 12, "feet"),
  29829. weight: math.unit(1342, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/arokh-takakura/front.svg",
  29833. extra: 1089 / 1043,
  29834. bottom: 77.4 / 1176.7
  29835. }
  29836. },
  29837. back: {
  29838. height: math.unit(12 + 6 / 12, "feet"),
  29839. weight: math.unit(1342, "lb"),
  29840. name: "Back",
  29841. image: {
  29842. source: "./media/characters/arokh-takakura/back.svg",
  29843. extra: 1046 / 1019,
  29844. bottom: 102 / 1150
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Big",
  29851. height: math.unit(12 + 6 / 12, "feet"),
  29852. default: true
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29858. {
  29859. front: {
  29860. height: math.unit(5 + 6 / 12, "feet"),
  29861. weight: math.unit(150, "lb"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/theo/front.svg",
  29865. extra: 1184 / 1131,
  29866. bottom: 7.4 / 1191
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Micro",
  29873. height: math.unit(5, "inches")
  29874. },
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(5 + 6 / 12, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(5 + 9 / 12, "feet"),
  29887. weight: math.unit(130, "lb"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/cecelia-swift/front.svg",
  29891. extra: 502 / 484,
  29892. bottom: 23 / 523
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(5 + 9 / 12, "feet"),
  29897. weight: math.unit(130, "lb"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/cecelia-swift/back.svg",
  29901. extra: 499 / 485,
  29902. bottom: 12 / 511
  29903. }
  29904. },
  29905. head: {
  29906. height: math.unit(0.90, "feet"),
  29907. name: "Head",
  29908. image: {
  29909. source: "./media/characters/cecelia-swift/head.svg"
  29910. }
  29911. },
  29912. rump: {
  29913. height: math.unit(1.75, "feet"),
  29914. name: "Rump",
  29915. image: {
  29916. source: "./media/characters/cecelia-swift/rump.svg"
  29917. }
  29918. },
  29919. },
  29920. [
  29921. {
  29922. name: "Normal",
  29923. height: math.unit(5 + 9 / 12, "feet"),
  29924. default: true
  29925. },
  29926. {
  29927. name: "Big",
  29928. height: math.unit(50, "feet")
  29929. },
  29930. {
  29931. name: "Macro",
  29932. height: math.unit(100, "feet")
  29933. },
  29934. {
  29935. name: "Macro+",
  29936. height: math.unit(500, "feet")
  29937. },
  29938. {
  29939. name: "Macro++",
  29940. height: math.unit(1000, "feet")
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(150, "lb"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/kaunan/front.svg",
  29953. extra: 2890 / 2523,
  29954. bottom: 49 / 2939
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Macro",
  29961. height: math.unit(150, "feet"),
  29962. default: true
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29968. {
  29969. dressed: {
  29970. height: math.unit(175, "cm"),
  29971. weight: math.unit(60, "kg"),
  29972. name: "Dressed",
  29973. image: {
  29974. source: "./media/characters/fei/dressed.svg",
  29975. extra: 1402/1278,
  29976. bottom: 27/1429
  29977. }
  29978. },
  29979. nude: {
  29980. height: math.unit(175, "cm"),
  29981. weight: math.unit(60, "kg"),
  29982. name: "Nude",
  29983. image: {
  29984. source: "./media/characters/fei/nude.svg",
  29985. extra: 1402/1278,
  29986. bottom: 27/1429
  29987. }
  29988. },
  29989. heels: {
  29990. height: math.unit(0.466, "feet"),
  29991. name: "Heels",
  29992. image: {
  29993. source: "./media/characters/fei/heels.svg",
  29994. extra: 156/152,
  29995. bottom: 28/184
  29996. }
  29997. },
  29998. },
  29999. [
  30000. {
  30001. name: "Mortal",
  30002. height: math.unit(175, "cm")
  30003. },
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(3500, "m")
  30007. },
  30008. {
  30009. name: "Stroll",
  30010. height: math.unit(18.4, "km"),
  30011. default: true
  30012. },
  30013. {
  30014. name: "Showoff",
  30015. height: math.unit(175, "km")
  30016. },
  30017. ]
  30018. ))
  30019. characterMakers.push(() => makeCharacter(
  30020. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30021. {
  30022. front: {
  30023. height: math.unit(7, "feet"),
  30024. weight: math.unit(1000, "kg"),
  30025. name: "Front",
  30026. image: {
  30027. source: "./media/characters/edrax/front.svg",
  30028. extra: 2838 / 2550,
  30029. bottom: 130 / 2968
  30030. }
  30031. },
  30032. },
  30033. [
  30034. {
  30035. name: "Small",
  30036. height: math.unit(7, "feet")
  30037. },
  30038. {
  30039. name: "Normal",
  30040. height: math.unit(1500, "meters")
  30041. },
  30042. {
  30043. name: "Mega",
  30044. height: math.unit(12000000, "km"),
  30045. default: true
  30046. },
  30047. {
  30048. name: "Megamacro",
  30049. height: math.unit(10600000, "lightyears")
  30050. },
  30051. {
  30052. name: "Hypermacro",
  30053. height: math.unit(256, "yottameters")
  30054. },
  30055. ]
  30056. ))
  30057. characterMakers.push(() => makeCharacter(
  30058. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30059. {
  30060. front: {
  30061. height: math.unit(10, "feet"),
  30062. weight: math.unit(750, "lb"),
  30063. name: "Front",
  30064. image: {
  30065. source: "./media/characters/clove/front.svg",
  30066. extra: 1918/1751,
  30067. bottom: 52/1970
  30068. }
  30069. },
  30070. back: {
  30071. height: math.unit(10, "feet"),
  30072. weight: math.unit(750, "lb"),
  30073. name: "Back",
  30074. image: {
  30075. source: "./media/characters/clove/back.svg",
  30076. extra: 1912/1747,
  30077. bottom: 50/1962
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(10, "feet"),
  30085. default: true
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30091. {
  30092. front: {
  30093. height: math.unit(4, "feet"),
  30094. weight: math.unit(50, "lb"),
  30095. name: "Front",
  30096. image: {
  30097. source: "./media/characters/alex-rabbit/front.svg",
  30098. extra: 507 / 458,
  30099. bottom: 18.5 / 527
  30100. }
  30101. },
  30102. back: {
  30103. height: math.unit(4, "feet"),
  30104. weight: math.unit(50, "lb"),
  30105. name: "Back",
  30106. image: {
  30107. source: "./media/characters/alex-rabbit/back.svg",
  30108. extra: 502 / 460,
  30109. bottom: 18.9 / 521
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Normal",
  30116. height: math.unit(4, "feet"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(1 + 3 / 12, "feet"),
  30126. weight: math.unit(80, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/zander-rose/front.svg",
  30130. extra: 916 / 797,
  30131. bottom: 17 / 933
  30132. }
  30133. },
  30134. back: {
  30135. height: math.unit(1 + 3 / 12, "feet"),
  30136. weight: math.unit(80, "lb"),
  30137. name: "Back",
  30138. image: {
  30139. source: "./media/characters/zander-rose/back.svg",
  30140. extra: 903 / 779,
  30141. bottom: 31 / 934
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Normal",
  30148. height: math.unit(1 + 3 / 12, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30155. {
  30156. anthro: {
  30157. height: math.unit(6, "feet"),
  30158. weight: math.unit(150, "lb"),
  30159. name: "Anthro",
  30160. image: {
  30161. source: "./media/characters/razz/anthro.svg",
  30162. extra: 1437 / 1343,
  30163. bottom: 48 / 1485
  30164. }
  30165. },
  30166. feral: {
  30167. height: math.unit(6, "feet"),
  30168. weight: math.unit(150, "lb"),
  30169. name: "Feral",
  30170. image: {
  30171. source: "./media/characters/razz/feral.svg",
  30172. extra: 2569 / 1385,
  30173. bottom: 95 / 2664
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(6, "feet"),
  30181. default: true
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30187. {
  30188. front: {
  30189. height: math.unit(9 + 4 / 12, "feet"),
  30190. weight: math.unit(500, "lb"),
  30191. name: "Front",
  30192. image: {
  30193. source: "./media/characters/morrigan/front.svg",
  30194. extra: 2707 / 2579,
  30195. bottom: 156 / 2863
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(9 + 4 / 12, "feet"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(5, "stories"),
  30212. weight: math.unit(4000, "lb"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/jenene/front.svg",
  30216. extra: 1780 / 1710,
  30217. bottom: 57 / 1837
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(5, "stories"),
  30225. default: true
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30231. {
  30232. taurSfw: {
  30233. height: math.unit(10, "meters"),
  30234. weight: math.unit(17500, "kg"),
  30235. name: "Taur",
  30236. image: {
  30237. source: "./media/characters/faey/taur-sfw.svg",
  30238. extra: 1200 / 968,
  30239. bottom: 41 / 1241
  30240. }
  30241. },
  30242. chestmaw: {
  30243. height: math.unit(2.01, "meters"),
  30244. name: "Chestmaw",
  30245. image: {
  30246. source: "./media/characters/faey/chestmaw.svg"
  30247. }
  30248. },
  30249. foot: {
  30250. height: math.unit(2.43, "meters"),
  30251. name: "Foot",
  30252. image: {
  30253. source: "./media/characters/faey/foot.svg"
  30254. }
  30255. },
  30256. jaws: {
  30257. height: math.unit(1.66, "meters"),
  30258. name: "Jaws",
  30259. image: {
  30260. source: "./media/characters/faey/jaws.svg"
  30261. }
  30262. },
  30263. tongues: {
  30264. height: math.unit(2.01, "meters"),
  30265. name: "Tongues",
  30266. image: {
  30267. source: "./media/characters/faey/tongues.svg"
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Small",
  30274. height: math.unit(10, "meters"),
  30275. default: true
  30276. },
  30277. {
  30278. name: "Big",
  30279. height: math.unit(500000, "km")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30285. {
  30286. front: {
  30287. height: math.unit(7, "feet"),
  30288. weight: math.unit(275, "lb"),
  30289. name: "Front",
  30290. image: {
  30291. source: "./media/characters/roku/front.svg",
  30292. extra: 903 / 878,
  30293. bottom: 37 / 940
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Normal",
  30300. height: math.unit(7, "feet"),
  30301. default: true
  30302. },
  30303. {
  30304. name: "Macro",
  30305. height: math.unit(500, "feet")
  30306. },
  30307. {
  30308. name: "Megamacro",
  30309. height: math.unit(200, "miles")
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(6 + 2 / 12, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/lira/front.svg",
  30322. extra: 1727 / 1605,
  30323. bottom: 26 / 1753
  30324. }
  30325. },
  30326. back: {
  30327. height: math.unit(6 + 2 / 12, "feet"),
  30328. weight: math.unit(150, "lb"),
  30329. name: "Back",
  30330. image: {
  30331. source: "./media/characters/lira/back.svg",
  30332. extra: 1713/1621,
  30333. bottom: 20/1733
  30334. }
  30335. },
  30336. hand: {
  30337. height: math.unit(0.75, "feet"),
  30338. name: "Hand",
  30339. image: {
  30340. source: "./media/characters/lira/hand.svg"
  30341. }
  30342. },
  30343. maw: {
  30344. height: math.unit(0.65, "feet"),
  30345. name: "Maw",
  30346. image: {
  30347. source: "./media/characters/lira/maw.svg"
  30348. }
  30349. },
  30350. pawDigi: {
  30351. height: math.unit(1.6, "feet"),
  30352. name: "Paw Digi",
  30353. image: {
  30354. source: "./media/characters/lira/paw-digi.svg"
  30355. }
  30356. },
  30357. pawPlanti: {
  30358. height: math.unit(1.4, "feet"),
  30359. name: "Paw Planti",
  30360. image: {
  30361. source: "./media/characters/lira/paw-planti.svg"
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Normal",
  30368. height: math.unit(6 + 2 / 12, "feet"),
  30369. default: true
  30370. },
  30371. {
  30372. name: "Macro",
  30373. height: math.unit(100, "feet")
  30374. },
  30375. {
  30376. name: "Macro²",
  30377. height: math.unit(1600, "feet")
  30378. },
  30379. {
  30380. name: "Planetary",
  30381. height: math.unit(20, "earths")
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(150, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/hadjet/front.svg",
  30394. extra: 1480 / 1346,
  30395. bottom: 26 / 1506
  30396. }
  30397. },
  30398. frontNsfw: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(150, "lb"),
  30401. name: "Front (NSFW)",
  30402. image: {
  30403. source: "./media/characters/hadjet/front-nsfw.svg",
  30404. extra: 1440 / 1358,
  30405. bottom: 52 / 1492
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Macro",
  30412. height: math.unit(10, "stories"),
  30413. default: true
  30414. },
  30415. {
  30416. name: "Megamacro",
  30417. height: math.unit(1.5, "miles")
  30418. },
  30419. {
  30420. name: "Megamacro+",
  30421. height: math.unit(5, "miles")
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30427. {
  30428. side: {
  30429. height: math.unit(106, "feet"),
  30430. weight: math.unit(500, "tonnes"),
  30431. name: "Side",
  30432. image: {
  30433. source: "./media/characters/kodran/side.svg",
  30434. extra: 553 / 480,
  30435. bottom: 33 / 586
  30436. }
  30437. },
  30438. front: {
  30439. height: math.unit(132, "feet"),
  30440. weight: math.unit(500, "tonnes"),
  30441. name: "Front",
  30442. image: {
  30443. source: "./media/characters/kodran/front.svg",
  30444. extra: 667 / 643,
  30445. bottom: 42 / 709
  30446. }
  30447. },
  30448. flying: {
  30449. height: math.unit(350, "feet"),
  30450. weight: math.unit(500, "tonnes"),
  30451. name: "Flying",
  30452. image: {
  30453. source: "./media/characters/kodran/flying.svg"
  30454. }
  30455. },
  30456. foot: {
  30457. height: math.unit(33, "feet"),
  30458. name: "Foot",
  30459. image: {
  30460. source: "./media/characters/kodran/foot.svg"
  30461. }
  30462. },
  30463. footFront: {
  30464. height: math.unit(19, "feet"),
  30465. name: "Foot (Front)",
  30466. image: {
  30467. source: "./media/characters/kodran/foot-front.svg",
  30468. extra: 261 / 261,
  30469. bottom: 91 / 352
  30470. }
  30471. },
  30472. headFront: {
  30473. height: math.unit(53, "feet"),
  30474. name: "Head (Front)",
  30475. image: {
  30476. source: "./media/characters/kodran/head-front.svg"
  30477. }
  30478. },
  30479. headSide: {
  30480. height: math.unit(65, "feet"),
  30481. name: "Head (Side)",
  30482. image: {
  30483. source: "./media/characters/kodran/head-side.svg"
  30484. }
  30485. },
  30486. throat: {
  30487. height: math.unit(79, "feet"),
  30488. name: "Throat",
  30489. image: {
  30490. source: "./media/characters/kodran/throat.svg"
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Large",
  30497. height: math.unit(106, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30504. {
  30505. side: {
  30506. height: math.unit(11, "feet"),
  30507. weight: math.unit(150, "lb"),
  30508. name: "Side",
  30509. image: {
  30510. source: "./media/characters/pyxaron/side.svg",
  30511. extra: 305 / 195,
  30512. bottom: 17 / 322
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(11, "feet"),
  30520. default: true
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(6, "feet"),
  30529. weight: math.unit(150, "lb"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/meep/front.svg",
  30533. extra: 88 / 80,
  30534. bottom: 6 / 94
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Fun Sized",
  30541. height: math.unit(2, "inches"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Friend Sized",
  30546. height: math.unit(8, "inches")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(15, "feet"),
  30555. weight: math.unit(2500, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/holly-rabbit/front.svg",
  30559. extra: 1433 / 1233,
  30560. bottom: 125 / 1558
  30561. }
  30562. },
  30563. dick: {
  30564. height: math.unit(4.6, "feet"),
  30565. name: "Dick",
  30566. image: {
  30567. source: "./media/characters/holly-rabbit/dick.svg"
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(15, "feet"),
  30575. default: true
  30576. },
  30577. {
  30578. name: "Macro",
  30579. height: math.unit(250, "feet")
  30580. },
  30581. {
  30582. name: "Macro+",
  30583. height: math.unit(2500, "feet")
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(3.02, "meters"),
  30592. weight: math.unit(500, "kg"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/drena/front.svg",
  30596. extra: 282 / 243,
  30597. bottom: 8 / 290
  30598. }
  30599. },
  30600. side: {
  30601. height: math.unit(3.02, "meters"),
  30602. weight: math.unit(500, "kg"),
  30603. name: "Side",
  30604. image: {
  30605. source: "./media/characters/drena/side.svg",
  30606. extra: 280 / 245,
  30607. bottom: 10 / 290
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(3.02, "meters"),
  30612. weight: math.unit(500, "kg"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/drena/back.svg",
  30616. extra: 278 / 243,
  30617. bottom: 2 / 280
  30618. }
  30619. },
  30620. foot: {
  30621. height: math.unit(0.75, "meters"),
  30622. name: "Foot",
  30623. image: {
  30624. source: "./media/characters/drena/foot.svg"
  30625. }
  30626. },
  30627. maw: {
  30628. height: math.unit(0.82, "meters"),
  30629. name: "Maw",
  30630. image: {
  30631. source: "./media/characters/drena/maw.svg"
  30632. }
  30633. },
  30634. eating: {
  30635. height: math.unit(0.75, "meters"),
  30636. name: "Eating",
  30637. image: {
  30638. source: "./media/characters/drena/eating.svg"
  30639. }
  30640. },
  30641. rump: {
  30642. height: math.unit(0.93, "meters"),
  30643. name: "Rump",
  30644. image: {
  30645. source: "./media/characters/drena/rump.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(3.02, "meters"),
  30653. default: true
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30659. {
  30660. front: {
  30661. height: math.unit(6 + 4 / 12, "feet"),
  30662. weight: math.unit(250, "lb"),
  30663. name: "Front",
  30664. image: {
  30665. source: "./media/characters/remmyzilla/front.svg",
  30666. extra: 4033 / 3588,
  30667. bottom: 123 / 4156
  30668. }
  30669. },
  30670. back: {
  30671. height: math.unit(6 + 4 / 12, "feet"),
  30672. weight: math.unit(250, "lb"),
  30673. name: "Back",
  30674. image: {
  30675. source: "./media/characters/remmyzilla/back.svg",
  30676. extra: 2687 / 2555,
  30677. bottom: 48 / 2735
  30678. }
  30679. },
  30680. paw: {
  30681. height: math.unit(1.73, "feet"),
  30682. name: "Paw",
  30683. image: {
  30684. source: "./media/characters/remmyzilla/paw.svg"
  30685. },
  30686. extraAttributes: {
  30687. "toeSize": {
  30688. name: "Toe Size",
  30689. power: 2,
  30690. type: "area",
  30691. base: math.unit(0.0035, "m^2")
  30692. },
  30693. "padSize": {
  30694. name: "Pad Size",
  30695. power: 2,
  30696. type: "area",
  30697. base: math.unit(0.015, "m^2")
  30698. },
  30699. "pawsize": {
  30700. name: "Paw Size",
  30701. power: 2,
  30702. type: "area",
  30703. base: math.unit(0.072, "m^2")
  30704. },
  30705. }
  30706. },
  30707. maw: {
  30708. height: math.unit(1.73, "feet"),
  30709. name: "Maw",
  30710. image: {
  30711. source: "./media/characters/remmyzilla/maw.svg"
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(6 + 4 / 12, "feet")
  30719. },
  30720. {
  30721. name: "Minimacro",
  30722. height: math.unit(12 + 8 / 12, "feet")
  30723. },
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(640, "feet"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Megamacro",
  30731. height: math.unit(6400, "feet")
  30732. },
  30733. {
  30734. name: "Gigamacro",
  30735. height: math.unit(64000, "miles")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(2.5, "meters"),
  30744. weight: math.unit(300, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/lawrence/front.svg",
  30748. extra: 357 / 335,
  30749. bottom: 30 / 387
  30750. }
  30751. },
  30752. back: {
  30753. height: math.unit(2.5, "meters"),
  30754. weight: math.unit(300, "lb"),
  30755. name: "Back",
  30756. image: {
  30757. source: "./media/characters/lawrence/back.svg",
  30758. extra: 357 / 338,
  30759. bottom: 16 / 373
  30760. }
  30761. },
  30762. head: {
  30763. height: math.unit(0.9, "meter"),
  30764. name: "Head",
  30765. image: {
  30766. source: "./media/characters/lawrence/head.svg"
  30767. }
  30768. },
  30769. maw: {
  30770. height: math.unit(0.7, "meter"),
  30771. name: "Maw",
  30772. image: {
  30773. source: "./media/characters/lawrence/maw.svg"
  30774. }
  30775. },
  30776. footBottom: {
  30777. height: math.unit(0.5, "meter"),
  30778. name: "Foot (Bottom)",
  30779. image: {
  30780. source: "./media/characters/lawrence/foot-bottom.svg"
  30781. }
  30782. },
  30783. footTop: {
  30784. height: math.unit(0.5, "meter"),
  30785. name: "Foot (Top)",
  30786. image: {
  30787. source: "./media/characters/lawrence/foot-top.svg"
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Normal",
  30794. height: math.unit(2.5, "meters"),
  30795. default: true
  30796. },
  30797. {
  30798. name: "Macro",
  30799. height: math.unit(95, "meters")
  30800. },
  30801. {
  30802. name: "Megamacro",
  30803. height: math.unit(150, "km")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30809. {
  30810. front: {
  30811. height: math.unit(4.2, "meters"),
  30812. preyCapacity: math.unit(50, "m^3"),
  30813. weight: math.unit(30, "tonnes"),
  30814. name: "Front",
  30815. image: {
  30816. source: "./media/characters/sydney/front.svg",
  30817. extra: 1177/1129,
  30818. bottom: 197/1374
  30819. },
  30820. extraAttributes: {
  30821. "length": {
  30822. name: "Length",
  30823. power: 1,
  30824. type: "length",
  30825. base: math.unit(21, "meters")
  30826. },
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Normal",
  30833. height: math.unit(4.2, "meters"),
  30834. default: true
  30835. },
  30836. ]
  30837. ))
  30838. characterMakers.push(() => makeCharacter(
  30839. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30840. {
  30841. back: {
  30842. height: math.unit(201, "feet"),
  30843. name: "Back",
  30844. image: {
  30845. source: "./media/characters/jessica/back.svg",
  30846. extra: 273 / 259,
  30847. bottom: 7 / 280
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(201, "feet"),
  30855. default: true
  30856. },
  30857. {
  30858. name: "Megamacro",
  30859. height: math.unit(8, "miles")
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30865. {
  30866. side: {
  30867. height: math.unit(5.6, "m"),
  30868. weight: math.unit(8000, "kg"),
  30869. name: "Side",
  30870. image: {
  30871. source: "./media/characters/victoria/side.svg",
  30872. extra: 1542/1229,
  30873. bottom: 124/1666
  30874. }
  30875. },
  30876. maw: {
  30877. height: math.unit(7.14, "feet"),
  30878. name: "Maw",
  30879. image: {
  30880. source: "./media/characters/victoria/maw.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(5.6, "m"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30894. {
  30895. front: {
  30896. height: math.unit(5 + 6 / 12, "feet"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/cat/front.svg",
  30900. extra: 1449/1295,
  30901. bottom: 34/1483
  30902. },
  30903. form: "cat",
  30904. default: true
  30905. },
  30906. back: {
  30907. height: math.unit(5 + 6 / 12, "feet"),
  30908. name: "Back",
  30909. image: {
  30910. source: "./media/characters/cat/back.svg",
  30911. extra: 1466/1301,
  30912. bottom: 19/1485
  30913. },
  30914. form: "cat"
  30915. },
  30916. taur: {
  30917. height: math.unit(7, "feet"),
  30918. name: "Taur",
  30919. image: {
  30920. source: "./media/characters/cat/taur.svg",
  30921. extra: 1389/1233,
  30922. bottom: 83/1472
  30923. },
  30924. form: "taur",
  30925. default: true
  30926. },
  30927. lucarioFront: {
  30928. height: math.unit(4, "feet"),
  30929. name: "Lucario (Front)",
  30930. image: {
  30931. source: "./media/characters/cat/lucario-front.svg",
  30932. extra: 1149/1019,
  30933. bottom: 84/1233
  30934. },
  30935. form: "lucario",
  30936. default: true
  30937. },
  30938. lucarioBack: {
  30939. height: math.unit(4, "feet"),
  30940. name: "Lucario (Back)",
  30941. image: {
  30942. source: "./media/characters/cat/lucario-back.svg",
  30943. extra: 1190/1059,
  30944. bottom: 33/1223
  30945. },
  30946. form: "lucario"
  30947. },
  30948. megaLucario: {
  30949. height: math.unit(4, "feet"),
  30950. name: "Mega Lucario",
  30951. image: {
  30952. source: "./media/characters/cat/mega-lucario.svg",
  30953. extra: 1515 / 1319,
  30954. bottom: 63 / 1578
  30955. },
  30956. form: "lucario"
  30957. },
  30958. nickit: {
  30959. height: math.unit(2, "feet"),
  30960. name: "Nickit",
  30961. image: {
  30962. source: "./media/characters/cat/nickit.svg",
  30963. extra: 1980 / 1585,
  30964. bottom: 102 / 2082
  30965. },
  30966. form: "nickit",
  30967. default: true
  30968. },
  30969. lopunnyFront: {
  30970. height: math.unit(5, "feet"),
  30971. name: "Lopunny (Front)",
  30972. image: {
  30973. source: "./media/characters/cat/lopunny-front.svg",
  30974. extra: 1782 / 1469,
  30975. bottom: 38 / 1820
  30976. },
  30977. form: "lopunny",
  30978. default: true
  30979. },
  30980. lopunnyBack: {
  30981. height: math.unit(5, "feet"),
  30982. name: "Lopunny (Back)",
  30983. image: {
  30984. source: "./media/characters/cat/lopunny-back.svg",
  30985. extra: 1660 / 1490,
  30986. bottom: 25 / 1685
  30987. },
  30988. form: "lopunny"
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Really small",
  30994. height: math.unit(1, "nm")
  30995. },
  30996. {
  30997. name: "Micro",
  30998. height: math.unit(5, "inches")
  30999. },
  31000. {
  31001. name: "Normal",
  31002. height: math.unit(5 + 6 / 12, "feet"),
  31003. default: true
  31004. },
  31005. {
  31006. name: "Macro",
  31007. height: math.unit(50, "feet")
  31008. },
  31009. {
  31010. name: "Macro+",
  31011. height: math.unit(150, "feet")
  31012. },
  31013. {
  31014. name: "Megamacro",
  31015. height: math.unit(100, "miles")
  31016. },
  31017. ]
  31018. ))
  31019. characterMakers.push(() => makeCharacter(
  31020. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31021. {
  31022. front: {
  31023. height: math.unit(63.4, "meters"),
  31024. weight: math.unit(3.28349e+6, "kilograms"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/kirina-violet/front.svg",
  31028. extra: 2812 / 2725,
  31029. bottom: 0 / 2812
  31030. }
  31031. },
  31032. back: {
  31033. height: math.unit(63.4, "meters"),
  31034. weight: math.unit(3.28349e+6, "kilograms"),
  31035. name: "Back",
  31036. image: {
  31037. source: "./media/characters/kirina-violet/back.svg",
  31038. extra: 2812 / 2725,
  31039. bottom: 0 / 2812
  31040. }
  31041. },
  31042. mouth: {
  31043. height: math.unit(4.35, "meters"),
  31044. name: "Mouth",
  31045. image: {
  31046. source: "./media/characters/kirina-violet/mouth.svg"
  31047. }
  31048. },
  31049. paw: {
  31050. height: math.unit(5.6, "meters"),
  31051. name: "Paw",
  31052. image: {
  31053. source: "./media/characters/kirina-violet/paw.svg"
  31054. }
  31055. },
  31056. tail: {
  31057. height: math.unit(18, "meters"),
  31058. name: "Tail",
  31059. image: {
  31060. source: "./media/characters/kirina-violet/tail.svg"
  31061. }
  31062. },
  31063. },
  31064. [
  31065. {
  31066. name: "Macro",
  31067. height: math.unit(63.4, "meters"),
  31068. default: true
  31069. },
  31070. ]
  31071. ))
  31072. characterMakers.push(() => makeCharacter(
  31073. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31074. {
  31075. front: {
  31076. height: math.unit(75, "feet"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/cat-gigachu/front.svg",
  31080. extra: 1239/1027,
  31081. bottom: 32/1271
  31082. }
  31083. },
  31084. back: {
  31085. height: math.unit(75, "feet"),
  31086. name: "Back",
  31087. image: {
  31088. source: "./media/characters/cat-gigachu/back.svg",
  31089. extra: 1229/1030,
  31090. bottom: 9/1238
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Dynamax",
  31097. height: math.unit(75, "feet"),
  31098. default: true
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(6, "feet"),
  31107. weight: math.unit(150, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/sfaiyan/front.svg",
  31111. extra: 999 / 978,
  31112. bottom: 5 / 1004
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(1.82, "meters")
  31120. },
  31121. {
  31122. name: "Giant",
  31123. height: math.unit(2.27, "km"),
  31124. default: true
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(179, "cm"),
  31133. weight: math.unit(100, "kg"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/raunehkeli/front.svg",
  31137. extra: 1934 / 1926,
  31138. bottom: 0 / 1934
  31139. }
  31140. },
  31141. },
  31142. [
  31143. {
  31144. name: "Normal",
  31145. height: math.unit(179, "cm")
  31146. },
  31147. {
  31148. name: "Maximum",
  31149. height: math.unit(575, "meters"),
  31150. default: true
  31151. },
  31152. ]
  31153. ))
  31154. characterMakers.push(() => makeCharacter(
  31155. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31156. {
  31157. front: {
  31158. height: math.unit(6, "feet"),
  31159. weight: math.unit(150, "lb"),
  31160. name: "Front",
  31161. image: {
  31162. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31163. extra: 2625 / 2518,
  31164. bottom: 60 / 2685
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(6 + 2 / 12, "feet")
  31172. },
  31173. {
  31174. name: "Macro",
  31175. height: math.unit(1180, "feet"),
  31176. default: true
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(5 + 6 / 12, "feet"),
  31185. weight: math.unit(108, "lb"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/lilith-zott/front.svg",
  31189. extra: 2510 / 2238,
  31190. bottom: 100 / 2610
  31191. }
  31192. },
  31193. frontDressed: {
  31194. height: math.unit(5 + 6 / 12, "feet"),
  31195. weight: math.unit(108, "lb"),
  31196. name: "Front (Dressed)",
  31197. image: {
  31198. source: "./media/characters/lilith-zott/front-dressed.svg",
  31199. extra: 2510 / 2238,
  31200. bottom: 100 / 2610
  31201. }
  31202. },
  31203. },
  31204. [
  31205. {
  31206. name: "Normal",
  31207. height: math.unit(5 + 6 / 12, "feet")
  31208. },
  31209. {
  31210. name: "Macro",
  31211. height: math.unit(1030, "feet"),
  31212. default: true
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31225. extra: 2567 / 2435,
  31226. bottom: 39 / 2606
  31227. }
  31228. },
  31229. frontSuper: {
  31230. height: math.unit(6, "feet"),
  31231. name: "Front (Super)",
  31232. image: {
  31233. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31234. extra: 2567 / 2435,
  31235. bottom: 39 / 2606
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(5 + 10 / 12, "feet")
  31243. },
  31244. {
  31245. name: "Macro",
  31246. height: math.unit(1100, "feet"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(100, "miles"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/sona/front.svg",
  31259. extra: 2433 / 2201,
  31260. bottom: 53 / 2486
  31261. }
  31262. },
  31263. foot: {
  31264. height: math.unit(16.1, "miles"),
  31265. name: "Foot",
  31266. image: {
  31267. source: "./media/characters/sona/foot.svg"
  31268. }
  31269. },
  31270. },
  31271. [
  31272. {
  31273. name: "Macro",
  31274. height: math.unit(100, "miles"),
  31275. default: true
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(150, "lb"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/bailey/front.svg",
  31288. extra: 1778 / 1724,
  31289. bottom: 30 / 1808
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Micro",
  31296. height: math.unit(4, "inches")
  31297. },
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(5 + 5 / 12, "feet"),
  31301. default: true
  31302. },
  31303. {
  31304. name: "Macro",
  31305. height: math.unit(250, "feet")
  31306. },
  31307. {
  31308. name: "Megamacro",
  31309. height: math.unit(100, "miles")
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(5 + 2 / 12, "feet"),
  31318. weight: math.unit(120, "lb"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/snaps/front.svg",
  31322. extra: 2370 / 2177,
  31323. bottom: 48 / 2418
  31324. }
  31325. },
  31326. back: {
  31327. height: math.unit(5 + 2 / 12, "feet"),
  31328. weight: math.unit(120, "lb"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/snaps/back.svg",
  31332. extra: 2408 / 2258,
  31333. bottom: 15 / 2423
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Micro",
  31340. height: math.unit(9, "inches")
  31341. },
  31342. {
  31343. name: "Normal",
  31344. height: math.unit(5 + 2 / 12, "feet"),
  31345. default: true
  31346. },
  31347. {
  31348. name: "Mini Macro",
  31349. height: math.unit(10, "feet")
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31355. {
  31356. front: {
  31357. height: math.unit(1.8, "meters"),
  31358. weight: math.unit(85, "kg"),
  31359. name: "Front",
  31360. image: {
  31361. source: "./media/characters/azteck/front.svg",
  31362. extra: 2815 / 2625,
  31363. bottom: 89 / 2904
  31364. }
  31365. },
  31366. back: {
  31367. height: math.unit(1.8, "meters"),
  31368. weight: math.unit(85, "kg"),
  31369. name: "Back",
  31370. image: {
  31371. source: "./media/characters/azteck/back.svg",
  31372. extra: 2856 / 2648,
  31373. bottom: 85 / 2941
  31374. }
  31375. },
  31376. frontDressed: {
  31377. height: math.unit(1.8, "meters"),
  31378. weight: math.unit(85, "kg"),
  31379. name: "Front (Dressed)",
  31380. image: {
  31381. source: "./media/characters/azteck/front-dressed.svg",
  31382. extra: 2147 / 2003,
  31383. bottom: 68 / 2215
  31384. }
  31385. },
  31386. head: {
  31387. height: math.unit(0.47, "meters"),
  31388. weight: math.unit(85, "kg"),
  31389. name: "Head",
  31390. image: {
  31391. source: "./media/characters/azteck/head.svg"
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Bite sized",
  31398. height: math.unit(16, "cm")
  31399. },
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(1.8, "meters"),
  31403. default: true
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31409. {
  31410. front: {
  31411. height: math.unit(6, "feet"),
  31412. weight: math.unit(150, "lb"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/pidge/front.svg",
  31416. extra: 1936/1820,
  31417. bottom: 0/1936
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(6, "feet"),
  31422. weight: math.unit(150, "lb"),
  31423. name: "Back",
  31424. image: {
  31425. source: "./media/characters/pidge/back.svg",
  31426. extra: 1938/1843,
  31427. bottom: 0/1938
  31428. }
  31429. },
  31430. casual: {
  31431. height: math.unit(6, "feet"),
  31432. weight: math.unit(150, "lb"),
  31433. name: "Casual",
  31434. image: {
  31435. source: "./media/characters/pidge/casual.svg",
  31436. extra: 1936/1820,
  31437. bottom: 0/1936
  31438. }
  31439. },
  31440. tech: {
  31441. height: math.unit(6, "feet"),
  31442. weight: math.unit(150, "lb"),
  31443. name: "Tech",
  31444. image: {
  31445. source: "./media/characters/pidge/tech.svg",
  31446. extra: 1802/1682,
  31447. bottom: 0/1802
  31448. }
  31449. },
  31450. head: {
  31451. height: math.unit(1.61, "feet"),
  31452. name: "Head",
  31453. image: {
  31454. source: "./media/characters/pidge/head.svg"
  31455. }
  31456. },
  31457. collar: {
  31458. height: math.unit(0.82, "feet"),
  31459. name: "Collar",
  31460. image: {
  31461. source: "./media/characters/pidge/collar.svg"
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(2, "mile"),
  31469. default: true
  31470. },
  31471. {
  31472. name: "PUPPY",
  31473. height: math.unit(20, "miles")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(6, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/en/front.svg",
  31486. extra: 1697 / 1563,
  31487. bottom: 103 / 1800
  31488. }
  31489. },
  31490. back: {
  31491. height: math.unit(6, "feet"),
  31492. weight: math.unit(150, "lb"),
  31493. name: "Back",
  31494. image: {
  31495. source: "./media/characters/en/back.svg",
  31496. extra: 1700 / 1570,
  31497. bottom: 51 / 1751
  31498. }
  31499. },
  31500. frontDressed: {
  31501. height: math.unit(6, "feet"),
  31502. weight: math.unit(150, "lb"),
  31503. name: "Front (Dressed)",
  31504. image: {
  31505. source: "./media/characters/en/front-dressed.svg",
  31506. extra: 1697 / 1563,
  31507. bottom: 103 / 1800
  31508. }
  31509. },
  31510. backDressed: {
  31511. height: math.unit(6, "feet"),
  31512. weight: math.unit(150, "lb"),
  31513. name: "Back (Dressed)",
  31514. image: {
  31515. source: "./media/characters/en/back-dressed.svg",
  31516. extra: 1700 / 1570,
  31517. bottom: 51 / 1751
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Macro",
  31524. height: math.unit(210, "feet"),
  31525. default: true
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(6, "feet"),
  31534. weight: math.unit(150, "lb"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/haze-orris/front.svg",
  31538. extra: 3975 / 3525,
  31539. bottom: 137 / 4112
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Micro",
  31546. height: math.unit(150, "mm"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(6, "feet"),
  31556. weight: math.unit(150, "lb"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/casselene-yaro/front.svg",
  31560. extra: 4721 / 4541,
  31561. bottom: 82 / 4803
  31562. }
  31563. },
  31564. back: {
  31565. height: math.unit(6, "feet"),
  31566. weight: math.unit(150, "lb"),
  31567. name: "Back",
  31568. image: {
  31569. source: "./media/characters/casselene-yaro/back.svg",
  31570. extra: 4569 / 4377,
  31571. bottom: 69 / 4638
  31572. }
  31573. },
  31574. dressed: {
  31575. height: math.unit(6, "feet"),
  31576. weight: math.unit(150, "lb"),
  31577. name: "Dressed",
  31578. image: {
  31579. source: "./media/characters/casselene-yaro/dressed.svg",
  31580. extra: 4721 / 4541,
  31581. bottom: 82 / 4803
  31582. }
  31583. },
  31584. maw: {
  31585. height: math.unit(1, "feet"),
  31586. name: "Maw",
  31587. image: {
  31588. source: "./media/characters/casselene-yaro/maw.svg"
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Macro",
  31595. height: math.unit(190, "feet"),
  31596. default: true
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31602. {
  31603. front: {
  31604. height: math.unit(10, "feet"),
  31605. weight: math.unit(15015, "lb"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/platine/front.svg",
  31609. extra: 1741/1650,
  31610. bottom: 84/1825
  31611. }
  31612. },
  31613. side: {
  31614. height: math.unit(10, "feet"),
  31615. weight: math.unit(15015, "lb"),
  31616. name: "Side",
  31617. image: {
  31618. source: "./media/characters/platine/side.svg",
  31619. extra: 1790/1705,
  31620. bottom: 29/1819
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(10, "feet"),
  31628. default: true
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(100, "feet")
  31633. },
  31634. {
  31635. name: "Megamacro",
  31636. height: math.unit(1000, "feet")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(15 + 5 / 12, "feet"),
  31645. weight: math.unit(4600, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/neapolitan-ananassa/front.svg",
  31649. extra: 2903 / 2736,
  31650. bottom: 0 / 2903
  31651. }
  31652. },
  31653. side: {
  31654. height: math.unit(15 + 5 / 12, "feet"),
  31655. weight: math.unit(4600, "lb"),
  31656. name: "Side",
  31657. image: {
  31658. source: "./media/characters/neapolitan-ananassa/side.svg",
  31659. extra: 2925 / 2719,
  31660. bottom: 0 / 2925
  31661. }
  31662. },
  31663. back: {
  31664. height: math.unit(15 + 5 / 12, "feet"),
  31665. weight: math.unit(4600, "lb"),
  31666. name: "Back",
  31667. image: {
  31668. source: "./media/characters/neapolitan-ananassa/back.svg",
  31669. extra: 2903 / 2736,
  31670. bottom: 0 / 2903
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(15 + 5 / 12, "feet"),
  31678. default: true
  31679. },
  31680. {
  31681. name: "Post-Millenium",
  31682. height: math.unit(35 + 5 / 12, "feet")
  31683. },
  31684. {
  31685. name: "Post-Era",
  31686. height: math.unit(450 + 5 / 12, "feet")
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31692. {
  31693. front: {
  31694. height: math.unit(300, "meters"),
  31695. weight: math.unit(125000, "tonnes"),
  31696. name: "Front",
  31697. image: {
  31698. source: "./media/characters/pazuzu/front.svg",
  31699. extra: 877 / 794,
  31700. bottom: 47 / 924
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Macro",
  31707. height: math.unit(300, "meters"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31714. {
  31715. side: {
  31716. height: math.unit(10 + 7 / 12, "feet"),
  31717. weight: math.unit(2.5, "tons"),
  31718. name: "Side",
  31719. image: {
  31720. source: "./media/characters/aasha/side.svg",
  31721. extra: 1345 / 1245,
  31722. bottom: 111 / 1456
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(10 + 7 / 12, "feet"),
  31727. weight: math.unit(2.5, "tons"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/aasha/back.svg",
  31731. extra: 1133 / 1057,
  31732. bottom: 257 / 1390
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Normal",
  31739. height: math.unit(10 + 7 / 12, "feet"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(6 + 3 / 12, "feet"),
  31749. name: "Front",
  31750. image: {
  31751. source: "./media/characters/nevan/front.svg",
  31752. extra: 704 / 704,
  31753. bottom: 28 / 732
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(6 + 3 / 12, "feet"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/nevan/back.svg",
  31761. extra: 714 / 714,
  31762. bottom: 21 / 735
  31763. }
  31764. },
  31765. frontFlaccid: {
  31766. height: math.unit(6 + 3 / 12, "feet"),
  31767. name: "Front (Flaccid)",
  31768. image: {
  31769. source: "./media/characters/nevan/front-flaccid.svg",
  31770. extra: 704 / 704,
  31771. bottom: 28 / 732
  31772. }
  31773. },
  31774. frontErect: {
  31775. height: math.unit(6 + 3 / 12, "feet"),
  31776. name: "Front (Erect)",
  31777. image: {
  31778. source: "./media/characters/nevan/front-erect.svg",
  31779. extra: 704 / 704,
  31780. bottom: 28 / 732
  31781. }
  31782. },
  31783. backFlaccid: {
  31784. height: math.unit(6 + 3 / 12, "feet"),
  31785. name: "Back (Flaccid)",
  31786. image: {
  31787. source: "./media/characters/nevan/back-flaccid.svg",
  31788. extra: 714 / 714,
  31789. bottom: 21 / 735
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(6 + 3 / 12, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(4, "feet"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/arhan/front.svg",
  31809. extra: 3368 / 3133,
  31810. bottom: 0 / 3368
  31811. }
  31812. },
  31813. side: {
  31814. height: math.unit(4, "feet"),
  31815. name: "Side",
  31816. image: {
  31817. source: "./media/characters/arhan/side.svg",
  31818. extra: 3347 / 3105,
  31819. bottom: 0 / 3347
  31820. }
  31821. },
  31822. tongue: {
  31823. height: math.unit(1.42, "feet"),
  31824. name: "Tongue",
  31825. image: {
  31826. source: "./media/characters/arhan/tongue.svg"
  31827. }
  31828. },
  31829. head: {
  31830. height: math.unit(0.85, "feet"),
  31831. name: "Head",
  31832. image: {
  31833. source: "./media/characters/arhan/head.svg"
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Normal",
  31840. height: math.unit(4, "feet"),
  31841. default: true
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31847. {
  31848. front: {
  31849. height: math.unit(5 + 7.5 / 12, "feet"),
  31850. weight: math.unit(120, "lb"),
  31851. name: "Front",
  31852. image: {
  31853. source: "./media/characters/digi-duncan/front.svg",
  31854. extra: 330 / 326,
  31855. bottom: 16 / 346
  31856. }
  31857. },
  31858. side: {
  31859. height: math.unit(5 + 7.5 / 12, "feet"),
  31860. weight: math.unit(120, "lb"),
  31861. name: "Side",
  31862. image: {
  31863. source: "./media/characters/digi-duncan/side.svg",
  31864. extra: 341 / 337,
  31865. bottom: 1 / 342
  31866. }
  31867. },
  31868. back: {
  31869. height: math.unit(5 + 7.5 / 12, "feet"),
  31870. weight: math.unit(120, "lb"),
  31871. name: "Back",
  31872. image: {
  31873. source: "./media/characters/digi-duncan/back.svg",
  31874. extra: 330 / 326,
  31875. bottom: 12 / 342
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Speck",
  31882. height: math.unit(0.25, "mm")
  31883. },
  31884. {
  31885. name: "Micro",
  31886. height: math.unit(5, "mm")
  31887. },
  31888. {
  31889. name: "Tiny",
  31890. height: math.unit(0.5, "inches"),
  31891. default: true
  31892. },
  31893. {
  31894. name: "Human",
  31895. height: math.unit(5 + 7.5 / 12, "feet")
  31896. },
  31897. {
  31898. name: "Minigiant",
  31899. height: math.unit(8 + 5.25, "feet")
  31900. },
  31901. {
  31902. name: "Giant",
  31903. height: math.unit(2000, "feet")
  31904. },
  31905. {
  31906. name: "Mega",
  31907. height: math.unit(371.1, "miles")
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(2, "meters"),
  31916. weight: math.unit(350, "kg"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31920. extra: 898 / 838,
  31921. bottom: 9 / 907
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Micro",
  31928. height: math.unit(8, "meters")
  31929. },
  31930. {
  31931. name: "Normal",
  31932. height: math.unit(50, "meters"),
  31933. default: true
  31934. },
  31935. {
  31936. name: "Macro",
  31937. height: math.unit(500, "meters")
  31938. },
  31939. ]
  31940. ))
  31941. characterMakers.push(() => makeCharacter(
  31942. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31943. {
  31944. front: {
  31945. height: math.unit(6 + 6 / 12, "feet"),
  31946. name: "Front",
  31947. image: {
  31948. source: "./media/characters/khardesh/front.svg",
  31949. extra: 1788/1596,
  31950. bottom: 66/1854
  31951. }
  31952. },
  31953. back: {
  31954. height: math.unit(6 + 6 / 12, "feet"),
  31955. name: "Back",
  31956. image: {
  31957. source: "./media/characters/khardesh/back.svg",
  31958. extra: 1781/1584,
  31959. bottom: 68/1849
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(6 + 6 / 12, "feet"),
  31967. default: true
  31968. },
  31969. {
  31970. name: "Normal+",
  31971. height: math.unit(4, "meters")
  31972. },
  31973. {
  31974. name: "Macro",
  31975. height: math.unit(50, "meters")
  31976. },
  31977. {
  31978. name: "Macro+",
  31979. height: math.unit(100, "meters")
  31980. },
  31981. {
  31982. name: "Megamacro",
  31983. height: math.unit(20, "km")
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(6, "feet"),
  31992. weight: math.unit(150, "lb"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/kosho/front.svg",
  31996. extra: 1847 / 1847,
  31997. bottom: 86 / 1933
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Second-stage micro",
  32004. height: math.unit(0.5, "inches")
  32005. },
  32006. {
  32007. name: "First-stage micro",
  32008. height: math.unit(6, "inches")
  32009. },
  32010. {
  32011. name: "Normal",
  32012. height: math.unit(6, "feet"),
  32013. default: true
  32014. },
  32015. {
  32016. name: "First-stage macro",
  32017. height: math.unit(72, "feet")
  32018. },
  32019. {
  32020. name: "Second-stage macro",
  32021. height: math.unit(864, "feet")
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32027. {
  32028. normal: {
  32029. height: math.unit(4 + 6 / 12, "feet"),
  32030. name: "Normal",
  32031. image: {
  32032. source: "./media/characters/hydra/normal.svg",
  32033. extra: 2833 / 2634,
  32034. bottom: 68 / 2901
  32035. }
  32036. },
  32037. smol: {
  32038. height: math.unit(0.705, "inches"),
  32039. name: "Smol",
  32040. image: {
  32041. source: "./media/characters/hydra/smol.svg",
  32042. extra: 2715 / 2540,
  32043. bottom: 0 / 2715
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(4 + 6 / 12, "feet"),
  32051. default: true
  32052. }
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(0.6, "cm"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/daz/front.svg",
  32063. extra: 1682 / 1164,
  32064. bottom: 42 / 1724
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Normal",
  32071. height: math.unit(0.6, "cm"),
  32072. default: true
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32078. {
  32079. front: {
  32080. height: math.unit(6, "feet"),
  32081. weight: math.unit(235, "lb"),
  32082. name: "Front",
  32083. image: {
  32084. source: "./media/characters/theo-pangolin/front.svg",
  32085. extra: 1996 / 1969,
  32086. bottom: 115 / 2111
  32087. }
  32088. },
  32089. back: {
  32090. height: math.unit(6, "feet"),
  32091. weight: math.unit(235, "lb"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/theo-pangolin/back.svg",
  32095. extra: 1979 / 1979,
  32096. bottom: 40 / 2019
  32097. }
  32098. },
  32099. feral: {
  32100. height: math.unit(2, "feet"),
  32101. weight: math.unit(30, "lb"),
  32102. name: "Feral",
  32103. image: {
  32104. source: "./media/characters/theo-pangolin/feral.svg",
  32105. extra: 803 / 791,
  32106. bottom: 181 / 984
  32107. }
  32108. },
  32109. footFive: {
  32110. height: math.unit(1.43, "feet"),
  32111. name: "Foot (Five Toes)",
  32112. image: {
  32113. source: "./media/characters/theo-pangolin/foot-five.svg"
  32114. }
  32115. },
  32116. footFour: {
  32117. height: math.unit(1.43, "feet"),
  32118. name: "Foot (Four Toes)",
  32119. image: {
  32120. source: "./media/characters/theo-pangolin/foot-four.svg"
  32121. }
  32122. },
  32123. handFour: {
  32124. height: math.unit(0.81, "feet"),
  32125. name: "Hand (Four Fingers)",
  32126. image: {
  32127. source: "./media/characters/theo-pangolin/hand-four.svg"
  32128. }
  32129. },
  32130. handThree: {
  32131. height: math.unit(0.81, "feet"),
  32132. name: "Hand (Three Fingers)",
  32133. image: {
  32134. source: "./media/characters/theo-pangolin/hand-three.svg"
  32135. }
  32136. },
  32137. headFront: {
  32138. height: math.unit(1.37, "feet"),
  32139. name: "Head (Front)",
  32140. image: {
  32141. source: "./media/characters/theo-pangolin/head-front.svg"
  32142. }
  32143. },
  32144. headSide: {
  32145. height: math.unit(1.43, "feet"),
  32146. name: "Head (Side)",
  32147. image: {
  32148. source: "./media/characters/theo-pangolin/head-side.svg"
  32149. }
  32150. },
  32151. tongue: {
  32152. height: math.unit(2.29, "feet"),
  32153. name: "Tongue",
  32154. image: {
  32155. source: "./media/characters/theo-pangolin/tongue.svg"
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(6, "feet")
  32163. },
  32164. {
  32165. name: "Macro",
  32166. height: math.unit(400, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32173. {
  32174. front: {
  32175. height: math.unit(6, "inches"),
  32176. weight: math.unit(0.036, "kg"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/renée/front.svg",
  32180. extra: 900 / 886,
  32181. bottom: 8 / 908
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Nano",
  32188. height: math.unit(1, "nm")
  32189. },
  32190. {
  32191. name: "Micro",
  32192. height: math.unit(1, "mm")
  32193. },
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(6, "inches")
  32197. },
  32198. {
  32199. name: "Macro",
  32200. height: math.unit(2000, "feet"),
  32201. default: true
  32202. },
  32203. {
  32204. name: "Megamacro",
  32205. height: math.unit(2, "km")
  32206. },
  32207. {
  32208. name: "Gigamacro",
  32209. height: math.unit(2000, "km")
  32210. },
  32211. {
  32212. name: "Teramacro",
  32213. height: math.unit(250000, "km")
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(4, "meters"),
  32222. weight: math.unit(150, "kg"),
  32223. name: "Front",
  32224. image: {
  32225. source: "./media/characters/caledvwlch/front.svg",
  32226. extra: 1757/1537,
  32227. bottom: 31/1788
  32228. }
  32229. },
  32230. side: {
  32231. height: math.unit(4, "meters"),
  32232. weight: math.unit(150, "kg"),
  32233. name: "Side",
  32234. image: {
  32235. source: "./media/characters/caledvwlch/side.svg",
  32236. extra: 1605 / 1536,
  32237. bottom: 31 / 1636
  32238. }
  32239. },
  32240. back: {
  32241. height: math.unit(4, "meters"),
  32242. weight: math.unit(150, "kg"),
  32243. name: "Back",
  32244. image: {
  32245. source: "./media/characters/caledvwlch/back.svg",
  32246. extra: 1635 / 1565,
  32247. bottom: 27 / 1662
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "\"Incognito\"",
  32254. height: math.unit(4, "meters")
  32255. },
  32256. {
  32257. name: "Small rampage",
  32258. height: math.unit(600, "meters")
  32259. },
  32260. {
  32261. name: "Mega",
  32262. height: math.unit(30, "km")
  32263. },
  32264. {
  32265. name: "Home-size",
  32266. height: math.unit(50, "km"),
  32267. default: true
  32268. },
  32269. {
  32270. name: "Giga",
  32271. height: math.unit(300, "km")
  32272. },
  32273. {
  32274. name: "Lounging",
  32275. height: math.unit(11000, "km")
  32276. },
  32277. {
  32278. name: "Planet snacking",
  32279. height: math.unit(2000000, "km")
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32285. {
  32286. front: {
  32287. height: math.unit(6, "feet"),
  32288. weight: math.unit(215, "lb"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/sapphire-svell/front.svg",
  32292. extra: 495 / 455,
  32293. bottom: 20 / 515
  32294. }
  32295. },
  32296. back: {
  32297. height: math.unit(6, "feet"),
  32298. weight: math.unit(216, "lb"),
  32299. name: "Back",
  32300. image: {
  32301. source: "./media/characters/sapphire-svell/back.svg",
  32302. extra: 497 / 477,
  32303. bottom: 7 / 504
  32304. }
  32305. },
  32306. maw: {
  32307. height: math.unit(1.57, "feet"),
  32308. name: "Maw",
  32309. image: {
  32310. source: "./media/characters/sapphire-svell/maw.svg"
  32311. }
  32312. },
  32313. foot: {
  32314. height: math.unit(1.07, "feet"),
  32315. name: "Foot",
  32316. image: {
  32317. source: "./media/characters/sapphire-svell/foot.svg"
  32318. }
  32319. },
  32320. toering: {
  32321. height: math.unit(1.7, "inch"),
  32322. name: "Toering",
  32323. image: {
  32324. source: "./media/characters/sapphire-svell/toering.svg"
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(300, "feet"),
  32332. default: true
  32333. },
  32334. {
  32335. name: "Augmented",
  32336. height: math.unit(1250, "feet")
  32337. },
  32338. {
  32339. name: "Unleashed",
  32340. height: math.unit(3000, "feet")
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32346. {
  32347. side: {
  32348. height: math.unit(2 + 3 / 12, "feet"),
  32349. weight: math.unit(110, "lb"),
  32350. name: "Side",
  32351. image: {
  32352. source: "./media/characters/glitch-flux/side.svg",
  32353. extra: 997 / 805,
  32354. bottom: 20 / 1017
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(2 + 3 / 12, "feet"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(4, "meters"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/mid/front.svg",
  32374. extra: 507 / 476,
  32375. bottom: 17 / 524
  32376. }
  32377. },
  32378. back: {
  32379. height: math.unit(4, "meters"),
  32380. name: "Back",
  32381. image: {
  32382. source: "./media/characters/mid/back.svg",
  32383. extra: 519 / 487,
  32384. bottom: 7 / 526
  32385. }
  32386. },
  32387. stuck: {
  32388. height: math.unit(2.2, "meters"),
  32389. name: "Stuck",
  32390. image: {
  32391. source: "./media/characters/mid/stuck.svg",
  32392. extra: 1951 / 1869,
  32393. bottom: 88 / 2039
  32394. }
  32395. }
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(4, "meters"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Big",
  32405. height: math.unit(10, "meters")
  32406. },
  32407. {
  32408. name: "Macro",
  32409. height: math.unit(800, "meters")
  32410. },
  32411. {
  32412. name: "Megamacro",
  32413. height: math.unit(100, "km")
  32414. },
  32415. {
  32416. name: "Overgrown",
  32417. height: math.unit(1, "parsec")
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(2.5, "meters"),
  32426. weight: math.unit(225, "kg"),
  32427. name: "Front",
  32428. image: {
  32429. source: "./media/characters/iris/front.svg",
  32430. extra: 3348 / 3251,
  32431. bottom: 205 / 3553
  32432. }
  32433. },
  32434. maw: {
  32435. height: math.unit(0.56, "meter"),
  32436. name: "Maw",
  32437. image: {
  32438. source: "./media/characters/iris/maw.svg"
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Mewter cat",
  32445. height: math.unit(1.2, "meters")
  32446. },
  32447. {
  32448. name: "Normal",
  32449. height: math.unit(2.5, "meters"),
  32450. default: true
  32451. },
  32452. {
  32453. name: "Minimacro",
  32454. height: math.unit(18, "feet")
  32455. },
  32456. {
  32457. name: "Macro",
  32458. height: math.unit(140, "feet")
  32459. },
  32460. {
  32461. name: "Macro+",
  32462. height: math.unit(180, "meters")
  32463. },
  32464. {
  32465. name: "Megamacro",
  32466. height: math.unit(2746, "meters")
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32472. {
  32473. front: {
  32474. height: math.unit(6, "feet"),
  32475. weight: math.unit(135, "lb"),
  32476. name: "Front",
  32477. image: {
  32478. source: "./media/characters/axel/front.svg",
  32479. extra: 908 / 908,
  32480. bottom: 58 / 966
  32481. }
  32482. },
  32483. side: {
  32484. height: math.unit(6, "feet"),
  32485. weight: math.unit(135, "lb"),
  32486. name: "Side",
  32487. image: {
  32488. source: "./media/characters/axel/side.svg",
  32489. extra: 958 / 958,
  32490. bottom: 11 / 969
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(6, "feet"),
  32495. weight: math.unit(135, "lb"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/axel/back.svg",
  32499. extra: 887 / 887,
  32500. bottom: 34 / 921
  32501. }
  32502. },
  32503. head: {
  32504. height: math.unit(1.07, "feet"),
  32505. name: "Head",
  32506. image: {
  32507. source: "./media/characters/axel/head.svg"
  32508. }
  32509. },
  32510. beak: {
  32511. height: math.unit(1.4, "feet"),
  32512. name: "Beak",
  32513. image: {
  32514. source: "./media/characters/axel/beak.svg"
  32515. }
  32516. },
  32517. beakSide: {
  32518. height: math.unit(1.4, "feet"),
  32519. name: "Beak Side",
  32520. image: {
  32521. source: "./media/characters/axel/beak-side.svg"
  32522. }
  32523. },
  32524. sheath: {
  32525. height: math.unit(0.5, "feet"),
  32526. name: "Sheath",
  32527. image: {
  32528. source: "./media/characters/axel/sheath.svg"
  32529. }
  32530. },
  32531. dick: {
  32532. height: math.unit(0.98, "feet"),
  32533. name: "Dick",
  32534. image: {
  32535. source: "./media/characters/axel/dick.svg"
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Macro",
  32542. height: math.unit(68, "meters"),
  32543. default: true
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(3.5, "meters"),
  32552. weight: math.unit(1200, "kg"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/joanna/front.svg",
  32556. extra: 1596 / 1488,
  32557. bottom: 29 / 1625
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(3.5, "meters"),
  32562. weight: math.unit(1200, "kg"),
  32563. name: "Back",
  32564. image: {
  32565. source: "./media/characters/joanna/back.svg",
  32566. extra: 1594 / 1495,
  32567. bottom: 26 / 1620
  32568. }
  32569. },
  32570. frontShorts: {
  32571. height: math.unit(3.5, "meters"),
  32572. weight: math.unit(1200, "kg"),
  32573. name: "Front (Shorts)",
  32574. image: {
  32575. source: "./media/characters/joanna/front-shorts.svg",
  32576. extra: 1596 / 1488,
  32577. bottom: 29 / 1625
  32578. }
  32579. },
  32580. frontBiker: {
  32581. height: math.unit(3.5, "meters"),
  32582. weight: math.unit(1200, "kg"),
  32583. name: "Front (Biker)",
  32584. image: {
  32585. source: "./media/characters/joanna/front-biker.svg",
  32586. extra: 1596 / 1488,
  32587. bottom: 29 / 1625
  32588. }
  32589. },
  32590. backBiker: {
  32591. height: math.unit(3.5, "meters"),
  32592. weight: math.unit(1200, "kg"),
  32593. name: "Back (Biker)",
  32594. image: {
  32595. source: "./media/characters/joanna/back-biker.svg",
  32596. extra: 1594 / 1495,
  32597. bottom: 88 / 1682
  32598. }
  32599. },
  32600. bikeLeft: {
  32601. height: math.unit(2.4, "meters"),
  32602. weight: math.unit(1600, "kg"),
  32603. name: "Bike (Left)",
  32604. image: {
  32605. source: "./media/characters/joanna/bike-left.svg",
  32606. extra: 720 / 720,
  32607. bottom: 8 / 728
  32608. }
  32609. },
  32610. bikeRight: {
  32611. height: math.unit(2.4, "meters"),
  32612. weight: math.unit(1600, "kg"),
  32613. name: "Bike (Right)",
  32614. image: {
  32615. source: "./media/characters/joanna/bike-right.svg",
  32616. extra: 720 / 720,
  32617. bottom: 8 / 728
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Incognito",
  32624. height: math.unit(3.5, "meters")
  32625. },
  32626. {
  32627. name: "Casual Big",
  32628. height: math.unit(200, "meters")
  32629. },
  32630. {
  32631. name: "Macro",
  32632. height: math.unit(600, "meters")
  32633. },
  32634. {
  32635. name: "Original",
  32636. height: math.unit(20, "km"),
  32637. default: true
  32638. },
  32639. {
  32640. name: "Giga",
  32641. height: math.unit(400, "km")
  32642. },
  32643. {
  32644. name: "Lounging",
  32645. height: math.unit(1500, "km")
  32646. },
  32647. {
  32648. name: "Planetary",
  32649. height: math.unit(200000, "km")
  32650. },
  32651. ]
  32652. ))
  32653. characterMakers.push(() => makeCharacter(
  32654. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32655. {
  32656. front: {
  32657. height: math.unit(6, "feet"),
  32658. weight: math.unit(150, "lb"),
  32659. name: "Front",
  32660. image: {
  32661. source: "./media/characters/hugo-sigil/front.svg",
  32662. extra: 522 / 500,
  32663. bottom: 2 / 524
  32664. }
  32665. },
  32666. back: {
  32667. height: math.unit(6, "feet"),
  32668. weight: math.unit(150, "lb"),
  32669. name: "Back",
  32670. image: {
  32671. source: "./media/characters/hugo-sigil/back.svg",
  32672. extra: 519 / 495,
  32673. bottom: 5 / 524
  32674. }
  32675. },
  32676. maw: {
  32677. height: math.unit(1.4, "feet"),
  32678. weight: math.unit(150, "lb"),
  32679. name: "Maw",
  32680. image: {
  32681. source: "./media/characters/hugo-sigil/maw.svg"
  32682. }
  32683. },
  32684. feet: {
  32685. height: math.unit(1.56, "feet"),
  32686. weight: math.unit(150, "lb"),
  32687. name: "Feet",
  32688. image: {
  32689. source: "./media/characters/hugo-sigil/feet.svg",
  32690. extra: 177 / 177,
  32691. bottom: 12 / 189
  32692. }
  32693. },
  32694. },
  32695. [
  32696. {
  32697. name: "Normal",
  32698. height: math.unit(6, "feet")
  32699. },
  32700. {
  32701. name: "Macro",
  32702. height: math.unit(200, "feet"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(6, "feet"),
  32712. weight: math.unit(150, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/peri/front.svg",
  32716. extra: 2354 / 2233,
  32717. bottom: 49 / 2403
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Really Small",
  32724. height: math.unit(1, "nm")
  32725. },
  32726. {
  32727. name: "Micro",
  32728. height: math.unit(4, "inches")
  32729. },
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(7, "inches"),
  32733. default: true
  32734. },
  32735. {
  32736. name: "Macro",
  32737. height: math.unit(400, "feet")
  32738. },
  32739. {
  32740. name: "Megamacro",
  32741. height: math.unit(100, "miles")
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32747. {
  32748. frontSlim: {
  32749. height: math.unit(7, "feet"),
  32750. name: "Front (Slim)",
  32751. image: {
  32752. source: "./media/characters/issilora/front-slim.svg",
  32753. extra: 529 / 449,
  32754. bottom: 53 / 582
  32755. }
  32756. },
  32757. sideSlim: {
  32758. height: math.unit(7, "feet"),
  32759. name: "Side (Slim)",
  32760. image: {
  32761. source: "./media/characters/issilora/side-slim.svg",
  32762. extra: 570 / 480,
  32763. bottom: 30 / 600
  32764. }
  32765. },
  32766. backSlim: {
  32767. height: math.unit(7, "feet"),
  32768. name: "Back (Slim)",
  32769. image: {
  32770. source: "./media/characters/issilora/back-slim.svg",
  32771. extra: 537 / 455,
  32772. bottom: 46 / 583
  32773. }
  32774. },
  32775. frontBuff: {
  32776. height: math.unit(7, "feet"),
  32777. name: "Front (Buff)",
  32778. image: {
  32779. source: "./media/characters/issilora/front-buff.svg",
  32780. extra: 2310 / 2035,
  32781. bottom: 335 / 2645
  32782. }
  32783. },
  32784. head: {
  32785. height: math.unit(1.94, "feet"),
  32786. name: "Head",
  32787. image: {
  32788. source: "./media/characters/issilora/head.svg"
  32789. }
  32790. },
  32791. },
  32792. [
  32793. {
  32794. name: "Minimum",
  32795. height: math.unit(7, "feet")
  32796. },
  32797. {
  32798. name: "Comfortable",
  32799. height: math.unit(17, "feet")
  32800. },
  32801. {
  32802. name: "Fun Size",
  32803. height: math.unit(47, "feet")
  32804. },
  32805. {
  32806. name: "Natural Macro",
  32807. height: math.unit(137, "feet"),
  32808. default: true
  32809. },
  32810. {
  32811. name: "Maximum Kaiju",
  32812. height: math.unit(397, "feet")
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32818. {
  32819. front: {
  32820. height: math.unit(50 + 9/12, "feet"),
  32821. weight: math.unit(32.8, "tons"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/irb'iiritaahn/front.svg",
  32825. extra: 1878/1826,
  32826. bottom: 326/2204
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(50 + 9/12, "feet"),
  32831. weight: math.unit(32.8, "tons"),
  32832. name: "Back",
  32833. image: {
  32834. source: "./media/characters/irb'iiritaahn/back.svg",
  32835. extra: 2052/2018,
  32836. bottom: 152/2204
  32837. }
  32838. },
  32839. head: {
  32840. height: math.unit(12.86, "feet"),
  32841. name: "Head",
  32842. image: {
  32843. source: "./media/characters/irb'iiritaahn/head.svg"
  32844. }
  32845. },
  32846. maw: {
  32847. height: math.unit(9.66, "feet"),
  32848. name: "Maw",
  32849. image: {
  32850. source: "./media/characters/irb'iiritaahn/maw.svg"
  32851. }
  32852. },
  32853. frontDick: {
  32854. height: math.unit(8.78461, "feet"),
  32855. name: "Front Dick",
  32856. image: {
  32857. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32858. }
  32859. },
  32860. rearDick: {
  32861. height: math.unit(8.78461, "feet"),
  32862. name: "Rear Dick",
  32863. image: {
  32864. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32865. }
  32866. },
  32867. rearDickUnfolded: {
  32868. height: math.unit(8.78, "feet"),
  32869. name: "Rear Dick (Unfolded)",
  32870. image: {
  32871. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32872. }
  32873. },
  32874. wings: {
  32875. height: math.unit(43, "feet"),
  32876. name: "Wings",
  32877. image: {
  32878. source: "./media/characters/irb'iiritaahn/wings.svg"
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Macro",
  32885. height: math.unit(50 + 9/12, "feet"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(205, "cm"),
  32895. weight: math.unit(102, "kg"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/irbisgreif/front.svg",
  32899. extra: 785/706,
  32900. bottom: 13/798
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(205, "cm"),
  32905. weight: math.unit(102, "kg"),
  32906. name: "Back",
  32907. image: {
  32908. source: "./media/characters/irbisgreif/back.svg",
  32909. extra: 713/701,
  32910. bottom: 26/739
  32911. }
  32912. },
  32913. frontDressed: {
  32914. height: math.unit(216, "cm"),
  32915. weight: math.unit(102, "kg"),
  32916. name: "Front-dressed",
  32917. image: {
  32918. source: "./media/characters/irbisgreif/front-dressed.svg",
  32919. extra: 902/776,
  32920. bottom: 14/916
  32921. }
  32922. },
  32923. sideDressed: {
  32924. height: math.unit(195, "cm"),
  32925. weight: math.unit(102, "kg"),
  32926. name: "Side-dressed",
  32927. image: {
  32928. source: "./media/characters/irbisgreif/side-dressed.svg",
  32929. extra: 788/688,
  32930. bottom: 21/809
  32931. }
  32932. },
  32933. backDressed: {
  32934. height: math.unit(216, "cm"),
  32935. weight: math.unit(102, "kg"),
  32936. name: "Back-dressed",
  32937. image: {
  32938. source: "./media/characters/irbisgreif/back-dressed.svg",
  32939. extra: 901/783,
  32940. bottom: 10/911
  32941. }
  32942. },
  32943. dick: {
  32944. height: math.unit(0.49, "feet"),
  32945. name: "Dick",
  32946. image: {
  32947. source: "./media/characters/irbisgreif/dick.svg"
  32948. }
  32949. },
  32950. wingTop: {
  32951. height: math.unit(1.93 , "feet"),
  32952. name: "Wing-top",
  32953. image: {
  32954. source: "./media/characters/irbisgreif/wing-top.svg"
  32955. }
  32956. },
  32957. wingBottom: {
  32958. height: math.unit(1.93 , "feet"),
  32959. name: "Wing-bottom",
  32960. image: {
  32961. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(216, "cm"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32975. {
  32976. front: {
  32977. height: math.unit(6, "feet"),
  32978. weight: math.unit(150, "lb"),
  32979. name: "Front",
  32980. image: {
  32981. source: "./media/characters/pride/front.svg",
  32982. extra: 1299/1230,
  32983. bottom: 18/1317
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(7, "feet")
  32991. },
  32992. {
  32993. name: "Mini-macro",
  32994. height: math.unit(11, "feet")
  32995. },
  32996. {
  32997. name: "Macro",
  32998. height: math.unit(15, "meters"),
  32999. default: true
  33000. },
  33001. {
  33002. name: "Macro+",
  33003. height: math.unit(40, "meters")
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33009. {
  33010. front: {
  33011. height: math.unit(4 + 2 / 12, "feet"),
  33012. weight: math.unit(95, "lb"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/vaelophis-nyx/front.svg",
  33016. extra: 2532/2330,
  33017. bottom: 0/2532
  33018. }
  33019. },
  33020. back: {
  33021. height: math.unit(4 + 2 / 12, "feet"),
  33022. weight: math.unit(95, "lb"),
  33023. name: "Back",
  33024. image: {
  33025. source: "./media/characters/vaelophis-nyx/back.svg",
  33026. extra: 2484/2361,
  33027. bottom: 0/2484
  33028. }
  33029. },
  33030. feralSide: {
  33031. height: math.unit(2 + 1/12, "feet"),
  33032. weight: math.unit(20, "lb"),
  33033. name: "Feral (Side)",
  33034. image: {
  33035. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33036. extra: 1721/1581,
  33037. bottom: 70/1791
  33038. }
  33039. },
  33040. feralLazing: {
  33041. height: math.unit(1.08, "feet"),
  33042. weight: math.unit(20, "lb"),
  33043. name: "Feral (Lazing)",
  33044. image: {
  33045. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33046. extra: 822/822,
  33047. bottom: 248/1070
  33048. }
  33049. },
  33050. ear: {
  33051. height: math.unit(0.416, "feet"),
  33052. name: "Ear",
  33053. image: {
  33054. source: "./media/characters/vaelophis-nyx/ear.svg"
  33055. }
  33056. },
  33057. eye: {
  33058. height: math.unit(0.0748, "feet"),
  33059. name: "Eye",
  33060. image: {
  33061. source: "./media/characters/vaelophis-nyx/eye.svg"
  33062. }
  33063. },
  33064. mouth: {
  33065. height: math.unit(0.378, "feet"),
  33066. name: "Mouth",
  33067. image: {
  33068. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33069. }
  33070. },
  33071. spade: {
  33072. height: math.unit(0.55, "feet"),
  33073. name: "Spade",
  33074. image: {
  33075. source: "./media/characters/vaelophis-nyx/spade.svg"
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(4 + 2/12, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33089. {
  33090. front: {
  33091. height: math.unit(7, "feet"),
  33092. weight: math.unit(231, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/flux/front.svg",
  33096. extra: 919/871,
  33097. bottom: 0/919
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(7, "feet"),
  33102. weight: math.unit(231, "lb"),
  33103. name: "Back",
  33104. image: {
  33105. source: "./media/characters/flux/back.svg",
  33106. extra: 1040/992,
  33107. bottom: 0/1040
  33108. }
  33109. },
  33110. frontDressed: {
  33111. height: math.unit(7, "feet"),
  33112. weight: math.unit(231, "lb"),
  33113. name: "Front (Dressed)",
  33114. image: {
  33115. source: "./media/characters/flux/front-dressed.svg",
  33116. extra: 919/871,
  33117. bottom: 0/919
  33118. }
  33119. },
  33120. feralSide: {
  33121. height: math.unit(5, "feet"),
  33122. weight: math.unit(150, "lb"),
  33123. name: "Feral (Side)",
  33124. image: {
  33125. source: "./media/characters/flux/feral-side.svg",
  33126. extra: 598/528,
  33127. bottom: 28/626
  33128. }
  33129. },
  33130. head: {
  33131. height: math.unit(1.585, "feet"),
  33132. name: "Head",
  33133. image: {
  33134. source: "./media/characters/flux/head.svg"
  33135. }
  33136. },
  33137. headSide: {
  33138. height: math.unit(1.74, "feet"),
  33139. name: "Head (Side)",
  33140. image: {
  33141. source: "./media/characters/flux/head-side.svg"
  33142. }
  33143. },
  33144. headSideFire: {
  33145. height: math.unit(1.76, "feet"),
  33146. name: "Head (Side, Fire)",
  33147. image: {
  33148. source: "./media/characters/flux/head-side-fire.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(7, "feet"),
  33156. default: true
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(9, "feet"),
  33165. weight: math.unit(1012, "lb"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/ulfra-lupae/front.svg",
  33169. extra: 1083/1011,
  33170. bottom: 67/1150
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Micro",
  33177. height: math.unit(6, "inches")
  33178. },
  33179. {
  33180. name: "Socializing",
  33181. height: math.unit(6 + 5/12, "feet")
  33182. },
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(9, "feet"),
  33186. default: true
  33187. },
  33188. {
  33189. name: "Macro",
  33190. height: math.unit(150, "feet")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(5 + 2/12, "feet"),
  33199. weight: math.unit(120, "lb"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/timber/front.svg",
  33203. extra: 2814/2705,
  33204. bottom: 181/2995
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(5 + 2/12, "feet"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(9, "feet"),
  33221. name: "Front",
  33222. image: {
  33223. source: "./media/characters/nicki/front.svg",
  33224. extra: 1240/990,
  33225. bottom: 45/1285
  33226. },
  33227. form: "anthro",
  33228. default: true
  33229. },
  33230. side: {
  33231. height: math.unit(9, "feet"),
  33232. name: "Side",
  33233. image: {
  33234. source: "./media/characters/nicki/side.svg",
  33235. extra: 1047/973,
  33236. bottom: 61/1108
  33237. },
  33238. form: "anthro"
  33239. },
  33240. back: {
  33241. height: math.unit(9, "feet"),
  33242. name: "Back",
  33243. image: {
  33244. source: "./media/characters/nicki/back.svg",
  33245. extra: 1006/965,
  33246. bottom: 39/1045
  33247. },
  33248. form: "anthro"
  33249. },
  33250. taur: {
  33251. height: math.unit(15, "feet"),
  33252. name: "Taur",
  33253. image: {
  33254. source: "./media/characters/nicki/taur.svg",
  33255. extra: 1592/1347,
  33256. bottom: 0/1592
  33257. },
  33258. form: "taur",
  33259. default: true
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(9, "feet"),
  33266. form: "anthro",
  33267. default: true
  33268. },
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(15, "feet"),
  33272. form: "taur",
  33273. default: true
  33274. }
  33275. ],
  33276. {
  33277. "anthro": {
  33278. name: "Anthro",
  33279. default: true
  33280. },
  33281. "taur": {
  33282. name: "Taur"
  33283. }
  33284. }
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(7 + 10/12, "feet"),
  33291. weight: math.unit(3.5, "tons"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/lee/front.svg",
  33295. extra: 1773/1615,
  33296. bottom: 86/1859
  33297. }
  33298. },
  33299. hand: {
  33300. height: math.unit(1.78, "feet"),
  33301. name: "Hand",
  33302. image: {
  33303. source: "./media/characters/lee/hand.svg"
  33304. }
  33305. },
  33306. maw: {
  33307. height: math.unit(1.18, "feet"),
  33308. name: "Maw",
  33309. image: {
  33310. source: "./media/characters/lee/maw.svg"
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(7 + 10/12, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33324. {
  33325. front: {
  33326. height: math.unit(9, "feet"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/guti/front.svg",
  33330. extra: 4551/4355,
  33331. bottom: 123/4674
  33332. }
  33333. },
  33334. tongue: {
  33335. height: math.unit(1, "feet"),
  33336. name: "Tongue",
  33337. image: {
  33338. source: "./media/characters/guti/tongue.svg"
  33339. }
  33340. },
  33341. paw: {
  33342. height: math.unit(1.18, "feet"),
  33343. name: "Paw",
  33344. image: {
  33345. source: "./media/characters/guti/paw.svg"
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Normal",
  33352. height: math.unit(9, "feet"),
  33353. default: true
  33354. },
  33355. ]
  33356. ))
  33357. characterMakers.push(() => makeCharacter(
  33358. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33359. {
  33360. side: {
  33361. height: math.unit(5, "meters"),
  33362. name: "Side",
  33363. image: {
  33364. source: "./media/characters/vesper/side.svg",
  33365. extra: 1605/1518,
  33366. bottom: 0/1605
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Small",
  33373. height: math.unit(5, "meters")
  33374. },
  33375. {
  33376. name: "Sage",
  33377. height: math.unit(100, "meters"),
  33378. default: true
  33379. },
  33380. {
  33381. name: "Fun Size",
  33382. height: math.unit(600, "meters")
  33383. },
  33384. {
  33385. name: "Goddess",
  33386. height: math.unit(20000, "km")
  33387. },
  33388. {
  33389. name: "Maximum",
  33390. height: math.unit(5, "galaxies")
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(6 + 3/12, "feet"),
  33399. weight: math.unit(190, "lb"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/gawain/front.svg",
  33403. extra: 2222/2139,
  33404. bottom: 90/2312
  33405. }
  33406. },
  33407. back: {
  33408. height: math.unit(6 + 3/12, "feet"),
  33409. weight: math.unit(190, "lb"),
  33410. name: "Back",
  33411. image: {
  33412. source: "./media/characters/gawain/back.svg",
  33413. extra: 2199/2111,
  33414. bottom: 73/2272
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(6 + 3/12, "feet"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33428. {
  33429. side: {
  33430. height: math.unit(3.5, "meters"),
  33431. weight: math.unit(16000, "lb"),
  33432. name: "Side",
  33433. image: {
  33434. source: "./media/characters/dascalti/side.svg",
  33435. extra: 392/273,
  33436. bottom: 47/439
  33437. }
  33438. },
  33439. breath: {
  33440. height: math.unit(7.4, "feet"),
  33441. name: "Breath",
  33442. image: {
  33443. source: "./media/characters/dascalti/breath.svg"
  33444. }
  33445. },
  33446. fed: {
  33447. height: math.unit(3.6, "meters"),
  33448. weight: math.unit(16000, "lb"),
  33449. name: "Fed",
  33450. image: {
  33451. source: "./media/characters/dascalti/fed.svg",
  33452. extra: 1419/820,
  33453. bottom: 95/1514
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(3.5, "meters"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(3 + 5/12, "feet"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/mauve/front.svg",
  33473. extra: 1126/1033,
  33474. bottom: 65/1191
  33475. }
  33476. },
  33477. side: {
  33478. height: math.unit(3 + 5/12, "feet"),
  33479. name: "Side",
  33480. image: {
  33481. source: "./media/characters/mauve/side.svg",
  33482. extra: 1089/1001,
  33483. bottom: 29/1118
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(3 + 5/12, "feet"),
  33488. name: "Back",
  33489. image: {
  33490. source: "./media/characters/mauve/back.svg",
  33491. extra: 1173/1053,
  33492. bottom: 109/1282
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(3 + 5/12, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(6 + 3/12, "feet"),
  33509. weight: math.unit(430, "lb"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/carlos/front.svg",
  33513. extra: 1964/1913,
  33514. bottom: 70/2034
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(6 + 3/12, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33528. {
  33529. back: {
  33530. height: math.unit(5 + 10/12, "feet"),
  33531. weight: math.unit(200, "lb"),
  33532. name: "Back",
  33533. image: {
  33534. source: "./media/characters/jax/back.svg",
  33535. extra: 764/739,
  33536. bottom: 25/789
  33537. }
  33538. },
  33539. },
  33540. [
  33541. {
  33542. name: "Normal",
  33543. height: math.unit(5 + 10/12, "feet"),
  33544. default: true
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(8, "feet"),
  33553. weight: math.unit(250, "lb"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/eikthynir/front.svg",
  33557. extra: 1332/1166,
  33558. bottom: 82/1414
  33559. }
  33560. },
  33561. back: {
  33562. height: math.unit(8, "feet"),
  33563. weight: math.unit(250, "lb"),
  33564. name: "Back",
  33565. image: {
  33566. source: "./media/characters/eikthynir/back.svg",
  33567. extra: 1342/1190,
  33568. bottom: 19/1361
  33569. }
  33570. },
  33571. dick: {
  33572. height: math.unit(2.35, "feet"),
  33573. name: "Dick",
  33574. image: {
  33575. source: "./media/characters/eikthynir/dick.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(8, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(99, "meters"),
  33592. weight: math.unit(13000, "tons"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/zlmos/front.svg",
  33596. extra: 2202/1992,
  33597. bottom: 315/2517
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Macro",
  33604. height: math.unit(99, "meters"),
  33605. default: true
  33606. },
  33607. ]
  33608. ))
  33609. characterMakers.push(() => makeCharacter(
  33610. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33611. {
  33612. front: {
  33613. height: math.unit(6 + 5/12, "feet"),
  33614. name: "Front",
  33615. image: {
  33616. source: "./media/characters/purri/front.svg",
  33617. extra: 1698/1610,
  33618. bottom: 32/1730
  33619. }
  33620. },
  33621. frontAlt: {
  33622. height: math.unit(6 + 5/12, "feet"),
  33623. name: "Front (Alt)",
  33624. image: {
  33625. source: "./media/characters/purri/front-alt.svg",
  33626. extra: 450/420,
  33627. bottom: 26/476
  33628. }
  33629. },
  33630. boots: {
  33631. height: math.unit(5.5, "feet"),
  33632. name: "Boots",
  33633. image: {
  33634. source: "./media/characters/purri/boots.svg",
  33635. extra: 905/853,
  33636. bottom: 18/923
  33637. }
  33638. },
  33639. lying: {
  33640. height: math.unit(2, "feet"),
  33641. name: "Lying",
  33642. image: {
  33643. source: "./media/characters/purri/lying.svg",
  33644. extra: 940/843,
  33645. bottom: 146/1086
  33646. }
  33647. },
  33648. devious: {
  33649. height: math.unit(1.77, "feet"),
  33650. name: "Devious",
  33651. image: {
  33652. source: "./media/characters/purri/devious.svg",
  33653. extra: 1440/1155,
  33654. bottom: 147/1587
  33655. }
  33656. },
  33657. bean: {
  33658. height: math.unit(1.94, "feet"),
  33659. name: "Bean",
  33660. image: {
  33661. source: "./media/characters/purri/bean.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Micro",
  33668. height: math.unit(1, "mm")
  33669. },
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(6 + 5/12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Macro :3c",
  33677. height: math.unit(2, "miles")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(6 + 2/12, "feet"),
  33686. weight: math.unit(250, "lb"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/moonlight/front.svg",
  33690. extra: 1044/908,
  33691. bottom: 56/1100
  33692. }
  33693. },
  33694. feral: {
  33695. height: math.unit(3 + 1/12, "feet"),
  33696. weight: math.unit(50, "kg"),
  33697. name: "Feral",
  33698. image: {
  33699. source: "./media/characters/moonlight/feral.svg",
  33700. extra: 3705/2791,
  33701. bottom: 145/3850
  33702. }
  33703. },
  33704. paw: {
  33705. height: math.unit(1, "feet"),
  33706. name: "Paw",
  33707. image: {
  33708. source: "./media/characters/moonlight/paw.svg"
  33709. }
  33710. },
  33711. paws: {
  33712. height: math.unit(0.98, "feet"),
  33713. name: "Paws",
  33714. image: {
  33715. source: "./media/characters/moonlight/paws.svg",
  33716. extra: 939/939,
  33717. bottom: 50/989
  33718. }
  33719. },
  33720. mouth: {
  33721. height: math.unit(0.48, "feet"),
  33722. name: "Mouth",
  33723. image: {
  33724. source: "./media/characters/moonlight/mouth.svg"
  33725. }
  33726. },
  33727. dick: {
  33728. height: math.unit(1.46, "feet"),
  33729. name: "Dick",
  33730. image: {
  33731. source: "./media/characters/moonlight/dick.svg"
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Normal",
  33738. height: math.unit(6 + 2/12, "feet"),
  33739. default: true
  33740. },
  33741. {
  33742. name: "Macro",
  33743. height: math.unit(300, "feet")
  33744. },
  33745. {
  33746. name: "Macro+",
  33747. height: math.unit(1, "mile")
  33748. },
  33749. {
  33750. name: "Mt. Moon",
  33751. height: math.unit(5, "miles")
  33752. },
  33753. {
  33754. name: "Megamacro",
  33755. height: math.unit(15, "miles")
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33761. {
  33762. back: {
  33763. height: math.unit(6, "feet"),
  33764. weight: math.unit(150, "lb"),
  33765. name: "Back",
  33766. image: {
  33767. source: "./media/characters/sylen/back.svg",
  33768. extra: 1335/1273,
  33769. bottom: 107/1442
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(5 + 5/12, "feet")
  33777. },
  33778. {
  33779. name: "Megamacro",
  33780. height: math.unit(3, "miles"),
  33781. default: true
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33787. {
  33788. front: {
  33789. height: math.unit(6, "feet"),
  33790. weight: math.unit(190, "lb"),
  33791. name: "Front",
  33792. image: {
  33793. source: "./media/characters/huttser/front.svg",
  33794. extra: 1152/1058,
  33795. bottom: 23/1175
  33796. }
  33797. },
  33798. side: {
  33799. height: math.unit(6, "feet"),
  33800. weight: math.unit(190, "lb"),
  33801. name: "Side",
  33802. image: {
  33803. source: "./media/characters/huttser/side.svg",
  33804. extra: 1174/1065,
  33805. bottom: 18/1192
  33806. }
  33807. },
  33808. back: {
  33809. height: math.unit(6, "feet"),
  33810. weight: math.unit(190, "lb"),
  33811. name: "Back",
  33812. image: {
  33813. source: "./media/characters/huttser/back.svg",
  33814. extra: 1158/1056,
  33815. bottom: 12/1170
  33816. }
  33817. },
  33818. },
  33819. [
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33824. {
  33825. side: {
  33826. height: math.unit(12 + 9/12, "feet"),
  33827. weight: math.unit(15000, "lb"),
  33828. name: "Side",
  33829. image: {
  33830. source: "./media/characters/faan/side.svg",
  33831. extra: 2747/2697,
  33832. bottom: 0/2747
  33833. }
  33834. },
  33835. front: {
  33836. height: math.unit(12 + 9/12, "feet"),
  33837. weight: math.unit(15000, "lb"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/faan/front.svg",
  33841. extra: 607/571,
  33842. bottom: 24/631
  33843. }
  33844. },
  33845. head: {
  33846. height: math.unit(2.85, "feet"),
  33847. name: "Head",
  33848. image: {
  33849. source: "./media/characters/faan/head.svg"
  33850. }
  33851. },
  33852. headAlt: {
  33853. height: math.unit(3.13, "feet"),
  33854. name: "Head-alt",
  33855. image: {
  33856. source: "./media/characters/faan/head-alt.svg"
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(12 + 9/12, "feet"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(6, "feet"),
  33873. weight: math.unit(300, "lb"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/tanio/front.svg",
  33877. extra: 711/673,
  33878. bottom: 25/736
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Normal",
  33885. height: math.unit(6, "feet"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33892. {
  33893. front: {
  33894. height: math.unit(3, "inches"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/noboru/front.svg",
  33898. extra: 1039/932,
  33899. bottom: 18/1057
  33900. }
  33901. },
  33902. },
  33903. [
  33904. {
  33905. name: "Micro",
  33906. height: math.unit(3, "inches"),
  33907. default: true
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(1.85, "meters"),
  33916. weight: math.unit(80, "kg"),
  33917. name: "Front",
  33918. image: {
  33919. source: "./media/characters/daniel-barrett/front.svg",
  33920. extra: 355/337,
  33921. bottom: 9/364
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Pico",
  33928. height: math.unit(0.0433, "mm")
  33929. },
  33930. {
  33931. name: "Nano",
  33932. height: math.unit(1.5, "mm")
  33933. },
  33934. {
  33935. name: "Micro",
  33936. height: math.unit(5.3, "cm"),
  33937. default: true
  33938. },
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(1.85, "meters")
  33942. },
  33943. {
  33944. name: "Macro",
  33945. height: math.unit(64.7, "meters")
  33946. },
  33947. {
  33948. name: "Megamacro",
  33949. height: math.unit(2.26, "km")
  33950. },
  33951. {
  33952. name: "Gigamacro",
  33953. height: math.unit(79, "km")
  33954. },
  33955. {
  33956. name: "Teramacro",
  33957. height: math.unit(2765, "km")
  33958. },
  33959. {
  33960. name: "Petamacro",
  33961. height: math.unit(96678, "km")
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(30, "meters"),
  33970. weight: math.unit(400, "tons"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/zeel/front.svg",
  33974. extra: 2599/2599,
  33975. bottom: 226/2825
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Macro",
  33982. height: math.unit(30, "meters"),
  33983. default: true
  33984. },
  33985. ]
  33986. ))
  33987. characterMakers.push(() => makeCharacter(
  33988. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33989. {
  33990. front: {
  33991. height: math.unit(6 + 7/12, "feet"),
  33992. weight: math.unit(210, "lb"),
  33993. name: "Front",
  33994. image: {
  33995. source: "./media/characters/tarn/front.svg",
  33996. extra: 3517/3220,
  33997. bottom: 91/3608
  33998. }
  33999. },
  34000. back: {
  34001. height: math.unit(6 + 7/12, "feet"),
  34002. weight: math.unit(210, "lb"),
  34003. name: "Back",
  34004. image: {
  34005. source: "./media/characters/tarn/back.svg",
  34006. extra: 3566/3241,
  34007. bottom: 34/3600
  34008. }
  34009. },
  34010. dick: {
  34011. height: math.unit(1.65, "feet"),
  34012. name: "Dick",
  34013. image: {
  34014. source: "./media/characters/tarn/dick.svg"
  34015. }
  34016. },
  34017. paw: {
  34018. height: math.unit(1.80, "feet"),
  34019. name: "Paw",
  34020. image: {
  34021. source: "./media/characters/tarn/paw.svg"
  34022. }
  34023. },
  34024. tongue: {
  34025. height: math.unit(0.97, "feet"),
  34026. name: "Tongue",
  34027. image: {
  34028. source: "./media/characters/tarn/tongue.svg"
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Micro",
  34035. height: math.unit(4, "inches")
  34036. },
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(6 + 7/12, "feet"),
  34040. default: true
  34041. },
  34042. {
  34043. name: "Macro",
  34044. height: math.unit(300, "feet")
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(5 + 7/12, "feet"),
  34053. weight: math.unit(80, "kg"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34057. extra: 3023/2865,
  34058. bottom: 33/3056
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(5 + 7/12, "feet"),
  34063. weight: math.unit(80, "kg"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34067. extra: 3020/2886,
  34068. bottom: 30/3050
  34069. }
  34070. },
  34071. dick: {
  34072. height: math.unit(0.98, "feet"),
  34073. name: "Dick",
  34074. image: {
  34075. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34076. }
  34077. },
  34078. anatomy: {
  34079. height: math.unit(2.86, "feet"),
  34080. name: "Anatomy",
  34081. image: {
  34082. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Really Small",
  34089. height: math.unit(2, "inches")
  34090. },
  34091. {
  34092. name: "Micro",
  34093. height: math.unit(5.583, "inches")
  34094. },
  34095. {
  34096. name: "Normal",
  34097. height: math.unit(5 + 7/12, "feet"),
  34098. default: true
  34099. },
  34100. {
  34101. name: "Macro",
  34102. height: math.unit(67, "feet")
  34103. },
  34104. {
  34105. name: "Megamacro",
  34106. height: math.unit(134, "feet")
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34112. {
  34113. front: {
  34114. height: math.unit(9, "feet"),
  34115. weight: math.unit(120, "lb"),
  34116. name: "Front",
  34117. image: {
  34118. source: "./media/characters/sally/front.svg",
  34119. extra: 1506/1349,
  34120. bottom: 66/1572
  34121. }
  34122. },
  34123. },
  34124. [
  34125. {
  34126. name: "Normal",
  34127. height: math.unit(9, "feet"),
  34128. default: true
  34129. },
  34130. ]
  34131. ))
  34132. characterMakers.push(() => makeCharacter(
  34133. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34134. {
  34135. front: {
  34136. height: math.unit(8, "feet"),
  34137. weight: math.unit(900, "lb"),
  34138. name: "Front",
  34139. image: {
  34140. source: "./media/characters/owen/front.svg",
  34141. extra: 1761/1657,
  34142. bottom: 74/1835
  34143. }
  34144. },
  34145. side: {
  34146. height: math.unit(8, "feet"),
  34147. weight: math.unit(900, "lb"),
  34148. name: "Side",
  34149. image: {
  34150. source: "./media/characters/owen/side.svg",
  34151. extra: 1797/1734,
  34152. bottom: 30/1827
  34153. }
  34154. },
  34155. back: {
  34156. height: math.unit(8, "feet"),
  34157. weight: math.unit(900, "lb"),
  34158. name: "Back",
  34159. image: {
  34160. source: "./media/characters/owen/back.svg",
  34161. extra: 1796/1706,
  34162. bottom: 59/1855
  34163. }
  34164. },
  34165. maw: {
  34166. height: math.unit(1.76, "feet"),
  34167. name: "Maw",
  34168. image: {
  34169. source: "./media/characters/owen/maw.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(8, "feet"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34183. {
  34184. front: {
  34185. height: math.unit(4, "feet"),
  34186. weight: math.unit(400, "lb"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/ryth/front.svg",
  34190. extra: 1920/1748,
  34191. bottom: 42/1962
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(4, "feet"),
  34196. weight: math.unit(400, "lb"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/ryth/back.svg",
  34200. extra: 1897/1690,
  34201. bottom: 89/1986
  34202. }
  34203. },
  34204. mouth: {
  34205. height: math.unit(1.39, "feet"),
  34206. name: "Mouth",
  34207. image: {
  34208. source: "./media/characters/ryth/mouth.svg"
  34209. }
  34210. },
  34211. tailmaw: {
  34212. height: math.unit(1.23, "feet"),
  34213. name: "Tailmaw",
  34214. image: {
  34215. source: "./media/characters/ryth/tailmaw.svg"
  34216. }
  34217. },
  34218. goia: {
  34219. height: math.unit(4, "meters"),
  34220. weight: math.unit(10800, "lb"),
  34221. name: "Goia",
  34222. image: {
  34223. source: "./media/characters/ryth/goia.svg",
  34224. extra: 745/640,
  34225. bottom: 107/852
  34226. }
  34227. },
  34228. goiaFront: {
  34229. height: math.unit(4, "meters"),
  34230. weight: math.unit(10800, "lb"),
  34231. name: "Goia (Front)",
  34232. image: {
  34233. source: "./media/characters/ryth/goia-front.svg",
  34234. extra: 750/586,
  34235. bottom: 114/864
  34236. }
  34237. },
  34238. goiaMaw: {
  34239. height: math.unit(5.55, "feet"),
  34240. name: "Goia Maw",
  34241. image: {
  34242. source: "./media/characters/ryth/goia-maw.svg"
  34243. }
  34244. },
  34245. goiaForepaw: {
  34246. height: math.unit(3.5, "feet"),
  34247. name: "Goia Forepaw",
  34248. image: {
  34249. source: "./media/characters/ryth/goia-forepaw.svg"
  34250. }
  34251. },
  34252. goiaHindpaw: {
  34253. height: math.unit(5.55, "feet"),
  34254. name: "Goia Hindpaw",
  34255. image: {
  34256. source: "./media/characters/ryth/goia-hindpaw.svg"
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(4, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(7, "feet"),
  34273. weight: math.unit(180, "lb"),
  34274. name: "Front",
  34275. image: {
  34276. source: "./media/characters/necrolance/front.svg",
  34277. extra: 1062/947,
  34278. bottom: 41/1103
  34279. }
  34280. },
  34281. back: {
  34282. height: math.unit(7, "feet"),
  34283. weight: math.unit(180, "lb"),
  34284. name: "Back",
  34285. image: {
  34286. source: "./media/characters/necrolance/back.svg",
  34287. extra: 1045/984,
  34288. bottom: 14/1059
  34289. }
  34290. },
  34291. wing: {
  34292. height: math.unit(2.67, "feet"),
  34293. name: "Wing",
  34294. image: {
  34295. source: "./media/characters/necrolance/wing.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(7, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34309. {
  34310. front: {
  34311. height: math.unit(76, "meters"),
  34312. weight: math.unit(30000, "tons"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/tyler/front.svg",
  34316. extra: 1640/1640,
  34317. bottom: 114/1754
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Macro",
  34324. height: math.unit(76, "meters"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(4 + 11/12, "feet"),
  34334. weight: math.unit(132, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/icey/front.svg",
  34338. extra: 2750/2550,
  34339. bottom: 33/2783
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(4 + 11/12, "feet"),
  34344. weight: math.unit(132, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/icey/back.svg",
  34348. extra: 2624/2481,
  34349. bottom: 35/2659
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(4 + 11/12, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(100, "feet"),
  34366. weight: math.unit(0, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/smile/front.svg",
  34370. extra: 2983/2912,
  34371. bottom: 162/3145
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(100, "feet"),
  34376. weight: math.unit(0, "lb"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/smile/back.svg",
  34380. extra: 3143/3031,
  34381. bottom: 91/3234
  34382. }
  34383. },
  34384. head: {
  34385. height: math.unit(26.3, "feet"),
  34386. weight: math.unit(0, "lb"),
  34387. name: "Head",
  34388. image: {
  34389. source: "./media/characters/smile/head.svg"
  34390. }
  34391. },
  34392. collar: {
  34393. height: math.unit(5.3, "feet"),
  34394. weight: math.unit(0, "lb"),
  34395. name: "Collar",
  34396. image: {
  34397. source: "./media/characters/smile/collar.svg"
  34398. }
  34399. },
  34400. },
  34401. [
  34402. {
  34403. name: "Macro",
  34404. height: math.unit(100, "feet"),
  34405. default: true
  34406. },
  34407. ]
  34408. ))
  34409. characterMakers.push(() => makeCharacter(
  34410. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34411. {
  34412. dragon: {
  34413. height: math.unit(26, "feet"),
  34414. weight: math.unit(36, "tons"),
  34415. name: "Dragon",
  34416. image: {
  34417. source: "./media/characters/arimphae/dragon.svg",
  34418. extra: 1574/983,
  34419. bottom: 357/1931
  34420. }
  34421. },
  34422. drake: {
  34423. height: math.unit(9, "feet"),
  34424. weight: math.unit(1.5, "tons"),
  34425. name: "Drake",
  34426. image: {
  34427. source: "./media/characters/arimphae/drake.svg",
  34428. extra: 1120/925,
  34429. bottom: 435/1555
  34430. }
  34431. },
  34432. },
  34433. [
  34434. {
  34435. name: "Small",
  34436. height: math.unit(26*5/9, "feet")
  34437. },
  34438. {
  34439. name: "Normal",
  34440. height: math.unit(26, "feet"),
  34441. default: true
  34442. },
  34443. ]
  34444. ))
  34445. characterMakers.push(() => makeCharacter(
  34446. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34447. {
  34448. front: {
  34449. height: math.unit(8 + 9/12, "feet"),
  34450. name: "Front",
  34451. image: {
  34452. source: "./media/characters/xander/front.svg",
  34453. extra: 1237/974,
  34454. bottom: 94/1331
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(8 + 9/12, "feet"),
  34462. default: true
  34463. },
  34464. {
  34465. name: "Gaze Grabber",
  34466. height: math.unit(13 + 8/12, "feet")
  34467. },
  34468. {
  34469. name: "Jaw Dropper",
  34470. height: math.unit(27, "feet")
  34471. },
  34472. {
  34473. name: "Show Stopper",
  34474. height: math.unit(136, "feet")
  34475. },
  34476. {
  34477. name: "Superstar",
  34478. height: math.unit(1.9e6, "miles")
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34484. {
  34485. side: {
  34486. height: math.unit(2100, "feet"),
  34487. name: "Side",
  34488. image: {
  34489. source: "./media/characters/osiris/side.svg",
  34490. extra: 1105/939,
  34491. bottom: 167/1272
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Macro",
  34498. height: math.unit(2100, "feet"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(6 + 8/12, "feet"),
  34508. weight: math.unit(225, "lb"),
  34509. name: "Front",
  34510. image: {
  34511. source: "./media/characters/rhys-londe/front.svg",
  34512. extra: 2258/2141,
  34513. bottom: 188/2446
  34514. }
  34515. },
  34516. back: {
  34517. height: math.unit(6 + 8/12, "feet"),
  34518. weight: math.unit(225, "lb"),
  34519. name: "Back",
  34520. image: {
  34521. source: "./media/characters/rhys-londe/back.svg",
  34522. extra: 2237/2137,
  34523. bottom: 63/2300
  34524. }
  34525. },
  34526. frontNsfw: {
  34527. height: math.unit(6 + 8/12, "feet"),
  34528. weight: math.unit(225, "lb"),
  34529. name: "Front (NSFW)",
  34530. image: {
  34531. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34532. extra: 2258/2141,
  34533. bottom: 188/2446
  34534. }
  34535. },
  34536. backNsfw: {
  34537. height: math.unit(6 + 8/12, "feet"),
  34538. weight: math.unit(225, "lb"),
  34539. name: "Back (NSFW)",
  34540. image: {
  34541. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34542. extra: 2237/2137,
  34543. bottom: 63/2300
  34544. }
  34545. },
  34546. dick: {
  34547. height: math.unit(30, "inches"),
  34548. name: "Dick",
  34549. image: {
  34550. source: "./media/characters/rhys-londe/dick.svg"
  34551. }
  34552. },
  34553. maw: {
  34554. height: math.unit(1.6, "feet"),
  34555. name: "Maw",
  34556. image: {
  34557. source: "./media/characters/rhys-londe/maw.svg"
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(6 + 8/12, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(3 + 10/12, "feet"),
  34574. weight: math.unit(90, "lb"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/taivas-ensim/front.svg",
  34578. extra: 1327/1216,
  34579. bottom: 96/1423
  34580. }
  34581. },
  34582. back: {
  34583. height: math.unit(3 + 10/12, "feet"),
  34584. weight: math.unit(90, "lb"),
  34585. name: "Back",
  34586. image: {
  34587. source: "./media/characters/taivas-ensim/back.svg",
  34588. extra: 1355/1247,
  34589. bottom: 11/1366
  34590. }
  34591. },
  34592. frontNsfw: {
  34593. height: math.unit(3 + 10/12, "feet"),
  34594. weight: math.unit(90, "lb"),
  34595. name: "Front (NSFW)",
  34596. image: {
  34597. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34598. extra: 1327/1216,
  34599. bottom: 96/1423
  34600. }
  34601. },
  34602. backNsfw: {
  34603. height: math.unit(3 + 10/12, "feet"),
  34604. weight: math.unit(90, "lb"),
  34605. name: "Back (NSFW)",
  34606. image: {
  34607. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34608. extra: 1355/1247,
  34609. bottom: 11/1366
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(3 + 10/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(9 + 6/12, "feet"),
  34626. weight: math.unit(940, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/byliss/front.svg",
  34630. extra: 1327/1290,
  34631. bottom: 82/1409
  34632. }
  34633. },
  34634. back: {
  34635. height: math.unit(9 + 6/12, "feet"),
  34636. weight: math.unit(940, "lb"),
  34637. name: "Back",
  34638. image: {
  34639. source: "./media/characters/byliss/back.svg",
  34640. extra: 1376/1349,
  34641. bottom: 9/1385
  34642. }
  34643. },
  34644. frontNsfw: {
  34645. height: math.unit(9 + 6/12, "feet"),
  34646. weight: math.unit(940, "lb"),
  34647. name: "Front (NSFW)",
  34648. image: {
  34649. source: "./media/characters/byliss/front-nsfw.svg",
  34650. extra: 1327/1290,
  34651. bottom: 82/1409
  34652. }
  34653. },
  34654. backNsfw: {
  34655. height: math.unit(9 + 6/12, "feet"),
  34656. weight: math.unit(940, "lb"),
  34657. name: "Back (NSFW)",
  34658. image: {
  34659. source: "./media/characters/byliss/back-nsfw.svg",
  34660. extra: 1376/1349,
  34661. bottom: 9/1385
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(9 + 6/12, "feet"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(5 + 2/12, "feet"),
  34678. weight: math.unit(200, "lb"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/noraly/front.svg",
  34682. extra: 4985/4773,
  34683. bottom: 150/5135
  34684. }
  34685. },
  34686. full: {
  34687. height: math.unit(5 + 2/12, "feet"),
  34688. weight: math.unit(164, "lb"),
  34689. name: "Full",
  34690. image: {
  34691. source: "./media/characters/noraly/full.svg",
  34692. extra: 1114/1059,
  34693. bottom: 35/1149
  34694. }
  34695. },
  34696. fuller: {
  34697. height: math.unit(5 + 2/12, "feet"),
  34698. weight: math.unit(230, "lb"),
  34699. name: "Fuller",
  34700. image: {
  34701. source: "./media/characters/noraly/fuller.svg",
  34702. extra: 1114/1059,
  34703. bottom: 35/1149
  34704. }
  34705. },
  34706. fullest: {
  34707. height: math.unit(5 + 2/12, "feet"),
  34708. weight: math.unit(300, "lb"),
  34709. name: "Fullest",
  34710. image: {
  34711. source: "./media/characters/noraly/fullest.svg",
  34712. extra: 1114/1059,
  34713. bottom: 35/1149
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(5 + 2/12, "feet"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34727. {
  34728. front: {
  34729. height: math.unit(5 + 2/12, "feet"),
  34730. weight: math.unit(210, "lb"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/pera/front.svg",
  34734. extra: 1560/1531,
  34735. bottom: 165/1725
  34736. }
  34737. },
  34738. back: {
  34739. height: math.unit(5 + 2/12, "feet"),
  34740. weight: math.unit(210, "lb"),
  34741. name: "Back",
  34742. image: {
  34743. source: "./media/characters/pera/back.svg",
  34744. extra: 1523/1493,
  34745. bottom: 152/1675
  34746. }
  34747. },
  34748. dick: {
  34749. height: math.unit(2.4, "feet"),
  34750. name: "Dick",
  34751. image: {
  34752. source: "./media/characters/pera/dick.svg"
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(5 + 2/12, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(12, "feet"),
  34769. weight: math.unit(3200, "lb"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/julian/front.svg",
  34773. extra: 2962/2701,
  34774. bottom: 184/3146
  34775. }
  34776. },
  34777. maw: {
  34778. height: math.unit(5.35, "feet"),
  34779. name: "Maw",
  34780. image: {
  34781. source: "./media/characters/julian/maw.svg"
  34782. }
  34783. },
  34784. paw: {
  34785. height: math.unit(3.07, "feet"),
  34786. name: "Paw",
  34787. image: {
  34788. source: "./media/characters/julian/paw.svg"
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Default",
  34795. height: math.unit(12, "feet"),
  34796. default: true
  34797. },
  34798. {
  34799. name: "Big",
  34800. height: math.unit(50, "feet")
  34801. },
  34802. {
  34803. name: "Really Big",
  34804. height: math.unit(1, "mile")
  34805. },
  34806. {
  34807. name: "Extremely Big",
  34808. height: math.unit(100, "miles")
  34809. },
  34810. {
  34811. name: "Planet Hugger",
  34812. height: math.unit(200, "megameters")
  34813. },
  34814. {
  34815. name: "Unreasonably Big",
  34816. height: math.unit(1e300, "meters")
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34822. {
  34823. solgooleo: {
  34824. height: math.unit(4, "meters"),
  34825. weight: math.unit(6000*1.5, "kg"),
  34826. volume: math.unit(6000, "liters"),
  34827. name: "Solgooleo",
  34828. image: {
  34829. source: "./media/characters/pi/solgooleo.svg",
  34830. extra: 388/331,
  34831. bottom: 29/417
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Normal",
  34838. height: math.unit(4, "meters"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(8, "feet"),
  34848. weight: math.unit(4, "tons"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/shaun/front.svg",
  34852. extra: 503/495,
  34853. bottom: 20/523
  34854. }
  34855. },
  34856. back: {
  34857. height: math.unit(8, "feet"),
  34858. weight: math.unit(4, "tons"),
  34859. name: "Back",
  34860. image: {
  34861. source: "./media/characters/shaun/back.svg",
  34862. extra: 487/480,
  34863. bottom: 20/507
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Lorg",
  34870. height: math.unit(8, "feet"),
  34871. default: true
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34877. {
  34878. frontAnthro: {
  34879. height: math.unit(7, "feet"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/sini/front-anthro.svg",
  34883. extra: 726/678,
  34884. bottom: 35/761
  34885. },
  34886. form: "anthro",
  34887. default: true
  34888. },
  34889. backAnthro: {
  34890. height: math.unit(7, "feet"),
  34891. name: "Back",
  34892. image: {
  34893. source: "./media/characters/sini/back-anthro.svg",
  34894. extra: 743/701,
  34895. bottom: 12/755
  34896. },
  34897. form: "anthro",
  34898. },
  34899. frontAnthroNsfw: {
  34900. height: math.unit(7, "feet"),
  34901. name: "Front (NSFW)",
  34902. image: {
  34903. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34904. extra: 726/678,
  34905. bottom: 35/761
  34906. },
  34907. form: "anthro"
  34908. },
  34909. backAnthroNsfw: {
  34910. height: math.unit(7, "feet"),
  34911. name: "Back (NSFW)",
  34912. image: {
  34913. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34914. extra: 743/701,
  34915. bottom: 12/755
  34916. },
  34917. form: "anthro",
  34918. },
  34919. mawAnthro: {
  34920. height: math.unit(2.14, "feet"),
  34921. name: "Maw",
  34922. image: {
  34923. source: "./media/characters/sini/maw-anthro.svg"
  34924. },
  34925. form: "anthro"
  34926. },
  34927. dick: {
  34928. height: math.unit(1.45, "feet"),
  34929. name: "Dick",
  34930. image: {
  34931. source: "./media/characters/sini/dick-anthro.svg"
  34932. },
  34933. form: "anthro"
  34934. },
  34935. feral: {
  34936. height: math.unit(16, "feet"),
  34937. name: "Feral",
  34938. image: {
  34939. source: "./media/characters/sini/feral.svg",
  34940. extra: 814/605,
  34941. bottom: 11/825
  34942. },
  34943. form: "feral",
  34944. default: true
  34945. },
  34946. feralNsfw: {
  34947. height: math.unit(16, "feet"),
  34948. name: "Feral (NSFW)",
  34949. image: {
  34950. source: "./media/characters/sini/feral-nsfw.svg",
  34951. extra: 814/605,
  34952. bottom: 11/825
  34953. },
  34954. form: "feral"
  34955. },
  34956. mawFeral: {
  34957. height: math.unit(5.66, "feet"),
  34958. name: "Maw",
  34959. image: {
  34960. source: "./media/characters/sini/maw-feral.svg"
  34961. },
  34962. form: "feral",
  34963. },
  34964. pawFeral: {
  34965. height: math.unit(5.17, "feet"),
  34966. name: "Paw",
  34967. image: {
  34968. source: "./media/characters/sini/paw-feral.svg"
  34969. },
  34970. form: "feral",
  34971. },
  34972. rumpFeral: {
  34973. height: math.unit(13.11, "feet"),
  34974. name: "Rump",
  34975. image: {
  34976. source: "./media/characters/sini/rump-feral.svg"
  34977. },
  34978. form: "feral",
  34979. },
  34980. dickFeral: {
  34981. height: math.unit(1, "feet"),
  34982. name: "Dick",
  34983. image: {
  34984. source: "./media/characters/sini/dick-feral.svg"
  34985. },
  34986. form: "feral",
  34987. },
  34988. eyeFeral: {
  34989. height: math.unit(1.23, "feet"),
  34990. name: "Eye",
  34991. image: {
  34992. source: "./media/characters/sini/eye-feral.svg"
  34993. },
  34994. form: "feral",
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(7, "feet"),
  35001. default: true,
  35002. form: "anthro"
  35003. },
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(16, "feet"),
  35007. default: true,
  35008. form: "feral"
  35009. },
  35010. ],
  35011. {
  35012. "anthro": {
  35013. name: "Anthro",
  35014. default: true
  35015. },
  35016. "feral": {
  35017. name: "Feral",
  35018. }
  35019. }
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35023. {
  35024. side: {
  35025. height: math.unit(47.2, "meters"),
  35026. weight: math.unit(10000, "tons"),
  35027. name: "Side",
  35028. image: {
  35029. source: "./media/characters/raylldo/side.svg",
  35030. extra: 2363/642,
  35031. bottom: 221/2584
  35032. }
  35033. },
  35034. top: {
  35035. height: math.unit(240, "meters"),
  35036. weight: math.unit(10000, "tons"),
  35037. name: "Top",
  35038. image: {
  35039. source: "./media/characters/raylldo/top.svg"
  35040. }
  35041. },
  35042. bottom: {
  35043. height: math.unit(240, "meters"),
  35044. weight: math.unit(10000, "tons"),
  35045. name: "Bottom",
  35046. image: {
  35047. source: "./media/characters/raylldo/bottom.svg"
  35048. }
  35049. },
  35050. head: {
  35051. height: math.unit(38.6, "meters"),
  35052. name: "Head",
  35053. image: {
  35054. source: "./media/characters/raylldo/head.svg",
  35055. extra: 1335/1112,
  35056. bottom: 0/1335
  35057. }
  35058. },
  35059. maw: {
  35060. height: math.unit(16.37, "meters"),
  35061. name: "Maw",
  35062. image: {
  35063. source: "./media/characters/raylldo/maw.svg",
  35064. extra: 883/660,
  35065. bottom: 0/883
  35066. },
  35067. extraAttributes: {
  35068. preyCapacity: {
  35069. name: "Capacity",
  35070. power: 3,
  35071. type: "volume",
  35072. base: math.unit(1000, "people")
  35073. },
  35074. tongueSize: {
  35075. name: "Tongue Size",
  35076. power: 2,
  35077. type: "area",
  35078. base: math.unit(21, "m^2")
  35079. }
  35080. }
  35081. },
  35082. forepaw: {
  35083. height: math.unit(18, "meters"),
  35084. name: "Forepaw",
  35085. image: {
  35086. source: "./media/characters/raylldo/forepaw.svg"
  35087. }
  35088. },
  35089. hindpaw: {
  35090. height: math.unit(23, "meters"),
  35091. name: "Hindpaw",
  35092. image: {
  35093. source: "./media/characters/raylldo/hindpaw.svg"
  35094. }
  35095. },
  35096. genitals: {
  35097. height: math.unit(42, "meters"),
  35098. name: "Genitals",
  35099. image: {
  35100. source: "./media/characters/raylldo/genitals.svg"
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(47.2, "meters"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35114. {
  35115. anthroFront: {
  35116. height: math.unit(9, "feet"),
  35117. weight: math.unit(600, "lb"),
  35118. name: "Anthro (Front)",
  35119. image: {
  35120. source: "./media/characters/glint/anthro-front.svg",
  35121. extra: 1097/1018,
  35122. bottom: 28/1125
  35123. }
  35124. },
  35125. anthroBack: {
  35126. height: math.unit(9, "feet"),
  35127. weight: math.unit(600, "lb"),
  35128. name: "Anthro (Back)",
  35129. image: {
  35130. source: "./media/characters/glint/anthro-back.svg",
  35131. extra: 1154/997,
  35132. bottom: 36/1190
  35133. }
  35134. },
  35135. feral: {
  35136. height: math.unit(11, "feet"),
  35137. weight: math.unit(50000, "lb"),
  35138. name: "Feral",
  35139. image: {
  35140. source: "./media/characters/glint/feral.svg",
  35141. extra: 3035/1585,
  35142. bottom: 1169/4204
  35143. }
  35144. },
  35145. dickAnthro: {
  35146. height: math.unit(0.7, "meters"),
  35147. name: "Dick (Anthro)",
  35148. image: {
  35149. source: "./media/characters/glint/dick-anthro.svg"
  35150. }
  35151. },
  35152. dickFeral: {
  35153. height: math.unit(2.65, "meters"),
  35154. name: "Dick (Feral)",
  35155. image: {
  35156. source: "./media/characters/glint/dick-feral.svg"
  35157. }
  35158. },
  35159. slitHidden: {
  35160. height: math.unit(5.85, "meters"),
  35161. name: "Slit (Hidden)",
  35162. image: {
  35163. source: "./media/characters/glint/slit-hidden.svg"
  35164. }
  35165. },
  35166. slitErect: {
  35167. height: math.unit(5.85, "meters"),
  35168. name: "Slit (Erect)",
  35169. image: {
  35170. source: "./media/characters/glint/slit-erect.svg"
  35171. }
  35172. },
  35173. mawAnthro: {
  35174. height: math.unit(0.63, "meters"),
  35175. name: "Maw (Anthro)",
  35176. image: {
  35177. source: "./media/characters/glint/maw.svg"
  35178. }
  35179. },
  35180. mawFeral: {
  35181. height: math.unit(2.89, "meters"),
  35182. name: "Maw (Feral)",
  35183. image: {
  35184. source: "./media/characters/glint/maw.svg"
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(9, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35198. {
  35199. side: {
  35200. height: math.unit(15, "feet"),
  35201. weight: math.unit(5000, "kg"),
  35202. name: "Side",
  35203. image: {
  35204. source: "./media/characters/kairne/side.svg",
  35205. extra: 979/811,
  35206. bottom: 13/992
  35207. }
  35208. },
  35209. front: {
  35210. height: math.unit(15, "feet"),
  35211. weight: math.unit(5000, "kg"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/kairne/front.svg",
  35215. extra: 908/814,
  35216. bottom: 26/934
  35217. }
  35218. },
  35219. sideNsfw: {
  35220. height: math.unit(15, "feet"),
  35221. weight: math.unit(5000, "kg"),
  35222. name: "Side (NSFW)",
  35223. image: {
  35224. source: "./media/characters/kairne/side-nsfw.svg",
  35225. extra: 979/811,
  35226. bottom: 13/992
  35227. }
  35228. },
  35229. frontNsfw: {
  35230. height: math.unit(15, "feet"),
  35231. weight: math.unit(5000, "kg"),
  35232. name: "Front (NSFW)",
  35233. image: {
  35234. source: "./media/characters/kairne/front-nsfw.svg",
  35235. extra: 908/814,
  35236. bottom: 26/934
  35237. }
  35238. },
  35239. dickCaged: {
  35240. height: math.unit(0.65, "meters"),
  35241. name: "Dick-caged",
  35242. image: {
  35243. source: "./media/characters/kairne/dick-caged.svg"
  35244. }
  35245. },
  35246. dick: {
  35247. height: math.unit(0.79, "meters"),
  35248. name: "Dick",
  35249. image: {
  35250. source: "./media/characters/kairne/dick.svg"
  35251. }
  35252. },
  35253. genitals: {
  35254. height: math.unit(1.29, "meters"),
  35255. name: "Genitals",
  35256. image: {
  35257. source: "./media/characters/kairne/genitals.svg"
  35258. }
  35259. },
  35260. maw: {
  35261. height: math.unit(1.73, "meters"),
  35262. name: "Maw",
  35263. image: {
  35264. source: "./media/characters/kairne/maw.svg"
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(15, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(5 + 8/12, "feet"),
  35281. weight: math.unit(139, "lb"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/biscuit-jackal/front.svg",
  35285. extra: 2106/1961,
  35286. bottom: 58/2164
  35287. }
  35288. },
  35289. back: {
  35290. height: math.unit(5 + 8/12, "feet"),
  35291. weight: math.unit(139, "lb"),
  35292. name: "Back",
  35293. image: {
  35294. source: "./media/characters/biscuit-jackal/back.svg",
  35295. extra: 2132/1976,
  35296. bottom: 57/2189
  35297. }
  35298. },
  35299. werejackal: {
  35300. height: math.unit(6 + 3/12, "feet"),
  35301. weight: math.unit(188, "lb"),
  35302. name: "Werejackal",
  35303. image: {
  35304. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35305. extra: 2373/2178,
  35306. bottom: 53/2426
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(5 + 8/12, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(140, "cm"),
  35323. weight: math.unit(45, "kg"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/tayra-white/front.svg",
  35327. extra: 2229/2192,
  35328. bottom: 75/2304
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(140, "cm"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(4 + 5/12, "feet"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/scoop/front.svg",
  35348. extra: 1257/1136,
  35349. bottom: 69/1326
  35350. }
  35351. },
  35352. back: {
  35353. height: math.unit(4 + 5/12, "feet"),
  35354. name: "Back",
  35355. image: {
  35356. source: "./media/characters/scoop/back.svg",
  35357. extra: 1321/1152,
  35358. bottom: 32/1353
  35359. }
  35360. },
  35361. maw: {
  35362. height: math.unit(0.68, "feet"),
  35363. name: "Maw",
  35364. image: {
  35365. source: "./media/characters/scoop/maw.svg"
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Really Small",
  35372. height: math.unit(1, "mm")
  35373. },
  35374. {
  35375. name: "Micro",
  35376. height: math.unit(1, "inch")
  35377. },
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(4 + 5/12, "feet"),
  35381. default: true
  35382. },
  35383. {
  35384. name: "Macro",
  35385. height: math.unit(200, "feet")
  35386. },
  35387. {
  35388. name: "Megamacro",
  35389. height: math.unit(3240, "feet")
  35390. },
  35391. {
  35392. name: "Teramacro",
  35393. height: math.unit(2500, "miles")
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(15 + 7/12, "feet"),
  35402. weight: math.unit(1150, "tons"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/saphinara/front.svg",
  35406. extra: 1837/1643,
  35407. bottom: 84/1921
  35408. },
  35409. form: "normal",
  35410. default: true
  35411. },
  35412. side: {
  35413. height: math.unit(15 + 7/12, "feet"),
  35414. weight: math.unit(1150, "tons"),
  35415. name: "Side",
  35416. image: {
  35417. source: "./media/characters/saphinara/side.svg",
  35418. extra: 605/547,
  35419. bottom: 6/611
  35420. },
  35421. form: "normal"
  35422. },
  35423. back: {
  35424. height: math.unit(15 + 7/12, "feet"),
  35425. weight: math.unit(1150, "tons"),
  35426. name: "Back",
  35427. image: {
  35428. source: "./media/characters/saphinara/back.svg",
  35429. extra: 591/531,
  35430. bottom: 13/604
  35431. },
  35432. form: "normal"
  35433. },
  35434. frontTail: {
  35435. height: math.unit(15 + 7/12, "feet"),
  35436. weight: math.unit(1150, "tons"),
  35437. name: "Front (Full Tail)",
  35438. image: {
  35439. source: "./media/characters/saphinara/front-tail.svg",
  35440. extra: 2256/1630,
  35441. bottom: 261/2517
  35442. },
  35443. form: "normal"
  35444. },
  35445. insides: {
  35446. height: math.unit(11.92, "feet"),
  35447. name: "Insides",
  35448. image: {
  35449. source: "./media/characters/saphinara/insides.svg"
  35450. },
  35451. form: "normal"
  35452. },
  35453. head: {
  35454. height: math.unit(4.17, "feet"),
  35455. name: "Head",
  35456. image: {
  35457. source: "./media/characters/saphinara/head.svg"
  35458. },
  35459. form: "normal"
  35460. },
  35461. tongue: {
  35462. height: math.unit(4.60, "feet"),
  35463. name: "Tongue",
  35464. image: {
  35465. source: "./media/characters/saphinara/tongue.svg"
  35466. },
  35467. form: "normal"
  35468. },
  35469. headEnraged: {
  35470. height: math.unit(5.55, "feet"),
  35471. name: "Head (Enraged)",
  35472. image: {
  35473. source: "./media/characters/saphinara/head-enraged.svg"
  35474. },
  35475. form: "normal"
  35476. },
  35477. wings: {
  35478. height: math.unit(11.95, "feet"),
  35479. name: "Wings",
  35480. image: {
  35481. source: "./media/characters/saphinara/wings.svg"
  35482. },
  35483. form: "normal"
  35484. },
  35485. feathers: {
  35486. height: math.unit(8.92, "feet"),
  35487. name: "Feathers",
  35488. image: {
  35489. source: "./media/characters/saphinara/feathers.svg"
  35490. },
  35491. form: "normal"
  35492. },
  35493. shackles: {
  35494. height: math.unit(2, "feet"),
  35495. name: "Shackles",
  35496. image: {
  35497. source: "./media/characters/saphinara/shackles.svg"
  35498. },
  35499. form: "normal"
  35500. },
  35501. eyes: {
  35502. height: math.unit(1.331, "feet"),
  35503. name: "Eyes",
  35504. image: {
  35505. source: "./media/characters/saphinara/eyes.svg"
  35506. },
  35507. form: "normal"
  35508. },
  35509. eyesEnraged: {
  35510. height: math.unit(1.331, "feet"),
  35511. name: "Eyes (Enraged)",
  35512. image: {
  35513. source: "./media/characters/saphinara/eyes-enraged.svg"
  35514. },
  35515. form: "normal"
  35516. },
  35517. trueFormSide: {
  35518. height: math.unit(200, "feet"),
  35519. weight: math.unit(1e7, "tons"),
  35520. name: "Side",
  35521. image: {
  35522. source: "./media/characters/saphinara/true-form-side.svg",
  35523. extra: 1399/770,
  35524. bottom: 97/1496
  35525. },
  35526. form: "true-form",
  35527. default: true
  35528. },
  35529. trueFormMaw: {
  35530. height: math.unit(71.5, "feet"),
  35531. name: "Maw",
  35532. image: {
  35533. source: "./media/characters/saphinara/true-form-maw.svg",
  35534. extra: 2302/1453,
  35535. bottom: 0/2302
  35536. },
  35537. form: "true-form"
  35538. },
  35539. meowberusSide: {
  35540. height: math.unit(75, "feet"),
  35541. weight: math.unit(180000, "kg"),
  35542. preyCapacity: math.unit(50000, "people"),
  35543. name: "Side",
  35544. image: {
  35545. source: "./media/characters/saphinara/meowberus-side.svg",
  35546. extra: 1400/711,
  35547. bottom: 126/1526
  35548. },
  35549. form: "meowberus",
  35550. extraAttributes: {
  35551. "pawArea": {
  35552. name: "Paw Size",
  35553. power: 2,
  35554. type: "area",
  35555. base: math.unit(35, "m^2")
  35556. }
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(15 + 7/12, "feet"),
  35564. default: true,
  35565. form: "normal"
  35566. },
  35567. {
  35568. name: "Angry",
  35569. height: math.unit(30 + 6/12, "feet"),
  35570. form: "normal"
  35571. },
  35572. {
  35573. name: "Enraged",
  35574. height: math.unit(102 + 1/12, "feet"),
  35575. form: "normal"
  35576. },
  35577. {
  35578. name: "True",
  35579. height: math.unit(200, "feet"),
  35580. default: true,
  35581. form: "true-form"
  35582. },
  35583. {
  35584. name: "Normal",
  35585. height: math.unit(75, "feet"),
  35586. default: true,
  35587. form: "meowberus"
  35588. },
  35589. ],
  35590. {
  35591. "normal": {
  35592. name: "Normal",
  35593. default: true
  35594. },
  35595. "true-form": {
  35596. name: "True Form"
  35597. },
  35598. "meowberus": {
  35599. name: "Meowberus",
  35600. },
  35601. }
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35605. {
  35606. front: {
  35607. height: math.unit(6 + 8/12, "feet"),
  35608. weight: math.unit(300, "lb"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/jrain/front.svg",
  35612. extra: 3039/2865,
  35613. bottom: 399/3438
  35614. }
  35615. },
  35616. back: {
  35617. height: math.unit(6 + 8/12, "feet"),
  35618. weight: math.unit(300, "lb"),
  35619. name: "Back",
  35620. image: {
  35621. source: "./media/characters/jrain/back.svg",
  35622. extra: 3089/2938,
  35623. bottom: 172/3261
  35624. }
  35625. },
  35626. head: {
  35627. height: math.unit(2.14, "feet"),
  35628. name: "Head",
  35629. image: {
  35630. source: "./media/characters/jrain/head.svg"
  35631. }
  35632. },
  35633. maw: {
  35634. height: math.unit(1.77, "feet"),
  35635. name: "Maw",
  35636. image: {
  35637. source: "./media/characters/jrain/maw.svg"
  35638. }
  35639. },
  35640. leftHand: {
  35641. height: math.unit(1.1, "feet"),
  35642. name: "Left Hand",
  35643. image: {
  35644. source: "./media/characters/jrain/left-hand.svg"
  35645. }
  35646. },
  35647. rightHand: {
  35648. height: math.unit(1.1, "feet"),
  35649. name: "Right Hand",
  35650. image: {
  35651. source: "./media/characters/jrain/right-hand.svg"
  35652. }
  35653. },
  35654. eye: {
  35655. height: math.unit(0.35, "feet"),
  35656. name: "Eye",
  35657. image: {
  35658. source: "./media/characters/jrain/eye.svg"
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(6 + 8/12, "feet"),
  35666. default: true
  35667. },
  35668. {
  35669. name: "Casually Large",
  35670. height: math.unit(25, "feet")
  35671. },
  35672. {
  35673. name: "Giant",
  35674. height: math.unit(100, "feet")
  35675. },
  35676. {
  35677. name: "Kaiju",
  35678. height: math.unit(300, "feet")
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35684. {
  35685. dragon: {
  35686. height: math.unit(5, "meters"),
  35687. name: "Dragon",
  35688. image: {
  35689. source: "./media/characters/sabrina/dragon.svg",
  35690. extra: 3670 / 2365,
  35691. bottom: 333 / 4003
  35692. }
  35693. },
  35694. gryphon: {
  35695. height: math.unit(3, "meters"),
  35696. name: "Gryphon",
  35697. image: {
  35698. source: "./media/characters/sabrina/gryphon.svg",
  35699. extra: 1576 / 945,
  35700. bottom: 71 / 1647
  35701. }
  35702. },
  35703. snake: {
  35704. height: math.unit(12, "meters"),
  35705. name: "Snake",
  35706. image: {
  35707. source: "./media/characters/sabrina/snake.svg",
  35708. extra: 1758 / 1320,
  35709. bottom: 186 / 1944
  35710. }
  35711. },
  35712. collar: {
  35713. height: math.unit(1.86, "meters"),
  35714. name: "Collar",
  35715. image: {
  35716. source: "./media/characters/sabrina/collar.svg"
  35717. }
  35718. },
  35719. eye: {
  35720. height: math.unit(0.53, "meters"),
  35721. name: "Eye",
  35722. image: {
  35723. source: "./media/characters/sabrina/eye.svg"
  35724. }
  35725. },
  35726. foot: {
  35727. height: math.unit(1.86, "meters"),
  35728. name: "Foot",
  35729. image: {
  35730. source: "./media/characters/sabrina/foot.svg"
  35731. }
  35732. },
  35733. hand: {
  35734. height: math.unit(1.32, "meters"),
  35735. name: "Hand",
  35736. image: {
  35737. source: "./media/characters/sabrina/hand.svg"
  35738. }
  35739. },
  35740. head: {
  35741. height: math.unit(2.44, "meters"),
  35742. name: "Head",
  35743. image: {
  35744. source: "./media/characters/sabrina/head.svg"
  35745. }
  35746. },
  35747. headAngry: {
  35748. height: math.unit(2.44, "meters"),
  35749. name: "Head (Angry))",
  35750. image: {
  35751. source: "./media/characters/sabrina/head-angry.svg"
  35752. }
  35753. },
  35754. maw: {
  35755. height: math.unit(1.65, "meters"),
  35756. name: "Maw",
  35757. image: {
  35758. source: "./media/characters/sabrina/maw.svg"
  35759. }
  35760. },
  35761. spikes: {
  35762. height: math.unit(1.69, "meters"),
  35763. name: "Spikes",
  35764. image: {
  35765. source: "./media/characters/sabrina/spikes.svg"
  35766. }
  35767. },
  35768. stomach: {
  35769. height: math.unit(1.15, "meters"),
  35770. name: "Stomach",
  35771. image: {
  35772. source: "./media/characters/sabrina/stomach.svg"
  35773. }
  35774. },
  35775. tongue: {
  35776. height: math.unit(1.27, "meters"),
  35777. name: "Tongue",
  35778. image: {
  35779. source: "./media/characters/sabrina/tongue.svg"
  35780. }
  35781. },
  35782. wingDorsal: {
  35783. height: math.unit(4.85, "meters"),
  35784. name: "Wing (Dorsal)",
  35785. image: {
  35786. source: "./media/characters/sabrina/wing-dorsal.svg"
  35787. }
  35788. },
  35789. wingVentral: {
  35790. height: math.unit(4.85, "meters"),
  35791. name: "Wing (Ventral)",
  35792. image: {
  35793. source: "./media/characters/sabrina/wing-ventral.svg"
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(5, "meters"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35807. {
  35808. frontMaid: {
  35809. height: math.unit(5 + 5/12, "feet"),
  35810. weight: math.unit(130, "lb"),
  35811. name: "Front (Maid)",
  35812. image: {
  35813. source: "./media/characters/midnight-tales/front-maid.svg",
  35814. extra: 489/454,
  35815. bottom: 61/550
  35816. }
  35817. },
  35818. frontFormal: {
  35819. height: math.unit(5 + 5/12, "feet"),
  35820. weight: math.unit(130, "lb"),
  35821. name: "Front (Formal)",
  35822. image: {
  35823. source: "./media/characters/midnight-tales/front-formal.svg",
  35824. extra: 489/454,
  35825. bottom: 61/550
  35826. }
  35827. },
  35828. back: {
  35829. height: math.unit(5 + 5/12, "feet"),
  35830. weight: math.unit(130, "lb"),
  35831. name: "Back",
  35832. image: {
  35833. source: "./media/characters/midnight-tales/back.svg",
  35834. extra: 498/456,
  35835. bottom: 33/531
  35836. }
  35837. },
  35838. frontBeast: {
  35839. height: math.unit(40, "feet"),
  35840. weight: math.unit(64000, "lb"),
  35841. name: "Front (Beast)",
  35842. image: {
  35843. source: "./media/characters/midnight-tales/front-beast.svg",
  35844. extra: 927/860,
  35845. bottom: 53/980
  35846. }
  35847. },
  35848. backBeast: {
  35849. height: math.unit(40, "feet"),
  35850. weight: math.unit(64000, "lb"),
  35851. name: "Back (Beast)",
  35852. image: {
  35853. source: "./media/characters/midnight-tales/back-beast.svg",
  35854. extra: 929/855,
  35855. bottom: 16/945
  35856. }
  35857. },
  35858. footBeast: {
  35859. height: math.unit(6.7, "feet"),
  35860. name: "Foot (Beast)",
  35861. image: {
  35862. source: "./media/characters/midnight-tales/foot-beast.svg"
  35863. }
  35864. },
  35865. headBeast: {
  35866. height: math.unit(8, "feet"),
  35867. name: "Head (Beast)",
  35868. image: {
  35869. source: "./media/characters/midnight-tales/head-beast.svg"
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(5 + 5 / 12, "feet"),
  35877. default: true
  35878. },
  35879. {
  35880. name: "Macro",
  35881. height: math.unit(25, "feet")
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(5 + 10/12, "feet"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/argon/front.svg",
  35893. extra: 2009/1935,
  35894. bottom: 118/2127
  35895. }
  35896. },
  35897. back: {
  35898. height: math.unit(5 + 10/12, "feet"),
  35899. name: "Back",
  35900. image: {
  35901. source: "./media/characters/argon/back.svg",
  35902. extra: 2047/1992,
  35903. bottom: 20/2067
  35904. }
  35905. },
  35906. frontDressed: {
  35907. height: math.unit(5 + 10/12, "feet"),
  35908. name: "Front (Dressed)",
  35909. image: {
  35910. source: "./media/characters/argon/front-dressed.svg",
  35911. extra: 2009/1935,
  35912. bottom: 118/2127
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(5 + 10/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(8 + 6/12, "feet"),
  35929. weight: math.unit(1150, "lb"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/kichi/front.svg",
  35933. extra: 1267/1164,
  35934. bottom: 61/1328
  35935. }
  35936. },
  35937. back: {
  35938. height: math.unit(8 + 6/12, "feet"),
  35939. weight: math.unit(1150, "lb"),
  35940. name: "Back",
  35941. image: {
  35942. source: "./media/characters/kichi/back.svg",
  35943. extra: 1273/1166,
  35944. bottom: 33/1306
  35945. }
  35946. },
  35947. },
  35948. [
  35949. {
  35950. name: "Normal",
  35951. height: math.unit(8 + 6/12, "feet"),
  35952. default: true
  35953. },
  35954. ]
  35955. ))
  35956. characterMakers.push(() => makeCharacter(
  35957. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35958. {
  35959. front: {
  35960. height: math.unit(6, "feet"),
  35961. weight: math.unit(210, "lb"),
  35962. name: "Front",
  35963. image: {
  35964. source: "./media/characters/manetel-greyscale/front.svg",
  35965. extra: 350/312,
  35966. bottom: 8/358
  35967. }
  35968. },
  35969. },
  35970. [
  35971. {
  35972. name: "Micro",
  35973. height: math.unit(2, "inches")
  35974. },
  35975. {
  35976. name: "Normal",
  35977. height: math.unit(6, "feet"),
  35978. default: true
  35979. },
  35980. {
  35981. name: "Minimacro",
  35982. height: math.unit(17, "feet")
  35983. },
  35984. {
  35985. name: "Macro",
  35986. height: math.unit(117, "feet")
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35992. {
  35993. side: {
  35994. height: math.unit(5 + 1/12, "feet"),
  35995. weight: math.unit(418, "lb"),
  35996. name: "Side",
  35997. image: {
  35998. source: "./media/characters/softpurr/side.svg",
  35999. extra: 1993/1945,
  36000. bottom: 134/2127
  36001. }
  36002. },
  36003. front: {
  36004. height: math.unit(5 + 1/12, "feet"),
  36005. weight: math.unit(418, "lb"),
  36006. name: "Front",
  36007. image: {
  36008. source: "./media/characters/softpurr/front.svg",
  36009. extra: 1950/1856,
  36010. bottom: 174/2124
  36011. }
  36012. },
  36013. paw: {
  36014. height: math.unit(1, "feet"),
  36015. name: "Paw",
  36016. image: {
  36017. source: "./media/characters/softpurr/paw.svg"
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Normal",
  36024. height: math.unit(5 + 1/12, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(260, "meters"),
  36034. name: "Front",
  36035. image: {
  36036. source: "./media/characters/anahita/front.svg",
  36037. extra: 665/635,
  36038. bottom: 89/754
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Macro",
  36045. height: math.unit(260, "meters"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(4 + 10/12, "feet"),
  36055. weight: math.unit(160, "lb"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/chip-mouse/front.svg",
  36059. extra: 3528/3408,
  36060. bottom: 0/3528
  36061. }
  36062. },
  36063. frontNsfw: {
  36064. height: math.unit(4 + 10/12, "feet"),
  36065. weight: math.unit(160, "lb"),
  36066. name: "Front (NSFW)",
  36067. image: {
  36068. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36069. extra: 3528/3408,
  36070. bottom: 0/3528
  36071. }
  36072. },
  36073. },
  36074. [
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(4 + 10/12, "feet"),
  36078. default: true
  36079. },
  36080. ]
  36081. ))
  36082. characterMakers.push(() => makeCharacter(
  36083. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36084. {
  36085. side: {
  36086. height: math.unit(10, "feet"),
  36087. weight: math.unit(14000, "lb"),
  36088. name: "Side",
  36089. image: {
  36090. source: "./media/characters/kremm/side.svg",
  36091. extra: 1390/1053,
  36092. bottom: 90/1480
  36093. }
  36094. },
  36095. gut: {
  36096. height: math.unit(5.8, "feet"),
  36097. name: "Gut",
  36098. image: {
  36099. source: "./media/characters/kremm/gut.svg"
  36100. }
  36101. },
  36102. ass: {
  36103. height: math.unit(6.1, "feet"),
  36104. name: "Ass",
  36105. image: {
  36106. source: "./media/characters/kremm/ass.svg"
  36107. }
  36108. },
  36109. jaws: {
  36110. height: math.unit(2.2, "feet"),
  36111. name: "Jaws",
  36112. image: {
  36113. source: "./media/characters/kremm/jaws.svg"
  36114. }
  36115. },
  36116. dick: {
  36117. height: math.unit(4.26, "feet"),
  36118. name: "Dick",
  36119. image: {
  36120. source: "./media/characters/kremm/dick.svg"
  36121. }
  36122. },
  36123. },
  36124. [
  36125. {
  36126. name: "Normal",
  36127. height: math.unit(10, "feet"),
  36128. default: true
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36134. {
  36135. front: {
  36136. height: math.unit(30, "stories"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/kai/front.svg",
  36140. extra: 1892/1718,
  36141. bottom: 162/2054
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Macro",
  36148. height: math.unit(30, "stories"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(6 + 4/12, "feet"),
  36158. weight: math.unit(145, "lb"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/sykes/front.svg",
  36162. extra: 1321 / 1187,
  36163. bottom: 66 / 1387
  36164. }
  36165. },
  36166. back: {
  36167. height: math.unit(6 + 4/12, "feet"),
  36168. weight: math.unit(145, "lb"),
  36169. name: "Back",
  36170. image: {
  36171. source: "./media/characters/sykes/back.svg",
  36172. extra: 1326/1181,
  36173. bottom: 31/1357
  36174. }
  36175. },
  36176. traditionalOutfit: {
  36177. height: math.unit(6 + 4/12, "feet"),
  36178. weight: math.unit(145, "lb"),
  36179. name: "Traditional Outfit",
  36180. image: {
  36181. source: "./media/characters/sykes/traditional-outfit.svg",
  36182. extra: 1321 / 1187,
  36183. bottom: 66 / 1387
  36184. }
  36185. },
  36186. adventureOutfit: {
  36187. height: math.unit(6 + 4/12, "feet"),
  36188. weight: math.unit(145, "lb"),
  36189. name: "Adventure Outfit",
  36190. image: {
  36191. source: "./media/characters/sykes/adventure-outfit.svg",
  36192. extra: 1321 / 1187,
  36193. bottom: 66 / 1387
  36194. }
  36195. },
  36196. handLeft: {
  36197. height: math.unit(0.9, "feet"),
  36198. name: "Hand (Left)",
  36199. image: {
  36200. source: "./media/characters/sykes/hand-left.svg"
  36201. }
  36202. },
  36203. handRight: {
  36204. height: math.unit(0.839, "feet"),
  36205. name: "Hand (Right)",
  36206. image: {
  36207. source: "./media/characters/sykes/hand-right.svg"
  36208. }
  36209. },
  36210. leftFoot: {
  36211. height: math.unit(1.2, "feet"),
  36212. name: "Foot (Left)",
  36213. image: {
  36214. source: "./media/characters/sykes/foot-left.svg"
  36215. }
  36216. },
  36217. rightFoot: {
  36218. height: math.unit(1.2, "feet"),
  36219. name: "Foot (Right)",
  36220. image: {
  36221. source: "./media/characters/sykes/foot-right.svg"
  36222. }
  36223. },
  36224. maw: {
  36225. height: math.unit(1.93, "feet"),
  36226. name: "Maw",
  36227. image: {
  36228. source: "./media/characters/sykes/maw.svg"
  36229. }
  36230. },
  36231. teeth: {
  36232. height: math.unit(0.51, "feet"),
  36233. name: "Teeth",
  36234. image: {
  36235. source: "./media/characters/sykes/teeth.svg"
  36236. }
  36237. },
  36238. tongue: {
  36239. height: math.unit(2.13, "feet"),
  36240. name: "Tongue",
  36241. image: {
  36242. source: "./media/characters/sykes/tongue.svg"
  36243. }
  36244. },
  36245. uvula: {
  36246. height: math.unit(0.16, "feet"),
  36247. name: "Uvula",
  36248. image: {
  36249. source: "./media/characters/sykes/uvula.svg"
  36250. }
  36251. },
  36252. collar: {
  36253. height: math.unit(0.287, "feet"),
  36254. name: "Collar",
  36255. image: {
  36256. source: "./media/characters/sykes/collar.svg"
  36257. }
  36258. },
  36259. tail: {
  36260. height: math.unit(3.8, "feet"),
  36261. name: "Tail",
  36262. image: {
  36263. source: "./media/characters/sykes/tail.svg"
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Shrunken",
  36270. height: math.unit(5, "inches")
  36271. },
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(6 + 4 / 12, "feet"),
  36275. default: true
  36276. },
  36277. {
  36278. name: "Big",
  36279. height: math.unit(15, "feet")
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36285. {
  36286. front: {
  36287. height: math.unit(5 + 8/12, "feet"),
  36288. weight: math.unit(190, "lb"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/oven-otter/front.svg",
  36292. extra: 1809/1740,
  36293. bottom: 181/1990
  36294. }
  36295. },
  36296. back: {
  36297. height: math.unit(5 + 8/12, "feet"),
  36298. weight: math.unit(190, "lb"),
  36299. name: "Back",
  36300. image: {
  36301. source: "./media/characters/oven-otter/back.svg",
  36302. extra: 1709/1635,
  36303. bottom: 118/1827
  36304. }
  36305. },
  36306. hand: {
  36307. height: math.unit(1.07, "feet"),
  36308. name: "Hand",
  36309. image: {
  36310. source: "./media/characters/oven-otter/hand.svg"
  36311. }
  36312. },
  36313. beans: {
  36314. height: math.unit(1.74, "feet"),
  36315. name: "Beans",
  36316. image: {
  36317. source: "./media/characters/oven-otter/beans.svg"
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Micro",
  36324. height: math.unit(0.5, "inches")
  36325. },
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(5 + 8/12, "feet"),
  36329. default: true
  36330. },
  36331. {
  36332. name: "Macro",
  36333. height: math.unit(250, "feet")
  36334. },
  36335. {
  36336. name: "Really High",
  36337. height: math.unit(420, "feet")
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(5, "meters"),
  36346. weight: math.unit(292000000000000, "kg"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/devourer/front.svg",
  36350. extra: 1800/1733,
  36351. bottom: 211/2011
  36352. }
  36353. },
  36354. maw: {
  36355. height: math.unit(1.1, "meter"),
  36356. name: "Maw",
  36357. image: {
  36358. source: "./media/characters/devourer/maw.svg"
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Small",
  36365. height: math.unit(3, "meters")
  36366. },
  36367. {
  36368. name: "Large",
  36369. height: math.unit(5, "meters"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36376. {
  36377. front: {
  36378. height: math.unit(6, "feet"),
  36379. weight: math.unit(400, "lb"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/ellarby/front.svg",
  36383. extra: 1909/1763,
  36384. bottom: 80/1989
  36385. }
  36386. },
  36387. back: {
  36388. height: math.unit(6, "feet"),
  36389. weight: math.unit(400, "lb"),
  36390. name: "Back",
  36391. image: {
  36392. source: "./media/characters/ellarby/back.svg",
  36393. extra: 1914/1784,
  36394. bottom: 172/2086
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Mischief",
  36401. height: math.unit(18, "inches")
  36402. },
  36403. {
  36404. name: "Trouble",
  36405. height: math.unit(12, "feet")
  36406. },
  36407. {
  36408. name: "Havoc",
  36409. height: math.unit(200, "feet"),
  36410. default: true
  36411. },
  36412. {
  36413. name: "Pandemonium",
  36414. height: math.unit(1, "mile")
  36415. },
  36416. {
  36417. name: "Catastrophe",
  36418. height: math.unit(100, "miles")
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36424. {
  36425. front: {
  36426. height: math.unit(4.7, "meters"),
  36427. weight: math.unit(6500, "kg"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/vex/front.svg",
  36431. extra: 1288/1140,
  36432. bottom: 100/1388
  36433. }
  36434. },
  36435. },
  36436. [
  36437. {
  36438. name: "Normal",
  36439. height: math.unit(4.7, "meters"),
  36440. default: true
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36446. {
  36447. normal: {
  36448. height: math.unit(6, "feet"),
  36449. weight: math.unit(350, "lb"),
  36450. name: "Normal",
  36451. image: {
  36452. source: "./media/characters/teshy/normal.svg",
  36453. extra: 1795/1735,
  36454. bottom: 16/1811
  36455. }
  36456. },
  36457. monsterFront: {
  36458. height: math.unit(12, "feet"),
  36459. weight: math.unit(4700, "lb"),
  36460. name: "Monster (Front)",
  36461. image: {
  36462. source: "./media/characters/teshy/monster-front.svg",
  36463. extra: 2042/2034,
  36464. bottom: 128/2170
  36465. }
  36466. },
  36467. monsterSide: {
  36468. height: math.unit(12, "feet"),
  36469. weight: math.unit(4700, "lb"),
  36470. name: "Monster (Side)",
  36471. image: {
  36472. source: "./media/characters/teshy/monster-side.svg",
  36473. extra: 2067/2056,
  36474. bottom: 70/2137
  36475. }
  36476. },
  36477. monsterBack: {
  36478. height: math.unit(12, "feet"),
  36479. weight: math.unit(4700, "lb"),
  36480. name: "Monster (Back)",
  36481. image: {
  36482. source: "./media/characters/teshy/monster-back.svg",
  36483. extra: 1921/1914,
  36484. bottom: 171/2092
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(6, "feet"),
  36492. default: true
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36498. {
  36499. front: {
  36500. height: math.unit(6, "feet"),
  36501. name: "Front",
  36502. image: {
  36503. source: "./media/characters/ramey/front.svg",
  36504. extra: 790/787,
  36505. bottom: 27/817
  36506. }
  36507. },
  36508. },
  36509. [
  36510. {
  36511. name: "Normal",
  36512. height: math.unit(6, "feet"),
  36513. default: true
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36519. {
  36520. front: {
  36521. height: math.unit(5 + 5/12, "feet"),
  36522. weight: math.unit(120, "lb"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/phirae/front.svg",
  36526. extra: 2491/2436,
  36527. bottom: 38/2529
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 5/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36541. {
  36542. front: {
  36543. height: math.unit(5 + 3/12, "feet"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/stagglas/front.svg",
  36547. extra: 962/882,
  36548. bottom: 53/1015
  36549. }
  36550. },
  36551. feral: {
  36552. height: math.unit(335, "cm"),
  36553. name: "Feral",
  36554. image: {
  36555. source: "./media/characters/stagglas/feral.svg",
  36556. extra: 1732/1090,
  36557. bottom: 48/1780
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(5 + 3/12, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(5 + 4/12, "feet"),
  36574. weight: math.unit(145, "lb"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/starra/front.svg",
  36578. extra: 1790/1691,
  36579. bottom: 91/1881
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(5 + 4/12, "feet"),
  36587. default: true
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(2.2, "meters"),
  36596. name: "Front",
  36597. image: {
  36598. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36599. extra: 1248/972,
  36600. bottom: 38/1286
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(2.2, "meters"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36614. {
  36615. side: {
  36616. height: math.unit(8 + 2/12, "feet"),
  36617. weight: math.unit(1240, "lb"),
  36618. name: "Side",
  36619. image: {
  36620. source: "./media/characters/mika-valentine/side.svg",
  36621. extra: 2670/2501,
  36622. bottom: 250/2920
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(8 + 2/12, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(7 + 2/12, "feet"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/xoltol/front.svg",
  36642. extra: 2212/2124,
  36643. bottom: 84/2296
  36644. }
  36645. },
  36646. side: {
  36647. height: math.unit(7 + 2/12, "feet"),
  36648. name: "Side",
  36649. image: {
  36650. source: "./media/characters/xoltol/side.svg",
  36651. extra: 2273/2197,
  36652. bottom: 26/2299
  36653. }
  36654. },
  36655. hand: {
  36656. height: math.unit(2.5, "feet"),
  36657. name: "Hand",
  36658. image: {
  36659. source: "./media/characters/xoltol/hand.svg"
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Small-ish",
  36666. height: math.unit(5 + 11/12, "feet")
  36667. },
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(7 + 2/12, "feet")
  36671. },
  36672. {
  36673. name: "\"Macro\"",
  36674. height: math.unit(14 + 9/12, "feet"),
  36675. default: true
  36676. },
  36677. {
  36678. name: "Alternate Height",
  36679. height: math.unit(20, "feet")
  36680. },
  36681. {
  36682. name: "Actually Macro",
  36683. height: math.unit(100, "feet")
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36689. {
  36690. front: {
  36691. height: math.unit(5 + 2/12, "feet"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/kotetsu-redwood/front.svg",
  36695. extra: 1053/942,
  36696. bottom: 60/1113
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(5 + 2/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36710. {
  36711. front: {
  36712. height: math.unit(2.4, "meters"),
  36713. weight: math.unit(125, "kg"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/lilith/front.svg",
  36717. extra: 1590/1513,
  36718. bottom: 203/1793
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Humanoid",
  36725. height: math.unit(2.4, "meters")
  36726. },
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(6, "meters"),
  36730. default: true
  36731. },
  36732. {
  36733. name: "Largest",
  36734. height: math.unit(55, "meters")
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(8 + 4/12, "feet"),
  36743. weight: math.unit(535, "lb"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/beh'kah-bolger/front.svg",
  36747. extra: 1660/1603,
  36748. bottom: 37/1697
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Normal",
  36755. height: math.unit(8 + 4/12, "feet"),
  36756. default: true
  36757. },
  36758. {
  36759. name: "Kaiju",
  36760. height: math.unit(250, "feet")
  36761. },
  36762. {
  36763. name: "Still Growing",
  36764. height: math.unit(10, "miles")
  36765. },
  36766. {
  36767. name: "Continental",
  36768. height: math.unit(5000, "miles")
  36769. },
  36770. {
  36771. name: "Final Form",
  36772. height: math.unit(2500000, "miles")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(7 + 2/12, "feet"),
  36781. weight: math.unit(230, "kg"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/tatyana-milewska/front.svg",
  36785. extra: 1199/1150,
  36786. bottom: 86/1285
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(7 + 2/12, "feet"),
  36794. default: true
  36795. },
  36796. {
  36797. name: "Big",
  36798. height: math.unit(12, "feet")
  36799. },
  36800. {
  36801. name: "Minimacro",
  36802. height: math.unit(20, "feet")
  36803. },
  36804. {
  36805. name: "Macro",
  36806. height: math.unit(120, "feet")
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(7 + 8/12, "feet"),
  36815. weight: math.unit(152, "kg"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/helen-arri/front.svg",
  36819. extra: 440/423,
  36820. bottom: 14/454
  36821. }
  36822. },
  36823. back: {
  36824. height: math.unit(7 + 8/12, "feet"),
  36825. weight: math.unit(152, "kg"),
  36826. name: "Back",
  36827. image: {
  36828. source: "./media/characters/helen-arri/back.svg",
  36829. extra: 443/426,
  36830. bottom: 8/451
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(7 + 8/12, "feet"),
  36838. default: true
  36839. },
  36840. {
  36841. name: "Big",
  36842. height: math.unit(14, "feet")
  36843. },
  36844. {
  36845. name: "Minimacro",
  36846. height: math.unit(24, "feet")
  36847. },
  36848. {
  36849. name: "Macro",
  36850. height: math.unit(140, "feet")
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(6, "meters"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/ehanu-rehu/front.svg",
  36862. extra: 1800/1800,
  36863. bottom: 59/1859
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(6, "meters"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(7 + 3/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/renholder/front.svg",
  36883. extra: 3096/2960,
  36884. bottom: 250/3346
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal Bat",
  36891. height: math.unit(7 + 3/12, "feet"),
  36892. default: true
  36893. },
  36894. {
  36895. name: "Slightly Tall Bat",
  36896. height: math.unit(100, "feet")
  36897. },
  36898. {
  36899. name: "Big Bat",
  36900. height: math.unit(1000, "feet")
  36901. },
  36902. {
  36903. name: "City-Sized Bat",
  36904. height: math.unit(200000, "feet")
  36905. },
  36906. {
  36907. name: "Bigger Bat",
  36908. height: math.unit(10000, "miles")
  36909. },
  36910. {
  36911. name: "Solar Sized Bat",
  36912. height: math.unit(100, "AU")
  36913. },
  36914. {
  36915. name: "Galactic Bat",
  36916. height: math.unit(200000, "lightyears")
  36917. },
  36918. {
  36919. name: "Universally Known Bat",
  36920. height: math.unit(1, "universe")
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(6 + 11/12, "feet"),
  36929. weight: math.unit(250, "lb"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/cookiecat/front.svg",
  36933. extra: 893/827,
  36934. bottom: 14/907
  36935. }
  36936. },
  36937. },
  36938. [
  36939. {
  36940. name: "Micro",
  36941. height: math.unit(3, "inches")
  36942. },
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(6 + 11/12, "feet"),
  36946. default: true
  36947. },
  36948. {
  36949. name: "Macro",
  36950. height: math.unit(100, "feet")
  36951. },
  36952. {
  36953. name: "Macro+",
  36954. height: math.unit(404, "feet")
  36955. },
  36956. {
  36957. name: "Megamacro",
  36958. height: math.unit(165, "miles")
  36959. },
  36960. {
  36961. name: "Planetary",
  36962. height: math.unit(4600, "miles")
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(10 + 3/12, "feet"),
  36971. weight: math.unit(1500, "lb"),
  36972. name: "Front",
  36973. image: {
  36974. source: "./media/characters/tux-kusanagi/front.svg",
  36975. extra: 944/840,
  36976. bottom: 39/983
  36977. }
  36978. },
  36979. back: {
  36980. height: math.unit(10 + 3/12, "feet"),
  36981. weight: math.unit(1500, "lb"),
  36982. name: "Back",
  36983. image: {
  36984. source: "./media/characters/tux-kusanagi/back.svg",
  36985. extra: 941/842,
  36986. bottom: 28/969
  36987. }
  36988. },
  36989. rump: {
  36990. height: math.unit(5.25, "feet"),
  36991. name: "Rump",
  36992. image: {
  36993. source: "./media/characters/tux-kusanagi/rump.svg"
  36994. }
  36995. },
  36996. beak: {
  36997. height: math.unit(1.54, "feet"),
  36998. name: "Beak",
  36999. image: {
  37000. source: "./media/characters/tux-kusanagi/beak.svg"
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(10 + 3/12, "feet"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(58, "feet"),
  37017. weight: math.unit(200, "tons"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/uzarmazari/front.svg",
  37021. extra: 1575/1455,
  37022. bottom: 152/1727
  37023. }
  37024. },
  37025. back: {
  37026. height: math.unit(58, "feet"),
  37027. weight: math.unit(200, "tons"),
  37028. name: "Back",
  37029. image: {
  37030. source: "./media/characters/uzarmazari/back.svg",
  37031. extra: 1585/1510,
  37032. bottom: 157/1742
  37033. }
  37034. },
  37035. head: {
  37036. height: math.unit(26, "feet"),
  37037. name: "Head",
  37038. image: {
  37039. source: "./media/characters/uzarmazari/head.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(58, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37053. {
  37054. side: {
  37055. height: math.unit(15, "feet"),
  37056. name: "Side",
  37057. image: {
  37058. source: "./media/characters/akitu/side.svg",
  37059. extra: 1421/1321,
  37060. bottom: 157/1578
  37061. }
  37062. },
  37063. front: {
  37064. height: math.unit(15, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/akitu/front.svg",
  37068. extra: 1435/1326,
  37069. bottom: 232/1667
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(15, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(10 + 8/12, "feet"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/azalie-croixland/front.svg",
  37089. extra: 1972/1856,
  37090. bottom: 31/2003
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Original Height",
  37097. height: math.unit(5 + 4/12, "feet")
  37098. },
  37099. {
  37100. name: "Normal Height",
  37101. height: math.unit(10 + 8/12, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37108. {
  37109. side: {
  37110. height: math.unit(7 + 1/12, "feet"),
  37111. weight: math.unit(245, "lb"),
  37112. name: "Side",
  37113. image: {
  37114. source: "./media/characters/kavus-kazian/side.svg",
  37115. extra: 349/342,
  37116. bottom: 15/364
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(7 + 1/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37130. {
  37131. normalFront: {
  37132. height: math.unit(5 + 11/12, "feet"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/moonlight-rose/normal-front.svg",
  37136. extra: 1980/1825,
  37137. bottom: 18/1998
  37138. },
  37139. form: "normal",
  37140. default: true
  37141. },
  37142. normalBack: {
  37143. height: math.unit(5 + 11/12, "feet"),
  37144. name: "Back",
  37145. image: {
  37146. source: "./media/characters/moonlight-rose/normal-back.svg",
  37147. extra: 2010/1839,
  37148. bottom: 10/2020
  37149. },
  37150. form: "normal"
  37151. },
  37152. demonFront: {
  37153. height: math.unit(1.5, "earths"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/moonlight-rose/demon.svg",
  37157. extra: 1400/1294,
  37158. bottom: 45/1445
  37159. },
  37160. form: "demon",
  37161. default: true
  37162. },
  37163. terraFront: {
  37164. height: math.unit(1.5, "earths"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/moonlight-rose/terra.svg"
  37168. },
  37169. form: "terra",
  37170. default: true
  37171. },
  37172. jupiterFront: {
  37173. height: math.unit(69911*2, "km"),
  37174. name: "Front",
  37175. image: {
  37176. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37177. extra: 1367/1286,
  37178. bottom: 55/1422
  37179. },
  37180. form: "jupiter",
  37181. default: true
  37182. },
  37183. neptuneFront: {
  37184. height: math.unit(24622*2, "feet"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37188. extra: 1851/1712,
  37189. bottom: 0/1851
  37190. },
  37191. form: "neptune",
  37192. default: true
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "\"Natural\" Height",
  37198. height: math.unit(5 + 11/12, "feet"),
  37199. form: "normal"
  37200. },
  37201. {
  37202. name: "Smallest comfortable size",
  37203. height: math.unit(40, "meters"),
  37204. form: "normal"
  37205. },
  37206. {
  37207. name: "Common size",
  37208. height: math.unit(50, "km"),
  37209. form: "normal",
  37210. default: true
  37211. },
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(1.5, "earths"),
  37215. form: "demon",
  37216. default: true
  37217. },
  37218. {
  37219. name: "Universal",
  37220. height: math.unit(15, "universes"),
  37221. form: "demon"
  37222. },
  37223. {
  37224. name: "Earth",
  37225. height: math.unit(1.5, "earths"),
  37226. form: "terra",
  37227. default: true
  37228. },
  37229. {
  37230. name: "Super Earth",
  37231. height: math.unit(67.5, "earths"),
  37232. form: "terra"
  37233. },
  37234. {
  37235. name: "Doesn't fit in a solar system...",
  37236. height: math.unit(1, "galaxy"),
  37237. form: "terra"
  37238. },
  37239. {
  37240. name: "Saturn",
  37241. height: math.unit(58232*2, "km"),
  37242. form: "jupiter"
  37243. },
  37244. {
  37245. name: "Jupiter",
  37246. height: math.unit(69911*2, "km"),
  37247. form: "jupiter",
  37248. default: true
  37249. },
  37250. {
  37251. name: "HD 100546 b",
  37252. height: math.unit(482938, "km"),
  37253. form: "jupiter"
  37254. },
  37255. {
  37256. name: "Enceladus",
  37257. height: math.unit(513*2, "km"),
  37258. form: "neptune"
  37259. },
  37260. {
  37261. name: "Europe",
  37262. height: math.unit(1560*2, "km"),
  37263. form: "neptune"
  37264. },
  37265. {
  37266. name: "Neptune",
  37267. height: math.unit(24622*2, "km"),
  37268. form: "neptune",
  37269. default: true
  37270. },
  37271. {
  37272. name: "CoRoT-9b",
  37273. height: math.unit(75067*2, "km"),
  37274. form: "neptune"
  37275. },
  37276. ],
  37277. {
  37278. "normal": {
  37279. name: "Normal",
  37280. default: true
  37281. },
  37282. "demon": {
  37283. name: "Demon"
  37284. },
  37285. "terra": {
  37286. name: "Terra"
  37287. },
  37288. "jupiter": {
  37289. name: "Jupiter"
  37290. },
  37291. "neptune": {
  37292. name: "Neptune"
  37293. }
  37294. }
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37298. {
  37299. front: {
  37300. height: math.unit(16, "feet"),
  37301. weight: math.unit(610, "kg"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/huckle/front.svg",
  37305. extra: 1731/1625,
  37306. bottom: 33/1764
  37307. }
  37308. },
  37309. back: {
  37310. height: math.unit(16, "feet"),
  37311. weight: math.unit(610, "kg"),
  37312. name: "Back",
  37313. image: {
  37314. source: "./media/characters/huckle/back.svg",
  37315. extra: 1738/1651,
  37316. bottom: 37/1775
  37317. }
  37318. },
  37319. laughing: {
  37320. height: math.unit(3.75, "feet"),
  37321. name: "Laughing",
  37322. image: {
  37323. source: "./media/characters/huckle/laughing.svg"
  37324. }
  37325. },
  37326. angry: {
  37327. height: math.unit(4.15, "feet"),
  37328. name: "Angry",
  37329. image: {
  37330. source: "./media/characters/huckle/angry.svg"
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(16, "feet"),
  37338. default: true
  37339. },
  37340. {
  37341. name: "Mini Macro",
  37342. height: math.unit(463, "feet")
  37343. },
  37344. {
  37345. name: "Macro",
  37346. height: math.unit(1680, "meters")
  37347. },
  37348. {
  37349. name: "Mega Macro",
  37350. height: math.unit(175, "km")
  37351. },
  37352. {
  37353. name: "Terra Macro",
  37354. height: math.unit(32, "gigameters")
  37355. },
  37356. {
  37357. name: "Multiverse+",
  37358. height: math.unit(2.56e23, "yottameters")
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(6 + 9/12, "feet"),
  37367. weight: math.unit(280, "lb"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/candy/front.svg",
  37371. extra: 234/217,
  37372. bottom: 11/245
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Really Small",
  37379. height: math.unit(0.1, "nm")
  37380. },
  37381. {
  37382. name: "Micro",
  37383. height: math.unit(2, "inches")
  37384. },
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(6 + 9/12, "feet"),
  37388. default: true
  37389. },
  37390. {
  37391. name: "Small Macro",
  37392. height: math.unit(69, "feet")
  37393. },
  37394. {
  37395. name: "Macro",
  37396. height: math.unit(160, "feet")
  37397. },
  37398. {
  37399. name: "Megamacro",
  37400. height: math.unit(22000, "miles")
  37401. },
  37402. {
  37403. name: "Gigamacro",
  37404. height: math.unit(50000, "miles")
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(4, "feet"),
  37413. weight: math.unit(90, "lb"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/joey-mcdonald/front.svg",
  37417. extra: 1059/852,
  37418. bottom: 33/1092
  37419. }
  37420. },
  37421. back: {
  37422. height: math.unit(4, "feet"),
  37423. weight: math.unit(90, "lb"),
  37424. name: "Back",
  37425. image: {
  37426. source: "./media/characters/joey-mcdonald/back.svg",
  37427. extra: 1077/879,
  37428. bottom: 5/1082
  37429. }
  37430. },
  37431. frontKobold: {
  37432. height: math.unit(4, "feet"),
  37433. weight: math.unit(100, "lb"),
  37434. name: "Front-kobold",
  37435. image: {
  37436. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37437. extra: 1480/1367,
  37438. bottom: 0/1480
  37439. }
  37440. },
  37441. backKobold: {
  37442. height: math.unit(4, "feet"),
  37443. weight: math.unit(100, "lb"),
  37444. name: "Back-kobold",
  37445. image: {
  37446. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37447. extra: 1449/1361,
  37448. bottom: 0/1449
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(4, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(12 + 6/12, "feet"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/kass-lockheed/front.svg",
  37468. extra: 354/343,
  37469. bottom: 9/363
  37470. }
  37471. },
  37472. back: {
  37473. height: math.unit(12 + 6/12, "feet"),
  37474. name: "Back",
  37475. image: {
  37476. source: "./media/characters/kass-lockheed/back.svg",
  37477. extra: 364/352,
  37478. bottom: 3/367
  37479. }
  37480. },
  37481. dick: {
  37482. height: math.unit(3.12, "feet"),
  37483. name: "Dick",
  37484. image: {
  37485. source: "./media/characters/kass-lockheed/dick.svg"
  37486. }
  37487. },
  37488. head: {
  37489. height: math.unit(2.6, "feet"),
  37490. name: "Head",
  37491. image: {
  37492. source: "./media/characters/kass-lockheed/head.svg"
  37493. }
  37494. },
  37495. bleh: {
  37496. height: math.unit(2.85, "feet"),
  37497. name: "Bleh",
  37498. image: {
  37499. source: "./media/characters/kass-lockheed/bleh.svg"
  37500. }
  37501. },
  37502. smug: {
  37503. height: math.unit(2.85, "feet"),
  37504. name: "Smug",
  37505. image: {
  37506. source: "./media/characters/kass-lockheed/smug.svg"
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(12 + 6/12, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(6 + 2/12, "feet"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/taylor/front.svg",
  37526. extra: 639/495,
  37527. bottom: 12/651
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(6 + 2/12, "feet"),
  37535. default: true
  37536. },
  37537. {
  37538. name: "Big",
  37539. height: math.unit(15, "feet")
  37540. },
  37541. {
  37542. name: "Lorg",
  37543. height: math.unit(80, "feet")
  37544. },
  37545. {
  37546. name: "Too Lorg",
  37547. height: math.unit(120, "feet")
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(15, "feet"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/kaizer/front.svg",
  37559. extra: 1612/1436,
  37560. bottom: 43/1655
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(15, "feet"),
  37568. default: true
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(2, "feet"),
  37577. weight: math.unit(30, "lb"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/sandy/front.svg",
  37581. extra: 1439/1307,
  37582. bottom: 194/1633
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Normal",
  37589. height: math.unit(2, "feet"),
  37590. default: true
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(3, "feet"),
  37599. name: "Front",
  37600. image: {
  37601. source: "./media/characters/mellvi/front.svg",
  37602. extra: 1831/1630,
  37603. bottom: 58/1889
  37604. }
  37605. },
  37606. },
  37607. [
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(3, "feet"),
  37611. default: true
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37617. {
  37618. front: {
  37619. height: math.unit(5 + 11/12, "feet"),
  37620. weight: math.unit(200, "lb"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/shirou/front.svg",
  37624. extra: 2491/2383,
  37625. bottom: 189/2680
  37626. }
  37627. },
  37628. back: {
  37629. height: math.unit(5 + 11/12, "feet"),
  37630. weight: math.unit(200, "lb"),
  37631. name: "Back",
  37632. image: {
  37633. source: "./media/characters/shirou/back.svg",
  37634. extra: 2554/2450,
  37635. bottom: 76/2630
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(5 + 11/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(6 + 3/12, "feet"),
  37652. weight: math.unit(177, "lb"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/noryu/front.svg",
  37656. extra: 973/885,
  37657. bottom: 10/983
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(6 + 3/12, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(5 + 6/12, "feet"),
  37674. weight: math.unit(170, "lb"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/mevolas-rubenido/front.svg",
  37678. extra: 2109/1901,
  37679. bottom: 96/2205
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(5 + 6/12, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37693. {
  37694. front: {
  37695. height: math.unit(100, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/dee/front.svg",
  37699. extra: 2153/2036,
  37700. bottom: 59/2212
  37701. }
  37702. },
  37703. back: {
  37704. height: math.unit(100, "feet"),
  37705. name: "Back",
  37706. image: {
  37707. source: "./media/characters/dee/back.svg",
  37708. extra: 2183/2058,
  37709. bottom: 75/2258
  37710. }
  37711. },
  37712. foot: {
  37713. height: math.unit(19.43, "feet"),
  37714. name: "Foot",
  37715. image: {
  37716. source: "./media/characters/dee/foot.svg"
  37717. }
  37718. },
  37719. hoof: {
  37720. height: math.unit(20.6, "feet"),
  37721. name: "Hoof",
  37722. image: {
  37723. source: "./media/characters/dee/hoof.svg"
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Macro",
  37730. height: math.unit(100, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(5 + 6/12, "feet"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/teh/front.svg",
  37743. extra: 1002/847,
  37744. bottom: 62/1064
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 6/12, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37758. {
  37759. side: {
  37760. height: math.unit(6 + 1/12, "feet"),
  37761. weight: math.unit(204, "lb"),
  37762. name: "Side",
  37763. image: {
  37764. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37765. extra: 974/775,
  37766. bottom: 169/1143
  37767. }
  37768. },
  37769. sitting: {
  37770. height: math.unit(6 + 2/12, "feet"),
  37771. weight: math.unit(204, "lb"),
  37772. name: "Sitting",
  37773. image: {
  37774. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37775. extra: 1175/964,
  37776. bottom: 378/1553
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(6 + 1/12, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37790. {
  37791. front: {
  37792. height: math.unit(6, "inches"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/tululi/front.svg",
  37796. extra: 1997/1876,
  37797. bottom: 20/2017
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(6, "inches"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(4 + 1/12, "feet"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/star/front.svg",
  37817. extra: 1493/1189,
  37818. bottom: 48/1541
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(4 + 1/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(6 + 3/12, "feet"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/comet/front.svg",
  37838. extra: 1681/1462,
  37839. bottom: 26/1707
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Normal",
  37846. height: math.unit(6 + 3/12, "feet"),
  37847. default: true
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37853. {
  37854. front: {
  37855. height: math.unit(950, "feet"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/vortex/front.svg",
  37859. extra: 1497/1434,
  37860. bottom: 56/1553
  37861. }
  37862. },
  37863. maw: {
  37864. height: math.unit(285, "feet"),
  37865. name: "Maw",
  37866. image: {
  37867. source: "./media/characters/vortex/maw.svg"
  37868. }
  37869. },
  37870. },
  37871. [
  37872. {
  37873. name: "Macro",
  37874. height: math.unit(950, "feet"),
  37875. default: true
  37876. },
  37877. ]
  37878. ))
  37879. characterMakers.push(() => makeCharacter(
  37880. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37881. {
  37882. front: {
  37883. height: math.unit(600, "feet"),
  37884. weight: math.unit(0.02, "grams"),
  37885. name: "Front",
  37886. image: {
  37887. source: "./media/characters/doodle/front.svg",
  37888. extra: 1578/1413,
  37889. bottom: 37/1615
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Macro",
  37896. height: math.unit(600, "feet"),
  37897. default: true
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(6 + 6/12, "feet"),
  37906. name: "Front",
  37907. image: {
  37908. source: "./media/characters/jai/front.svg",
  37909. extra: 1645/1534,
  37910. bottom: 115/1760
  37911. }
  37912. },
  37913. },
  37914. [
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(6 + 6/12, "feet"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(6 + 8/12, "feet"),
  37927. name: "Front",
  37928. image: {
  37929. source: "./media/characters/pixel/front.svg",
  37930. extra: 1900/1735,
  37931. bottom: 63/1963
  37932. }
  37933. },
  37934. },
  37935. [
  37936. {
  37937. name: "Normal",
  37938. height: math.unit(6 + 8/12, "feet"),
  37939. default: true
  37940. },
  37941. ]
  37942. ))
  37943. characterMakers.push(() => makeCharacter(
  37944. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37945. {
  37946. back: {
  37947. height: math.unit(4 + 1/12, "feet"),
  37948. weight: math.unit(75, "lb"),
  37949. name: "Back",
  37950. image: {
  37951. source: "./media/characters/rhett/back.svg",
  37952. extra: 930/878,
  37953. bottom: 25/955
  37954. }
  37955. },
  37956. front: {
  37957. height: math.unit(4 + 1/12, "feet"),
  37958. weight: math.unit(75, "lb"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/rhett/front.svg",
  37962. extra: 1682/1586,
  37963. bottom: 92/1774
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Micro",
  37970. height: math.unit(8, "inches")
  37971. },
  37972. {
  37973. name: "Tiny",
  37974. height: math.unit(2, "feet")
  37975. },
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(4 + 1/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(3 + 3/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/penny/front.svg",
  37991. extra: 1406/1311,
  37992. bottom: 26/1432
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(3 + 3/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(4 + 11/12, "feet"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/monty/front.svg",
  38012. extra: 1479/1209,
  38013. bottom: 0/1479
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(4 + 11/12, "feet"),
  38021. default: true
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(8 + 4/12, "feet"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/sterling/front.svg",
  38033. extra: 1420/1236,
  38034. bottom: 27/1447
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(8 + 4/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(15, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/marble/front.svg",
  38054. extra: 973/937,
  38055. bottom: 32/1005
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(15, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38069. {
  38070. front: {
  38071. height: math.unit(3, "inches"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/powder/front.svg",
  38075. extra: 1504/1334,
  38076. bottom: 518/2022
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(3, "inches"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(4 + 5/12, "feet"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/joey-raccoon/front.svg",
  38096. extra: 1273/1197,
  38097. bottom: 0/1273
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(4 + 5/12, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(8 + 4/12, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/vick/front.svg",
  38117. extra: 2187/2118,
  38118. bottom: 47/2234
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(8 + 4/12, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(5 + 5/12, "feet"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/mitsy/front.svg",
  38138. extra: 1842/1695,
  38139. bottom: 0/1842
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(5 + 5/12, "feet"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38153. {
  38154. front: {
  38155. height: math.unit(6 + 3/12, "feet"),
  38156. name: "Front",
  38157. image: {
  38158. source: "./media/characters/silvy/front.svg",
  38159. extra: 1995/1836,
  38160. bottom: 225/2220
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(6 + 3/12, "feet"),
  38168. default: true
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38174. {
  38175. front: {
  38176. height: math.unit(3 + 8/12, "feet"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/rodney/front.svg",
  38180. extra: 1956/1747,
  38181. bottom: 31/1987
  38182. }
  38183. },
  38184. frontDressed: {
  38185. height: math.unit(2.9, "feet"),
  38186. name: "Front (Dressed)",
  38187. image: {
  38188. source: "./media/characters/rodney/front-dressed.svg",
  38189. extra: 1382/1241,
  38190. bottom: 385/1767
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(3 + 8/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(5 + 9/12, "feet"),
  38207. weight: math.unit(194, "lbs"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/zakail-sudekai/front.svg",
  38211. extra: 2696/2533,
  38212. bottom: 248/2944
  38213. }
  38214. },
  38215. maw: {
  38216. height: math.unit(1.35, "feet"),
  38217. name: "Maw",
  38218. image: {
  38219. source: "./media/characters/zakail-sudekai/maw.svg"
  38220. }
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "Normal",
  38226. height: math.unit(5 + 9/12, "feet"),
  38227. default: true
  38228. },
  38229. ]
  38230. ))
  38231. characterMakers.push(() => makeCharacter(
  38232. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38233. {
  38234. front: {
  38235. height: math.unit(8 + 4/12, "feet"),
  38236. weight: math.unit(1200, "lb"),
  38237. name: "Front",
  38238. image: {
  38239. source: "./media/characters/eleanor/front.svg",
  38240. extra: 1226/1192,
  38241. bottom: 52/1278
  38242. }
  38243. },
  38244. back: {
  38245. height: math.unit(8 + 4/12, "feet"),
  38246. weight: math.unit(1200, "lb"),
  38247. name: "Back",
  38248. image: {
  38249. source: "./media/characters/eleanor/back.svg",
  38250. extra: 1242/1184,
  38251. bottom: 60/1302
  38252. }
  38253. },
  38254. head: {
  38255. height: math.unit(2.62, "feet"),
  38256. name: "Head",
  38257. image: {
  38258. source: "./media/characters/eleanor/head.svg"
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(8 + 4/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(8 + 4/12, "feet"),
  38275. weight: math.unit(750, "lb"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/tanya/front.svg",
  38279. extra: 1749/1615,
  38280. bottom: 33/1782
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(8 + 4/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(5, "feet"),
  38297. weight: math.unit(225, "lb"),
  38298. name: "Front",
  38299. image: {
  38300. source: "./media/characters/cindy/front.svg",
  38301. extra: 1320/1250,
  38302. bottom: 42/1362
  38303. }
  38304. },
  38305. frontDressed: {
  38306. height: math.unit(5, "feet"),
  38307. weight: math.unit(225, "lb"),
  38308. name: "Front (Dressed)",
  38309. image: {
  38310. source: "./media/characters/cindy/front-dressed.svg",
  38311. extra: 1320/1250,
  38312. bottom: 42/1362
  38313. }
  38314. },
  38315. back: {
  38316. height: math.unit(5, "feet"),
  38317. weight: math.unit(225, "lb"),
  38318. name: "Back",
  38319. image: {
  38320. source: "./media/characters/cindy/back.svg",
  38321. extra: 1384/1346,
  38322. bottom: 14/1398
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(5, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(6 + 9/12, "feet"),
  38339. weight: math.unit(440, "lb"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/wilbur-owen/front.svg",
  38343. extra: 1575/1448,
  38344. bottom: 72/1647
  38345. }
  38346. },
  38347. back: {
  38348. height: math.unit(6 + 9/12, "feet"),
  38349. weight: math.unit(440, "lb"),
  38350. name: "Back",
  38351. image: {
  38352. source: "./media/characters/wilbur-owen/back.svg",
  38353. extra: 1578/1445,
  38354. bottom: 36/1614
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(6 + 9/12, "feet"),
  38362. default: true
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(6 + 5/12, "feet"),
  38371. weight: math.unit(650, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/keegan/front.svg",
  38375. extra: 2387/2198,
  38376. bottom: 33/2420
  38377. }
  38378. },
  38379. side: {
  38380. height: math.unit(6 + 5/12, "feet"),
  38381. weight: math.unit(650, "lb"),
  38382. name: "Side",
  38383. image: {
  38384. source: "./media/characters/keegan/side.svg",
  38385. extra: 2390/2202,
  38386. bottom: 47/2437
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(6 + 5/12, "feet"),
  38391. weight: math.unit(650, "lb"),
  38392. name: "Back",
  38393. image: {
  38394. source: "./media/characters/keegan/back.svg",
  38395. extra: 2418/2268,
  38396. bottom: 15/2433
  38397. }
  38398. },
  38399. frontSfw: {
  38400. height: math.unit(6 + 5/12, "feet"),
  38401. weight: math.unit(650, "lb"),
  38402. name: "Front (SFW)",
  38403. image: {
  38404. source: "./media/characters/keegan/front-sfw.svg",
  38405. extra: 2387/2198,
  38406. bottom: 33/2420
  38407. }
  38408. },
  38409. beans: {
  38410. height: math.unit(1.85, "feet"),
  38411. name: "Beans",
  38412. image: {
  38413. source: "./media/characters/keegan/beans.svg"
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(6 + 5/12, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(9, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/colton/front.svg",
  38433. extra: 1589/1326,
  38434. bottom: 139/1728
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(9, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(2 + 9/12, "feet"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/bora/front.svg",
  38454. extra: 1265/1250,
  38455. bottom: 24/1289
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(2 + 9/12, "feet"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(8, "feet"),
  38472. name: "Front",
  38473. image: {
  38474. source: "./media/characters/myu-myu/front.svg",
  38475. extra: 1949/1857,
  38476. bottom: 90/2039
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(8, "feet"),
  38484. default: true
  38485. },
  38486. {
  38487. name: "Big",
  38488. height: math.unit(15, "feet")
  38489. },
  38490. {
  38491. name: "BIG",
  38492. height: math.unit(25, "feet")
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38498. {
  38499. side: {
  38500. height: math.unit(7 + 5/12, "feet"),
  38501. weight: math.unit(2800, "lb"),
  38502. name: "Side",
  38503. image: {
  38504. source: "./media/characters/haloren/side.svg",
  38505. extra: 1793/409,
  38506. bottom: 59/1852
  38507. }
  38508. },
  38509. frontPaw: {
  38510. height: math.unit(2.36, "feet"),
  38511. name: "Front paw",
  38512. image: {
  38513. source: "./media/characters/haloren/front-paw.svg"
  38514. }
  38515. },
  38516. hindPaw: {
  38517. height: math.unit(3.18, "feet"),
  38518. name: "Hind paw",
  38519. image: {
  38520. source: "./media/characters/haloren/hind-paw.svg"
  38521. }
  38522. },
  38523. maw: {
  38524. height: math.unit(5.05, "feet"),
  38525. name: "Maw",
  38526. image: {
  38527. source: "./media/characters/haloren/maw.svg"
  38528. }
  38529. },
  38530. dick: {
  38531. height: math.unit(2.90, "feet"),
  38532. name: "Dick",
  38533. image: {
  38534. source: "./media/characters/haloren/dick.svg"
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(7 + 5/12, "feet"),
  38542. default: true
  38543. },
  38544. {
  38545. name: "Enhanced",
  38546. height: math.unit(14 + 3/12, "feet")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(171, "cm"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/kimmy/front.svg",
  38558. extra: 1491/1435,
  38559. bottom: 53/1544
  38560. }
  38561. },
  38562. },
  38563. [
  38564. {
  38565. name: "Small",
  38566. height: math.unit(9, "cm")
  38567. },
  38568. {
  38569. name: "Normal",
  38570. height: math.unit(171, "cm"),
  38571. default: true
  38572. },
  38573. ]
  38574. ))
  38575. characterMakers.push(() => makeCharacter(
  38576. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38577. {
  38578. front: {
  38579. height: math.unit(8, "feet"),
  38580. weight: math.unit(300, "lb"),
  38581. name: "Front",
  38582. image: {
  38583. source: "./media/characters/galeboomer/front.svg",
  38584. extra: 4651/4415,
  38585. bottom: 162/4813
  38586. }
  38587. },
  38588. back: {
  38589. height: math.unit(8, "feet"),
  38590. weight: math.unit(300, "lb"),
  38591. name: "Back",
  38592. image: {
  38593. source: "./media/characters/galeboomer/back.svg",
  38594. extra: 4544/4314,
  38595. bottom: 16/4560
  38596. }
  38597. },
  38598. frontAlt: {
  38599. height: math.unit(8, "feet"),
  38600. weight: math.unit(300, "lb"),
  38601. name: "Front (Alt)",
  38602. image: {
  38603. source: "./media/characters/galeboomer/front-alt.svg",
  38604. extra: 4458/4228,
  38605. bottom: 68/4526
  38606. }
  38607. },
  38608. maw: {
  38609. height: math.unit(1.2, "feet"),
  38610. name: "Maw",
  38611. image: {
  38612. source: "./media/characters/galeboomer/maw.svg"
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(8, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(5 + 9/12, "feet"),
  38629. weight: math.unit(120, "lb"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/chyr/front.svg",
  38633. extra: 1323/1254,
  38634. bottom: 63/1386
  38635. }
  38636. },
  38637. back: {
  38638. height: math.unit(5 + 9/12, "feet"),
  38639. weight: math.unit(120, "lb"),
  38640. name: "Back",
  38641. image: {
  38642. source: "./media/characters/chyr/back.svg",
  38643. extra: 1323/1252,
  38644. bottom: 48/1371
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Normal",
  38651. height: math.unit(5 + 9/12, "feet"),
  38652. default: true
  38653. },
  38654. ]
  38655. ))
  38656. characterMakers.push(() => makeCharacter(
  38657. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38658. {
  38659. front: {
  38660. height: math.unit(7, "feet"),
  38661. weight: math.unit(310, "lb"),
  38662. name: "Front",
  38663. image: {
  38664. source: "./media/characters/solarus/front.svg",
  38665. extra: 2415/2021,
  38666. bottom: 103/2518
  38667. }
  38668. },
  38669. back: {
  38670. height: math.unit(7, "feet"),
  38671. weight: math.unit(310, "lb"),
  38672. name: "Back",
  38673. image: {
  38674. source: "./media/characters/solarus/back.svg",
  38675. extra: 2463/2089,
  38676. bottom: 79/2542
  38677. }
  38678. },
  38679. },
  38680. [
  38681. {
  38682. name: "Normal",
  38683. height: math.unit(7, "feet"),
  38684. default: true
  38685. },
  38686. ]
  38687. ))
  38688. characterMakers.push(() => makeCharacter(
  38689. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38690. {
  38691. front: {
  38692. height: math.unit(16, "feet"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38696. extra: 1844/1780,
  38697. bottom: 58/1902
  38698. }
  38699. },
  38700. winterCoat: {
  38701. height: math.unit(16, "feet"),
  38702. name: "Winter Coat",
  38703. image: {
  38704. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38705. extra: 1807/1775,
  38706. bottom: 69/1876
  38707. }
  38708. },
  38709. },
  38710. [
  38711. {
  38712. name: "Normal",
  38713. height: math.unit(16, "feet"),
  38714. default: true
  38715. },
  38716. {
  38717. name: "Chicago Size",
  38718. height: math.unit(560, "feet")
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(11 + 6/12, "feet"),
  38727. weight: math.unit(1366, "lb"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/lexor/front.svg",
  38731. extra: 1560/1481,
  38732. bottom: 211/1771
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(11 + 6/12, "feet"),
  38737. weight: math.unit(1366, "lb"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/lexor/back.svg",
  38741. extra: 1614/1533,
  38742. bottom: 76/1690
  38743. }
  38744. },
  38745. maw: {
  38746. height: math.unit(3, "feet"),
  38747. name: "Maw",
  38748. image: {
  38749. source: "./media/characters/lexor/maw.svg"
  38750. }
  38751. },
  38752. dick: {
  38753. height: math.unit(2.59, "feet"),
  38754. name: "Dick",
  38755. image: {
  38756. source: "./media/characters/lexor/dick.svg"
  38757. }
  38758. },
  38759. },
  38760. [
  38761. {
  38762. name: "Normal",
  38763. height: math.unit(11 + 6/12, "feet"),
  38764. default: true
  38765. },
  38766. ]
  38767. ))
  38768. characterMakers.push(() => makeCharacter(
  38769. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38770. {
  38771. front: {
  38772. height: math.unit(5 + 8/12, "feet"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/magnum/front.svg",
  38776. extra: 942/855,
  38777. bottom: 26/968
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(5 + 8/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(18 + 4/12, "feet"),
  38794. weight: math.unit(1500, "kg"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/solas-sharpsman/front.svg",
  38798. extra: 1698/1589,
  38799. bottom: 0/1698
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(18 + 4/12, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(5 + 5/12, "feet"),
  38816. weight: math.unit(180, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/october/front.svg",
  38820. extra: 1800/1650,
  38821. bottom: 0/1800
  38822. }
  38823. },
  38824. frontNsfw: {
  38825. height: math.unit(5 + 5/12, "feet"),
  38826. weight: math.unit(180, "lb"),
  38827. name: "Front (NSFW)",
  38828. image: {
  38829. source: "./media/characters/october/front-nsfw.svg",
  38830. extra: 1392/1307,
  38831. bottom: 42/1434
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(5 + 5/12, "feet"),
  38839. default: true
  38840. },
  38841. ]
  38842. ))
  38843. characterMakers.push(() => makeCharacter(
  38844. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38845. {
  38846. front: {
  38847. height: math.unit(8 + 6/12, "feet"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/essynkardi/front.svg",
  38851. extra: 1914/1846,
  38852. bottom: 22/1936
  38853. }
  38854. },
  38855. },
  38856. [
  38857. {
  38858. name: "Normal",
  38859. height: math.unit(8 + 6/12, "feet"),
  38860. default: true
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38866. {
  38867. front: {
  38868. height: math.unit(6 + 6/12, "feet"),
  38869. weight: math.unit(7, "lb"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/icky/front.svg",
  38873. extra: 813/782,
  38874. bottom: 66/879
  38875. }
  38876. },
  38877. back: {
  38878. height: math.unit(6 + 6/12, "feet"),
  38879. weight: math.unit(7, "lb"),
  38880. name: "Back",
  38881. image: {
  38882. source: "./media/characters/icky/back.svg",
  38883. extra: 754/735,
  38884. bottom: 56/810
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Normal",
  38891. height: math.unit(6 + 6/12, "feet"),
  38892. default: true
  38893. },
  38894. ]
  38895. ))
  38896. characterMakers.push(() => makeCharacter(
  38897. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38898. {
  38899. front: {
  38900. height: math.unit(15, "feet"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/rojas/front.svg",
  38904. extra: 1462/1408,
  38905. bottom: 95/1557
  38906. }
  38907. },
  38908. back: {
  38909. height: math.unit(15, "feet"),
  38910. name: "Back",
  38911. image: {
  38912. source: "./media/characters/rojas/back.svg",
  38913. extra: 1023/954,
  38914. bottom: 28/1051
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(15, "feet"),
  38922. default: true
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38928. {
  38929. frontHuman: {
  38930. height: math.unit(5 + 7/12, "feet"),
  38931. name: "Front (Human)",
  38932. image: {
  38933. source: "./media/characters/alek-dryagan/front-human.svg",
  38934. extra: 1687/1667,
  38935. bottom: 69/1756
  38936. }
  38937. },
  38938. backHuman: {
  38939. height: math.unit(5 + 7/12, "feet"),
  38940. name: "Back (Human)",
  38941. image: {
  38942. source: "./media/characters/alek-dryagan/back-human.svg",
  38943. extra: 1670/1649,
  38944. bottom: 65/1735
  38945. }
  38946. },
  38947. frontDemi: {
  38948. height: math.unit(65, "feet"),
  38949. name: "Front (Demi)",
  38950. image: {
  38951. source: "./media/characters/alek-dryagan/front-demi.svg",
  38952. extra: 1669/1642,
  38953. bottom: 49/1718
  38954. }
  38955. },
  38956. backDemi: {
  38957. height: math.unit(65, "feet"),
  38958. name: "Back (Demi)",
  38959. image: {
  38960. source: "./media/characters/alek-dryagan/back-demi.svg",
  38961. extra: 1658/1637,
  38962. bottom: 40/1698
  38963. }
  38964. },
  38965. mawHuman: {
  38966. height: math.unit(0.3, "feet"),
  38967. name: "Maw (Human)",
  38968. image: {
  38969. source: "./media/characters/alek-dryagan/maw-human.svg"
  38970. }
  38971. },
  38972. mawDemi: {
  38973. height: math.unit(3.8, "feet"),
  38974. name: "Maw (Demi)",
  38975. image: {
  38976. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Normal",
  38983. height: math.unit(5 + 7/12, "feet"),
  38984. default: true
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38990. {
  38991. frontHuman: {
  38992. height: math.unit(5 + 2/12, "feet"),
  38993. name: "Front (Human)",
  38994. image: {
  38995. source: "./media/characters/gen/front-human.svg",
  38996. extra: 1627/1538,
  38997. bottom: 71/1698
  38998. }
  38999. },
  39000. backHuman: {
  39001. height: math.unit(5 + 2/12, "feet"),
  39002. name: "Back (Human)",
  39003. image: {
  39004. source: "./media/characters/gen/back-human.svg",
  39005. extra: 1638/1548,
  39006. bottom: 69/1707
  39007. }
  39008. },
  39009. frontDemi: {
  39010. height: math.unit(5 + 2/12, "feet"),
  39011. name: "Front (Demi)",
  39012. image: {
  39013. source: "./media/characters/gen/front-demi.svg",
  39014. extra: 1627/1538,
  39015. bottom: 71/1698
  39016. }
  39017. },
  39018. backDemi: {
  39019. height: math.unit(5 + 2/12, "feet"),
  39020. name: "Back (Demi)",
  39021. image: {
  39022. source: "./media/characters/gen/back-demi.svg",
  39023. extra: 1638/1548,
  39024. bottom: 69/1707
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(5 + 2/12, "feet"),
  39032. default: true
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39038. {
  39039. frontImp: {
  39040. height: math.unit(1 + 11/12, "feet"),
  39041. name: "Front (Imp)",
  39042. image: {
  39043. source: "./media/characters/max-kobold/front-imp.svg",
  39044. extra: 1238/1134,
  39045. bottom: 81/1319
  39046. }
  39047. },
  39048. backImp: {
  39049. height: math.unit(1 + 11/12, "feet"),
  39050. name: "Back (Imp)",
  39051. image: {
  39052. source: "./media/characters/max-kobold/back-imp.svg",
  39053. extra: 1334/1175,
  39054. bottom: 34/1368
  39055. }
  39056. },
  39057. frontDemi: {
  39058. height: math.unit(5 + 9/12, "feet"),
  39059. name: "Front (Demi)",
  39060. image: {
  39061. source: "./media/characters/max-kobold/front-demi.svg",
  39062. extra: 1715/1685,
  39063. bottom: 54/1769
  39064. }
  39065. },
  39066. backDemi: {
  39067. height: math.unit(5 + 9/12, "feet"),
  39068. name: "Back (Demi)",
  39069. image: {
  39070. source: "./media/characters/max-kobold/back-demi.svg",
  39071. extra: 1752/1729,
  39072. bottom: 41/1793
  39073. }
  39074. },
  39075. handImp: {
  39076. height: math.unit(0.45, "feet"),
  39077. name: "Hand (Imp)",
  39078. image: {
  39079. source: "./media/characters/max-kobold/hand.svg"
  39080. }
  39081. },
  39082. pawImp: {
  39083. height: math.unit(0.46, "feet"),
  39084. name: "Paw (Imp)",
  39085. image: {
  39086. source: "./media/characters/max-kobold/paw.svg"
  39087. }
  39088. },
  39089. handDemi: {
  39090. height: math.unit(0.80, "feet"),
  39091. name: "Hand (Demi)",
  39092. image: {
  39093. source: "./media/characters/max-kobold/hand.svg"
  39094. }
  39095. },
  39096. pawDemi: {
  39097. height: math.unit(1.1, "feet"),
  39098. name: "Paw (Demi)",
  39099. image: {
  39100. source: "./media/characters/max-kobold/paw.svg"
  39101. }
  39102. },
  39103. headImp: {
  39104. height: math.unit(1.33, "feet"),
  39105. name: "Head (Imp)",
  39106. image: {
  39107. source: "./media/characters/max-kobold/head-imp.svg"
  39108. }
  39109. },
  39110. mawImp: {
  39111. height: math.unit(0.75, "feet"),
  39112. name: "Maw (Imp)",
  39113. image: {
  39114. source: "./media/characters/max-kobold/maw-imp.svg"
  39115. }
  39116. },
  39117. mawDemi: {
  39118. height: math.unit(0.42, "feet"),
  39119. name: "Maw (Demi)",
  39120. image: {
  39121. source: "./media/characters/max-kobold/maw-demi.svg"
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Normal",
  39128. height: math.unit(1 + 11/12, "feet"),
  39129. default: true
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(7 + 5/12, "feet"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/carbon/front.svg",
  39141. extra: 1754/1689,
  39142. bottom: 65/1819
  39143. }
  39144. },
  39145. back: {
  39146. height: math.unit(7 + 5/12, "feet"),
  39147. name: "Back",
  39148. image: {
  39149. source: "./media/characters/carbon/back.svg",
  39150. extra: 1762/1695,
  39151. bottom: 24/1786
  39152. }
  39153. },
  39154. frontGigantamax: {
  39155. height: math.unit(150, "feet"),
  39156. name: "Front (Gigantamax)",
  39157. image: {
  39158. source: "./media/characters/carbon/front-gigantamax.svg",
  39159. extra: 1826/1669,
  39160. bottom: 59/1885
  39161. }
  39162. },
  39163. backGigantamax: {
  39164. height: math.unit(150, "feet"),
  39165. name: "Back (Gigantamax)",
  39166. image: {
  39167. source: "./media/characters/carbon/back-gigantamax.svg",
  39168. extra: 1796/1653,
  39169. bottom: 53/1849
  39170. }
  39171. },
  39172. maw: {
  39173. height: math.unit(0.48, "feet"),
  39174. name: "Maw",
  39175. image: {
  39176. source: "./media/characters/carbon/maw.svg"
  39177. }
  39178. },
  39179. mawGigantamax: {
  39180. height: math.unit(7.5, "feet"),
  39181. name: "Maw (Gigantamax)",
  39182. image: {
  39183. source: "./media/characters/carbon/maw-gigantamax.svg"
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(7 + 5/12, "feet"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(6, "feet"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/maverick/front.svg",
  39203. extra: 1672/1661,
  39204. bottom: 85/1757
  39205. }
  39206. },
  39207. back: {
  39208. height: math.unit(6, "feet"),
  39209. name: "Back",
  39210. image: {
  39211. source: "./media/characters/maverick/back.svg",
  39212. extra: 1642/1631,
  39213. bottom: 38/1680
  39214. }
  39215. },
  39216. },
  39217. [
  39218. {
  39219. name: "Normal",
  39220. height: math.unit(6, "feet"),
  39221. default: true
  39222. },
  39223. ]
  39224. ))
  39225. characterMakers.push(() => makeCharacter(
  39226. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39227. {
  39228. front: {
  39229. height: math.unit(15, "feet"),
  39230. weight: math.unit(615, "lb"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/grockle/front.svg",
  39234. extra: 1535/1427,
  39235. bottom: 56/1591
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(15, "feet"),
  39243. default: true
  39244. },
  39245. {
  39246. name: "Large",
  39247. height: math.unit(150, "feet")
  39248. },
  39249. {
  39250. name: "Macro",
  39251. height: math.unit(1876, "feet")
  39252. },
  39253. {
  39254. name: "Mega Macro",
  39255. height: math.unit(121940, "feet")
  39256. },
  39257. {
  39258. name: "Giga Macro",
  39259. height: math.unit(750, "km")
  39260. },
  39261. {
  39262. name: "Tera Macro",
  39263. height: math.unit(750000, "km")
  39264. },
  39265. {
  39266. name: "Galactic",
  39267. height: math.unit(1.4e5, "km")
  39268. },
  39269. {
  39270. name: "Godlike",
  39271. height: math.unit(9.8e280, "galaxies")
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(11, "meters"),
  39280. weight: math.unit(20, "tonnes"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/alistair/front.svg",
  39284. extra: 1265/1009,
  39285. bottom: 93/1358
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(11, "meters"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(5 + 8/12, "feet"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/haruka/front.svg",
  39305. extra: 2012/1952,
  39306. bottom: 0/2012
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(5 + 8/12, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39320. {
  39321. back: {
  39322. height: math.unit(9, "feet"),
  39323. name: "Back",
  39324. image: {
  39325. source: "./media/characters/vivian-sylveon/back.svg",
  39326. extra: 1853/1714,
  39327. bottom: 0/1853
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(9, "feet"),
  39335. default: true
  39336. },
  39337. {
  39338. name: "Macro",
  39339. height: math.unit(500, "feet")
  39340. },
  39341. {
  39342. name: "Megamacro",
  39343. height: math.unit(600, "miles")
  39344. },
  39345. {
  39346. name: "Gigamacro",
  39347. height: math.unit(30000, "miles")
  39348. },
  39349. ]
  39350. ))
  39351. characterMakers.push(() => makeCharacter(
  39352. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39353. {
  39354. anthro: {
  39355. height: math.unit(5 + 10/12, "feet"),
  39356. weight: math.unit(100, "lb"),
  39357. name: "Anthro",
  39358. image: {
  39359. source: "./media/characters/daiki/anthro.svg",
  39360. extra: 1115/1027,
  39361. bottom: 69/1184
  39362. }
  39363. },
  39364. feral: {
  39365. height: math.unit(200, "feet"),
  39366. name: "Feral",
  39367. image: {
  39368. source: "./media/characters/daiki/feral.svg",
  39369. extra: 1256/313,
  39370. bottom: 39/1295
  39371. }
  39372. },
  39373. feralHead: {
  39374. height: math.unit(171, "feet"),
  39375. name: "Feral Head",
  39376. image: {
  39377. source: "./media/characters/daiki/feral-head.svg"
  39378. }
  39379. },
  39380. manaDragon: {
  39381. height: math.unit(170, "meters"),
  39382. name: "Mana-dragon",
  39383. image: {
  39384. source: "./media/characters/daiki/mana-dragon.svg",
  39385. extra: 763/420,
  39386. bottom: 97/860
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Normal",
  39393. height: math.unit(5 + 10/12, "feet"),
  39394. default: true
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39400. {
  39401. fullyEquippedFront: {
  39402. height: math.unit(3 + 1/12, "feet"),
  39403. weight: math.unit(24, "lb"),
  39404. name: "Fully Equipped (Front)",
  39405. image: {
  39406. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39407. extra: 687/605,
  39408. bottom: 18/705
  39409. }
  39410. },
  39411. fullyEquippedBack: {
  39412. height: math.unit(3 + 1/12, "feet"),
  39413. weight: math.unit(24, "lb"),
  39414. name: "Fully Equipped (Back)",
  39415. image: {
  39416. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39417. extra: 689/590,
  39418. bottom: 18/707
  39419. }
  39420. },
  39421. dailyWear: {
  39422. height: math.unit(3 + 1/12, "feet"),
  39423. weight: math.unit(24, "lb"),
  39424. name: "Daily Wear",
  39425. image: {
  39426. source: "./media/characters/tea-spot/daily-wear.svg",
  39427. extra: 701/620,
  39428. bottom: 21/722
  39429. }
  39430. },
  39431. maidWork: {
  39432. height: math.unit(3 + 1/12, "feet"),
  39433. weight: math.unit(24, "lb"),
  39434. name: "Maid Work",
  39435. image: {
  39436. source: "./media/characters/tea-spot/maid-work.svg",
  39437. extra: 693/609,
  39438. bottom: 15/708
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(3 + 1/12, "feet"),
  39446. default: true
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(175, "cm"),
  39455. weight: math.unit(75, "kg"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/chee/front.svg",
  39459. extra: 1796/1740,
  39460. bottom: 40/1836
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Micro-Micro",
  39467. height: math.unit(1, "nm")
  39468. },
  39469. {
  39470. name: "Micro-erst",
  39471. height: math.unit(1, "micrometer")
  39472. },
  39473. {
  39474. name: "Micro-er",
  39475. height: math.unit(1, "cm")
  39476. },
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(175, "cm"),
  39480. default: true
  39481. },
  39482. {
  39483. name: "Macro",
  39484. height: math.unit(100, "m")
  39485. },
  39486. {
  39487. name: "Macro-er",
  39488. height: math.unit(1, "km")
  39489. },
  39490. {
  39491. name: "Macro-erst",
  39492. height: math.unit(10, "km")
  39493. },
  39494. {
  39495. name: "Macro-Macro",
  39496. height: math.unit(100, "km")
  39497. },
  39498. ]
  39499. ))
  39500. characterMakers.push(() => makeCharacter(
  39501. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39502. {
  39503. front: {
  39504. height: math.unit(11 + 9/12, "feet"),
  39505. weight: math.unit(935, "lb"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/kingsley/front.svg",
  39509. extra: 1803/1674,
  39510. bottom: 127/1930
  39511. }
  39512. },
  39513. frontNude: {
  39514. height: math.unit(11 + 9/12, "feet"),
  39515. weight: math.unit(935, "lb"),
  39516. name: "Front (Nude)",
  39517. image: {
  39518. source: "./media/characters/kingsley/front-nude.svg",
  39519. extra: 1803/1674,
  39520. bottom: 127/1930
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(11 + 9/12, "feet"),
  39528. default: true
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39534. {
  39535. side: {
  39536. height: math.unit(9, "feet"),
  39537. name: "Side",
  39538. image: {
  39539. source: "./media/characters/rymel/side.svg",
  39540. extra: 792/469,
  39541. bottom: 121/913
  39542. }
  39543. },
  39544. maw: {
  39545. height: math.unit(2.4, "meters"),
  39546. name: "Maw",
  39547. image: {
  39548. source: "./media/characters/rymel/maw.svg"
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "House Drake",
  39555. height: math.unit(2, "feet")
  39556. },
  39557. {
  39558. name: "Reduced",
  39559. height: math.unit(4.5, "feet")
  39560. },
  39561. {
  39562. name: "Normal",
  39563. height: math.unit(9, "feet"),
  39564. default: true
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39570. {
  39571. front: {
  39572. height: math.unit(1.74, "meters"),
  39573. weight: math.unit(55, "kg"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/rubus/front.svg",
  39577. extra: 1894/1742,
  39578. bottom: 44/1938
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Normal",
  39585. height: math.unit(1.74, "meters"),
  39586. default: true
  39587. },
  39588. ]
  39589. ))
  39590. characterMakers.push(() => makeCharacter(
  39591. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39592. {
  39593. front: {
  39594. height: math.unit(5 + 2/12, "feet"),
  39595. weight: math.unit(112, "lb"),
  39596. name: "Front",
  39597. image: {
  39598. source: "./media/characters/cassie-kingston/front.svg",
  39599. extra: 1438/1390,
  39600. bottom: 47/1485
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(5 + 2/12, "feet"),
  39608. default: true
  39609. },
  39610. {
  39611. name: "Macro",
  39612. height: math.unit(128, "feet")
  39613. },
  39614. {
  39615. name: "Megamacro",
  39616. height: math.unit(2.56, "miles")
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(7, "feet"),
  39625. name: "Front",
  39626. image: {
  39627. source: "./media/characters/fox/front.svg",
  39628. extra: 1798/1703,
  39629. bottom: 55/1853
  39630. }
  39631. },
  39632. back: {
  39633. height: math.unit(7, "feet"),
  39634. name: "Back",
  39635. image: {
  39636. source: "./media/characters/fox/back.svg",
  39637. extra: 1748/1649,
  39638. bottom: 32/1780
  39639. }
  39640. },
  39641. head: {
  39642. height: math.unit(1.95, "feet"),
  39643. name: "Head",
  39644. image: {
  39645. source: "./media/characters/fox/head.svg"
  39646. }
  39647. },
  39648. dick: {
  39649. height: math.unit(1.33, "feet"),
  39650. name: "Dick",
  39651. image: {
  39652. source: "./media/characters/fox/dick.svg"
  39653. }
  39654. },
  39655. foot: {
  39656. height: math.unit(1, "feet"),
  39657. name: "Foot",
  39658. image: {
  39659. source: "./media/characters/fox/foot.svg"
  39660. }
  39661. },
  39662. paw: {
  39663. height: math.unit(0.92, "feet"),
  39664. name: "Paw",
  39665. image: {
  39666. source: "./media/characters/fox/paw.svg"
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Small",
  39673. height: math.unit(3, "inches")
  39674. },
  39675. {
  39676. name: "\"Realistic\"",
  39677. height: math.unit(7, "feet")
  39678. },
  39679. {
  39680. name: "Normal",
  39681. height: math.unit(150, "feet"),
  39682. default: true
  39683. },
  39684. {
  39685. name: "BIG",
  39686. height: math.unit(1200, "feet")
  39687. },
  39688. {
  39689. name: "👀",
  39690. height: math.unit(5, "miles")
  39691. },
  39692. {
  39693. name: "👀👀👀",
  39694. height: math.unit(64, "miles")
  39695. },
  39696. ]
  39697. ))
  39698. characterMakers.push(() => makeCharacter(
  39699. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39700. {
  39701. front: {
  39702. height: math.unit(625, "feet"),
  39703. name: "Front",
  39704. image: {
  39705. source: "./media/characters/asonja-rossa/front.svg",
  39706. extra: 1833/1686,
  39707. bottom: 24/1857
  39708. }
  39709. },
  39710. back: {
  39711. height: math.unit(625, "feet"),
  39712. name: "Back",
  39713. image: {
  39714. source: "./media/characters/asonja-rossa/back.svg",
  39715. extra: 1852/1753,
  39716. bottom: 26/1878
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Macro",
  39723. height: math.unit(625, "feet"),
  39724. default: true
  39725. },
  39726. ]
  39727. ))
  39728. characterMakers.push(() => makeCharacter(
  39729. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39730. {
  39731. side: {
  39732. height: math.unit(8, "feet"),
  39733. name: "Side",
  39734. image: {
  39735. source: "./media/characters/rezukii/side.svg",
  39736. extra: 979/542,
  39737. bottom: 87/1066
  39738. }
  39739. },
  39740. sitting: {
  39741. height: math.unit(14.6, "feet"),
  39742. name: "Sitting",
  39743. image: {
  39744. source: "./media/characters/rezukii/sitting.svg",
  39745. extra: 1023/813,
  39746. bottom: 45/1068
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Tiny",
  39753. height: math.unit(2, "feet")
  39754. },
  39755. {
  39756. name: "Smol",
  39757. height: math.unit(4, "feet")
  39758. },
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(8, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Big",
  39766. height: math.unit(12, "feet")
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(30, "feet")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(14, "feet"),
  39779. weight: math.unit(9.5, "tonnes"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/dawnheart/front.svg",
  39783. extra: 2792/2675,
  39784. bottom: 64/2856
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(14, "feet"),
  39792. default: true
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39798. {
  39799. front: {
  39800. height: math.unit(1.7, "m"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/gladi/front.svg",
  39804. extra: 1460/1362,
  39805. bottom: 19/1479
  39806. }
  39807. },
  39808. back: {
  39809. height: math.unit(1.7, "m"),
  39810. name: "Back",
  39811. image: {
  39812. source: "./media/characters/gladi/back.svg",
  39813. extra: 1459/1357,
  39814. bottom: 12/1471
  39815. }
  39816. },
  39817. feral: {
  39818. height: math.unit(2.05, "m"),
  39819. name: "Feral",
  39820. image: {
  39821. source: "./media/characters/gladi/feral.svg",
  39822. extra: 821/557,
  39823. bottom: 91/912
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Shortest",
  39830. height: math.unit(70, "cm")
  39831. },
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(1.7, "m")
  39835. },
  39836. {
  39837. name: "Macro",
  39838. height: math.unit(10, "m"),
  39839. default: true
  39840. },
  39841. {
  39842. name: "Tallest",
  39843. height: math.unit(200, "m")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(5 + 7/12, "feet"),
  39852. weight: math.unit(2, "tons"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/erdno/front.svg",
  39856. extra: 1234/1129,
  39857. bottom: 35/1269
  39858. }
  39859. },
  39860. angled: {
  39861. height: math.unit(5 + 7/12, "feet"),
  39862. weight: math.unit(2, "tons"),
  39863. name: "Angled",
  39864. image: {
  39865. source: "./media/characters/erdno/angled.svg",
  39866. extra: 1185/1139,
  39867. bottom: 36/1221
  39868. }
  39869. },
  39870. side: {
  39871. height: math.unit(5 + 7/12, "feet"),
  39872. weight: math.unit(2, "tons"),
  39873. name: "Side",
  39874. image: {
  39875. source: "./media/characters/erdno/side.svg",
  39876. extra: 1191/1144,
  39877. bottom: 40/1231
  39878. }
  39879. },
  39880. back: {
  39881. height: math.unit(5 + 7/12, "feet"),
  39882. weight: math.unit(2, "tons"),
  39883. name: "Back",
  39884. image: {
  39885. source: "./media/characters/erdno/back.svg",
  39886. extra: 1202/1146,
  39887. bottom: 17/1219
  39888. }
  39889. },
  39890. frontNsfw: {
  39891. height: math.unit(5 + 7/12, "feet"),
  39892. weight: math.unit(2, "tons"),
  39893. name: "Front (NSFW)",
  39894. image: {
  39895. source: "./media/characters/erdno/front-nsfw.svg",
  39896. extra: 1234/1129,
  39897. bottom: 35/1269
  39898. }
  39899. },
  39900. angledNsfw: {
  39901. height: math.unit(5 + 7/12, "feet"),
  39902. weight: math.unit(2, "tons"),
  39903. name: "Angled (NSFW)",
  39904. image: {
  39905. source: "./media/characters/erdno/angled-nsfw.svg",
  39906. extra: 1185/1139,
  39907. bottom: 36/1221
  39908. }
  39909. },
  39910. sideNsfw: {
  39911. height: math.unit(5 + 7/12, "feet"),
  39912. weight: math.unit(2, "tons"),
  39913. name: "Side (NSFW)",
  39914. image: {
  39915. source: "./media/characters/erdno/side-nsfw.svg",
  39916. extra: 1191/1144,
  39917. bottom: 40/1231
  39918. }
  39919. },
  39920. backNsfw: {
  39921. height: math.unit(5 + 7/12, "feet"),
  39922. weight: math.unit(2, "tons"),
  39923. name: "Back (NSFW)",
  39924. image: {
  39925. source: "./media/characters/erdno/back-nsfw.svg",
  39926. extra: 1202/1146,
  39927. bottom: 17/1219
  39928. }
  39929. },
  39930. frontHyper: {
  39931. height: math.unit(5 + 7/12, "feet"),
  39932. weight: math.unit(2, "tons"),
  39933. name: "Front (Hyper)",
  39934. image: {
  39935. source: "./media/characters/erdno/front-hyper.svg",
  39936. extra: 1298/1136,
  39937. bottom: 35/1333
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(5 + 7/12, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Big",
  39949. height: math.unit(5.7, "meters")
  39950. },
  39951. {
  39952. name: "Macro",
  39953. height: math.unit(5.7, "kilometers")
  39954. },
  39955. {
  39956. name: "Megamacro",
  39957. height: math.unit(5.7, "earths")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(5 + 10/12, "feet"),
  39966. weight: math.unit(150, "lb"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/jamie/front.svg",
  39970. extra: 1908/1768,
  39971. bottom: 19/1927
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Minimum",
  39978. height: math.unit(2, "cm")
  39979. },
  39980. {
  39981. name: "Micro",
  39982. height: math.unit(3, "inches")
  39983. },
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(5 + 10/12, "feet"),
  39987. default: true
  39988. },
  39989. {
  39990. name: "Macro",
  39991. height: math.unit(150, "feet")
  39992. },
  39993. {
  39994. name: "Megamacro",
  39995. height: math.unit(10000, "m")
  39996. },
  39997. ]
  39998. ))
  39999. characterMakers.push(() => makeCharacter(
  40000. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40001. {
  40002. front: {
  40003. height: math.unit(2, "meters"),
  40004. weight: math.unit(100, "kg"),
  40005. name: "Front",
  40006. image: {
  40007. source: "./media/characters/shiron/front.svg",
  40008. extra: 2103/1985,
  40009. bottom: 98/2201
  40010. }
  40011. },
  40012. back: {
  40013. height: math.unit(2, "meters"),
  40014. weight: math.unit(100, "kg"),
  40015. name: "Back",
  40016. image: {
  40017. source: "./media/characters/shiron/back.svg",
  40018. extra: 2110/2015,
  40019. bottom: 89/2199
  40020. }
  40021. },
  40022. hand: {
  40023. height: math.unit(0.96, "feet"),
  40024. name: "Hand",
  40025. image: {
  40026. source: "./media/characters/shiron/hand.svg"
  40027. }
  40028. },
  40029. foot: {
  40030. height: math.unit(1.464, "feet"),
  40031. name: "Foot",
  40032. image: {
  40033. source: "./media/characters/shiron/foot.svg"
  40034. }
  40035. },
  40036. },
  40037. [
  40038. {
  40039. name: "Normal",
  40040. height: math.unit(2, "meters")
  40041. },
  40042. {
  40043. name: "Macro",
  40044. height: math.unit(500, "meters"),
  40045. default: true
  40046. },
  40047. {
  40048. name: "Megamacro",
  40049. height: math.unit(20, "km")
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40055. {
  40056. front: {
  40057. height: math.unit(6, "feet"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/sam/front.svg",
  40061. extra: 849/826,
  40062. bottom: 19/868
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Normal",
  40069. height: math.unit(6, "feet"),
  40070. default: true
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40076. {
  40077. front: {
  40078. height: math.unit(8 + 4/12, "feet"),
  40079. weight: math.unit(122, "kg"),
  40080. name: "Front",
  40081. image: {
  40082. source: "./media/characters/namori-kurogawa/front.svg",
  40083. extra: 1894/1576,
  40084. bottom: 34/1928
  40085. }
  40086. },
  40087. },
  40088. [
  40089. {
  40090. name: "Normal",
  40091. height: math.unit(8 + 4/12, "feet"),
  40092. default: true
  40093. },
  40094. ]
  40095. ))
  40096. characterMakers.push(() => makeCharacter(
  40097. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40098. {
  40099. front: {
  40100. height: math.unit(9, "feet"),
  40101. weight: math.unit(621, "lb"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/unmru/front.svg",
  40105. extra: 1853/1747,
  40106. bottom: 73/1926
  40107. }
  40108. },
  40109. side: {
  40110. height: math.unit(9, "feet"),
  40111. weight: math.unit(621, "lb"),
  40112. name: "Side",
  40113. image: {
  40114. source: "./media/characters/unmru/side.svg",
  40115. extra: 1781/1671,
  40116. bottom: 127/1908
  40117. }
  40118. },
  40119. back: {
  40120. height: math.unit(9, "feet"),
  40121. weight: math.unit(621, "lb"),
  40122. name: "Back",
  40123. image: {
  40124. source: "./media/characters/unmru/back.svg",
  40125. extra: 1894/1765,
  40126. bottom: 75/1969
  40127. }
  40128. },
  40129. dick: {
  40130. height: math.unit(3, "feet"),
  40131. weight: math.unit(35, "lb"),
  40132. name: "Dick",
  40133. image: {
  40134. source: "./media/characters/unmru/dick.svg"
  40135. }
  40136. },
  40137. },
  40138. [
  40139. {
  40140. name: "Normal",
  40141. height: math.unit(9, "feet")
  40142. },
  40143. {
  40144. name: "Natural",
  40145. height: math.unit(27, "feet"),
  40146. default: true
  40147. },
  40148. {
  40149. name: "Giant",
  40150. height: math.unit(90, "feet")
  40151. },
  40152. {
  40153. name: "Kaiju",
  40154. height: math.unit(270, "feet")
  40155. },
  40156. {
  40157. name: "Macro",
  40158. height: math.unit(900, "feet")
  40159. },
  40160. {
  40161. name: "Macro+",
  40162. height: math.unit(2700, "feet")
  40163. },
  40164. {
  40165. name: "Megamacro",
  40166. height: math.unit(9000, "feet")
  40167. },
  40168. {
  40169. name: "City-Crushing",
  40170. height: math.unit(27000, "feet")
  40171. },
  40172. {
  40173. name: "Mountain-Mashing",
  40174. height: math.unit(90000, "feet")
  40175. },
  40176. {
  40177. name: "Earth-Eclipsing",
  40178. height: math.unit(2.7e8, "feet")
  40179. },
  40180. {
  40181. name: "Sol-Swallowing",
  40182. height: math.unit(9e10, "feet")
  40183. },
  40184. {
  40185. name: "Majoris-Munching",
  40186. height: math.unit(2.7e13, "feet")
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40192. {
  40193. front: {
  40194. height: math.unit(1, "inch"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/squeaks-mouse/front.svg",
  40198. extra: 352/308,
  40199. bottom: 25/377
  40200. }
  40201. },
  40202. },
  40203. [
  40204. {
  40205. name: "Micro",
  40206. height: math.unit(1, "inch"),
  40207. default: true
  40208. },
  40209. ]
  40210. ))
  40211. characterMakers.push(() => makeCharacter(
  40212. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40213. {
  40214. side: {
  40215. height: math.unit(35, "feet"),
  40216. name: "Side",
  40217. image: {
  40218. source: "./media/characters/sayko/side.svg",
  40219. extra: 1697/1021,
  40220. bottom: 82/1779
  40221. }
  40222. },
  40223. head: {
  40224. height: math.unit(16, "feet"),
  40225. name: "Head",
  40226. image: {
  40227. source: "./media/characters/sayko/head.svg"
  40228. }
  40229. },
  40230. forepaw: {
  40231. height: math.unit(7.85, "feet"),
  40232. name: "Forepaw",
  40233. image: {
  40234. source: "./media/characters/sayko/forepaw.svg"
  40235. }
  40236. },
  40237. hindpaw: {
  40238. height: math.unit(8.8, "feet"),
  40239. name: "Hindpaw",
  40240. image: {
  40241. source: "./media/characters/sayko/hindpaw.svg"
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(35, "feet"),
  40249. default: true
  40250. },
  40251. {
  40252. name: "Colossus",
  40253. height: math.unit(100, "meters")
  40254. },
  40255. {
  40256. name: "\"Small\" Deity",
  40257. height: math.unit(1, "km")
  40258. },
  40259. {
  40260. name: "\"Large\" Deity",
  40261. height: math.unit(15, "km")
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(6, "feet"),
  40270. weight: math.unit(250, "lb"),
  40271. name: "Front",
  40272. image: {
  40273. source: "./media/characters/mukiro/front.svg",
  40274. extra: 1368/1310,
  40275. bottom: 34/1402
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Normal",
  40282. height: math.unit(6, "feet"),
  40283. default: true
  40284. },
  40285. ]
  40286. ))
  40287. characterMakers.push(() => makeCharacter(
  40288. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40289. {
  40290. front: {
  40291. height: math.unit(12 + 4/12, "feet"),
  40292. name: "Front",
  40293. image: {
  40294. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40295. extra: 1346/1311,
  40296. bottom: 65/1411
  40297. }
  40298. },
  40299. },
  40300. [
  40301. {
  40302. name: "Base",
  40303. height: math.unit(12 + 4/12, "feet"),
  40304. default: true
  40305. },
  40306. {
  40307. name: "Macro",
  40308. height: math.unit(150, "feet")
  40309. },
  40310. {
  40311. name: "Mega",
  40312. height: math.unit(2, "miles")
  40313. },
  40314. {
  40315. name: "Demi God",
  40316. height: math.unit(4, "AU")
  40317. },
  40318. {
  40319. name: "God Size",
  40320. height: math.unit(1, "universe")
  40321. },
  40322. ]
  40323. ))
  40324. characterMakers.push(() => makeCharacter(
  40325. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40326. {
  40327. front: {
  40328. height: math.unit(3 + 3/12, "feet"),
  40329. weight: math.unit(88, "lb"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/trey/front.svg",
  40333. extra: 1815/1509,
  40334. bottom: 60/1875
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Normal",
  40341. height: math.unit(3 + 3/12, "feet"),
  40342. default: true
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40348. {
  40349. front: {
  40350. height: math.unit(4, "meters"),
  40351. name: "Front",
  40352. image: {
  40353. source: "./media/characters/adelonda/front.svg",
  40354. extra: 1077/982,
  40355. bottom: 39/1116
  40356. }
  40357. },
  40358. back: {
  40359. height: math.unit(4, "meters"),
  40360. name: "Back",
  40361. image: {
  40362. source: "./media/characters/adelonda/back.svg",
  40363. extra: 1105/1003,
  40364. bottom: 25/1130
  40365. }
  40366. },
  40367. feral: {
  40368. height: math.unit(40/1.5, "meters"),
  40369. name: "Feral",
  40370. image: {
  40371. source: "./media/characters/adelonda/feral.svg",
  40372. extra: 597/271,
  40373. bottom: 387/984
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Normal",
  40380. height: math.unit(4, "meters"),
  40381. default: true
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(8 + 4/12, "feet"),
  40390. weight: math.unit(670, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/acadiel/front.svg",
  40394. extra: 1901/1595,
  40395. bottom: 142/2043
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(8 + 4/12, "feet"),
  40403. default: true
  40404. },
  40405. {
  40406. name: "Macro",
  40407. height: math.unit(200, "feet")
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(6 + 2/12, "feet"),
  40416. weight: math.unit(185, "lb"),
  40417. name: "Front",
  40418. image: {
  40419. source: "./media/characters/kayne-ein/front.svg",
  40420. extra: 1780/1560,
  40421. bottom: 81/1861
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(6 + 2/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Transformation Stage",
  40433. height: math.unit(15, "feet")
  40434. },
  40435. {
  40436. name: "Macro",
  40437. height: math.unit(150, "feet")
  40438. },
  40439. {
  40440. name: "Earth's Shadow",
  40441. height: math.unit(6200, "miles")
  40442. },
  40443. {
  40444. name: "Universal Demon",
  40445. height: math.unit(28e9, "parsecs")
  40446. },
  40447. {
  40448. name: "Multiverse God",
  40449. height: math.unit(3, "multiverses")
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(5 + 5/12, "feet"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/fawn/front.svg",
  40461. extra: 1873/1731,
  40462. bottom: 95/1968
  40463. }
  40464. },
  40465. back: {
  40466. height: math.unit(5 + 5/12, "feet"),
  40467. name: "Back",
  40468. image: {
  40469. source: "./media/characters/fawn/back.svg",
  40470. extra: 1813/1700,
  40471. bottom: 14/1827
  40472. }
  40473. },
  40474. hoof: {
  40475. height: math.unit(1.45, "feet"),
  40476. name: "Hoof",
  40477. image: {
  40478. source: "./media/characters/fawn/hoof.svg"
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Normal",
  40485. height: math.unit(5 + 5/12, "feet"),
  40486. default: true
  40487. },
  40488. ]
  40489. ))
  40490. characterMakers.push(() => makeCharacter(
  40491. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40492. {
  40493. front: {
  40494. height: math.unit(2 + 5/12, "feet"),
  40495. name: "Front",
  40496. image: {
  40497. source: "./media/characters/orion/front.svg",
  40498. extra: 1366/1304,
  40499. bottom: 43/1409
  40500. }
  40501. },
  40502. paw: {
  40503. height: math.unit(0.52, "feet"),
  40504. name: "Paw",
  40505. image: {
  40506. source: "./media/characters/orion/paw.svg"
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Normal",
  40513. height: math.unit(2 + 5/12, "feet"),
  40514. default: true
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(5 + 10/12, "feet"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/vera/front.svg",
  40526. extra: 1680/1575,
  40527. bottom: 49/1729
  40528. }
  40529. },
  40530. back: {
  40531. height: math.unit(5 + 10/12, "feet"),
  40532. name: "Back",
  40533. image: {
  40534. source: "./media/characters/vera/back.svg",
  40535. extra: 1700/1588,
  40536. bottom: 18/1718
  40537. }
  40538. },
  40539. arcanine: {
  40540. height: math.unit(6 + 8/12, "feet"),
  40541. name: "Arcanine",
  40542. image: {
  40543. source: "./media/characters/vera/arcanine.svg",
  40544. extra: 1590/1511,
  40545. bottom: 71/1661
  40546. }
  40547. },
  40548. maw: {
  40549. height: math.unit(0.82, "feet"),
  40550. name: "Maw",
  40551. image: {
  40552. source: "./media/characters/vera/maw.svg"
  40553. }
  40554. },
  40555. mawArcanine: {
  40556. height: math.unit(0.97, "feet"),
  40557. name: "Maw (Arcanine)",
  40558. image: {
  40559. source: "./media/characters/vera/maw-arcanine.svg"
  40560. }
  40561. },
  40562. paw: {
  40563. height: math.unit(0.75, "feet"),
  40564. name: "Paw",
  40565. image: {
  40566. source: "./media/characters/vera/paw.svg"
  40567. }
  40568. },
  40569. pawprint: {
  40570. height: math.unit(0.52, "feet"),
  40571. name: "Pawprint",
  40572. image: {
  40573. source: "./media/characters/vera/pawprint.svg"
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Normal",
  40580. height: math.unit(5 + 10/12, "feet"),
  40581. default: true
  40582. },
  40583. {
  40584. name: "Macro",
  40585. height: math.unit(75, "feet")
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40591. {
  40592. front: {
  40593. height: math.unit(4, "feet"),
  40594. weight: math.unit(40, "lb"),
  40595. name: "Front",
  40596. image: {
  40597. source: "./media/characters/orvan-rabbit/front.svg",
  40598. extra: 1896/1642,
  40599. bottom: 29/1925
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Normal",
  40606. height: math.unit(4, "feet"),
  40607. default: true
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(6, "feet"),
  40616. weight: math.unit(168, "lb"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/lisa/front.svg",
  40620. extra: 2065/1867,
  40621. bottom: 46/2111
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(6, "feet"),
  40626. weight: math.unit(168, "lb"),
  40627. name: "Back",
  40628. image: {
  40629. source: "./media/characters/lisa/back.svg",
  40630. extra: 1982/1838,
  40631. bottom: 29/2011
  40632. }
  40633. },
  40634. maw: {
  40635. height: math.unit(0.81, "feet"),
  40636. name: "Maw",
  40637. image: {
  40638. source: "./media/characters/lisa/maw.svg"
  40639. }
  40640. },
  40641. paw: {
  40642. height: math.unit(0.9, "feet"),
  40643. name: "Paw",
  40644. image: {
  40645. source: "./media/characters/lisa/paw.svg"
  40646. }
  40647. },
  40648. caribousune: {
  40649. height: math.unit(7 + 2/12, "feet"),
  40650. weight: math.unit(268, "lb"),
  40651. name: "Caribousune",
  40652. image: {
  40653. source: "./media/characters/lisa/caribousune.svg",
  40654. extra: 1843/1633,
  40655. bottom: 29/1872
  40656. }
  40657. },
  40658. frontCaribousune: {
  40659. height: math.unit(7 + 2/12, "feet"),
  40660. weight: math.unit(268, "lb"),
  40661. name: "Front (Caribousune)",
  40662. image: {
  40663. source: "./media/characters/lisa/front-caribousune.svg",
  40664. extra: 1818/1638,
  40665. bottom: 52/1870
  40666. }
  40667. },
  40668. sideCaribousune: {
  40669. height: math.unit(7 + 2/12, "feet"),
  40670. weight: math.unit(268, "lb"),
  40671. name: "Side (Caribousune)",
  40672. image: {
  40673. source: "./media/characters/lisa/side-caribousune.svg",
  40674. extra: 1851/1635,
  40675. bottom: 16/1867
  40676. }
  40677. },
  40678. backCaribousune: {
  40679. height: math.unit(7 + 2/12, "feet"),
  40680. weight: math.unit(268, "lb"),
  40681. name: "Back (Caribousune)",
  40682. image: {
  40683. source: "./media/characters/lisa/back-caribousune.svg",
  40684. extra: 1801/1604,
  40685. bottom: 44/1845
  40686. }
  40687. },
  40688. caribou: {
  40689. height: math.unit(7 + 2/12, "feet"),
  40690. weight: math.unit(268, "lb"),
  40691. name: "Caribou",
  40692. image: {
  40693. source: "./media/characters/lisa/caribou.svg",
  40694. extra: 1843/1633,
  40695. bottom: 29/1872
  40696. }
  40697. },
  40698. frontCaribou: {
  40699. height: math.unit(7 + 2/12, "feet"),
  40700. weight: math.unit(268, "lb"),
  40701. name: "Front (Caribou)",
  40702. image: {
  40703. source: "./media/characters/lisa/front-caribou.svg",
  40704. extra: 1818/1638,
  40705. bottom: 52/1870
  40706. }
  40707. },
  40708. sideCaribou: {
  40709. height: math.unit(7 + 2/12, "feet"),
  40710. weight: math.unit(268, "lb"),
  40711. name: "Side (Caribou)",
  40712. image: {
  40713. source: "./media/characters/lisa/side-caribou.svg",
  40714. extra: 1851/1635,
  40715. bottom: 16/1867
  40716. }
  40717. },
  40718. backCaribou: {
  40719. height: math.unit(7 + 2/12, "feet"),
  40720. weight: math.unit(268, "lb"),
  40721. name: "Back (Caribou)",
  40722. image: {
  40723. source: "./media/characters/lisa/back-caribou.svg",
  40724. extra: 1801/1604,
  40725. bottom: 44/1845
  40726. }
  40727. },
  40728. mawCaribou: {
  40729. height: math.unit(1.45, "feet"),
  40730. name: "Maw (Caribou)",
  40731. image: {
  40732. source: "./media/characters/lisa/maw-caribou.svg"
  40733. }
  40734. },
  40735. mawCaribousune: {
  40736. height: math.unit(1.45, "feet"),
  40737. name: "Maw (Caribousune)",
  40738. image: {
  40739. source: "./media/characters/lisa/maw-caribousune.svg"
  40740. }
  40741. },
  40742. pawCaribousune: {
  40743. height: math.unit(1.61, "feet"),
  40744. name: "Paw (Caribou)",
  40745. image: {
  40746. source: "./media/characters/lisa/paw-caribousune.svg"
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Normal",
  40753. height: math.unit(6, "feet")
  40754. },
  40755. {
  40756. name: "God Size",
  40757. height: math.unit(72, "feet"),
  40758. default: true
  40759. },
  40760. {
  40761. name: "Towering",
  40762. height: math.unit(288, "feet")
  40763. },
  40764. {
  40765. name: "City Size",
  40766. height: math.unit(48384, "feet")
  40767. },
  40768. {
  40769. name: "Continental",
  40770. height: math.unit(4200, "miles")
  40771. },
  40772. {
  40773. name: "Planet Eater",
  40774. height: math.unit(42, "earths")
  40775. },
  40776. {
  40777. name: "Star Swallower",
  40778. height: math.unit(42, "solarradii")
  40779. },
  40780. {
  40781. name: "System Swallower",
  40782. height: math.unit(84000, "AU")
  40783. },
  40784. {
  40785. name: "Galaxy Gobbler",
  40786. height: math.unit(42, "galaxies")
  40787. },
  40788. {
  40789. name: "Universe Devourer",
  40790. height: math.unit(42, "universes")
  40791. },
  40792. {
  40793. name: "Multiverse Muncher",
  40794. height: math.unit(42, "multiverses")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(36, "feet"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/shadow-rat/front.svg",
  40806. extra: 1845/1758,
  40807. bottom: 83/1928
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Macro",
  40814. height: math.unit(36, "feet"),
  40815. default: true
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40821. {
  40822. side: {
  40823. height: math.unit(8, "feet"),
  40824. weight: math.unit(2630, "lb"),
  40825. name: "Side",
  40826. image: {
  40827. source: "./media/characters/torallia/side.svg",
  40828. extra: 2164/2021,
  40829. bottom: 371/2535
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Mortal Interaction",
  40836. height: math.unit(8, "feet")
  40837. },
  40838. {
  40839. name: "Natural",
  40840. height: math.unit(24, "feet"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Giant",
  40845. height: math.unit(80, "feet")
  40846. },
  40847. {
  40848. name: "Kaiju",
  40849. height: math.unit(240, "feet")
  40850. },
  40851. {
  40852. name: "Macro",
  40853. height: math.unit(800, "feet")
  40854. },
  40855. {
  40856. name: "Macro+",
  40857. height: math.unit(2400, "feet")
  40858. },
  40859. {
  40860. name: "Macro++",
  40861. height: math.unit(8000, "feet")
  40862. },
  40863. {
  40864. name: "City-Crushing",
  40865. height: math.unit(24000, "feet")
  40866. },
  40867. {
  40868. name: "Mountain-Mashing",
  40869. height: math.unit(80000, "feet")
  40870. },
  40871. {
  40872. name: "District Demolisher",
  40873. height: math.unit(240000, "feet")
  40874. },
  40875. {
  40876. name: "Tri-County Terror",
  40877. height: math.unit(800000, "feet")
  40878. },
  40879. {
  40880. name: "State Smasher",
  40881. height: math.unit(2.4e6, "feet")
  40882. },
  40883. {
  40884. name: "Nation Nemesis",
  40885. height: math.unit(8e6, "feet")
  40886. },
  40887. {
  40888. name: "Continent Cracker",
  40889. height: math.unit(2.4e7, "feet")
  40890. },
  40891. {
  40892. name: "Planet-Pillaging",
  40893. height: math.unit(8e7, "feet")
  40894. },
  40895. {
  40896. name: "Earth-Eclipsing",
  40897. height: math.unit(2.4e8, "feet")
  40898. },
  40899. {
  40900. name: "Jovian-Jostling",
  40901. height: math.unit(8e8, "feet")
  40902. },
  40903. {
  40904. name: "Gas Giant Gulper",
  40905. height: math.unit(2.4e9, "feet")
  40906. },
  40907. {
  40908. name: "Astral Annihilator",
  40909. height: math.unit(8e9, "feet")
  40910. },
  40911. {
  40912. name: "Celestial Conqueror",
  40913. height: math.unit(2.4e10, "feet")
  40914. },
  40915. {
  40916. name: "Sol-Swallowing",
  40917. height: math.unit(8e10, "feet")
  40918. },
  40919. {
  40920. name: "Hunter of the Heavens",
  40921. height: math.unit(2.4e13, "feet")
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(6 + 8/12, "feet"),
  40930. weight: math.unit(250, "kilograms"),
  40931. volume: math.unit(28, "liters"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/rebecca-pawlson/front.svg",
  40935. extra: 1737/1596,
  40936. bottom: 107/1844
  40937. }
  40938. },
  40939. back: {
  40940. height: math.unit(6 + 8/12, "feet"),
  40941. weight: math.unit(250, "kilograms"),
  40942. volume: math.unit(28, "liters"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/rebecca-pawlson/back.svg",
  40946. extra: 1702/1523,
  40947. bottom: 86/1788
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(6 + 8/12, "feet")
  40955. },
  40956. {
  40957. name: "Mini Macro",
  40958. height: math.unit(10, "feet"),
  40959. default: true
  40960. },
  40961. {
  40962. name: "Macro",
  40963. height: math.unit(100, "feet")
  40964. },
  40965. {
  40966. name: "Mega Macro",
  40967. height: math.unit(2500, "feet")
  40968. },
  40969. {
  40970. name: "Giga Macro",
  40971. height: math.unit(50, "miles")
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(7 + 6/12, "feet"),
  40980. weight: math.unit(600, "lb"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/moxie-nova/front.svg",
  40984. extra: 1734/1652,
  40985. bottom: 41/1775
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Normal",
  40992. height: math.unit(7 + 6/12, "feet"),
  40993. default: true
  40994. },
  40995. ]
  40996. ))
  40997. characterMakers.push(() => makeCharacter(
  40998. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40999. {
  41000. goat: {
  41001. height: math.unit(4, "feet"),
  41002. weight: math.unit(180, "lb"),
  41003. name: "Goat",
  41004. image: {
  41005. source: "./media/characters/tiffany/goat.svg",
  41006. extra: 1845/1595,
  41007. bottom: 106/1951
  41008. }
  41009. },
  41010. front: {
  41011. height: math.unit(5, "feet"),
  41012. weight: math.unit(150, "lb"),
  41013. name: "Foxcoon",
  41014. image: {
  41015. source: "./media/characters/tiffany/foxcoon.svg",
  41016. extra: 1941/1845,
  41017. bottom: 58/1999
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(5, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(8, "feet"),
  41034. weight: math.unit(300, "lb"),
  41035. name: "Front",
  41036. image: {
  41037. source: "./media/characters/raxinath/front.svg",
  41038. extra: 1407/1309,
  41039. bottom: 39/1446
  41040. }
  41041. },
  41042. back: {
  41043. height: math.unit(8, "feet"),
  41044. weight: math.unit(300, "lb"),
  41045. name: "Back",
  41046. image: {
  41047. source: "./media/characters/raxinath/back.svg",
  41048. extra: 1405/1315,
  41049. bottom: 9/1414
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Speck",
  41056. height: math.unit(0.5, "nm")
  41057. },
  41058. {
  41059. name: "Micro",
  41060. height: math.unit(3, "inches")
  41061. },
  41062. {
  41063. name: "Kobold",
  41064. height: math.unit(3, "feet")
  41065. },
  41066. {
  41067. name: "Normal",
  41068. height: math.unit(8, "feet"),
  41069. default: true
  41070. },
  41071. {
  41072. name: "Giant",
  41073. height: math.unit(50, "feet")
  41074. },
  41075. {
  41076. name: "Macro",
  41077. height: math.unit(1000, "feet")
  41078. },
  41079. {
  41080. name: "Megamacro",
  41081. height: math.unit(1, "mile")
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(10, "feet"),
  41090. weight: math.unit(1442, "lb"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/mal-dragon/front.svg",
  41094. extra: 1515/1444,
  41095. bottom: 113/1628
  41096. }
  41097. },
  41098. back: {
  41099. height: math.unit(10, "feet"),
  41100. weight: math.unit(1442, "lb"),
  41101. name: "Back",
  41102. image: {
  41103. source: "./media/characters/mal-dragon/back.svg",
  41104. extra: 1527/1434,
  41105. bottom: 25/1552
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Mortal Interaction",
  41112. height: math.unit(10, "feet"),
  41113. default: true
  41114. },
  41115. {
  41116. name: "Large",
  41117. height: math.unit(30, "feet")
  41118. },
  41119. {
  41120. name: "Kaiju",
  41121. height: math.unit(300, "feet")
  41122. },
  41123. {
  41124. name: "Megamacro",
  41125. height: math.unit(10000, "feet")
  41126. },
  41127. {
  41128. name: "Continent Cracker",
  41129. height: math.unit(30000000, "feet")
  41130. },
  41131. {
  41132. name: "Sol-Swallowing",
  41133. height: math.unit(1e11, "feet")
  41134. },
  41135. {
  41136. name: "Light Universal",
  41137. height: math.unit(5, "universes")
  41138. },
  41139. {
  41140. name: "Universe Atoms",
  41141. height: math.unit(1.829e9, "universes")
  41142. },
  41143. {
  41144. name: "Light Multiversal",
  41145. height: math.unit(5, "multiverses")
  41146. },
  41147. {
  41148. name: "Multiverse Atoms",
  41149. height: math.unit(1.829e9, "multiverses")
  41150. },
  41151. {
  41152. name: "Fabric of Time",
  41153. height: math.unit(1e262, "multiverses")
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(9, "feet"),
  41162. weight: math.unit(1050, "lb"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/tabitha/front.svg",
  41166. extra: 2083/1994,
  41167. bottom: 68/2151
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Baseline",
  41174. height: math.unit(9, "feet"),
  41175. default: true
  41176. },
  41177. {
  41178. name: "Giant",
  41179. height: math.unit(90, "feet")
  41180. },
  41181. {
  41182. name: "Macro",
  41183. height: math.unit(900, "feet")
  41184. },
  41185. {
  41186. name: "Megamacro",
  41187. height: math.unit(9000, "feet")
  41188. },
  41189. {
  41190. name: "City-Crushing",
  41191. height: math.unit(27000, "feet")
  41192. },
  41193. {
  41194. name: "Mountain-Mashing",
  41195. height: math.unit(90000, "feet")
  41196. },
  41197. {
  41198. name: "Nation Nemesis",
  41199. height: math.unit(9e6, "feet")
  41200. },
  41201. {
  41202. name: "Continent Cracker",
  41203. height: math.unit(27e6, "feet")
  41204. },
  41205. {
  41206. name: "Earth-Eclipsing",
  41207. height: math.unit(2.7e8, "feet")
  41208. },
  41209. {
  41210. name: "Gas Giant Gulper",
  41211. height: math.unit(2.7e9, "feet")
  41212. },
  41213. {
  41214. name: "Sol-Swallowing",
  41215. height: math.unit(9e10, "feet")
  41216. },
  41217. {
  41218. name: "Galaxy Gulper",
  41219. height: math.unit(9, "galaxies")
  41220. },
  41221. {
  41222. name: "Cosmos Churner",
  41223. height: math.unit(9, "universes")
  41224. },
  41225. ]
  41226. ))
  41227. characterMakers.push(() => makeCharacter(
  41228. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41229. {
  41230. front: {
  41231. height: math.unit(160, "cm"),
  41232. weight: math.unit(55, "kg"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/tow/front.svg",
  41236. extra: 1751/1722,
  41237. bottom: 74/1825
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Norm",
  41244. height: math.unit(160, "cm")
  41245. },
  41246. {
  41247. name: "Casual",
  41248. height: math.unit(3200, "m"),
  41249. default: true
  41250. },
  41251. {
  41252. name: "Show-Off",
  41253. height: math.unit(160, "km")
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41259. {
  41260. front: {
  41261. height: math.unit(7 + 11/12, "feet"),
  41262. weight: math.unit(342.8, "lb"),
  41263. name: "Front",
  41264. image: {
  41265. source: "./media/characters/vivian-orca-dragon/front.svg",
  41266. extra: 1890/1865,
  41267. bottom: 28/1918
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Micro",
  41274. height: math.unit(5, "inches")
  41275. },
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(7 + 11/12, "feet"),
  41279. default: true
  41280. },
  41281. {
  41282. name: "Macro",
  41283. height: math.unit(395 + 7/12, "feet")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41289. {
  41290. side: {
  41291. height: math.unit(10, "feet"),
  41292. weight: math.unit(1442, "lb"),
  41293. name: "Side",
  41294. image: {
  41295. source: "./media/characters/lotherakon/side.svg",
  41296. extra: 1604/1497,
  41297. bottom: 89/1693
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Mortal Interaction",
  41304. height: math.unit(10, "feet")
  41305. },
  41306. {
  41307. name: "Large",
  41308. height: math.unit(30, "feet"),
  41309. default: true
  41310. },
  41311. {
  41312. name: "Giant",
  41313. height: math.unit(100, "feet")
  41314. },
  41315. {
  41316. name: "Kaiju",
  41317. height: math.unit(300, "feet")
  41318. },
  41319. {
  41320. name: "Macro",
  41321. height: math.unit(1000, "feet")
  41322. },
  41323. {
  41324. name: "Macro+",
  41325. height: math.unit(3000, "feet")
  41326. },
  41327. {
  41328. name: "Megamacro",
  41329. height: math.unit(10000, "feet")
  41330. },
  41331. {
  41332. name: "City-Crushing",
  41333. height: math.unit(30000, "feet")
  41334. },
  41335. {
  41336. name: "Continent Cracker",
  41337. height: math.unit(30e6, "feet")
  41338. },
  41339. {
  41340. name: "Earth Eclipsing",
  41341. height: math.unit(3e8, "feet")
  41342. },
  41343. {
  41344. name: "Gas Giant Gulper",
  41345. height: math.unit(3e9, "feet")
  41346. },
  41347. {
  41348. name: "Sol-Swallowing",
  41349. height: math.unit(1e11, "feet")
  41350. },
  41351. {
  41352. name: "System Swallower",
  41353. height: math.unit(3e14, "feet")
  41354. },
  41355. {
  41356. name: "Galaxy Gulper",
  41357. height: math.unit(10, "galaxies")
  41358. },
  41359. {
  41360. name: "Light Universal",
  41361. height: math.unit(5, "universes")
  41362. },
  41363. {
  41364. name: "Universe Palm",
  41365. height: math.unit(20, "universes")
  41366. },
  41367. {
  41368. name: "Light Multiversal",
  41369. height: math.unit(5, "multiverses")
  41370. },
  41371. {
  41372. name: "Multiverse Palm",
  41373. height: math.unit(20, "multiverses")
  41374. },
  41375. {
  41376. name: "Inferno Incarnate",
  41377. height: math.unit(1e7, "multiverses")
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41383. {
  41384. front: {
  41385. height: math.unit(8, "feet"),
  41386. weight: math.unit(1200, "lb"),
  41387. name: "Front",
  41388. image: {
  41389. source: "./media/characters/malithee/front.svg",
  41390. extra: 1675/1640,
  41391. bottom: 162/1837
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Mortal Interaction",
  41398. height: math.unit(8, "feet"),
  41399. default: true
  41400. },
  41401. {
  41402. name: "Large",
  41403. height: math.unit(24, "feet")
  41404. },
  41405. {
  41406. name: "Kaiju",
  41407. height: math.unit(240, "feet")
  41408. },
  41409. {
  41410. name: "Megamacro",
  41411. height: math.unit(8000, "feet")
  41412. },
  41413. {
  41414. name: "Continent Cracker",
  41415. height: math.unit(24e6, "feet")
  41416. },
  41417. {
  41418. name: "Earth-Eclipsing",
  41419. height: math.unit(2.4e8, "feet")
  41420. },
  41421. {
  41422. name: "Sol-Swallowing",
  41423. height: math.unit(8e10, "feet")
  41424. },
  41425. {
  41426. name: "Galaxy Gulper",
  41427. height: math.unit(8, "galaxies")
  41428. },
  41429. {
  41430. name: "Light Universal",
  41431. height: math.unit(4, "universes")
  41432. },
  41433. {
  41434. name: "Universe Atoms",
  41435. height: math.unit(1.829e9, "universes")
  41436. },
  41437. {
  41438. name: "Light Multiversal",
  41439. height: math.unit(4, "multiverses")
  41440. },
  41441. {
  41442. name: "Multiverse Atoms",
  41443. height: math.unit(1.829e9, "multiverses")
  41444. },
  41445. {
  41446. name: "Nigh-Omnipresence",
  41447. height: math.unit(8e261, "multiverses")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(10, "feet"),
  41456. weight: math.unit(1500, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/miles-thestia/front.svg",
  41460. extra: 1812/1727,
  41461. bottom: 86/1898
  41462. }
  41463. },
  41464. back: {
  41465. height: math.unit(10, "feet"),
  41466. weight: math.unit(1500, "lb"),
  41467. name: "Back",
  41468. image: {
  41469. source: "./media/characters/miles-thestia/back.svg",
  41470. extra: 1799/1690,
  41471. bottom: 47/1846
  41472. }
  41473. },
  41474. frontNsfw: {
  41475. height: math.unit(10, "feet"),
  41476. weight: math.unit(1500, "lb"),
  41477. name: "Front (NSFW)",
  41478. image: {
  41479. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41480. extra: 1812/1727,
  41481. bottom: 86/1898
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Mini-Macro",
  41488. height: math.unit(10, "feet"),
  41489. default: true
  41490. },
  41491. ]
  41492. ))
  41493. characterMakers.push(() => makeCharacter(
  41494. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41495. {
  41496. front: {
  41497. height: math.unit(25, "feet"),
  41498. name: "Front",
  41499. image: {
  41500. source: "./media/characters/titan-s-wulf/front.svg",
  41501. extra: 1560/1484,
  41502. bottom: 76/1636
  41503. }
  41504. },
  41505. },
  41506. [
  41507. {
  41508. name: "Smallest",
  41509. height: math.unit(25, "feet"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Normal",
  41514. height: math.unit(200, "feet")
  41515. },
  41516. {
  41517. name: "Macro",
  41518. height: math.unit(200000, "feet")
  41519. },
  41520. {
  41521. name: "Multiversal Original",
  41522. height: math.unit(10000, "multiverses")
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(8, "feet"),
  41531. weight: math.unit(553, "lb"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/tawendeh/front.svg",
  41535. extra: 2365/2268,
  41536. bottom: 83/2448
  41537. }
  41538. },
  41539. frontClothed: {
  41540. height: math.unit(8, "feet"),
  41541. weight: math.unit(553, "lb"),
  41542. name: "Front (Clothed)",
  41543. image: {
  41544. source: "./media/characters/tawendeh/front-clothed.svg",
  41545. extra: 2365/2268,
  41546. bottom: 83/2448
  41547. }
  41548. },
  41549. back: {
  41550. height: math.unit(8, "feet"),
  41551. weight: math.unit(553, "lb"),
  41552. name: "Back",
  41553. image: {
  41554. source: "./media/characters/tawendeh/back.svg",
  41555. extra: 2397/2294,
  41556. bottom: 42/2439
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Mortal Interaction",
  41563. height: math.unit(8, "feet"),
  41564. default: true
  41565. },
  41566. {
  41567. name: "Giant",
  41568. height: math.unit(80, "feet")
  41569. },
  41570. {
  41571. name: "Macro",
  41572. height: math.unit(800, "feet")
  41573. },
  41574. {
  41575. name: "Megamacro",
  41576. height: math.unit(8000, "feet")
  41577. },
  41578. {
  41579. name: "City-Crushing",
  41580. height: math.unit(24000, "feet")
  41581. },
  41582. {
  41583. name: "Mountain-Mashing",
  41584. height: math.unit(80000, "feet")
  41585. },
  41586. {
  41587. name: "Nation Nemesis",
  41588. height: math.unit(8e6, "feet")
  41589. },
  41590. {
  41591. name: "Continent Cracker",
  41592. height: math.unit(24e6, "feet")
  41593. },
  41594. {
  41595. name: "Earth-Eclipsing",
  41596. height: math.unit(2.4e8, "feet")
  41597. },
  41598. {
  41599. name: "Gas Giant Gulper",
  41600. height: math.unit(2.4e9, "feet")
  41601. },
  41602. {
  41603. name: "Sol-Swallowing",
  41604. height: math.unit(8e10, "feet")
  41605. },
  41606. {
  41607. name: "Galaxy Gulper",
  41608. height: math.unit(8, "galaxies")
  41609. },
  41610. {
  41611. name: "Cosmos Churner",
  41612. height: math.unit(8, "universes")
  41613. },
  41614. {
  41615. name: "Omnipotent Otter",
  41616. height: math.unit(80, "universes")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(2.6, "meters"),
  41625. weight: math.unit(900, "kg"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/neesha/front.svg",
  41629. extra: 1803/1653,
  41630. bottom: 128/1931
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Normal",
  41637. height: math.unit(2.6, "meters"),
  41638. default: true
  41639. },
  41640. {
  41641. name: "Macro",
  41642. height: math.unit(50, "meters")
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(5, "feet"),
  41651. weight: math.unit(185, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/kyera/front.svg",
  41655. extra: 1875/1790,
  41656. bottom: 96/1971
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(5, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(7 + 6/12, "feet"),
  41673. weight: math.unit(540, "lb"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/yuko/front.svg",
  41677. extra: 1282/1222,
  41678. bottom: 101/1383
  41679. }
  41680. },
  41681. frontClothed: {
  41682. height: math.unit(7 + 6/12, "feet"),
  41683. weight: math.unit(540, "lb"),
  41684. name: "Front (Clothed)",
  41685. image: {
  41686. source: "./media/characters/yuko/front-clothed.svg",
  41687. extra: 1282/1222,
  41688. bottom: 101/1383
  41689. }
  41690. },
  41691. },
  41692. [
  41693. {
  41694. name: "Normal",
  41695. height: math.unit(7 + 6/12, "feet"),
  41696. default: true
  41697. },
  41698. {
  41699. name: "Macro",
  41700. height: math.unit(26 + 9/12, "feet")
  41701. },
  41702. {
  41703. name: "Megamacro",
  41704. height: math.unit(300, "feet")
  41705. },
  41706. {
  41707. name: "Gigamacro",
  41708. height: math.unit(5000, "feet")
  41709. },
  41710. {
  41711. name: "Planetary",
  41712. height: math.unit(10000, "miles")
  41713. },
  41714. ]
  41715. ))
  41716. characterMakers.push(() => makeCharacter(
  41717. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41718. {
  41719. front: {
  41720. height: math.unit(8 + 2/12, "feet"),
  41721. weight: math.unit(600, "lb"),
  41722. name: "Front",
  41723. image: {
  41724. source: "./media/characters/deam-nitrel/front.svg",
  41725. extra: 1308/1234,
  41726. bottom: 125/1433
  41727. }
  41728. },
  41729. },
  41730. [
  41731. {
  41732. name: "Normal",
  41733. height: math.unit(8 + 2/12, "feet"),
  41734. default: true
  41735. },
  41736. ]
  41737. ))
  41738. characterMakers.push(() => makeCharacter(
  41739. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41740. {
  41741. front: {
  41742. height: math.unit(6.1, "feet"),
  41743. weight: math.unit(180, "lb"),
  41744. name: "Front",
  41745. image: {
  41746. source: "./media/characters/skyress/front.svg",
  41747. extra: 1045/915,
  41748. bottom: 28/1073
  41749. }
  41750. },
  41751. maw: {
  41752. height: math.unit(1, "feet"),
  41753. name: "Maw",
  41754. image: {
  41755. source: "./media/characters/skyress/maw.svg"
  41756. }
  41757. },
  41758. },
  41759. [
  41760. {
  41761. name: "Normal",
  41762. height: math.unit(6.1, "feet"),
  41763. default: true
  41764. },
  41765. {
  41766. name: "Macro",
  41767. height: math.unit(200, "feet")
  41768. },
  41769. ]
  41770. ))
  41771. characterMakers.push(() => makeCharacter(
  41772. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41773. {
  41774. front: {
  41775. height: math.unit(4 + 2/12, "feet"),
  41776. weight: math.unit(40, "kg"),
  41777. name: "Front",
  41778. image: {
  41779. source: "./media/characters/amethyst-jones/front.svg",
  41780. extra: 1220/1150,
  41781. bottom: 101/1321
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Normal",
  41788. height: math.unit(4 + 2/12, "feet"),
  41789. default: true
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(1.7, "m"),
  41798. weight: math.unit(135, "lb"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/jade/front.svg",
  41802. extra: 1818/1767,
  41803. bottom: 32/1850
  41804. }
  41805. },
  41806. back: {
  41807. height: math.unit(1.7, "m"),
  41808. weight: math.unit(135, "lb"),
  41809. name: "Back",
  41810. image: {
  41811. source: "./media/characters/jade/back.svg",
  41812. extra: 1869/1809,
  41813. bottom: 35/1904
  41814. }
  41815. },
  41816. hand: {
  41817. height: math.unit(0.24, "m"),
  41818. name: "Hand",
  41819. image: {
  41820. source: "./media/characters/jade/hand.svg"
  41821. }
  41822. },
  41823. foot: {
  41824. height: math.unit(0.263, "m"),
  41825. name: "Foot",
  41826. image: {
  41827. source: "./media/characters/jade/foot.svg"
  41828. }
  41829. },
  41830. dick: {
  41831. height: math.unit(0.47, "m"),
  41832. name: "Dick",
  41833. image: {
  41834. source: "./media/characters/jade/dick.svg"
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Micro",
  41841. height: math.unit(22, "cm")
  41842. },
  41843. {
  41844. name: "Normal",
  41845. height: math.unit(1.7, "m"),
  41846. default: true
  41847. },
  41848. {
  41849. name: "Macro",
  41850. height: math.unit(152, "m")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(100, "miles"),
  41859. weight: math.unit(20000, "tons"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/cookie/front.svg",
  41863. extra: 1125/1070,
  41864. bottom: 30/1155
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Big",
  41871. height: math.unit(50, "feet")
  41872. },
  41873. {
  41874. name: "Macro",
  41875. height: math.unit(100, "miles"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "Megamacro",
  41880. height: math.unit(90000, "miles")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(6, "feet"),
  41889. weight: math.unit(145, "lb"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/farzian/front.svg",
  41893. extra: 1902/1693,
  41894. bottom: 108/2010
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Macro",
  41901. height: math.unit(500, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(3 + 6/12, "feet"),
  41911. weight: math.unit(50, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/kimberly-tilson/front.svg",
  41915. extra: 1400/1322,
  41916. bottom: 36/1436
  41917. }
  41918. },
  41919. back: {
  41920. height: math.unit(3 + 6/12, "feet"),
  41921. weight: math.unit(50, "lb"),
  41922. name: "Back",
  41923. image: {
  41924. source: "./media/characters/kimberly-tilson/back.svg",
  41925. extra: 1370/1307,
  41926. bottom: 20/1390
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(3 + 6/12, "feet"),
  41934. default: true
  41935. },
  41936. ]
  41937. ))
  41938. characterMakers.push(() => makeCharacter(
  41939. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41940. {
  41941. front: {
  41942. height: math.unit(1148, "feet"),
  41943. weight: math.unit(34057, "lb"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/harthos/front.svg",
  41947. extra: 1391/1339,
  41948. bottom: 13/1404
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Macro",
  41955. height: math.unit(1148, "feet"),
  41956. default: true
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41962. {
  41963. front: {
  41964. height: math.unit(15, "feet"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/hypatia/front.svg",
  41968. extra: 1653/1591,
  41969. bottom: 79/1732
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(15, "feet")
  41977. },
  41978. {
  41979. name: "Small",
  41980. height: math.unit(300, "feet")
  41981. },
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(2500, "feet"),
  41985. default: true
  41986. },
  41987. {
  41988. name: "Mega Macro",
  41989. height: math.unit(1500, "miles")
  41990. },
  41991. {
  41992. name: "Giga Macro",
  41993. height: math.unit(1.5e6, "miles")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(6, "feet"),
  42002. weight: math.unit(200, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/wulver/front.svg",
  42006. extra: 1724/1632,
  42007. bottom: 130/1854
  42008. }
  42009. },
  42010. frontNsfw: {
  42011. height: math.unit(6, "feet"),
  42012. weight: math.unit(200, "lb"),
  42013. name: "Front (NSFW)",
  42014. image: {
  42015. source: "./media/characters/wulver/front-nsfw.svg",
  42016. extra: 1724/1632,
  42017. bottom: 130/1854
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Human-Sized",
  42024. height: math.unit(6, "feet")
  42025. },
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(4, "meters"),
  42029. default: true
  42030. },
  42031. {
  42032. name: "Large",
  42033. height: math.unit(6, "m")
  42034. },
  42035. ]
  42036. ))
  42037. characterMakers.push(() => makeCharacter(
  42038. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42039. {
  42040. front: {
  42041. height: math.unit(7, "feet"),
  42042. name: "Front",
  42043. image: {
  42044. source: "./media/characters/maru/front.svg",
  42045. extra: 1595/1570,
  42046. bottom: 0/1595
  42047. }
  42048. },
  42049. },
  42050. [
  42051. {
  42052. name: "Normal",
  42053. height: math.unit(7, "feet"),
  42054. default: true
  42055. },
  42056. {
  42057. name: "Macro",
  42058. height: math.unit(700, "feet")
  42059. },
  42060. {
  42061. name: "Mega Macro",
  42062. height: math.unit(25, "miles")
  42063. },
  42064. ]
  42065. ))
  42066. characterMakers.push(() => makeCharacter(
  42067. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42068. {
  42069. front: {
  42070. height: math.unit(6, "feet"),
  42071. weight: math.unit(170, "lb"),
  42072. name: "Front",
  42073. image: {
  42074. source: "./media/characters/xenon/front.svg",
  42075. extra: 1376/1305,
  42076. bottom: 56/1432
  42077. }
  42078. },
  42079. back: {
  42080. height: math.unit(6, "feet"),
  42081. weight: math.unit(170, "lb"),
  42082. name: "Back",
  42083. image: {
  42084. source: "./media/characters/xenon/back.svg",
  42085. extra: 1328/1259,
  42086. bottom: 95/1423
  42087. }
  42088. },
  42089. maw: {
  42090. height: math.unit(0.52, "feet"),
  42091. name: "Maw",
  42092. image: {
  42093. source: "./media/characters/xenon/maw.svg"
  42094. }
  42095. },
  42096. handLeft: {
  42097. height: math.unit(0.82 * 169 / 153, "feet"),
  42098. name: "Hand (Left)",
  42099. image: {
  42100. source: "./media/characters/xenon/hand-left.svg"
  42101. }
  42102. },
  42103. handRight: {
  42104. height: math.unit(0.82, "feet"),
  42105. name: "Hand (Right)",
  42106. image: {
  42107. source: "./media/characters/xenon/hand-right.svg"
  42108. }
  42109. },
  42110. footLeft: {
  42111. height: math.unit(1.13, "feet"),
  42112. name: "Foot (Left)",
  42113. image: {
  42114. source: "./media/characters/xenon/foot-left.svg"
  42115. }
  42116. },
  42117. footRight: {
  42118. height: math.unit(1.13 * 194 / 196, "feet"),
  42119. name: "Foot (Right)",
  42120. image: {
  42121. source: "./media/characters/xenon/foot-right.svg"
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Micro",
  42128. height: math.unit(0.8, "inches")
  42129. },
  42130. {
  42131. name: "Normal",
  42132. height: math.unit(6, "feet")
  42133. },
  42134. {
  42135. name: "Macro",
  42136. height: math.unit(50, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Macro+",
  42141. height: math.unit(250, "feet")
  42142. },
  42143. {
  42144. name: "Megamacro",
  42145. height: math.unit(1500, "feet")
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(7 + 5/12, "feet"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/zane/front.svg",
  42157. extra: 1260/1203,
  42158. bottom: 94/1354
  42159. }
  42160. },
  42161. back: {
  42162. height: math.unit(5.05, "feet"),
  42163. name: "Back",
  42164. image: {
  42165. source: "./media/characters/zane/back.svg",
  42166. extra: 893/829,
  42167. bottom: 30/923
  42168. }
  42169. },
  42170. werewolf: {
  42171. height: math.unit(11, "feet"),
  42172. name: "Werewolf",
  42173. image: {
  42174. source: "./media/characters/zane/werewolf.svg",
  42175. extra: 1383/1323,
  42176. bottom: 89/1472
  42177. }
  42178. },
  42179. foot: {
  42180. height: math.unit(1.46, "feet"),
  42181. name: "Foot",
  42182. image: {
  42183. source: "./media/characters/zane/foot.svg"
  42184. }
  42185. },
  42186. footFront: {
  42187. height: math.unit(0.784, "feet"),
  42188. name: "Foot (Front)",
  42189. image: {
  42190. source: "./media/characters/zane/foot-front.svg"
  42191. }
  42192. },
  42193. dick: {
  42194. height: math.unit(1.95, "feet"),
  42195. name: "Dick",
  42196. image: {
  42197. source: "./media/characters/zane/dick.svg"
  42198. }
  42199. },
  42200. dickWerewolf: {
  42201. height: math.unit(3.77, "feet"),
  42202. name: "Dick (Werewolf)",
  42203. image: {
  42204. source: "./media/characters/zane/dick.svg"
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(7 + 5/12, "feet"),
  42212. default: true
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42218. {
  42219. front: {
  42220. height: math.unit(6 + 2/12, "feet"),
  42221. weight: math.unit(284, "lb"),
  42222. name: "Front",
  42223. image: {
  42224. source: "./media/characters/benni-desparque/front.svg",
  42225. extra: 1353/1126,
  42226. bottom: 69/1422
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "Civilian",
  42233. height: math.unit(6 + 2/12, "feet")
  42234. },
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(98, "feet"),
  42238. default: true
  42239. },
  42240. {
  42241. name: "Kaiju Fighter",
  42242. height: math.unit(268, "feet")
  42243. },
  42244. ]
  42245. ))
  42246. characterMakers.push(() => makeCharacter(
  42247. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42248. {
  42249. front: {
  42250. height: math.unit(5, "feet"),
  42251. weight: math.unit(105, "lb"),
  42252. name: "Front",
  42253. image: {
  42254. source: "./media/characters/maxine/front.svg",
  42255. extra: 1386/1250,
  42256. bottom: 71/1457
  42257. }
  42258. },
  42259. },
  42260. [
  42261. {
  42262. name: "Normal",
  42263. height: math.unit(5, "feet"),
  42264. default: true
  42265. },
  42266. ]
  42267. ))
  42268. characterMakers.push(() => makeCharacter(
  42269. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42270. {
  42271. front: {
  42272. height: math.unit(11 + 7/12, "feet"),
  42273. weight: math.unit(9576, "lb"),
  42274. name: "Front",
  42275. image: {
  42276. source: "./media/characters/scaly/front.svg",
  42277. extra: 888/867,
  42278. bottom: 36/924
  42279. }
  42280. },
  42281. },
  42282. [
  42283. {
  42284. name: "Normal",
  42285. height: math.unit(11 + 7/12, "feet"),
  42286. default: true
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42292. {
  42293. front: {
  42294. height: math.unit(6 + 3/12, "feet"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/saelria/front.svg",
  42298. extra: 1243/1138,
  42299. bottom: 46/1289
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Micro",
  42306. height: math.unit(6, "inches"),
  42307. },
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(6 + 3/12, "feet"),
  42311. default: true
  42312. },
  42313. {
  42314. name: "Macro",
  42315. height: math.unit(25, "feet")
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42321. {
  42322. front: {
  42323. height: math.unit(80, "meters"),
  42324. weight: math.unit(7000, "tonnes"),
  42325. name: "Front",
  42326. image: {
  42327. source: "./media/characters/tef/front.svg",
  42328. extra: 2036/1991,
  42329. bottom: 54/2090
  42330. }
  42331. },
  42332. back: {
  42333. height: math.unit(80, "meters"),
  42334. weight: math.unit(7000, "tonnes"),
  42335. name: "Back",
  42336. image: {
  42337. source: "./media/characters/tef/back.svg",
  42338. extra: 2036/1991,
  42339. bottom: 54/2090
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Macro",
  42346. height: math.unit(80, "meters"),
  42347. default: true
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42353. {
  42354. front: {
  42355. height: math.unit(13, "feet"),
  42356. weight: math.unit(6, "tons"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/rover/front.svg",
  42360. extra: 1233/1156,
  42361. bottom: 50/1283
  42362. }
  42363. },
  42364. back: {
  42365. height: math.unit(13, "feet"),
  42366. weight: math.unit(6, "tons"),
  42367. name: "Back",
  42368. image: {
  42369. source: "./media/characters/rover/back.svg",
  42370. extra: 1327/1258,
  42371. bottom: 39/1366
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(13, "feet"),
  42379. default: true
  42380. },
  42381. {
  42382. name: "Macro",
  42383. height: math.unit(1300, "feet")
  42384. },
  42385. {
  42386. name: "Megamacro",
  42387. height: math.unit(1300, "miles")
  42388. },
  42389. {
  42390. name: "Gigamacro",
  42391. height: math.unit(1300000, "miles")
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(6, "feet"),
  42400. weight: math.unit(150, "lb"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/ariz/front.svg",
  42404. extra: 1401/1346,
  42405. bottom: 5/1406
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(10, "feet"),
  42413. default: true
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(6, "feet"),
  42422. weight: math.unit(140, "lb"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/sigrun/front.svg",
  42426. extra: 1418/1359,
  42427. bottom: 27/1445
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Macro",
  42434. height: math.unit(35, "feet"),
  42435. default: true
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(6, "feet"),
  42444. weight: math.unit(150, "lb"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/numin/front.svg",
  42448. extra: 1433/1388,
  42449. bottom: 12/1445
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Macro",
  42456. height: math.unit(21.5, "km"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(6, "feet"),
  42466. weight: math.unit(463, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/melwa/front.svg",
  42470. extra: 1307/1248,
  42471. bottom: 93/1400
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Macro",
  42478. height: math.unit(50, "meters"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(325, "feet"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/zorkaiju/front.svg",
  42491. extra: 1955/1814,
  42492. bottom: 40/1995
  42493. }
  42494. },
  42495. frontExtended: {
  42496. height: math.unit(325, "feet"),
  42497. name: "Front (Extended)",
  42498. image: {
  42499. source: "./media/characters/zorkaiju/front-extended.svg",
  42500. extra: 1955/1814,
  42501. bottom: 40/1995
  42502. }
  42503. },
  42504. side: {
  42505. height: math.unit(325, "feet"),
  42506. name: "Side",
  42507. image: {
  42508. source: "./media/characters/zorkaiju/side.svg",
  42509. extra: 1495/1396,
  42510. bottom: 17/1512
  42511. }
  42512. },
  42513. sideExtended: {
  42514. height: math.unit(325, "feet"),
  42515. name: "Side (Extended)",
  42516. image: {
  42517. source: "./media/characters/zorkaiju/side-extended.svg",
  42518. extra: 1495/1396,
  42519. bottom: 17/1512
  42520. }
  42521. },
  42522. back: {
  42523. height: math.unit(325, "feet"),
  42524. name: "Back",
  42525. image: {
  42526. source: "./media/characters/zorkaiju/back.svg",
  42527. extra: 1959/1821,
  42528. bottom: 31/1990
  42529. }
  42530. },
  42531. backExtended: {
  42532. height: math.unit(325, "feet"),
  42533. name: "Back (Extended)",
  42534. image: {
  42535. source: "./media/characters/zorkaiju/back-extended.svg",
  42536. extra: 1959/1821,
  42537. bottom: 31/1990
  42538. }
  42539. },
  42540. hand: {
  42541. height: math.unit(58.4, "feet"),
  42542. name: "Hand",
  42543. image: {
  42544. source: "./media/characters/zorkaiju/hand.svg"
  42545. }
  42546. },
  42547. handExtended: {
  42548. height: math.unit(61.4, "feet"),
  42549. name: "Hand (Extended)",
  42550. image: {
  42551. source: "./media/characters/zorkaiju/hand-extended.svg"
  42552. }
  42553. },
  42554. foot: {
  42555. height: math.unit(95, "feet"),
  42556. name: "Foot",
  42557. image: {
  42558. source: "./media/characters/zorkaiju/foot.svg"
  42559. }
  42560. },
  42561. leftArm: {
  42562. height: math.unit(59, "feet"),
  42563. name: "Left Arm",
  42564. image: {
  42565. source: "./media/characters/zorkaiju/left-arm.svg"
  42566. }
  42567. },
  42568. rightArm: {
  42569. height: math.unit(59, "feet"),
  42570. name: "Right Arm",
  42571. image: {
  42572. source: "./media/characters/zorkaiju/right-arm.svg"
  42573. }
  42574. },
  42575. leftArmExtended: {
  42576. height: math.unit(59 * 1.033546, "feet"),
  42577. name: "Left Arm (Extended)",
  42578. image: {
  42579. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42580. }
  42581. },
  42582. rightArmExtended: {
  42583. height: math.unit(59 * 1.0496, "feet"),
  42584. name: "Right Arm (Extended)",
  42585. image: {
  42586. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42587. }
  42588. },
  42589. tail: {
  42590. height: math.unit(104, "feet"),
  42591. name: "Tail",
  42592. image: {
  42593. source: "./media/characters/zorkaiju/tail.svg"
  42594. }
  42595. },
  42596. tailExtended: {
  42597. height: math.unit(104, "feet"),
  42598. name: "Tail (Extended)",
  42599. image: {
  42600. source: "./media/characters/zorkaiju/tail-extended.svg"
  42601. }
  42602. },
  42603. tailBottom: {
  42604. height: math.unit(104, "feet"),
  42605. name: "Tail Bottom",
  42606. image: {
  42607. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42608. }
  42609. },
  42610. crystal: {
  42611. height: math.unit(27.54, "feet"),
  42612. name: "Crystal",
  42613. image: {
  42614. source: "./media/characters/zorkaiju/crystal.svg"
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Kaiju",
  42621. height: math.unit(325, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(6 + 1/12, "feet"),
  42631. weight: math.unit(115, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/bailey-belfry/front.svg",
  42635. extra: 1240/1121,
  42636. bottom: 101/1341
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(6 + 1/12, "feet"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42650. {
  42651. side: {
  42652. height: math.unit(4, "meters"),
  42653. weight: math.unit(250, "kg"),
  42654. name: "Side",
  42655. image: {
  42656. source: "./media/characters/blacky/side.svg",
  42657. extra: 1027/919,
  42658. bottom: 43/1070
  42659. }
  42660. },
  42661. maw: {
  42662. height: math.unit(1, "meters"),
  42663. name: "Maw",
  42664. image: {
  42665. source: "./media/characters/blacky/maw.svg"
  42666. }
  42667. },
  42668. paw: {
  42669. height: math.unit(1, "meters"),
  42670. name: "Paw",
  42671. image: {
  42672. source: "./media/characters/blacky/paw.svg"
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(4, "meters"),
  42680. default: true
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42686. {
  42687. front: {
  42688. height: math.unit(170, "cm"),
  42689. weight: math.unit(66, "kg"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/thux-ei/front.svg",
  42693. extra: 1109/1011,
  42694. bottom: 8/1117
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(170, "cm"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(5, "feet"),
  42711. weight: math.unit(120, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/roxanne-voltaire/front.svg",
  42715. extra: 1901/1779,
  42716. bottom: 53/1954
  42717. }
  42718. },
  42719. },
  42720. [
  42721. {
  42722. name: "Normal",
  42723. height: math.unit(5, "feet"),
  42724. default: true
  42725. },
  42726. {
  42727. name: "Giant",
  42728. height: math.unit(50, "feet")
  42729. },
  42730. {
  42731. name: "Titan",
  42732. height: math.unit(500, "feet")
  42733. },
  42734. {
  42735. name: "Macro",
  42736. height: math.unit(5000, "feet")
  42737. },
  42738. {
  42739. name: "Megamacro",
  42740. height: math.unit(50000, "feet")
  42741. },
  42742. {
  42743. name: "Gigamacro",
  42744. height: math.unit(500000, "feet")
  42745. },
  42746. {
  42747. name: "Teramacro",
  42748. height: math.unit(5e6, "feet")
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(6 + 2/12, "feet"),
  42757. name: "Front",
  42758. image: {
  42759. source: "./media/characters/squeaks/front.svg",
  42760. extra: 1823/1768,
  42761. bottom: 138/1961
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Micro",
  42768. height: math.unit(0.5, "inches")
  42769. },
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(6 + 2/12, "feet"),
  42773. default: true
  42774. },
  42775. {
  42776. name: "Macro",
  42777. height: math.unit(600, "feet")
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42783. {
  42784. front: {
  42785. height: math.unit(1.72, "meters"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/archinger/front.svg",
  42789. extra: 1861/1675,
  42790. bottom: 125/1986
  42791. }
  42792. },
  42793. back: {
  42794. height: math.unit(1.72, "meters"),
  42795. name: "Back",
  42796. image: {
  42797. source: "./media/characters/archinger/back.svg",
  42798. extra: 1844/1701,
  42799. bottom: 104/1948
  42800. }
  42801. },
  42802. cock: {
  42803. height: math.unit(0.59, "feet"),
  42804. name: "Cock",
  42805. image: {
  42806. source: "./media/characters/archinger/cock.svg"
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(1.72, "meters"),
  42814. default: true
  42815. },
  42816. {
  42817. name: "Macro",
  42818. height: math.unit(84, "meters")
  42819. },
  42820. {
  42821. name: "Macro+",
  42822. height: math.unit(112, "meters")
  42823. },
  42824. {
  42825. name: "Macro++",
  42826. height: math.unit(960, "meters")
  42827. },
  42828. {
  42829. name: "Macro+++",
  42830. height: math.unit(4, "km")
  42831. },
  42832. {
  42833. name: "Macro++++",
  42834. height: math.unit(48, "km")
  42835. },
  42836. {
  42837. name: "Macro+++++",
  42838. height: math.unit(4500, "km")
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(5 + 5/12, "feet"),
  42847. name: "Front",
  42848. image: {
  42849. source: "./media/characters/alsnapz/front.svg",
  42850. extra: 1157/1065,
  42851. bottom: 42/1199
  42852. }
  42853. },
  42854. },
  42855. [
  42856. {
  42857. name: "Normal",
  42858. height: math.unit(5 + 5/12, "feet"),
  42859. default: true
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42865. {
  42866. side: {
  42867. height: math.unit(3.2, "earths"),
  42868. name: "Side",
  42869. image: {
  42870. source: "./media/characters/mag/side.svg",
  42871. extra: 1331/1008,
  42872. bottom: 52/1383
  42873. }
  42874. },
  42875. wing: {
  42876. height: math.unit(1.94, "earths"),
  42877. name: "Wing",
  42878. image: {
  42879. source: "./media/characters/mag/wing.svg"
  42880. }
  42881. },
  42882. dick: {
  42883. height: math.unit(1.8, "earths"),
  42884. name: "Dick",
  42885. image: {
  42886. source: "./media/characters/mag/dick.svg"
  42887. }
  42888. },
  42889. ass: {
  42890. height: math.unit(1.33, "earths"),
  42891. name: "Ass",
  42892. image: {
  42893. source: "./media/characters/mag/ass.svg"
  42894. }
  42895. },
  42896. head: {
  42897. height: math.unit(1.1, "earths"),
  42898. name: "Head",
  42899. image: {
  42900. source: "./media/characters/mag/head.svg"
  42901. }
  42902. },
  42903. maw: {
  42904. height: math.unit(1.62, "earths"),
  42905. name: "Maw",
  42906. image: {
  42907. source: "./media/characters/mag/maw.svg"
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Small",
  42914. height: math.unit(162, "feet")
  42915. },
  42916. {
  42917. name: "Normal",
  42918. height: math.unit(3.2, "earths"),
  42919. default: true
  42920. },
  42921. ]
  42922. ))
  42923. characterMakers.push(() => makeCharacter(
  42924. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42925. {
  42926. front: {
  42927. height: math.unit(512, "feet"),
  42928. weight: math.unit(63509, "tonnes"),
  42929. name: "Front",
  42930. image: {
  42931. source: "./media/characters/vorrel-harroc/front.svg",
  42932. extra: 1075/1063,
  42933. bottom: 62/1137
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Normal",
  42940. height: math.unit(10, "feet")
  42941. },
  42942. {
  42943. name: "Macro",
  42944. height: math.unit(512, "feet"),
  42945. default: true
  42946. },
  42947. {
  42948. name: "Megamacro",
  42949. height: math.unit(256, "miles")
  42950. },
  42951. {
  42952. name: "Gigamacro",
  42953. height: math.unit(4096, "miles")
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42959. {
  42960. side: {
  42961. height: math.unit(50, "feet"),
  42962. name: "Side",
  42963. image: {
  42964. source: "./media/characters/froimar/side.svg",
  42965. extra: 855/638,
  42966. bottom: 99/954
  42967. }
  42968. },
  42969. },
  42970. [
  42971. {
  42972. name: "Macro",
  42973. height: math.unit(50, "feet"),
  42974. default: true
  42975. },
  42976. ]
  42977. ))
  42978. characterMakers.push(() => makeCharacter(
  42979. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42980. {
  42981. front: {
  42982. height: math.unit(210, "miles"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/timothy/front.svg",
  42986. extra: 1007/943,
  42987. bottom: 62/1069
  42988. }
  42989. },
  42990. frontSkirt: {
  42991. height: math.unit(210, "miles"),
  42992. name: "Front (Skirt)",
  42993. image: {
  42994. source: "./media/characters/timothy/front-skirt.svg",
  42995. extra: 1007/943,
  42996. bottom: 62/1069
  42997. }
  42998. },
  42999. frontCoat: {
  43000. height: math.unit(210, "miles"),
  43001. name: "Front (Coat)",
  43002. image: {
  43003. source: "./media/characters/timothy/front-coat.svg",
  43004. extra: 1007/943,
  43005. bottom: 62/1069
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Macro",
  43012. height: math.unit(210, "miles"),
  43013. default: true
  43014. },
  43015. {
  43016. name: "Megamacro",
  43017. height: math.unit(210000, "miles")
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(188, "feet"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/pyotr/front.svg",
  43029. extra: 1912/1826,
  43030. bottom: 18/1930
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Macro",
  43037. height: math.unit(188, "feet"),
  43038. default: true
  43039. },
  43040. {
  43041. name: "Megamacro",
  43042. height: math.unit(8, "miles")
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43048. {
  43049. side: {
  43050. height: math.unit(10, "feet"),
  43051. weight: math.unit(4500, "lb"),
  43052. name: "Side",
  43053. image: {
  43054. source: "./media/characters/ackart/side.svg",
  43055. extra: 1776/1668,
  43056. bottom: 116/1892
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(10, "feet"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43070. {
  43071. side: {
  43072. height: math.unit(21, "feet"),
  43073. name: "Side",
  43074. image: {
  43075. source: "./media/characters/nolow/side.svg",
  43076. extra: 1484/1434,
  43077. bottom: 85/1569
  43078. }
  43079. },
  43080. sideErect: {
  43081. height: math.unit(21, "feet"),
  43082. name: "Side-erect",
  43083. image: {
  43084. source: "./media/characters/nolow/side-erect.svg",
  43085. extra: 1484/1434,
  43086. bottom: 85/1569
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Regular",
  43093. height: math.unit(12, "feet")
  43094. },
  43095. {
  43096. name: "Big Chee",
  43097. height: math.unit(21, "feet"),
  43098. default: true
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(7, "feet"),
  43107. weight: math.unit(250, "lb"),
  43108. name: "Front",
  43109. image: {
  43110. source: "./media/characters/nines/front.svg",
  43111. extra: 1741/1607,
  43112. bottom: 41/1782
  43113. }
  43114. },
  43115. side: {
  43116. height: math.unit(7, "feet"),
  43117. weight: math.unit(250, "lb"),
  43118. name: "Side",
  43119. image: {
  43120. source: "./media/characters/nines/side.svg",
  43121. extra: 1854/1735,
  43122. bottom: 93/1947
  43123. }
  43124. },
  43125. back: {
  43126. height: math.unit(7, "feet"),
  43127. weight: math.unit(250, "lb"),
  43128. name: "Back",
  43129. image: {
  43130. source: "./media/characters/nines/back.svg",
  43131. extra: 1748/1615,
  43132. bottom: 20/1768
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Megamacro",
  43139. height: math.unit(99, "km"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(5 + 10/12, "feet"),
  43149. weight: math.unit(210, "lb"),
  43150. name: "Front",
  43151. image: {
  43152. source: "./media/characters/zenith/front.svg",
  43153. extra: 1531/1452,
  43154. bottom: 198/1729
  43155. }
  43156. },
  43157. back: {
  43158. height: math.unit(5 + 10/12, "feet"),
  43159. weight: math.unit(210, "lb"),
  43160. name: "Back",
  43161. image: {
  43162. source: "./media/characters/zenith/back.svg",
  43163. extra: 1571/1487,
  43164. bottom: 75/1646
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(5 + 10/12, "feet"),
  43172. default: true
  43173. }
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43178. {
  43179. front: {
  43180. height: math.unit(4, "feet"),
  43181. weight: math.unit(60, "lb"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/jasper/front.svg",
  43185. extra: 1450/1379,
  43186. bottom: 19/1469
  43187. }
  43188. },
  43189. },
  43190. [
  43191. {
  43192. name: "Normal",
  43193. height: math.unit(4, "feet"),
  43194. default: true
  43195. },
  43196. ]
  43197. ))
  43198. characterMakers.push(() => makeCharacter(
  43199. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43200. {
  43201. front: {
  43202. height: math.unit(6 + 5/12, "feet"),
  43203. weight: math.unit(290, "lb"),
  43204. name: "Front",
  43205. image: {
  43206. source: "./media/characters/tiberius-thyben/front.svg",
  43207. extra: 757/739,
  43208. bottom: 39/796
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Micro",
  43215. height: math.unit(1.5, "inches")
  43216. },
  43217. {
  43218. name: "Normal",
  43219. height: math.unit(6 + 5/12, "feet"),
  43220. default: true
  43221. },
  43222. {
  43223. name: "Macro",
  43224. height: math.unit(300, "feet")
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43230. {
  43231. front: {
  43232. height: math.unit(5 + 6/12, "feet"),
  43233. weight: math.unit(60, "kg"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/sabre/front.svg",
  43237. extra: 738/671,
  43238. bottom: 27/765
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "Teeny",
  43245. height: math.unit(2, "inches")
  43246. },
  43247. {
  43248. name: "Smol",
  43249. height: math.unit(8, "inches")
  43250. },
  43251. {
  43252. name: "Normal",
  43253. height: math.unit(5 + 6/12, "feet"),
  43254. default: true
  43255. },
  43256. {
  43257. name: "Mini-Macro",
  43258. height: math.unit(15, "feet")
  43259. },
  43260. {
  43261. name: "Macro",
  43262. height: math.unit(50, "feet")
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(6 + 4/12, "feet"),
  43271. weight: math.unit(170, "lb"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/charlie/front.svg",
  43275. extra: 1348/1228,
  43276. bottom: 15/1363
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Macro",
  43283. height: math.unit(1700, "meters"),
  43284. default: true
  43285. },
  43286. {
  43287. name: "MegaMacro",
  43288. height: math.unit(20400, "meters")
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(6 + 3/12, "feet"),
  43297. weight: math.unit(185, "lb"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/susan-grant/front.svg",
  43301. extra: 1351/1327,
  43302. bottom: 26/1377
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(6 + 3/12, "feet"),
  43310. default: true
  43311. },
  43312. {
  43313. name: "Macro",
  43314. height: math.unit(225, "feet")
  43315. },
  43316. {
  43317. name: "Macro+",
  43318. height: math.unit(900, "feet")
  43319. },
  43320. {
  43321. name: "MegaMacro",
  43322. height: math.unit(14400, "feet")
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43328. {
  43329. front: {
  43330. height: math.unit(5 + 4/12, "feet"),
  43331. weight: math.unit(110, "lb"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/axel-isanov/front.svg",
  43335. extra: 1096/1065,
  43336. bottom: 13/1109
  43337. }
  43338. },
  43339. },
  43340. [
  43341. {
  43342. name: "Normal",
  43343. height: math.unit(5 + 4/12, "feet"),
  43344. default: true
  43345. },
  43346. ]
  43347. ))
  43348. characterMakers.push(() => makeCharacter(
  43349. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43350. {
  43351. front: {
  43352. height: math.unit(9, "feet"),
  43353. weight: math.unit(467, "lb"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/necahual/front.svg",
  43357. extra: 920/873,
  43358. bottom: 26/946
  43359. }
  43360. },
  43361. back: {
  43362. height: math.unit(9, "feet"),
  43363. weight: math.unit(467, "lb"),
  43364. name: "Back",
  43365. image: {
  43366. source: "./media/characters/necahual/back.svg",
  43367. extra: 930/884,
  43368. bottom: 16/946
  43369. }
  43370. },
  43371. frontUnderwear: {
  43372. height: math.unit(9, "feet"),
  43373. weight: math.unit(467, "lb"),
  43374. name: "Front (Underwear)",
  43375. image: {
  43376. source: "./media/characters/necahual/front-underwear.svg",
  43377. extra: 920/873,
  43378. bottom: 26/946
  43379. }
  43380. },
  43381. frontDressed: {
  43382. height: math.unit(9, "feet"),
  43383. weight: math.unit(467, "lb"),
  43384. name: "Front (Dressed)",
  43385. image: {
  43386. source: "./media/characters/necahual/front-dressed.svg",
  43387. extra: 920/873,
  43388. bottom: 26/946
  43389. }
  43390. },
  43391. },
  43392. [
  43393. {
  43394. name: "Comprsesed",
  43395. height: math.unit(9, "feet")
  43396. },
  43397. {
  43398. name: "Natural",
  43399. height: math.unit(15, "feet"),
  43400. default: true
  43401. },
  43402. {
  43403. name: "Boosted",
  43404. height: math.unit(50, "feet")
  43405. },
  43406. {
  43407. name: "Boosted+",
  43408. height: math.unit(150, "feet")
  43409. },
  43410. {
  43411. name: "Max",
  43412. height: math.unit(500, "feet")
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(22 + 1/12, "feet"),
  43421. weight: math.unit(3200, "lb"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/theo-acacia/front.svg",
  43425. extra: 1796/1741,
  43426. bottom: 83/1879
  43427. }
  43428. },
  43429. frontUnderwear: {
  43430. height: math.unit(22 + 1/12, "feet"),
  43431. weight: math.unit(3200, "lb"),
  43432. name: "Front (Underwear)",
  43433. image: {
  43434. source: "./media/characters/theo-acacia/front-underwear.svg",
  43435. extra: 1796/1741,
  43436. bottom: 83/1879
  43437. }
  43438. },
  43439. frontNude: {
  43440. height: math.unit(22 + 1/12, "feet"),
  43441. weight: math.unit(3200, "lb"),
  43442. name: "Front (Nude)",
  43443. image: {
  43444. source: "./media/characters/theo-acacia/front-nude.svg",
  43445. extra: 1796/1741,
  43446. bottom: 83/1879
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(22 + 1/12, "feet"),
  43454. default: true
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43460. {
  43461. front: {
  43462. height: math.unit(20, "feet"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/astra/front.svg",
  43466. extra: 1850/1714,
  43467. bottom: 106/1956
  43468. }
  43469. },
  43470. frontUndressed: {
  43471. height: math.unit(20, "feet"),
  43472. name: "Front (Undressed)",
  43473. image: {
  43474. source: "./media/characters/astra/front-undressed.svg",
  43475. extra: 1926/1749,
  43476. bottom: 0/1926
  43477. }
  43478. },
  43479. hand: {
  43480. height: math.unit(1.53, "feet"),
  43481. name: "Hand",
  43482. image: {
  43483. source: "./media/characters/astra/hand.svg"
  43484. }
  43485. },
  43486. paw: {
  43487. height: math.unit(1.53, "feet"),
  43488. name: "Paw",
  43489. image: {
  43490. source: "./media/characters/astra/paw.svg"
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Smallest",
  43497. height: math.unit(20, "feet")
  43498. },
  43499. {
  43500. name: "Normal",
  43501. height: math.unit(1e9, "miles"),
  43502. default: true
  43503. },
  43504. {
  43505. name: "Larger",
  43506. height: math.unit(5, "multiverses")
  43507. },
  43508. {
  43509. name: "Largest",
  43510. height: math.unit(1e9, "multiverses")
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43516. {
  43517. front: {
  43518. height: math.unit(8, "feet"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/breanna/front.svg",
  43522. extra: 1912/1632,
  43523. bottom: 33/1945
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Smallest",
  43530. height: math.unit(8, "feet")
  43531. },
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(1, "mile"),
  43535. default: true
  43536. },
  43537. {
  43538. name: "Maximum",
  43539. height: math.unit(1500000000000, "lightyears")
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(5 + 11/12, "feet"),
  43548. weight: math.unit(155, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/cai/front.svg",
  43552. extra: 1823/1702,
  43553. bottom: 32/1855
  43554. }
  43555. },
  43556. back: {
  43557. height: math.unit(5 + 11/12, "feet"),
  43558. weight: math.unit(155, "lb"),
  43559. name: "Back",
  43560. image: {
  43561. source: "./media/characters/cai/back.svg",
  43562. extra: 1809/1708,
  43563. bottom: 31/1840
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(5 + 11/12, "feet"),
  43571. default: true
  43572. },
  43573. {
  43574. name: "Big",
  43575. height: math.unit(15, "feet")
  43576. },
  43577. {
  43578. name: "Macro",
  43579. height: math.unit(200, "feet")
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43585. {
  43586. front: {
  43587. height: math.unit(5 + 6/12, "feet"),
  43588. weight: math.unit(160, "lb"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43592. extra: 1227/1174,
  43593. bottom: 37/1264
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Macro",
  43600. height: math.unit(444, "meters"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(18 + 7/12, "feet"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/rex/front.svg",
  43613. extra: 1941/1807,
  43614. bottom: 66/2007
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(18 + 7/12, "feet"),
  43619. name: "Back",
  43620. image: {
  43621. source: "./media/characters/rex/back.svg",
  43622. extra: 1937/1822,
  43623. bottom: 42/1979
  43624. }
  43625. },
  43626. boot: {
  43627. height: math.unit(3.45, "feet"),
  43628. name: "Boot",
  43629. image: {
  43630. source: "./media/characters/rex/boot.svg"
  43631. }
  43632. },
  43633. paw: {
  43634. height: math.unit(4.17, "feet"),
  43635. name: "Paw",
  43636. image: {
  43637. source: "./media/characters/rex/paw.svg"
  43638. }
  43639. },
  43640. head: {
  43641. height: math.unit(6.728, "feet"),
  43642. name: "Head",
  43643. image: {
  43644. source: "./media/characters/rex/head.svg"
  43645. }
  43646. },
  43647. },
  43648. [
  43649. {
  43650. name: "Nano",
  43651. height: math.unit(18 + 7/12, "feet")
  43652. },
  43653. {
  43654. name: "Micro",
  43655. height: math.unit(1.5, "megameters")
  43656. },
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(440, "megameters"),
  43660. default: true
  43661. },
  43662. {
  43663. name: "Macro",
  43664. height: math.unit(2.5, "gigameters")
  43665. },
  43666. {
  43667. name: "Gigamacro",
  43668. height: math.unit(2, "galaxies")
  43669. },
  43670. ]
  43671. ))
  43672. characterMakers.push(() => makeCharacter(
  43673. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43674. {
  43675. side: {
  43676. height: math.unit(32, "feet"),
  43677. weight: math.unit(250000, "lb"),
  43678. name: "Side",
  43679. image: {
  43680. source: "./media/characters/silverwing/side.svg",
  43681. extra: 1100/1019,
  43682. bottom: 204/1304
  43683. }
  43684. },
  43685. },
  43686. [
  43687. {
  43688. name: "Normal",
  43689. height: math.unit(32, "feet"),
  43690. default: true
  43691. },
  43692. ]
  43693. ))
  43694. characterMakers.push(() => makeCharacter(
  43695. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43696. {
  43697. front: {
  43698. height: math.unit(6 + 6/12, "feet"),
  43699. weight: math.unit(350, "lb"),
  43700. name: "Front",
  43701. image: {
  43702. source: "./media/characters/tristan-hawthorne/front.svg",
  43703. extra: 1159/1124,
  43704. bottom: 37/1196
  43705. },
  43706. form: "labrador",
  43707. default: true
  43708. },
  43709. skunkFront: {
  43710. height: math.unit(4 + 6/12, "feet"),
  43711. weight: math.unit(120, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43715. extra: 1609/1551,
  43716. bottom: 169/1778
  43717. },
  43718. form: "skunk",
  43719. default: true
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(6 + 6/12, "feet"),
  43726. form: "labrador",
  43727. default: true
  43728. },
  43729. {
  43730. name: "Normal",
  43731. height: math.unit(4 + 6/12, "feet"),
  43732. form: "skunk",
  43733. default: true
  43734. },
  43735. ],
  43736. {
  43737. "labrador": {
  43738. name: "Labrador",
  43739. default: true
  43740. },
  43741. "skunk": {
  43742. name: "Skunk"
  43743. }
  43744. }
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(5 + 11/12, "feet"),
  43751. weight: math.unit(190, "lb"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/mizu/front.svg",
  43755. extra: 1988/1788,
  43756. bottom: 14/2002
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Normal",
  43763. height: math.unit(5 + 11/12, "feet"),
  43764. default: true
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43770. {
  43771. front: {
  43772. height: math.unit(1.7, "feet"),
  43773. weight: math.unit(50, "lb"),
  43774. name: "Front",
  43775. image: {
  43776. source: "./media/characters/dechroma/front.svg",
  43777. extra: 1095/859,
  43778. bottom: 64/1159
  43779. }
  43780. },
  43781. },
  43782. [
  43783. {
  43784. name: "Normal",
  43785. height: math.unit(1.7, "feet"),
  43786. default: true
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43792. {
  43793. side: {
  43794. height: math.unit(30, "feet"),
  43795. name: "Side",
  43796. image: {
  43797. source: "./media/characters/veluren-thanazel/side.svg",
  43798. extra: 1611/633,
  43799. bottom: 118/1729
  43800. }
  43801. },
  43802. front: {
  43803. height: math.unit(30, "feet"),
  43804. name: "Front",
  43805. image: {
  43806. source: "./media/characters/veluren-thanazel/front.svg",
  43807. extra: 1486/636,
  43808. bottom: 238/1724
  43809. }
  43810. },
  43811. head: {
  43812. height: math.unit(21.4, "feet"),
  43813. name: "Head",
  43814. image: {
  43815. source: "./media/characters/veluren-thanazel/head.svg"
  43816. }
  43817. },
  43818. genitals: {
  43819. height: math.unit(19.4, "feet"),
  43820. name: "Genitals",
  43821. image: {
  43822. source: "./media/characters/veluren-thanazel/genitals.svg"
  43823. }
  43824. },
  43825. },
  43826. [
  43827. {
  43828. name: "Social",
  43829. height: math.unit(6, "feet")
  43830. },
  43831. {
  43832. name: "Play",
  43833. height: math.unit(12, "feet")
  43834. },
  43835. {
  43836. name: "True",
  43837. height: math.unit(30, "feet"),
  43838. default: true
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(7 + 6/12, "feet"),
  43847. weight: math.unit(500, "kg"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/arcturas/front.svg",
  43851. extra: 1700/1500,
  43852. bottom: 145/1845
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(7 + 6/12, "feet"),
  43860. default: true
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43866. {
  43867. side: {
  43868. height: math.unit(6, "feet"),
  43869. weight: math.unit(2, "tons"),
  43870. name: "Side",
  43871. image: {
  43872. source: "./media/characters/vitaen/side.svg",
  43873. extra: 1157/617,
  43874. bottom: 122/1279
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Normal",
  43881. height: math.unit(6, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(19, "feet"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/fia-dreamweaver/front.svg",
  43894. extra: 1630/1504,
  43895. bottom: 25/1655
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Normal",
  43902. height: math.unit(19, "feet"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(5 + 4/12, "feet"),
  43912. name: "Front",
  43913. image: {
  43914. source: "./media/characters/artan/front.svg",
  43915. extra: 1618/1535,
  43916. bottom: 46/1664
  43917. }
  43918. },
  43919. back: {
  43920. height: math.unit(5 + 4/12, "feet"),
  43921. name: "Back",
  43922. image: {
  43923. source: "./media/characters/artan/back.svg",
  43924. extra: 1618/1543,
  43925. bottom: 31/1649
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Normal",
  43932. height: math.unit(5 + 4/12, "feet"),
  43933. default: true
  43934. },
  43935. ]
  43936. ))
  43937. characterMakers.push(() => makeCharacter(
  43938. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43939. {
  43940. side: {
  43941. height: math.unit(182, "cm"),
  43942. weight: math.unit(1000, "lb"),
  43943. name: "Side",
  43944. image: {
  43945. source: "./media/characters/silver-dragon/side.svg",
  43946. extra: 710/287,
  43947. bottom: 88/798
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(182, "cm"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43961. {
  43962. side: {
  43963. height: math.unit(6 + 6/12, "feet"),
  43964. weight: math.unit(1.5, "tons"),
  43965. name: "Side",
  43966. image: {
  43967. source: "./media/characters/zephyr/side.svg",
  43968. extra: 1433/586,
  43969. bottom: 109/1542
  43970. }
  43971. },
  43972. },
  43973. [
  43974. {
  43975. name: "Normal",
  43976. height: math.unit(6 + 6/12, "feet"),
  43977. default: true
  43978. },
  43979. ]
  43980. ))
  43981. characterMakers.push(() => makeCharacter(
  43982. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43983. {
  43984. side: {
  43985. height: math.unit(1, "feet"),
  43986. name: "Side",
  43987. image: {
  43988. source: "./media/characters/vixye/side.svg",
  43989. extra: 632/541,
  43990. bottom: 0/632
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(1, "feet"),
  43998. default: true
  43999. },
  44000. {
  44001. name: "True",
  44002. height: math.unit(1e15, "multiverses")
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44008. {
  44009. front: {
  44010. height: math.unit(8 + 2/12, "feet"),
  44011. weight: math.unit(650, "lb"),
  44012. name: "Front",
  44013. image: {
  44014. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44015. extra: 1174/1137,
  44016. bottom: 82/1256
  44017. }
  44018. },
  44019. back: {
  44020. height: math.unit(8 + 2/12, "feet"),
  44021. weight: math.unit(650, "lb"),
  44022. name: "Back",
  44023. image: {
  44024. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44025. extra: 1204/1157,
  44026. bottom: 46/1250
  44027. }
  44028. },
  44029. },
  44030. [
  44031. {
  44032. name: "Wildform",
  44033. height: math.unit(8 + 2/12, "feet"),
  44034. default: true
  44035. },
  44036. ]
  44037. ))
  44038. characterMakers.push(() => makeCharacter(
  44039. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44040. {
  44041. front: {
  44042. height: math.unit(18, "feet"),
  44043. name: "Front",
  44044. image: {
  44045. source: "./media/characters/cyphin/front.svg",
  44046. extra: 970/886,
  44047. bottom: 42/1012
  44048. }
  44049. },
  44050. back: {
  44051. height: math.unit(18, "feet"),
  44052. name: "Back",
  44053. image: {
  44054. source: "./media/characters/cyphin/back.svg",
  44055. extra: 1009/894,
  44056. bottom: 24/1033
  44057. }
  44058. },
  44059. head: {
  44060. height: math.unit(5.05, "feet"),
  44061. name: "Head",
  44062. image: {
  44063. source: "./media/characters/cyphin/head.svg"
  44064. }
  44065. },
  44066. tailbud: {
  44067. height: math.unit(5, "feet"),
  44068. name: "Tailbud",
  44069. image: {
  44070. source: "./media/characters/cyphin/tailbud.svg"
  44071. }
  44072. },
  44073. },
  44074. [
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44079. {
  44080. side: {
  44081. height: math.unit(10, "feet"),
  44082. weight: math.unit(6, "tons"),
  44083. name: "Side",
  44084. image: {
  44085. source: "./media/characters/raijin/side.svg",
  44086. extra: 1529/613,
  44087. bottom: 337/1866
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Normal",
  44094. height: math.unit(10, "feet"),
  44095. default: true
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44101. {
  44102. side: {
  44103. height: math.unit(9, "feet"),
  44104. name: "Side",
  44105. image: {
  44106. source: "./media/characters/nilghais/side.svg",
  44107. extra: 1047/744,
  44108. bottom: 91/1138
  44109. }
  44110. },
  44111. head: {
  44112. height: math.unit(3.14, "feet"),
  44113. name: "Head",
  44114. image: {
  44115. source: "./media/characters/nilghais/head.svg"
  44116. }
  44117. },
  44118. mouth: {
  44119. height: math.unit(4.6, "feet"),
  44120. name: "Mouth",
  44121. image: {
  44122. source: "./media/characters/nilghais/mouth.svg"
  44123. }
  44124. },
  44125. wings: {
  44126. height: math.unit(24, "feet"),
  44127. name: "Wings",
  44128. image: {
  44129. source: "./media/characters/nilghais/wings.svg"
  44130. }
  44131. },
  44132. ass: {
  44133. height: math.unit(6.12, "feet"),
  44134. name: "Ass",
  44135. image: {
  44136. source: "./media/characters/nilghais/ass.svg"
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(9, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44150. {
  44151. regular: {
  44152. height: math.unit(16 + 2/12, "feet"),
  44153. weight: math.unit(2300, "lb"),
  44154. name: "Regular",
  44155. image: {
  44156. source: "./media/characters/zolgar/regular.svg",
  44157. extra: 1246/1004,
  44158. bottom: 124/1370
  44159. }
  44160. },
  44161. boxers: {
  44162. height: math.unit(16 + 2/12, "feet"),
  44163. weight: math.unit(2300, "lb"),
  44164. name: "Boxers",
  44165. image: {
  44166. source: "./media/characters/zolgar/boxers.svg",
  44167. extra: 1246/1004,
  44168. bottom: 124/1370
  44169. }
  44170. },
  44171. armored: {
  44172. height: math.unit(16 + 2/12, "feet"),
  44173. weight: math.unit(2300, "lb"),
  44174. name: "Armored",
  44175. image: {
  44176. source: "./media/characters/zolgar/armored.svg",
  44177. extra: 1246/1004,
  44178. bottom: 124/1370
  44179. }
  44180. },
  44181. goth: {
  44182. height: math.unit(16 + 2/12, "feet"),
  44183. weight: math.unit(2300, "lb"),
  44184. name: "Goth",
  44185. image: {
  44186. source: "./media/characters/zolgar/goth.svg",
  44187. extra: 1246/1004,
  44188. bottom: 124/1370
  44189. }
  44190. },
  44191. },
  44192. [
  44193. {
  44194. name: "Shrunken Down",
  44195. height: math.unit(9 + 2/12, "feet")
  44196. },
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(16 + 2/12, "feet"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44206. {
  44207. front: {
  44208. height: math.unit(6, "feet"),
  44209. weight: math.unit(168, "lb"),
  44210. name: "Front",
  44211. image: {
  44212. source: "./media/characters/luca/front.svg",
  44213. extra: 841/667,
  44214. bottom: 102/943
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(6, "feet"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44228. {
  44229. side: {
  44230. height: math.unit(7 + 3/12, "feet"),
  44231. weight: math.unit(312, "lb"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/zezo/side.svg",
  44235. extra: 1192/1067,
  44236. bottom: 63/1255
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(7 + 3/12, "feet"),
  44244. default: true
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(5 + 5/12, "feet"),
  44253. weight: math.unit(170, "lb"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/mayso/front.svg",
  44257. extra: 1215/1108,
  44258. bottom: 16/1231
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Normal",
  44265. height: math.unit(5 + 5/12, "feet"),
  44266. default: true
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(4 + 3/12, "feet"),
  44275. weight: math.unit(80, "lb"),
  44276. name: "Front",
  44277. image: {
  44278. source: "./media/characters/hess/front.svg",
  44279. extra: 1200/1123,
  44280. bottom: 16/1216
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(4 + 3/12, "feet"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44294. {
  44295. front: {
  44296. height: math.unit(1.9, "meters"),
  44297. name: "Front",
  44298. image: {
  44299. source: "./media/characters/ashgar/front.svg",
  44300. extra: 1177/1146,
  44301. bottom: 99/1276
  44302. }
  44303. },
  44304. back: {
  44305. height: math.unit(1.9, "meters"),
  44306. name: "Back",
  44307. image: {
  44308. source: "./media/characters/ashgar/back.svg",
  44309. extra: 1201/1183,
  44310. bottom: 53/1254
  44311. }
  44312. },
  44313. feral: {
  44314. height: math.unit(1.4, "meters"),
  44315. name: "Feral",
  44316. image: {
  44317. source: "./media/characters/ashgar/feral.svg",
  44318. extra: 370/345,
  44319. bottom: 45/415
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(1.9, "meters"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44333. {
  44334. regular: {
  44335. height: math.unit(6, "feet"),
  44336. weight: math.unit(220, "lb"),
  44337. name: "Regular",
  44338. image: {
  44339. source: "./media/characters/phillip/regular.svg",
  44340. extra: 1373/1277,
  44341. bottom: 75/1448
  44342. }
  44343. },
  44344. dressed: {
  44345. height: math.unit(6, "feet"),
  44346. weight: math.unit(220, "lb"),
  44347. name: "Dressed",
  44348. image: {
  44349. source: "./media/characters/phillip/dressed.svg",
  44350. extra: 1373/1277,
  44351. bottom: 75/1448
  44352. }
  44353. },
  44354. paw: {
  44355. height: math.unit(1.44, "feet"),
  44356. name: "Paw",
  44357. image: {
  44358. source: "./media/characters/phillip/paw.svg"
  44359. }
  44360. },
  44361. },
  44362. [
  44363. {
  44364. name: "Normal",
  44365. height: math.unit(6, "feet"),
  44366. default: true
  44367. },
  44368. ]
  44369. ))
  44370. characterMakers.push(() => makeCharacter(
  44371. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44372. {
  44373. side: {
  44374. height: math.unit(42, "feet"),
  44375. name: "Side",
  44376. image: {
  44377. source: "./media/characters/uvula/side.svg",
  44378. extra: 683/586,
  44379. bottom: 60/743
  44380. }
  44381. },
  44382. front: {
  44383. height: math.unit(42, "feet"),
  44384. name: "Front",
  44385. image: {
  44386. source: "./media/characters/uvula/front.svg",
  44387. extra: 705/613,
  44388. bottom: 54/759
  44389. }
  44390. },
  44391. maw: {
  44392. height: math.unit(23.5, "feet"),
  44393. name: "Maw",
  44394. image: {
  44395. source: "./media/characters/uvula/maw.svg"
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Original Size",
  44402. height: math.unit(14, "inches")
  44403. },
  44404. {
  44405. name: "Human Size",
  44406. height: math.unit(6, "feet")
  44407. },
  44408. {
  44409. name: "Big",
  44410. height: math.unit(42, "feet"),
  44411. default: true
  44412. },
  44413. {
  44414. name: "Bigger",
  44415. height: math.unit(100, "feet")
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(5 + 11/12, "feet"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/lannah/front.svg",
  44427. extra: 1208/1113,
  44428. bottom: 97/1305
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(5 + 11/12, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44442. {
  44443. front: {
  44444. height: math.unit(6 + 3/12, "feet"),
  44445. weight: math.unit(3.5, "tons"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/emberflame/front.svg",
  44449. extra: 1198/672,
  44450. bottom: 82/1280
  44451. }
  44452. },
  44453. side: {
  44454. height: math.unit(6 + 3/12, "feet"),
  44455. weight: math.unit(3.5, "tons"),
  44456. name: "Side",
  44457. image: {
  44458. source: "./media/characters/emberflame/side.svg",
  44459. extra: 938/527,
  44460. bottom: 56/994
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(6 + 3/12, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44474. {
  44475. side: {
  44476. height: math.unit(17.5, "feet"),
  44477. weight: math.unit(35, "tons"),
  44478. name: "Side",
  44479. image: {
  44480. source: "./media/characters/sophie-ambrose/side.svg",
  44481. extra: 1573/1242,
  44482. bottom: 71/1644
  44483. }
  44484. },
  44485. maw: {
  44486. height: math.unit(7.4, "feet"),
  44487. name: "Maw",
  44488. image: {
  44489. source: "./media/characters/sophie-ambrose/maw.svg"
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Normal",
  44496. height: math.unit(17.5, "feet"),
  44497. default: true
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44503. {
  44504. front: {
  44505. height: math.unit(280, "feet"),
  44506. weight: math.unit(550, "tons"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/king-mugi/front.svg",
  44510. extra: 1102/947,
  44511. bottom: 104/1206
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "King Mugi",
  44518. height: math.unit(280, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(64, "meters"),
  44528. name: "Front",
  44529. image: {
  44530. source: "./media/characters/nova-fox/front.svg",
  44531. extra: 1310/1246,
  44532. bottom: 65/1375
  44533. }
  44534. },
  44535. },
  44536. [
  44537. {
  44538. name: "Macro",
  44539. height: math.unit(64, "meters"),
  44540. default: true
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(6 + 3/12, "feet"),
  44549. weight: math.unit(170, "lb"),
  44550. name: "Front",
  44551. image: {
  44552. source: "./media/characters/sam-bat/front.svg",
  44553. extra: 1601/1411,
  44554. bottom: 125/1726
  44555. }
  44556. },
  44557. back: {
  44558. height: math.unit(6 + 3/12, "feet"),
  44559. weight: math.unit(170, "lb"),
  44560. name: "Back",
  44561. image: {
  44562. source: "./media/characters/sam-bat/back.svg",
  44563. extra: 1577/1405,
  44564. bottom: 58/1635
  44565. }
  44566. },
  44567. },
  44568. [
  44569. {
  44570. name: "Normal",
  44571. height: math.unit(6 + 3/12, "feet"),
  44572. default: true
  44573. },
  44574. ]
  44575. ))
  44576. characterMakers.push(() => makeCharacter(
  44577. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44578. {
  44579. front: {
  44580. height: math.unit(59, "feet"),
  44581. weight: math.unit(40000, "lb"),
  44582. name: "Front",
  44583. image: {
  44584. source: "./media/characters/inari/front.svg",
  44585. extra: 1884/1350,
  44586. bottom: 95/1979
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Gigantamax",
  44593. height: math.unit(59, "feet"),
  44594. default: true
  44595. },
  44596. ]
  44597. ))
  44598. characterMakers.push(() => makeCharacter(
  44599. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44600. {
  44601. front: {
  44602. height: math.unit(5 + 8/12, "feet"),
  44603. name: "Front",
  44604. image: {
  44605. source: "./media/characters/elizabeth/front.svg",
  44606. extra: 1395/1298,
  44607. bottom: 54/1449
  44608. }
  44609. },
  44610. mouth: {
  44611. height: math.unit(1.97, "feet"),
  44612. name: "Mouth",
  44613. image: {
  44614. source: "./media/characters/elizabeth/mouth.svg"
  44615. }
  44616. },
  44617. foot: {
  44618. height: math.unit(1.17, "feet"),
  44619. name: "Foot",
  44620. image: {
  44621. source: "./media/characters/elizabeth/foot.svg"
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(5 + 8/12, "feet"),
  44629. default: true
  44630. },
  44631. {
  44632. name: "Minimacro",
  44633. height: math.unit(18, "feet")
  44634. },
  44635. {
  44636. name: "Macro",
  44637. height: math.unit(180, "feet")
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(5 + 2/12, "feet"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/october-gossamer/front.svg",
  44649. extra: 505/454,
  44650. bottom: 7/512
  44651. }
  44652. },
  44653. back: {
  44654. height: math.unit(5 + 2/12, "feet"),
  44655. name: "Back",
  44656. image: {
  44657. source: "./media/characters/october-gossamer/back.svg",
  44658. extra: 501/454,
  44659. bottom: 11/512
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Normal",
  44666. height: math.unit(5 + 2/12, "feet"),
  44667. default: true
  44668. },
  44669. ]
  44670. ))
  44671. characterMakers.push(() => makeCharacter(
  44672. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44673. {
  44674. front: {
  44675. height: math.unit(5, "feet"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/epiglottis/front.svg",
  44679. extra: 923/849,
  44680. bottom: 17/940
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Original Size",
  44687. height: math.unit(10, "inches")
  44688. },
  44689. {
  44690. name: "Human Size",
  44691. height: math.unit(5, "feet"),
  44692. default: true
  44693. },
  44694. {
  44695. name: "Big",
  44696. height: math.unit(25, "feet")
  44697. },
  44698. {
  44699. name: "Bigger",
  44700. height: math.unit(50, "feet")
  44701. },
  44702. {
  44703. name: "oh lawd",
  44704. height: math.unit(75, "feet")
  44705. },
  44706. ]
  44707. ))
  44708. characterMakers.push(() => makeCharacter(
  44709. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44710. {
  44711. front: {
  44712. height: math.unit(2 + 4/12, "feet"),
  44713. weight: math.unit(60, "lb"),
  44714. name: "Front",
  44715. image: {
  44716. source: "./media/characters/lerm/front.svg",
  44717. extra: 796/790,
  44718. bottom: 79/875
  44719. }
  44720. },
  44721. },
  44722. [
  44723. {
  44724. name: "Normal",
  44725. height: math.unit(2 + 4/12, "feet"),
  44726. default: true
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44732. {
  44733. front: {
  44734. height: math.unit(5.5, "feet"),
  44735. weight: math.unit(130, "lb"),
  44736. name: "Front",
  44737. image: {
  44738. source: "./media/characters/xena-nebadon/front.svg",
  44739. extra: 1828/1730,
  44740. bottom: 79/1907
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Tiny Puppy",
  44747. height: math.unit(3, "inches")
  44748. },
  44749. {
  44750. name: "Normal",
  44751. height: math.unit(5.5, "feet"),
  44752. default: true
  44753. },
  44754. {
  44755. name: "Lotta Lady",
  44756. height: math.unit(12, "feet")
  44757. },
  44758. {
  44759. name: "Pretty Big",
  44760. height: math.unit(100, "feet")
  44761. },
  44762. {
  44763. name: "Big",
  44764. height: math.unit(500, "feet")
  44765. },
  44766. {
  44767. name: "Skyscraper Toys",
  44768. height: math.unit(2500, "feet")
  44769. },
  44770. {
  44771. name: "Plane Catcher",
  44772. height: math.unit(8, "miles")
  44773. },
  44774. {
  44775. name: "Planet Toys",
  44776. height: math.unit(15, "earths")
  44777. },
  44778. {
  44779. name: "Stardust",
  44780. height: math.unit(0.25, "galaxies")
  44781. },
  44782. {
  44783. name: "Snacks",
  44784. height: math.unit(70, "universes")
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(1.6, "meters"),
  44793. weight: math.unit(60, "kg"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/bounty/front.svg",
  44797. extra: 1426/1308,
  44798. bottom: 15/1441
  44799. }
  44800. },
  44801. back: {
  44802. height: math.unit(1.6, "meters"),
  44803. weight: math.unit(60, "kg"),
  44804. name: "Back",
  44805. image: {
  44806. source: "./media/characters/bounty/back.svg",
  44807. extra: 1417/1307,
  44808. bottom: 8/1425
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(1.6, "meters"),
  44816. default: true
  44817. },
  44818. {
  44819. name: "Macro",
  44820. height: math.unit(300, "meters")
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44826. {
  44827. front: {
  44828. height: math.unit(2 + 8/12, "feet"),
  44829. weight: math.unit(15, "lb"),
  44830. name: "Front",
  44831. image: {
  44832. source: "./media/characters/mochi/front.svg",
  44833. extra: 1022/852,
  44834. bottom: 435/1457
  44835. }
  44836. },
  44837. back: {
  44838. height: math.unit(2 + 8/12, "feet"),
  44839. weight: math.unit(15, "lb"),
  44840. name: "Back",
  44841. image: {
  44842. source: "./media/characters/mochi/back.svg",
  44843. extra: 1335/1119,
  44844. bottom: 39/1374
  44845. }
  44846. },
  44847. bird: {
  44848. height: math.unit(2 + 8/12, "feet"),
  44849. weight: math.unit(15, "lb"),
  44850. name: "Bird",
  44851. image: {
  44852. source: "./media/characters/mochi/bird.svg",
  44853. extra: 1251/1113,
  44854. bottom: 178/1429
  44855. }
  44856. },
  44857. kaiju: {
  44858. height: math.unit(154, "feet"),
  44859. weight: math.unit(1e7, "lb"),
  44860. name: "Kaiju",
  44861. image: {
  44862. source: "./media/characters/mochi/kaiju.svg",
  44863. extra: 460/324,
  44864. bottom: 40/500
  44865. }
  44866. },
  44867. head: {
  44868. height: math.unit(1.21, "feet"),
  44869. name: "Head",
  44870. image: {
  44871. source: "./media/characters/mochi/head.svg"
  44872. }
  44873. },
  44874. alternateTail: {
  44875. height: math.unit(2 + 8/12, "feet"),
  44876. weight: math.unit(45, "lb"),
  44877. name: "Alternate Tail",
  44878. image: {
  44879. source: "./media/characters/mochi/alternate-tail.svg",
  44880. extra: 139/76,
  44881. bottom: 45/184
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Micro",
  44888. height: math.unit(2, "inches")
  44889. },
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(2 + 8/12, "feet"),
  44893. default: true
  44894. },
  44895. {
  44896. name: "Macro",
  44897. height: math.unit(106, "feet")
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44903. {
  44904. front: {
  44905. height: math.unit(5.67, "feet"),
  44906. weight: math.unit(135, "lb"),
  44907. name: "Front",
  44908. image: {
  44909. source: "./media/characters/sarel/front.svg",
  44910. extra: 865/788,
  44911. bottom: 97/962
  44912. }
  44913. },
  44914. back: {
  44915. height: math.unit(5.67, "feet"),
  44916. weight: math.unit(135, "lb"),
  44917. name: "Back",
  44918. image: {
  44919. source: "./media/characters/sarel/back.svg",
  44920. extra: 857/777,
  44921. bottom: 32/889
  44922. }
  44923. },
  44924. chozoan: {
  44925. height: math.unit(5.67, "feet"),
  44926. weight: math.unit(135, "lb"),
  44927. name: "Chozoan",
  44928. image: {
  44929. source: "./media/characters/sarel/chozoan.svg",
  44930. extra: 865/788,
  44931. bottom: 97/962
  44932. }
  44933. },
  44934. current: {
  44935. height: math.unit(5.67, "feet"),
  44936. weight: math.unit(135, "lb"),
  44937. name: "Current",
  44938. image: {
  44939. source: "./media/characters/sarel/current.svg",
  44940. extra: 865/788,
  44941. bottom: 97/962
  44942. }
  44943. },
  44944. head: {
  44945. height: math.unit(1.77, "feet"),
  44946. name: "Head",
  44947. image: {
  44948. source: "./media/characters/sarel/head.svg"
  44949. }
  44950. },
  44951. claws: {
  44952. height: math.unit(1.8, "feet"),
  44953. name: "Claws",
  44954. image: {
  44955. source: "./media/characters/sarel/claws.svg"
  44956. }
  44957. },
  44958. clawsAlt: {
  44959. height: math.unit(1.8, "feet"),
  44960. name: "Claws-alt",
  44961. image: {
  44962. source: "./media/characters/sarel/claws-alt.svg"
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal",
  44969. height: math.unit(5.67, "feet"),
  44970. default: true
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(5500, "feet"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/alyonia/front.svg",
  44982. extra: 1200/1135,
  44983. bottom: 29/1229
  44984. }
  44985. },
  44986. back: {
  44987. height: math.unit(5500, "feet"),
  44988. name: "Back",
  44989. image: {
  44990. source: "./media/characters/alyonia/back.svg",
  44991. extra: 1205/1138,
  44992. bottom: 10/1215
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Small",
  44999. height: math.unit(10, "feet")
  45000. },
  45001. {
  45002. name: "Macro",
  45003. height: math.unit(500, "feet")
  45004. },
  45005. {
  45006. name: "Mega Macro",
  45007. height: math.unit(5500, "feet"),
  45008. default: true
  45009. },
  45010. {
  45011. name: "Mega Macro+",
  45012. height: math.unit(500000, "feet")
  45013. },
  45014. {
  45015. name: "Giga Macro",
  45016. height: math.unit(3000, "miles")
  45017. },
  45018. {
  45019. name: "Tera Macro",
  45020. height: math.unit(2.8e6, "miles")
  45021. },
  45022. {
  45023. name: "Galactic",
  45024. height: math.unit(120000, "lightyears")
  45025. },
  45026. ]
  45027. ))
  45028. characterMakers.push(() => makeCharacter(
  45029. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45030. {
  45031. werewolf: {
  45032. height: math.unit(8, "feet"),
  45033. weight: math.unit(425, "lb"),
  45034. name: "Werewolf",
  45035. image: {
  45036. source: "./media/characters/autumn/werewolf.svg",
  45037. extra: 2154/2031,
  45038. bottom: 160/2314
  45039. }
  45040. },
  45041. human: {
  45042. height: math.unit(5 + 8/12, "feet"),
  45043. weight: math.unit(150, "lb"),
  45044. name: "Human",
  45045. image: {
  45046. source: "./media/characters/autumn/human.svg",
  45047. extra: 1200/1149,
  45048. bottom: 30/1230
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Normal",
  45055. height: math.unit(8, "feet"),
  45056. default: true
  45057. },
  45058. ]
  45059. ))
  45060. characterMakers.push(() => makeCharacter(
  45061. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45062. {
  45063. front: {
  45064. height: math.unit(8 + 5/12, "feet"),
  45065. weight: math.unit(825, "lb"),
  45066. name: "Front",
  45067. image: {
  45068. source: "./media/characters/cobalt-charizard/front.svg",
  45069. extra: 1268/1155,
  45070. bottom: 122/1390
  45071. }
  45072. },
  45073. side: {
  45074. height: math.unit(8 + 5/12, "feet"),
  45075. weight: math.unit(825, "lb"),
  45076. name: "Side",
  45077. image: {
  45078. source: "./media/characters/cobalt-charizard/side.svg",
  45079. extra: 1348/1257,
  45080. bottom: 58/1406
  45081. }
  45082. },
  45083. gMax: {
  45084. height: math.unit(134 + 11/12, "feet"),
  45085. name: "G-Max",
  45086. image: {
  45087. source: "./media/characters/cobalt-charizard/g-max.svg",
  45088. extra: 1835/1541,
  45089. bottom: 151/1986
  45090. }
  45091. },
  45092. },
  45093. [
  45094. {
  45095. name: "Normal",
  45096. height: math.unit(8 + 5/12, "feet"),
  45097. default: true
  45098. },
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45103. {
  45104. front: {
  45105. height: math.unit(6 + 3/12, "feet"),
  45106. weight: math.unit(210, "lb"),
  45107. name: "Front",
  45108. image: {
  45109. source: "./media/characters/stella/front.svg",
  45110. extra: 3549/3335,
  45111. bottom: 51/3600
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(6 + 3/12, "feet"),
  45119. default: true
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(5, "feet"),
  45128. weight: math.unit(90, "lb"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/riley-bishop/front.svg",
  45132. extra: 1450/1428,
  45133. bottom: 152/1602
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(5, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45147. {
  45148. side: {
  45149. height: math.unit(8 + 2/12, "feet"),
  45150. weight: math.unit(500, "kg"),
  45151. name: "Side",
  45152. image: {
  45153. source: "./media/characters/theo-arcanine/side.svg",
  45154. extra: 1342/1074,
  45155. bottom: 111/1453
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(8 + 2/12, "feet"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45169. {
  45170. front: {
  45171. height: math.unit(4, "feet"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/kali/front.svg",
  45175. extra: 1921/1357,
  45176. bottom: 70/1991
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Normal",
  45183. height: math.unit(4, "feet"),
  45184. default: true
  45185. },
  45186. {
  45187. name: "Macro",
  45188. height: math.unit(32, "meters")
  45189. },
  45190. {
  45191. name: "Macro+",
  45192. height: math.unit(150, "meters")
  45193. },
  45194. {
  45195. name: "Megamacro",
  45196. height: math.unit(7500, "meters")
  45197. },
  45198. {
  45199. name: "Megamacro+",
  45200. height: math.unit(80, "kilometers")
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45206. {
  45207. side: {
  45208. height: math.unit(5 + 11/12, "feet"),
  45209. weight: math.unit(236, "lb"),
  45210. name: "Side",
  45211. image: {
  45212. source: "./media/characters/gapp/side.svg",
  45213. extra: 775/340,
  45214. bottom: 58/833
  45215. }
  45216. },
  45217. mouth: {
  45218. height: math.unit(2.98, "feet"),
  45219. name: "Mouth",
  45220. image: {
  45221. source: "./media/characters/gapp/mouth.svg"
  45222. }
  45223. },
  45224. },
  45225. [
  45226. {
  45227. name: "Normal",
  45228. height: math.unit(5 + 1/12, "feet"),
  45229. default: true
  45230. },
  45231. ]
  45232. ))
  45233. characterMakers.push(() => makeCharacter(
  45234. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45235. {
  45236. front: {
  45237. height: math.unit(6, "feet"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/persephone/front.svg",
  45241. extra: 1895/1717,
  45242. bottom: 96/1991
  45243. }
  45244. },
  45245. back: {
  45246. height: math.unit(6, "feet"),
  45247. name: "Back",
  45248. image: {
  45249. source: "./media/characters/persephone/back.svg",
  45250. extra: 1868/1679,
  45251. bottom: 26/1894
  45252. }
  45253. },
  45254. casual: {
  45255. height: math.unit(6, "feet"),
  45256. name: "Casual",
  45257. image: {
  45258. source: "./media/characters/persephone/casual.svg",
  45259. extra: 1713/1541,
  45260. bottom: 76/1789
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Human Size",
  45267. height: math.unit(6, "feet")
  45268. },
  45269. {
  45270. name: "Big Steppy",
  45271. height: math.unit(600, "meters"),
  45272. default: true
  45273. },
  45274. {
  45275. name: "Galaxy Brain",
  45276. height: math.unit(1, "zettameter")
  45277. },
  45278. ]
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45282. {
  45283. front: {
  45284. height: math.unit(1.85, "meters"),
  45285. name: "Front",
  45286. image: {
  45287. source: "./media/characters/riley-foxthing/front.svg",
  45288. extra: 1495/1354,
  45289. bottom: 122/1617
  45290. }
  45291. },
  45292. frontAlt: {
  45293. height: math.unit(1.85, "meters"),
  45294. name: "Front (Alt)",
  45295. image: {
  45296. source: "./media/characters/riley-foxthing/front-alt.svg",
  45297. extra: 1572/1389,
  45298. bottom: 116/1688
  45299. }
  45300. },
  45301. },
  45302. [
  45303. {
  45304. name: "Normal Sized",
  45305. height: math.unit(1.85, "meters"),
  45306. default: true
  45307. },
  45308. {
  45309. name: "Quite Sizable",
  45310. height: math.unit(5, "meters")
  45311. },
  45312. {
  45313. name: "Rather Large",
  45314. height: math.unit(20, "meters")
  45315. },
  45316. {
  45317. name: "Macro",
  45318. height: math.unit(450, "meters")
  45319. },
  45320. {
  45321. name: "Giga",
  45322. height: math.unit(5, "km")
  45323. },
  45324. ]
  45325. ))
  45326. characterMakers.push(() => makeCharacter(
  45327. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45328. {
  45329. front: {
  45330. height: math.unit(6, "feet"),
  45331. weight: math.unit(200, "lb"),
  45332. name: "Front",
  45333. image: {
  45334. source: "./media/characters/blizzard/front.svg",
  45335. extra: 1136/990,
  45336. bottom: 136/1272
  45337. }
  45338. },
  45339. back: {
  45340. height: math.unit(6, "feet"),
  45341. weight: math.unit(200, "lb"),
  45342. name: "Back",
  45343. image: {
  45344. source: "./media/characters/blizzard/back.svg",
  45345. extra: 1175/1034,
  45346. bottom: 97/1272
  45347. }
  45348. },
  45349. sitting: {
  45350. height: math.unit(3.725, "feet"),
  45351. weight: math.unit(200, "lb"),
  45352. name: "Sitting",
  45353. image: {
  45354. source: "./media/characters/blizzard/sitting.svg",
  45355. extra: 581/485,
  45356. bottom: 90/671
  45357. }
  45358. },
  45359. frontWizard: {
  45360. height: math.unit(7.9, "feet"),
  45361. weight: math.unit(200, "lb"),
  45362. name: "Front (Wizard)",
  45363. image: {
  45364. source: "./media/characters/blizzard/front-wizard.svg"
  45365. }
  45366. },
  45367. backWizard: {
  45368. height: math.unit(7.9, "feet"),
  45369. weight: math.unit(200, "lb"),
  45370. name: "Back (Wizard)",
  45371. image: {
  45372. source: "./media/characters/blizzard/back-wizard.svg"
  45373. }
  45374. },
  45375. frontNsfw: {
  45376. height: math.unit(6, "feet"),
  45377. weight: math.unit(200, "lb"),
  45378. name: "Front (NSFW)",
  45379. image: {
  45380. source: "./media/characters/blizzard/front-nsfw.svg",
  45381. extra: 1136/990,
  45382. bottom: 136/1272
  45383. }
  45384. },
  45385. backNsfw: {
  45386. height: math.unit(6, "feet"),
  45387. weight: math.unit(200, "lb"),
  45388. name: "Back (NSFW)",
  45389. image: {
  45390. source: "./media/characters/blizzard/back-nsfw.svg",
  45391. extra: 1175/1034,
  45392. bottom: 97/1272
  45393. }
  45394. },
  45395. sittingNsfw: {
  45396. height: math.unit(3.725, "feet"),
  45397. weight: math.unit(200, "lb"),
  45398. name: "Sitting (NSFW)",
  45399. image: {
  45400. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45401. extra: 581/485,
  45402. bottom: 90/671
  45403. }
  45404. },
  45405. wizardFrontNsfw: {
  45406. height: math.unit(7.9, "feet"),
  45407. weight: math.unit(200, "lb"),
  45408. name: "Wizard (Front, NSFW)",
  45409. image: {
  45410. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(6, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45424. {
  45425. front: {
  45426. height: math.unit(5 + 2/12, "feet"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/lumi/front.svg",
  45430. extra: 1328/1268,
  45431. bottom: 103/1431
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(5 + 2/12, "feet"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/lumi/back.svg",
  45439. extra: 1381/1327,
  45440. bottom: 43/1424
  45441. }
  45442. },
  45443. },
  45444. [
  45445. {
  45446. name: "Normal",
  45447. height: math.unit(5 + 2/12, "feet"),
  45448. default: true
  45449. },
  45450. ]
  45451. ))
  45452. characterMakers.push(() => makeCharacter(
  45453. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45454. {
  45455. front: {
  45456. height: math.unit(5 + 9/12, "feet"),
  45457. name: "Front",
  45458. image: {
  45459. source: "./media/characters/aliya-cotton/front.svg",
  45460. extra: 577/564,
  45461. bottom: 29/606
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Normal",
  45468. height: math.unit(5 + 9/12, "feet"),
  45469. default: true
  45470. },
  45471. ]
  45472. ))
  45473. characterMakers.push(() => makeCharacter(
  45474. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45475. {
  45476. front: {
  45477. height: math.unit(2.7, "meters"),
  45478. weight: math.unit(25000, "lb"),
  45479. name: "Front",
  45480. image: {
  45481. source: "./media/characters/noah-luxray/front.svg",
  45482. extra: 1644/825,
  45483. bottom: 339/1983
  45484. }
  45485. },
  45486. side: {
  45487. height: math.unit(2.97, "meters"),
  45488. weight: math.unit(25000, "lb"),
  45489. name: "Side",
  45490. image: {
  45491. source: "./media/characters/noah-luxray/side.svg",
  45492. extra: 1319/650,
  45493. bottom: 163/1482
  45494. }
  45495. },
  45496. dick: {
  45497. height: math.unit(7.4, "feet"),
  45498. weight: math.unit(2500, "lb"),
  45499. name: "Dick",
  45500. image: {
  45501. source: "./media/characters/noah-luxray/dick.svg"
  45502. }
  45503. },
  45504. dickAlt: {
  45505. height: math.unit(10.83, "feet"),
  45506. weight: math.unit(2500, "lb"),
  45507. name: "Dick-alt",
  45508. image: {
  45509. source: "./media/characters/noah-luxray/dick-alt.svg"
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "BIG",
  45516. height: math.unit(2.7, "meters"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45523. {
  45524. standing: {
  45525. height: math.unit(183, "cm"),
  45526. weight: math.unit(68, "kg"),
  45527. name: "Standing",
  45528. image: {
  45529. source: "./media/characters/arion/standing.svg",
  45530. extra: 1869/1807,
  45531. bottom: 93/1962
  45532. }
  45533. },
  45534. reclining: {
  45535. height: math.unit(70.5, "cm"),
  45536. weight: math.unit(68, "lb"),
  45537. name: "Reclining",
  45538. image: {
  45539. source: "./media/characters/arion/reclining.svg",
  45540. extra: 937/870,
  45541. bottom: 63/1000
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Colossus Size, Low",
  45548. height: math.unit(33, "meters"),
  45549. default: true
  45550. },
  45551. {
  45552. name: "Colossus Size, Mid",
  45553. height: math.unit(52, "meters")
  45554. },
  45555. {
  45556. name: "Colossus Size, High",
  45557. height: math.unit(60, "meters")
  45558. },
  45559. {
  45560. name: "Titan Size, Low",
  45561. height: math.unit(91, "meters"),
  45562. },
  45563. {
  45564. name: "Titan Size, Mid",
  45565. height: math.unit(122, "meters")
  45566. },
  45567. {
  45568. name: "Titan Size, High",
  45569. height: math.unit(162, "meters")
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45575. {
  45576. front: {
  45577. height: math.unit(53, "meters"),
  45578. name: "Front",
  45579. image: {
  45580. source: "./media/characters/stellar-marbey/front.svg",
  45581. extra: 1913/1805,
  45582. bottom: 92/2005
  45583. }
  45584. },
  45585. back: {
  45586. height: math.unit(53, "meters"),
  45587. name: "Back",
  45588. image: {
  45589. source: "./media/characters/stellar-marbey/back.svg",
  45590. extra: 1960/1851,
  45591. bottom: 28/1988
  45592. }
  45593. },
  45594. mouth: {
  45595. height: math.unit(3.5, "meters"),
  45596. name: "Mouth",
  45597. image: {
  45598. source: "./media/characters/stellar-marbey/mouth.svg"
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Macro",
  45605. height: math.unit(53, "meters"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(8 + 1/12, "feet"),
  45615. weight: math.unit(233, "lb"),
  45616. name: "Front",
  45617. image: {
  45618. source: "./media/characters/matsu/front.svg",
  45619. extra: 832/772,
  45620. bottom: 40/872
  45621. }
  45622. },
  45623. back: {
  45624. height: math.unit(8 + 1/12, "feet"),
  45625. weight: math.unit(233, "lb"),
  45626. name: "Back",
  45627. image: {
  45628. source: "./media/characters/matsu/back.svg",
  45629. extra: 839/780,
  45630. bottom: 47/886
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(8 + 1/12, "feet"),
  45638. default: true
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45644. {
  45645. front: {
  45646. height: math.unit(4, "feet"),
  45647. weight: math.unit(148, "lb"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/thiz/front.svg",
  45651. extra: 1913/1748,
  45652. bottom: 62/1975
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Normal",
  45659. height: math.unit(4, "feet"),
  45660. default: true
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(7 + 6/12, "feet"),
  45669. weight: math.unit(267, "lb"),
  45670. name: "Front",
  45671. image: {
  45672. source: "./media/characters/marcel/front.svg",
  45673. extra: 1221/1096,
  45674. bottom: 76/1297
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(7 + 6/12, "feet"),
  45682. default: true
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45688. {
  45689. side: {
  45690. height: math.unit(42, "meters"),
  45691. name: "Side",
  45692. image: {
  45693. source: "./media/characters/flake/side.svg",
  45694. extra: 1525/1306,
  45695. bottom: 209/1734
  45696. }
  45697. },
  45698. },
  45699. [
  45700. {
  45701. name: "Normal",
  45702. height: math.unit(42, "meters"),
  45703. default: true
  45704. },
  45705. ]
  45706. ))
  45707. characterMakers.push(() => makeCharacter(
  45708. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45709. {
  45710. dressed: {
  45711. height: math.unit(6 + 4/12, "feet"),
  45712. weight: math.unit(520, "lb"),
  45713. name: "Dressed",
  45714. image: {
  45715. source: "./media/characters/someonne/dressed.svg",
  45716. extra: 1020/1010,
  45717. bottom: 178/1198
  45718. }
  45719. },
  45720. undressed: {
  45721. height: math.unit(6 + 4/12, "feet"),
  45722. weight: math.unit(520, "lb"),
  45723. name: "Undressed",
  45724. image: {
  45725. source: "./media/characters/someonne/undressed.svg",
  45726. extra: 1019/1014,
  45727. bottom: 169/1188
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Normal",
  45734. height: math.unit(6 + 4/12, "feet"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(3, "feet"),
  45744. weight: math.unit(30, "lb"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/till/front.svg",
  45748. extra: 892/823,
  45749. bottom: 55/947
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(3, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(9 + 8/12, "feet"),
  45766. weight: math.unit(800, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/sydney-heki/front.svg",
  45770. extra: 1360/1300,
  45771. bottom: 22/1382
  45772. }
  45773. },
  45774. back: {
  45775. height: math.unit(9 + 8/12, "feet"),
  45776. weight: math.unit(800, "lb"),
  45777. name: "Back",
  45778. image: {
  45779. source: "./media/characters/sydney-heki/back.svg",
  45780. extra: 1356/1293,
  45781. bottom: 12/1368
  45782. }
  45783. },
  45784. frontDressed: {
  45785. height: math.unit(9 + 8/12, "feet"),
  45786. weight: math.unit(800, "lb"),
  45787. name: "Front-dressed",
  45788. image: {
  45789. source: "./media/characters/sydney-heki/front-dressed.svg",
  45790. extra: 1360/1300,
  45791. bottom: 22/1382
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Normal",
  45798. height: math.unit(9 + 8/12, "feet"),
  45799. default: true
  45800. },
  45801. {
  45802. name: "Macro",
  45803. height: math.unit(500, "feet")
  45804. },
  45805. {
  45806. name: "Megamacro",
  45807. height: math.unit(3.6, "miles")
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(200, "cm"),
  45816. weight: math.unit(250, "lb"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/fowler-karlsson/front.svg",
  45820. extra: 897/845,
  45821. bottom: 123/1020
  45822. }
  45823. },
  45824. back: {
  45825. height: math.unit(200, "cm"),
  45826. weight: math.unit(250, "lb"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/fowler-karlsson/back.svg",
  45830. extra: 999/944,
  45831. bottom: 26/1025
  45832. }
  45833. },
  45834. dick: {
  45835. height: math.unit(1.92, "feet"),
  45836. weight: math.unit(150, "lb"),
  45837. name: "Dick",
  45838. image: {
  45839. source: "./media/characters/fowler-karlsson/dick.svg"
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(200, "cm"),
  45847. default: true
  45848. },
  45849. {
  45850. name: "Smaller Macro",
  45851. height: math.unit(90, "m")
  45852. },
  45853. {
  45854. name: "Macro",
  45855. height: math.unit(150, "m")
  45856. },
  45857. {
  45858. name: "Bigger Macro",
  45859. height: math.unit(300, "m")
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45865. {
  45866. side: {
  45867. height: math.unit(8 + 2/12, "feet"),
  45868. weight: math.unit(1, "tonne"),
  45869. name: "Side",
  45870. image: {
  45871. source: "./media/characters/rylide/side.svg",
  45872. extra: 1318/1034,
  45873. bottom: 106/1424
  45874. }
  45875. },
  45876. sitting: {
  45877. height: math.unit(303, "cm"),
  45878. weight: math.unit(1, "tonne"),
  45879. name: "Sitting",
  45880. image: {
  45881. source: "./media/characters/rylide/sitting.svg",
  45882. extra: 1303/1103,
  45883. bottom: 36/1339
  45884. }
  45885. },
  45886. },
  45887. [
  45888. {
  45889. name: "Normal",
  45890. height: math.unit(8 + 2/12, "feet"),
  45891. default: true
  45892. },
  45893. ]
  45894. ))
  45895. characterMakers.push(() => makeCharacter(
  45896. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45897. {
  45898. front: {
  45899. height: math.unit(5 + 10/12, "feet"),
  45900. weight: math.unit(160, "lb"),
  45901. name: "Front",
  45902. image: {
  45903. source: "./media/characters/pudask/front.svg",
  45904. extra: 1616/1590,
  45905. bottom: 161/1777
  45906. }
  45907. },
  45908. },
  45909. [
  45910. {
  45911. name: "Ferret Height",
  45912. height: math.unit(2 + 5/12, "feet")
  45913. },
  45914. {
  45915. name: "Canon Height",
  45916. height: math.unit(5 + 10/12, "feet"),
  45917. default: true
  45918. },
  45919. ]
  45920. ))
  45921. characterMakers.push(() => makeCharacter(
  45922. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45923. {
  45924. front: {
  45925. height: math.unit(3 + 6/12, "feet"),
  45926. weight: math.unit(60, "lb"),
  45927. name: "Front",
  45928. image: {
  45929. source: "./media/characters/ramita/front.svg",
  45930. extra: 1402/1232,
  45931. bottom: 62/1464
  45932. }
  45933. },
  45934. dressed: {
  45935. height: math.unit(3 + 6/12, "feet"),
  45936. weight: math.unit(60, "lb"),
  45937. name: "Dressed",
  45938. image: {
  45939. source: "./media/characters/ramita/dressed.svg",
  45940. extra: 1534/1249,
  45941. bottom: 50/1584
  45942. }
  45943. },
  45944. },
  45945. [
  45946. {
  45947. name: "Normal",
  45948. height: math.unit(3 + 6/12, "feet"),
  45949. default: true
  45950. },
  45951. ]
  45952. ))
  45953. characterMakers.push(() => makeCharacter(
  45954. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45955. {
  45956. front: {
  45957. height: math.unit(8, "feet"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/ark/front.svg",
  45961. extra: 772/693,
  45962. bottom: 45/817
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Normal",
  45969. height: math.unit(8, "feet"),
  45970. default: true
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(6, "feet"),
  45979. weight: math.unit(250, "lb"),
  45980. volume: math.unit(5/8, "gallons"),
  45981. name: "Front",
  45982. image: {
  45983. source: "./media/characters/ludwig-horn/front.svg",
  45984. extra: 1782/1635,
  45985. bottom: 96/1878
  45986. }
  45987. },
  45988. back: {
  45989. height: math.unit(6, "feet"),
  45990. weight: math.unit(250, "lb"),
  45991. volume: math.unit(5/8, "gallons"),
  45992. name: "Back",
  45993. image: {
  45994. source: "./media/characters/ludwig-horn/back.svg",
  45995. extra: 1874/1729,
  45996. bottom: 27/1901
  45997. }
  45998. },
  45999. dick: {
  46000. height: math.unit(1.05, "feet"),
  46001. weight: math.unit(15, "lb"),
  46002. volume: math.unit(5/8, "gallons"),
  46003. name: "Dick",
  46004. image: {
  46005. source: "./media/characters/ludwig-horn/dick.svg"
  46006. }
  46007. },
  46008. },
  46009. [
  46010. {
  46011. name: "Small",
  46012. height: math.unit(6, "feet")
  46013. },
  46014. {
  46015. name: "Typical",
  46016. height: math.unit(12, "feet"),
  46017. default: true
  46018. },
  46019. {
  46020. name: "Building",
  46021. height: math.unit(80, "feet")
  46022. },
  46023. {
  46024. name: "Town",
  46025. height: math.unit(800, "feet")
  46026. },
  46027. {
  46028. name: "Kingdom",
  46029. height: math.unit(80000, "feet")
  46030. },
  46031. {
  46032. name: "Planet",
  46033. height: math.unit(8000000, "feet")
  46034. },
  46035. {
  46036. name: "Universe",
  46037. height: math.unit(8000000000, "feet")
  46038. },
  46039. {
  46040. name: "Transcended",
  46041. height: math.unit(8e27, "feet")
  46042. },
  46043. ]
  46044. ))
  46045. characterMakers.push(() => makeCharacter(
  46046. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46047. {
  46048. front: {
  46049. height: math.unit(5, "feet"),
  46050. weight: math.unit(50, "kg"),
  46051. name: "Front",
  46052. image: {
  46053. source: "./media/characters/biot-avery/front.svg",
  46054. extra: 1295/1232,
  46055. bottom: 86/1381
  46056. }
  46057. },
  46058. },
  46059. [
  46060. {
  46061. name: "Normal",
  46062. height: math.unit(5, "feet"),
  46063. default: true
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(6, "feet"),
  46072. name: "Front",
  46073. image: {
  46074. source: "./media/characters/kitsune-kiro/front.svg",
  46075. extra: 1270/1158,
  46076. bottom: 42/1312
  46077. }
  46078. },
  46079. frontAlt: {
  46080. height: math.unit(6, "feet"),
  46081. name: "Front-alt",
  46082. image: {
  46083. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46084. extra: 1130/1081,
  46085. bottom: 36/1166
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Smol",
  46092. height: math.unit(3, "feet")
  46093. },
  46094. {
  46095. name: "Normal",
  46096. height: math.unit(6, "feet"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46103. {
  46104. front: {
  46105. height: math.unit(6, "feet"),
  46106. weight: math.unit(125, "lb"),
  46107. name: "Front",
  46108. image: {
  46109. source: "./media/characters/jack-thatcher/front.svg",
  46110. extra: 1474/1370,
  46111. bottom: 26/1500
  46112. }
  46113. },
  46114. back: {
  46115. height: math.unit(6, "feet"),
  46116. weight: math.unit(125, "lb"),
  46117. name: "Back",
  46118. image: {
  46119. source: "./media/characters/jack-thatcher/back.svg",
  46120. extra: 1489/1384,
  46121. bottom: 18/1507
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Normal",
  46128. height: math.unit(6, "feet"),
  46129. default: true
  46130. },
  46131. {
  46132. name: "Macro",
  46133. height: math.unit(75, "feet")
  46134. },
  46135. {
  46136. name: "Macro-er",
  46137. height: math.unit(250, "feet")
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(7, "feet"),
  46146. weight: math.unit(110, "kg"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/max-hyper/front.svg",
  46150. extra: 1969/1881,
  46151. bottom: 49/2018
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Normal",
  46158. height: math.unit(7, "feet"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(5 + 5/12, "feet"),
  46168. weight: math.unit(160, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/spook/front.svg",
  46172. extra: 794/791,
  46173. bottom: 54/848
  46174. }
  46175. },
  46176. back: {
  46177. height: math.unit(5 + 5/12, "feet"),
  46178. weight: math.unit(160, "lb"),
  46179. name: "Back",
  46180. image: {
  46181. source: "./media/characters/spook/back.svg",
  46182. extra: 812/798,
  46183. bottom: 32/844
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(5 + 5/12, "feet"),
  46191. default: true
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(18, "feet"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/xeaduulix/front.svg",
  46203. extra: 1380/1166,
  46204. bottom: 110/1490
  46205. }
  46206. },
  46207. back: {
  46208. height: math.unit(18, "feet"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/xeaduulix/back.svg",
  46212. extra: 1592/1170,
  46213. bottom: 128/1720
  46214. }
  46215. },
  46216. frontNsfw: {
  46217. height: math.unit(18, "feet"),
  46218. name: "Front (NSFW)",
  46219. image: {
  46220. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46221. extra: 1380/1166,
  46222. bottom: 110/1490
  46223. }
  46224. },
  46225. backNsfw: {
  46226. height: math.unit(18, "feet"),
  46227. name: "Back (NSFW)",
  46228. image: {
  46229. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46230. extra: 1592/1170,
  46231. bottom: 128/1720
  46232. }
  46233. },
  46234. },
  46235. [
  46236. {
  46237. name: "Normal",
  46238. height: math.unit(18, "feet"),
  46239. default: true
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46245. {
  46246. spreadWings: {
  46247. height: math.unit(20, "feet"),
  46248. name: "Spread Wings",
  46249. image: {
  46250. source: "./media/characters/fledge/spread-wings.svg",
  46251. extra: 693/635,
  46252. bottom: 26/719
  46253. }
  46254. },
  46255. front: {
  46256. height: math.unit(20, "feet"),
  46257. name: "Front",
  46258. image: {
  46259. source: "./media/characters/fledge/front.svg",
  46260. extra: 684/637,
  46261. bottom: 18/702
  46262. }
  46263. },
  46264. frontAlt: {
  46265. height: math.unit(20, "feet"),
  46266. name: "Front (Alt)",
  46267. image: {
  46268. source: "./media/characters/fledge/front-alt.svg",
  46269. extra: 708/664,
  46270. bottom: 13/721
  46271. }
  46272. },
  46273. back: {
  46274. height: math.unit(20, "feet"),
  46275. name: "Back",
  46276. image: {
  46277. source: "./media/characters/fledge/back.svg",
  46278. extra: 718/634,
  46279. bottom: 22/740
  46280. }
  46281. },
  46282. head: {
  46283. height: math.unit(5.55, "feet"),
  46284. name: "Head",
  46285. image: {
  46286. source: "./media/characters/fledge/head.svg"
  46287. }
  46288. },
  46289. headAlt: {
  46290. height: math.unit(5.1, "feet"),
  46291. name: "Head (Alt)",
  46292. image: {
  46293. source: "./media/characters/fledge/head-alt.svg"
  46294. }
  46295. },
  46296. },
  46297. [
  46298. {
  46299. name: "Small",
  46300. height: math.unit(6 + 2/12, "feet")
  46301. },
  46302. {
  46303. name: "Big",
  46304. height: math.unit(20, "feet"),
  46305. default: true
  46306. },
  46307. {
  46308. name: "Giant",
  46309. height: math.unit(100, "feet")
  46310. },
  46311. {
  46312. name: "Macro",
  46313. height: math.unit(200, "feet")
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46319. {
  46320. front: {
  46321. height: math.unit(1, "meter"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/atlas-morenai/front.svg",
  46325. extra: 1275/1043,
  46326. bottom: 19/1294
  46327. }
  46328. },
  46329. back: {
  46330. height: math.unit(1, "meter"),
  46331. name: "Back",
  46332. image: {
  46333. source: "./media/characters/atlas-morenai/back.svg",
  46334. extra: 1141/1001,
  46335. bottom: 25/1166
  46336. }
  46337. },
  46338. },
  46339. [
  46340. {
  46341. name: "Normal",
  46342. height: math.unit(1, "meter"),
  46343. default: true
  46344. },
  46345. {
  46346. name: "Magic-Infused",
  46347. height: math.unit(5, "meters")
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46353. {
  46354. front: {
  46355. height: math.unit(5, "meters"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/cintia/front.svg",
  46359. extra: 1312/1228,
  46360. bottom: 38/1350
  46361. }
  46362. },
  46363. back: {
  46364. height: math.unit(5, "meters"),
  46365. name: "Back",
  46366. image: {
  46367. source: "./media/characters/cintia/back.svg",
  46368. extra: 1260/1166,
  46369. bottom: 98/1358
  46370. }
  46371. },
  46372. frontDick: {
  46373. height: math.unit(5, "meters"),
  46374. name: "Front (Dick)",
  46375. image: {
  46376. source: "./media/characters/cintia/front-dick.svg",
  46377. extra: 1312/1228,
  46378. bottom: 38/1350
  46379. }
  46380. },
  46381. backDick: {
  46382. height: math.unit(5, "meters"),
  46383. name: "Back (Dick)",
  46384. image: {
  46385. source: "./media/characters/cintia/back-dick.svg",
  46386. extra: 1260/1166,
  46387. bottom: 98/1358
  46388. }
  46389. },
  46390. bust: {
  46391. height: math.unit(1.97, "meters"),
  46392. name: "Bust",
  46393. image: {
  46394. source: "./media/characters/cintia/bust.svg",
  46395. extra: 617/565,
  46396. bottom: 0/617
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(5, "meters"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46410. {
  46411. side: {
  46412. height: math.unit(100, "feet"),
  46413. name: "Side",
  46414. image: {
  46415. source: "./media/characters/denora/side.svg",
  46416. extra: 875/803,
  46417. bottom: 9/884
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Standard",
  46424. height: math.unit(100, "feet"),
  46425. default: true
  46426. },
  46427. {
  46428. name: "Grand",
  46429. height: math.unit(1000, "feet")
  46430. },
  46431. {
  46432. name: "Conquering",
  46433. height: math.unit(10000, "feet")
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46439. {
  46440. dressed: {
  46441. height: math.unit(8 + 5/12, "feet"),
  46442. weight: math.unit(700, "lb"),
  46443. name: "Dressed",
  46444. image: {
  46445. source: "./media/characters/kiva/dressed.svg",
  46446. extra: 1102/1055,
  46447. bottom: 60/1162
  46448. }
  46449. },
  46450. nude: {
  46451. height: math.unit(8 + 5/12, "feet"),
  46452. weight: math.unit(700, "lb"),
  46453. name: "Nude",
  46454. image: {
  46455. source: "./media/characters/kiva/nude.svg",
  46456. extra: 1102/1055,
  46457. bottom: 60/1162
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Base Height",
  46464. height: math.unit(8 + 5/12, "feet"),
  46465. default: true
  46466. },
  46467. {
  46468. name: "Macro",
  46469. height: math.unit(100, "feet")
  46470. },
  46471. {
  46472. name: "Max",
  46473. height: math.unit(3280, "feet")
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(6 + 8/12, "feet"),
  46482. weight: math.unit(250, "lb"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/ztragon/front.svg",
  46486. extra: 1825/1684,
  46487. bottom: 98/1923
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(6 + 8/12, "feet"),
  46495. default: true
  46496. },
  46497. {
  46498. name: "Macro",
  46499. height: math.unit(80, "feet")
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46505. {
  46506. front: {
  46507. height: math.unit(10.4, "feet"),
  46508. weight: math.unit(2, "tons"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/yesenia/front.svg",
  46512. extra: 1479/1474,
  46513. bottom: 233/1712
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(10.4, "feet"),
  46521. default: true
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46527. {
  46528. normal: {
  46529. height: math.unit(6 + 1/12, "feet"),
  46530. weight: math.unit(180, "lb"),
  46531. name: "Normal",
  46532. image: {
  46533. source: "./media/characters/leanne-lycheborne/normal.svg",
  46534. extra: 1748/1660,
  46535. bottom: 98/1846
  46536. }
  46537. },
  46538. were: {
  46539. height: math.unit(12, "feet"),
  46540. weight: math.unit(1600, "lb"),
  46541. name: "Were",
  46542. image: {
  46543. source: "./media/characters/leanne-lycheborne/were.svg",
  46544. extra: 1485/1432,
  46545. bottom: 66/1551
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Normal",
  46552. height: math.unit(6 + 1/12, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46559. {
  46560. side: {
  46561. height: math.unit(13, "feet"),
  46562. name: "Side",
  46563. image: {
  46564. source: "./media/characters/kira-tyler/side.svg",
  46565. extra: 693/393,
  46566. bottom: 58/751
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(13, "feet"),
  46574. default: true
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46580. {
  46581. front: {
  46582. height: math.unit(10.3, "feet"),
  46583. weight: math.unit(150, "lb"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/blaze/front.svg",
  46587. extra: 1378/1286,
  46588. bottom: 172/1550
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(10.3, "feet"),
  46596. default: true
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46602. {
  46603. side: {
  46604. height: math.unit(2, "meters"),
  46605. weight: math.unit(400, "kg"),
  46606. name: "Side",
  46607. image: {
  46608. source: "./media/characters/anu/side.svg",
  46609. extra: 506/394,
  46610. bottom: 18/524
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Humanoid",
  46617. height: math.unit(2, "meters")
  46618. },
  46619. {
  46620. name: "Normal",
  46621. height: math.unit(5, "meters"),
  46622. default: true
  46623. },
  46624. ]
  46625. ))
  46626. characterMakers.push(() => makeCharacter(
  46627. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46628. {
  46629. front: {
  46630. height: math.unit(5 + 5/12, "feet"),
  46631. weight: math.unit(170, "lb"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/synx-the-lynx/front.svg",
  46635. extra: 1893/1745,
  46636. bottom: 17/1910
  46637. }
  46638. },
  46639. side: {
  46640. height: math.unit(5 + 5/12, "feet"),
  46641. weight: math.unit(170, "lb"),
  46642. name: "Side",
  46643. image: {
  46644. source: "./media/characters/synx-the-lynx/side.svg",
  46645. extra: 1884/1740,
  46646. bottom: 39/1923
  46647. }
  46648. },
  46649. back: {
  46650. height: math.unit(5 + 5/12, "feet"),
  46651. weight: math.unit(170, "lb"),
  46652. name: "Back",
  46653. image: {
  46654. source: "./media/characters/synx-the-lynx/back.svg",
  46655. extra: 1903/1755,
  46656. bottom: 14/1917
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(5 + 5/12, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46670. {
  46671. back: {
  46672. height: math.unit(15, "feet"),
  46673. name: "Back",
  46674. image: {
  46675. source: "./media/characters/nadezda-fex/back.svg",
  46676. extra: 1695/1481,
  46677. bottom: 25/1720
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(15, "feet"),
  46685. default: true
  46686. },
  46687. {
  46688. name: "Macro",
  46689. height: math.unit(2.5, "miles")
  46690. },
  46691. {
  46692. name: "Goddess",
  46693. height: math.unit(2, "multiverses")
  46694. },
  46695. ]
  46696. ))
  46697. characterMakers.push(() => makeCharacter(
  46698. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46699. {
  46700. front: {
  46701. height: math.unit(216, "cm"),
  46702. name: "Front",
  46703. image: {
  46704. source: "./media/characters/lev/front.svg",
  46705. extra: 1728/1670,
  46706. bottom: 82/1810
  46707. }
  46708. },
  46709. back: {
  46710. height: math.unit(216, "cm"),
  46711. name: "Back",
  46712. image: {
  46713. source: "./media/characters/lev/back.svg",
  46714. extra: 1738/1675,
  46715. bottom: 24/1762
  46716. }
  46717. },
  46718. dressed: {
  46719. height: math.unit(216, "cm"),
  46720. name: "Dressed",
  46721. image: {
  46722. source: "./media/characters/lev/dressed.svg",
  46723. extra: 1397/1351,
  46724. bottom: 73/1470
  46725. }
  46726. },
  46727. head: {
  46728. height: math.unit(0.51, "meter"),
  46729. name: "Head",
  46730. image: {
  46731. source: "./media/characters/lev/head.svg"
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(216, "cm"),
  46739. default: true
  46740. },
  46741. {
  46742. name: "Relatively Macro",
  46743. height: math.unit(80, "meters")
  46744. },
  46745. {
  46746. name: "Megamacro",
  46747. height: math.unit(21600, "meters")
  46748. },
  46749. {
  46750. name: "Megamacro+",
  46751. height: math.unit(64800, "meters")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46757. {
  46758. front: {
  46759. height: math.unit(2, "meters"),
  46760. weight: math.unit(80, "kg"),
  46761. name: "Front",
  46762. image: {
  46763. source: "./media/characters/moka/front.svg",
  46764. extra: 1337/1255,
  46765. bottom: 58/1395
  46766. }
  46767. },
  46768. },
  46769. [
  46770. {
  46771. name: "Micro",
  46772. height: math.unit(15, "cm")
  46773. },
  46774. {
  46775. name: "Normal",
  46776. height: math.unit(2, "meters"),
  46777. default: true
  46778. },
  46779. {
  46780. name: "Macro",
  46781. height: math.unit(20, "meters"),
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46787. {
  46788. front: {
  46789. height: math.unit(9, "feet"),
  46790. weight: math.unit(240, "lb"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/kuzco/front.svg",
  46794. extra: 1593/1487,
  46795. bottom: 32/1625
  46796. }
  46797. },
  46798. side: {
  46799. height: math.unit(9, "feet"),
  46800. weight: math.unit(240, "lb"),
  46801. name: "Side",
  46802. image: {
  46803. source: "./media/characters/kuzco/side.svg",
  46804. extra: 1575/1485,
  46805. bottom: 30/1605
  46806. }
  46807. },
  46808. back: {
  46809. height: math.unit(9, "feet"),
  46810. weight: math.unit(240, "lb"),
  46811. name: "Back",
  46812. image: {
  46813. source: "./media/characters/kuzco/back.svg",
  46814. extra: 1603/1514,
  46815. bottom: 14/1617
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(9, "feet"),
  46823. default: true
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46829. {
  46830. side: {
  46831. height: math.unit(2, "meters"),
  46832. weight: math.unit(300, "kg"),
  46833. name: "Side",
  46834. image: {
  46835. source: "./media/characters/ceruleus/side.svg",
  46836. extra: 1068/974,
  46837. bottom: 126/1194
  46838. }
  46839. },
  46840. maw: {
  46841. height: math.unit(0.8125, "meter"),
  46842. name: "Maw",
  46843. image: {
  46844. source: "./media/characters/ceruleus/maw.svg"
  46845. }
  46846. },
  46847. },
  46848. [
  46849. {
  46850. name: "Normal",
  46851. height: math.unit(16, "meters"),
  46852. default: true
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(9, "feet"),
  46861. weight: math.unit(500, "kg"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/acouya/front.svg",
  46865. extra: 1660/1473,
  46866. bottom: 28/1688
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(9, "feet"),
  46874. default: true
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(5 + 6/12, "feet"),
  46883. weight: math.unit(195, "lb"),
  46884. name: "Front",
  46885. image: {
  46886. source: "./media/characters/vant/front.svg",
  46887. extra: 1396/1320,
  46888. bottom: 20/1416
  46889. }
  46890. },
  46891. back: {
  46892. height: math.unit(5 + 6/12, "feet"),
  46893. weight: math.unit(195, "lb"),
  46894. name: "Back",
  46895. image: {
  46896. source: "./media/characters/vant/back.svg",
  46897. extra: 1396/1320,
  46898. bottom: 20/1416
  46899. }
  46900. },
  46901. maw: {
  46902. height: math.unit(0.75, "feet"),
  46903. name: "Maw",
  46904. image: {
  46905. source: "./media/characters/vant/maw.svg"
  46906. }
  46907. },
  46908. paw: {
  46909. height: math.unit(1.07, "feet"),
  46910. name: "Paw",
  46911. image: {
  46912. source: "./media/characters/vant/paw.svg"
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Micro",
  46919. height: math.unit(0.25, "inches")
  46920. },
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(5 + 6/12, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Macro",
  46928. height: math.unit(75, "feet")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46934. {
  46935. front: {
  46936. height: math.unit(30, "meters"),
  46937. weight: math.unit(363, "tons"),
  46938. name: "Front",
  46939. image: {
  46940. source: "./media/characters/ahra/front.svg",
  46941. extra: 1914/1814,
  46942. bottom: 46/1960
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Macro",
  46949. height: math.unit(30, "meters"),
  46950. default: true
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46956. {
  46957. undressed: {
  46958. height: math.unit(2, "m"),
  46959. weight: math.unit(250, "kg"),
  46960. name: "Undressed",
  46961. image: {
  46962. source: "./media/characters/coriander/undressed.svg",
  46963. extra: 1757/1606,
  46964. bottom: 107/1864
  46965. }
  46966. },
  46967. dressed: {
  46968. height: math.unit(2, "m"),
  46969. weight: math.unit(250, "kg"),
  46970. name: "Dressed",
  46971. image: {
  46972. source: "./media/characters/coriander/dressed.svg",
  46973. extra: 1757/1606,
  46974. bottom: 107/1864
  46975. }
  46976. },
  46977. },
  46978. [
  46979. {
  46980. name: "Normal",
  46981. height: math.unit(4, "meters"),
  46982. default: true
  46983. },
  46984. {
  46985. name: "XL",
  46986. height: math.unit(6, "meters")
  46987. },
  46988. {
  46989. name: "XXL",
  46990. height: math.unit(8, "meters")
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46996. {
  46997. front: {
  46998. height: math.unit(6, "feet"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/syrinx/front.svg",
  47002. extra: 1557/1259,
  47003. bottom: 171/1728
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Normal",
  47010. height: math.unit(6 + 3/12, "feet"),
  47011. default: true
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47017. {
  47018. front: {
  47019. height: math.unit(11 + 6/12, "feet"),
  47020. weight: math.unit(1.5, "tons"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/bor/front.svg",
  47024. extra: 1189/1109,
  47025. bottom: 170/1359
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Normal",
  47032. height: math.unit(11 + 6/12, "feet"),
  47033. default: true
  47034. },
  47035. {
  47036. name: "Macro",
  47037. height: math.unit(32 + 9/12, "feet")
  47038. },
  47039. ]
  47040. ))
  47041. characterMakers.push(() => makeCharacter(
  47042. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47043. {
  47044. anthro: {
  47045. height: math.unit(9, "feet"),
  47046. weight: math.unit(2076, "lb"),
  47047. name: "Anthro",
  47048. image: {
  47049. source: "./media/characters/abacus/anthro.svg",
  47050. extra: 1540/1494,
  47051. bottom: 233/1773
  47052. }
  47053. },
  47054. pigeon: {
  47055. height: math.unit(1, "feet"),
  47056. name: "Pigeon",
  47057. image: {
  47058. source: "./media/characters/abacus/pigeon.svg",
  47059. extra: 528/525,
  47060. bottom: 46/574
  47061. }
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Normal",
  47067. height: math.unit(9, "feet"),
  47068. default: true
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47074. {
  47075. side: {
  47076. height: math.unit(6, "feet"),
  47077. name: "Side",
  47078. image: {
  47079. source: "./media/characters/delkhan/side.svg",
  47080. extra: 1884/1786,
  47081. bottom: 308/2192
  47082. }
  47083. },
  47084. head: {
  47085. height: math.unit(3.38, "feet"),
  47086. name: "Head",
  47087. image: {
  47088. source: "./media/characters/delkhan/head.svg"
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Normal",
  47095. height: math.unit(72, "feet"),
  47096. default: true
  47097. },
  47098. {
  47099. name: "Giant",
  47100. height: math.unit(172, "feet")
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47106. {
  47107. standing: {
  47108. height: math.unit(6, "feet"),
  47109. name: "Standing",
  47110. image: {
  47111. source: "./media/characters/euchidat/standing.svg",
  47112. extra: 1612/1553,
  47113. bottom: 116/1728
  47114. }
  47115. },
  47116. leaning: {
  47117. height: math.unit(6, "feet"),
  47118. name: "Leaning",
  47119. image: {
  47120. source: "./media/characters/euchidat/leaning.svg",
  47121. extra: 1719/1674,
  47122. bottom: 27/1746
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(175, "feet"),
  47130. default: true
  47131. },
  47132. {
  47133. name: "Megamacro",
  47134. height: math.unit(190, "miles")
  47135. },
  47136. {
  47137. name: "Gigamacro",
  47138. height: math.unit(190000, "miles")
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(6, "feet"),
  47147. weight: math.unit(150, "lb"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/rebecca-stack/front.svg",
  47151. extra: 1256/1201,
  47152. bottom: 18/1274
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(5 + 8/12, "feet"),
  47160. default: true
  47161. },
  47162. {
  47163. name: "Demolitionist",
  47164. height: math.unit(200, "feet")
  47165. },
  47166. {
  47167. name: "Out of Control",
  47168. height: math.unit(2, "miles")
  47169. },
  47170. {
  47171. name: "Giga",
  47172. height: math.unit(7200, "miles")
  47173. },
  47174. ]
  47175. ))
  47176. characterMakers.push(() => makeCharacter(
  47177. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47178. {
  47179. front: {
  47180. height: math.unit(6, "feet"),
  47181. weight: math.unit(150, "lb"),
  47182. name: "Front",
  47183. image: {
  47184. source: "./media/characters/jenny-cartwright/front.svg",
  47185. extra: 1384/1376,
  47186. bottom: 58/1442
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(6 + 7/12, "feet"),
  47194. default: true
  47195. },
  47196. {
  47197. name: "Librarian",
  47198. height: math.unit(55, "feet")
  47199. },
  47200. {
  47201. name: "Sightseer",
  47202. height: math.unit(50, "miles")
  47203. },
  47204. {
  47205. name: "Giga",
  47206. height: math.unit(30000, "miles")
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47212. {
  47213. nude: {
  47214. height: math.unit(8, "feet"),
  47215. weight: math.unit(225, "lb"),
  47216. name: "Nude",
  47217. image: {
  47218. source: "./media/characters/marvy/nude.svg",
  47219. extra: 1900/1683,
  47220. bottom: 89/1989
  47221. }
  47222. },
  47223. dressed: {
  47224. height: math.unit(8, "feet"),
  47225. weight: math.unit(225, "lb"),
  47226. name: "Dressed",
  47227. image: {
  47228. source: "./media/characters/marvy/dressed.svg",
  47229. extra: 1900/1683,
  47230. bottom: 89/1989
  47231. }
  47232. },
  47233. head: {
  47234. height: math.unit(2.85, "feet"),
  47235. name: "Head",
  47236. image: {
  47237. source: "./media/characters/marvy/head.svg"
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(8, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(8, "feet"),
  47254. weight: math.unit(250, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/leah/front.svg",
  47258. extra: 1257/1149,
  47259. bottom: 109/1366
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Normal",
  47266. height: math.unit(8, "feet"),
  47267. default: true
  47268. },
  47269. {
  47270. name: "Minimacro",
  47271. height: math.unit(40, "feet")
  47272. },
  47273. {
  47274. name: "Macro",
  47275. height: math.unit(124, "feet")
  47276. },
  47277. {
  47278. name: "Megamacro",
  47279. height: math.unit(850, "feet")
  47280. },
  47281. ]
  47282. ))
  47283. characterMakers.push(() => makeCharacter(
  47284. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47285. {
  47286. side: {
  47287. height: math.unit(13 + 6/12, "feet"),
  47288. weight: math.unit(3200, "lb"),
  47289. name: "Side",
  47290. image: {
  47291. source: "./media/characters/alvir/side.svg",
  47292. extra: 896/589,
  47293. bottom: 26/922
  47294. }
  47295. },
  47296. },
  47297. [
  47298. {
  47299. name: "Normal",
  47300. height: math.unit(13 + 6/12, "feet"),
  47301. default: true
  47302. },
  47303. ]
  47304. ))
  47305. characterMakers.push(() => makeCharacter(
  47306. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47307. {
  47308. front: {
  47309. height: math.unit(5 + 4/12, "feet"),
  47310. weight: math.unit(236, "lb"),
  47311. name: "Front",
  47312. image: {
  47313. source: "./media/characters/zaina-khalil/front.svg",
  47314. extra: 1533/1485,
  47315. bottom: 94/1627
  47316. }
  47317. },
  47318. side: {
  47319. height: math.unit(5 + 4/12, "feet"),
  47320. weight: math.unit(236, "lb"),
  47321. name: "Side",
  47322. image: {
  47323. source: "./media/characters/zaina-khalil/side.svg",
  47324. extra: 1537/1498,
  47325. bottom: 66/1603
  47326. }
  47327. },
  47328. back: {
  47329. height: math.unit(5 + 4/12, "feet"),
  47330. weight: math.unit(236, "lb"),
  47331. name: "Back",
  47332. image: {
  47333. source: "./media/characters/zaina-khalil/back.svg",
  47334. extra: 1546/1494,
  47335. bottom: 89/1635
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Normal",
  47342. height: math.unit(5 + 4/12, "feet"),
  47343. default: true
  47344. },
  47345. ]
  47346. ))
  47347. characterMakers.push(() => makeCharacter(
  47348. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47349. {
  47350. side: {
  47351. height: math.unit(12, "feet"),
  47352. weight: math.unit(4000, "lb"),
  47353. name: "Side",
  47354. image: {
  47355. source: "./media/characters/terry/side.svg",
  47356. extra: 1518/1439,
  47357. bottom: 149/1667
  47358. }
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Normal",
  47364. height: math.unit(12, "feet"),
  47365. default: true
  47366. },
  47367. ]
  47368. ))
  47369. characterMakers.push(() => makeCharacter(
  47370. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47371. {
  47372. front: {
  47373. height: math.unit(12, "feet"),
  47374. weight: math.unit(1500, "lb"),
  47375. name: "Front",
  47376. image: {
  47377. source: "./media/characters/kahea/front.svg",
  47378. extra: 1722/1617,
  47379. bottom: 179/1901
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(12, "feet"),
  47387. default: true
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47393. {
  47394. demonFront: {
  47395. height: math.unit(36, "feet"),
  47396. name: "Front",
  47397. image: {
  47398. source: "./media/characters/alex-xuria/demon-front.svg",
  47399. extra: 1705/1673,
  47400. bottom: 198/1903
  47401. },
  47402. form: "demon",
  47403. default: true
  47404. },
  47405. demonBack: {
  47406. height: math.unit(36, "feet"),
  47407. name: "Back",
  47408. image: {
  47409. source: "./media/characters/alex-xuria/demon-back.svg",
  47410. extra: 1725/1693,
  47411. bottom: 70/1795
  47412. },
  47413. form: "demon"
  47414. },
  47415. demonHead: {
  47416. height: math.unit(2.14, "meters"),
  47417. name: "Head",
  47418. image: {
  47419. source: "./media/characters/alex-xuria/demon-head.svg"
  47420. },
  47421. form: "demon"
  47422. },
  47423. demonHand: {
  47424. height: math.unit(1.61, "meters"),
  47425. name: "Hand",
  47426. image: {
  47427. source: "./media/characters/alex-xuria/demon-hand.svg"
  47428. },
  47429. form: "demon"
  47430. },
  47431. demonPaw: {
  47432. height: math.unit(1.35, "meters"),
  47433. name: "Paw",
  47434. image: {
  47435. source: "./media/characters/alex-xuria/demon-paw.svg"
  47436. },
  47437. form: "demon"
  47438. },
  47439. demonFoot: {
  47440. height: math.unit(2.2, "meters"),
  47441. name: "Foot",
  47442. image: {
  47443. source: "./media/characters/alex-xuria/demon-foot.svg"
  47444. },
  47445. form: "demon"
  47446. },
  47447. demonCock: {
  47448. height: math.unit(1.74, "meters"),
  47449. name: "Cock",
  47450. image: {
  47451. source: "./media/characters/alex-xuria/demon-cock.svg"
  47452. },
  47453. form: "demon"
  47454. },
  47455. demonTailClosed: {
  47456. height: math.unit(1.47, "meters"),
  47457. name: "Tail (Closed)",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47460. },
  47461. form: "demon"
  47462. },
  47463. demonTailOpen: {
  47464. height: math.unit(2.85, "meters"),
  47465. name: "Tail (Open)",
  47466. image: {
  47467. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47468. },
  47469. form: "demon"
  47470. },
  47471. incubusFront: {
  47472. height: math.unit(12, "feet"),
  47473. name: "Front",
  47474. image: {
  47475. source: "./media/characters/alex-xuria/incubus-front.svg",
  47476. extra: 1754/1677,
  47477. bottom: 125/1879
  47478. },
  47479. form: "incubus",
  47480. default: true
  47481. },
  47482. incubusBack: {
  47483. height: math.unit(12, "feet"),
  47484. name: "Back",
  47485. image: {
  47486. source: "./media/characters/alex-xuria/incubus-back.svg",
  47487. extra: 1702/1647,
  47488. bottom: 30/1732
  47489. },
  47490. form: "incubus"
  47491. },
  47492. incubusHead: {
  47493. height: math.unit(3.45, "feet"),
  47494. name: "Head",
  47495. image: {
  47496. source: "./media/characters/alex-xuria/incubus-head.svg"
  47497. },
  47498. form: "incubus"
  47499. },
  47500. rabbitFront: {
  47501. height: math.unit(6, "feet"),
  47502. name: "Front",
  47503. image: {
  47504. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47505. extra: 1369/1349,
  47506. bottom: 45/1414
  47507. },
  47508. form: "rabbit",
  47509. default: true
  47510. },
  47511. rabbitSide: {
  47512. height: math.unit(6, "feet"),
  47513. name: "Side",
  47514. image: {
  47515. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47516. extra: 1370/1356,
  47517. bottom: 37/1407
  47518. },
  47519. form: "rabbit"
  47520. },
  47521. rabbitBack: {
  47522. height: math.unit(6, "feet"),
  47523. name: "Back",
  47524. image: {
  47525. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47526. extra: 1375/1358,
  47527. bottom: 43/1418
  47528. },
  47529. form: "rabbit"
  47530. },
  47531. },
  47532. [
  47533. {
  47534. name: "Normal",
  47535. height: math.unit(6, "feet"),
  47536. default: true,
  47537. form: "rabbit"
  47538. },
  47539. {
  47540. name: "Incubus",
  47541. height: math.unit(12, "feet"),
  47542. default: true,
  47543. form: "incubus"
  47544. },
  47545. {
  47546. name: "Demon",
  47547. height: math.unit(36, "feet"),
  47548. default: true,
  47549. form: "demon"
  47550. }
  47551. ],
  47552. {
  47553. "demon": {
  47554. name: "Demon",
  47555. default: true
  47556. },
  47557. "incubus": {
  47558. name: "Incubus",
  47559. },
  47560. "rabbit": {
  47561. name: "Rabbit"
  47562. }
  47563. }
  47564. ))
  47565. characterMakers.push(() => makeCharacter(
  47566. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47567. {
  47568. front: {
  47569. height: math.unit(7 + 5/12, "feet"),
  47570. weight: math.unit(510, "lb"),
  47571. name: "Front",
  47572. image: {
  47573. source: "./media/characters/syrup/front.svg",
  47574. extra: 932/916,
  47575. bottom: 26/958
  47576. }
  47577. },
  47578. },
  47579. [
  47580. {
  47581. name: "Normal",
  47582. height: math.unit(7 + 5/12, "feet"),
  47583. default: true
  47584. },
  47585. {
  47586. name: "Big",
  47587. height: math.unit(50, "feet")
  47588. },
  47589. {
  47590. name: "Macro",
  47591. height: math.unit(300, "feet")
  47592. },
  47593. {
  47594. name: "Megamacro",
  47595. height: math.unit(1, "mile")
  47596. },
  47597. ]
  47598. ))
  47599. characterMakers.push(() => makeCharacter(
  47600. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47601. {
  47602. front: {
  47603. height: math.unit(6 + 9/12, "feet"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/zeimne/front.svg",
  47607. extra: 1969/1806,
  47608. bottom: 53/2022
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(6 + 9/12, "feet"),
  47616. default: true
  47617. },
  47618. {
  47619. name: "Giant",
  47620. height: math.unit(550, "feet")
  47621. },
  47622. {
  47623. name: "Mega",
  47624. height: math.unit(3, "miles")
  47625. },
  47626. {
  47627. name: "Giga",
  47628. height: math.unit(250, "miles")
  47629. },
  47630. {
  47631. name: "Tera",
  47632. height: math.unit(1, "AU")
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(5 + 2/12, "feet"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/grar/front.svg",
  47644. extra: 1331/1119,
  47645. bottom: 60/1391
  47646. }
  47647. },
  47648. back: {
  47649. height: math.unit(5 + 2/12, "feet"),
  47650. name: "Back",
  47651. image: {
  47652. source: "./media/characters/grar/back.svg",
  47653. extra: 1385/1169,
  47654. bottom: 23/1408
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Normal",
  47661. height: math.unit(5 + 2/12, "feet"),
  47662. default: true
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(13 + 7/12, "feet"),
  47671. weight: math.unit(2200, "lb"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/endraya/front.svg",
  47675. extra: 1289/1215,
  47676. bottom: 50/1339
  47677. }
  47678. },
  47679. nude: {
  47680. height: math.unit(13 + 7/12, "feet"),
  47681. weight: math.unit(2200, "lb"),
  47682. name: "Nude",
  47683. image: {
  47684. source: "./media/characters/endraya/nude.svg",
  47685. extra: 1247/1171,
  47686. bottom: 40/1287
  47687. }
  47688. },
  47689. head: {
  47690. height: math.unit(2.6, "feet"),
  47691. name: "Head",
  47692. image: {
  47693. source: "./media/characters/endraya/head.svg"
  47694. }
  47695. },
  47696. slit: {
  47697. height: math.unit(3.4, "feet"),
  47698. name: "Slit",
  47699. image: {
  47700. source: "./media/characters/endraya/slit.svg"
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Normal",
  47707. height: math.unit(13 + 7/12, "feet"),
  47708. default: true
  47709. },
  47710. {
  47711. name: "Macro",
  47712. height: math.unit(200, "feet")
  47713. },
  47714. ]
  47715. ))
  47716. characterMakers.push(() => makeCharacter(
  47717. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47718. {
  47719. front: {
  47720. height: math.unit(1.81, "meters"),
  47721. weight: math.unit(69, "kg"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/rodryana/front.svg",
  47725. extra: 2002/1921,
  47726. bottom: 53/2055
  47727. }
  47728. },
  47729. back: {
  47730. height: math.unit(1.81, "meters"),
  47731. weight: math.unit(69, "kg"),
  47732. name: "Back",
  47733. image: {
  47734. source: "./media/characters/rodryana/back.svg",
  47735. extra: 1993/1926,
  47736. bottom: 48/2041
  47737. }
  47738. },
  47739. maw: {
  47740. height: math.unit(0.19769417475, "meters"),
  47741. name: "Maw",
  47742. image: {
  47743. source: "./media/characters/rodryana/maw.svg"
  47744. }
  47745. },
  47746. slit: {
  47747. height: math.unit(0.31631067961, "meters"),
  47748. name: "Slit",
  47749. image: {
  47750. source: "./media/characters/rodryana/slit.svg"
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(1.81, "meters")
  47758. },
  47759. {
  47760. name: "Mini Macro",
  47761. height: math.unit(181, "meters")
  47762. },
  47763. {
  47764. name: "Macro",
  47765. height: math.unit(452, "meters"),
  47766. default: true
  47767. },
  47768. {
  47769. name: "Mega Macro",
  47770. height: math.unit(1.375, "km")
  47771. },
  47772. {
  47773. name: "Giga Macro",
  47774. height: math.unit(13.575, "km")
  47775. },
  47776. ]
  47777. ))
  47778. characterMakers.push(() => makeCharacter(
  47779. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47780. {
  47781. front: {
  47782. height: math.unit(6, "feet"),
  47783. weight: math.unit(1000, "lb"),
  47784. name: "Front",
  47785. image: {
  47786. source: "./media/characters/asaya/front.svg",
  47787. extra: 1460/1200,
  47788. bottom: 71/1531
  47789. }
  47790. },
  47791. },
  47792. [
  47793. {
  47794. name: "Normal",
  47795. height: math.unit(8, "km"),
  47796. default: true
  47797. },
  47798. ]
  47799. ))
  47800. characterMakers.push(() => makeCharacter(
  47801. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47802. {
  47803. front: {
  47804. height: math.unit(3.5, "meters"),
  47805. name: "Front",
  47806. image: {
  47807. source: "./media/characters/sarzu-and-israz/front.svg",
  47808. extra: 1570/1558,
  47809. bottom: 150/1720
  47810. },
  47811. },
  47812. back: {
  47813. height: math.unit(3.5, "meters"),
  47814. name: "Back",
  47815. image: {
  47816. source: "./media/characters/sarzu-and-israz/back.svg",
  47817. extra: 1523/1509,
  47818. bottom: 132/1655
  47819. },
  47820. },
  47821. frontFemale: {
  47822. height: math.unit(3.5, "meters"),
  47823. name: "Front (Female)",
  47824. image: {
  47825. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47826. extra: 1570/1558,
  47827. bottom: 150/1720
  47828. },
  47829. },
  47830. frontHerm: {
  47831. height: math.unit(3.5, "meters"),
  47832. name: "Front (Herm)",
  47833. image: {
  47834. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47835. extra: 1570/1558,
  47836. bottom: 150/1720
  47837. },
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(3.5, "meters"),
  47844. default: true,
  47845. },
  47846. {
  47847. name: "Macro",
  47848. height: math.unit(65.5, "meters"),
  47849. },
  47850. ],
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(6, "feet"),
  47857. weight: math.unit(250, "lb"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/zenimma/front.svg",
  47861. extra: 1346/1320,
  47862. bottom: 58/1404
  47863. }
  47864. },
  47865. back: {
  47866. height: math.unit(6, "feet"),
  47867. weight: math.unit(250, "lb"),
  47868. name: "Back",
  47869. image: {
  47870. source: "./media/characters/zenimma/back.svg",
  47871. extra: 1324/1308,
  47872. bottom: 44/1368
  47873. }
  47874. },
  47875. dick: {
  47876. height: math.unit(1.44, "feet"),
  47877. name: "Dick",
  47878. image: {
  47879. source: "./media/characters/zenimma/dick.svg"
  47880. }
  47881. },
  47882. },
  47883. [
  47884. {
  47885. name: "Canon Height",
  47886. height: math.unit(66, "miles"),
  47887. default: true
  47888. },
  47889. ]
  47890. ))
  47891. characterMakers.push(() => makeCharacter(
  47892. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47893. {
  47894. nude: {
  47895. height: math.unit(6, "feet"),
  47896. weight: math.unit(150, "lb"),
  47897. name: "Nude",
  47898. image: {
  47899. source: "./media/characters/shavon/nude.svg",
  47900. extra: 1242/1096,
  47901. bottom: 98/1340
  47902. }
  47903. },
  47904. dressed: {
  47905. height: math.unit(6, "feet"),
  47906. weight: math.unit(150, "lb"),
  47907. name: "Dressed",
  47908. image: {
  47909. source: "./media/characters/shavon/dressed.svg",
  47910. extra: 1242/1096,
  47911. bottom: 98/1340
  47912. }
  47913. },
  47914. },
  47915. [
  47916. {
  47917. name: "Macro",
  47918. height: math.unit(255, "feet"),
  47919. default: true
  47920. },
  47921. ]
  47922. ))
  47923. characterMakers.push(() => makeCharacter(
  47924. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47925. {
  47926. front: {
  47927. height: math.unit(6, "feet"),
  47928. name: "Front",
  47929. image: {
  47930. source: "./media/characters/steph/front.svg",
  47931. extra: 1430/1330,
  47932. bottom: 54/1484
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Normal",
  47939. height: math.unit(6, "feet"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47946. {
  47947. front: {
  47948. height: math.unit(9, "feet"),
  47949. weight: math.unit(400, "lb"),
  47950. name: "Front",
  47951. image: {
  47952. source: "./media/characters/kil'aman/front.svg",
  47953. extra: 1210/1159,
  47954. bottom: 109/1319
  47955. }
  47956. },
  47957. head: {
  47958. height: math.unit(2.14, "feet"),
  47959. name: "Head",
  47960. image: {
  47961. source: "./media/characters/kil'aman/head.svg"
  47962. }
  47963. },
  47964. maw: {
  47965. height: math.unit(1.21, "feet"),
  47966. name: "Maw",
  47967. image: {
  47968. source: "./media/characters/kil'aman/maw.svg"
  47969. }
  47970. },
  47971. foot: {
  47972. height: math.unit(1.7, "feet"),
  47973. name: "Foot",
  47974. image: {
  47975. source: "./media/characters/kil'aman/foot.svg"
  47976. }
  47977. },
  47978. dick: {
  47979. height: math.unit(2.1, "feet"),
  47980. name: "Dick",
  47981. image: {
  47982. source: "./media/characters/kil'aman/dick.svg"
  47983. }
  47984. },
  47985. },
  47986. [
  47987. {
  47988. name: "Normal",
  47989. height: math.unit(9, "feet")
  47990. },
  47991. {
  47992. name: "Canon Height",
  47993. height: math.unit(10, "miles"),
  47994. default: true
  47995. },
  47996. {
  47997. name: "Maximum",
  47998. height: math.unit(6e9, "miles")
  47999. },
  48000. ]
  48001. ))
  48002. characterMakers.push(() => makeCharacter(
  48003. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48004. {
  48005. front: {
  48006. height: math.unit(90, "feet"),
  48007. weight: math.unit(675000, "lb"),
  48008. name: "Front",
  48009. image: {
  48010. source: "./media/characters/qadan/front.svg",
  48011. extra: 1012/1004,
  48012. bottom: 78/1090
  48013. }
  48014. },
  48015. back: {
  48016. height: math.unit(90, "feet"),
  48017. weight: math.unit(675000, "lb"),
  48018. name: "Back",
  48019. image: {
  48020. source: "./media/characters/qadan/back.svg",
  48021. extra: 1042/1031,
  48022. bottom: 55/1097
  48023. }
  48024. },
  48025. armored: {
  48026. height: math.unit(90, "feet"),
  48027. weight: math.unit(675000, "lb"),
  48028. name: "Armored",
  48029. image: {
  48030. source: "./media/characters/qadan/armored.svg",
  48031. extra: 1047/1037,
  48032. bottom: 48/1095
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(90, "feet"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(6, "feet"),
  48049. weight: math.unit(225, "lb"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/brooke/front.svg",
  48053. extra: 1050/1010,
  48054. bottom: 66/1116
  48055. }
  48056. },
  48057. back: {
  48058. height: math.unit(6, "feet"),
  48059. weight: math.unit(225, "lb"),
  48060. name: "Back",
  48061. image: {
  48062. source: "./media/characters/brooke/back.svg",
  48063. extra: 1053/1013,
  48064. bottom: 41/1094
  48065. }
  48066. },
  48067. dressed: {
  48068. height: math.unit(6, "feet"),
  48069. weight: math.unit(225, "lb"),
  48070. name: "Dressed",
  48071. image: {
  48072. source: "./media/characters/brooke/dressed.svg",
  48073. extra: 1050/1010,
  48074. bottom: 66/1116
  48075. }
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Canon Height",
  48081. height: math.unit(500, "miles"),
  48082. default: true
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48088. {
  48089. front: {
  48090. height: math.unit(6 + 2/12, "feet"),
  48091. weight: math.unit(210, "lb"),
  48092. name: "Front",
  48093. image: {
  48094. source: "./media/characters/wubs/front.svg",
  48095. extra: 1345/1325,
  48096. bottom: 70/1415
  48097. }
  48098. },
  48099. back: {
  48100. height: math.unit(6 + 2/12, "feet"),
  48101. weight: math.unit(210, "lb"),
  48102. name: "Back",
  48103. image: {
  48104. source: "./media/characters/wubs/back.svg",
  48105. extra: 1296/1275,
  48106. bottom: 58/1354
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(6 + 2/12, "feet"),
  48114. default: true
  48115. },
  48116. {
  48117. name: "Macro",
  48118. height: math.unit(1000, "feet")
  48119. },
  48120. {
  48121. name: "Megamacro",
  48122. height: math.unit(1, "mile")
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(4, "feet"),
  48131. weight: math.unit(120, "lb"),
  48132. name: "Front",
  48133. image: {
  48134. source: "./media/characters/blue/front.svg",
  48135. extra: 1636/1525,
  48136. bottom: 43/1679
  48137. }
  48138. },
  48139. back: {
  48140. height: math.unit(4, "feet"),
  48141. weight: math.unit(120, "lb"),
  48142. name: "Back",
  48143. image: {
  48144. source: "./media/characters/blue/back.svg",
  48145. extra: 1660/1560,
  48146. bottom: 57/1717
  48147. }
  48148. },
  48149. paws: {
  48150. height: math.unit(0.826, "feet"),
  48151. name: "Paws",
  48152. image: {
  48153. source: "./media/characters/blue/paws.svg"
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Micro",
  48160. height: math.unit(3, "inches")
  48161. },
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(4, "feet"),
  48165. default: true
  48166. },
  48167. {
  48168. name: "Femenine Form",
  48169. height: math.unit(14, "feet")
  48170. },
  48171. {
  48172. name: "Werebat Form",
  48173. height: math.unit(18, "feet")
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48179. {
  48180. female: {
  48181. height: math.unit(7 + 4/12, "feet"),
  48182. weight: math.unit(243, "lb"),
  48183. name: "Female",
  48184. image: {
  48185. source: "./media/characters/kaya/female.svg",
  48186. extra: 975/898,
  48187. bottom: 34/1009
  48188. }
  48189. },
  48190. herm: {
  48191. height: math.unit(7 + 4/12, "feet"),
  48192. weight: math.unit(243, "lb"),
  48193. name: "Herm",
  48194. image: {
  48195. source: "./media/characters/kaya/herm.svg",
  48196. extra: 975/898,
  48197. bottom: 34/1009
  48198. }
  48199. },
  48200. },
  48201. [
  48202. {
  48203. name: "Normal",
  48204. height: math.unit(7 + 4/12, "feet"),
  48205. default: true
  48206. },
  48207. ]
  48208. ))
  48209. characterMakers.push(() => makeCharacter(
  48210. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48211. {
  48212. female: {
  48213. height: math.unit(9 + 4/12, "feet"),
  48214. weight: math.unit(398, "lb"),
  48215. name: "Female",
  48216. image: {
  48217. source: "./media/characters/kassandra/female.svg",
  48218. extra: 908/839,
  48219. bottom: 61/969
  48220. }
  48221. },
  48222. intersex: {
  48223. height: math.unit(9 + 4/12, "feet"),
  48224. weight: math.unit(398, "lb"),
  48225. name: "Intersex",
  48226. image: {
  48227. source: "./media/characters/kassandra/intersex.svg",
  48228. extra: 908/839,
  48229. bottom: 61/969
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(9 + 4/12, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(3, "meters"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/amy/front.svg",
  48249. extra: 1380/1343,
  48250. bottom: 70/1450
  48251. }
  48252. },
  48253. back: {
  48254. height: math.unit(3, "meters"),
  48255. name: "Back",
  48256. image: {
  48257. source: "./media/characters/amy/back.svg",
  48258. extra: 1380/1347,
  48259. bottom: 66/1446
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Normal",
  48266. height: math.unit(3, "meters"),
  48267. default: true
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48273. {
  48274. side: {
  48275. height: math.unit(47, "cm"),
  48276. weight: math.unit(10.8, "kg"),
  48277. name: "Side",
  48278. image: {
  48279. source: "./media/characters/alphaschakal/side.svg",
  48280. extra: 1058/568,
  48281. bottom: 62/1120
  48282. }
  48283. },
  48284. back: {
  48285. height: math.unit(78, "cm"),
  48286. weight: math.unit(10.8, "kg"),
  48287. name: "Back",
  48288. image: {
  48289. source: "./media/characters/alphaschakal/back.svg",
  48290. extra: 1102/942,
  48291. bottom: 185/1287
  48292. }
  48293. },
  48294. head: {
  48295. height: math.unit(28, "cm"),
  48296. name: "Head",
  48297. image: {
  48298. source: "./media/characters/alphaschakal/head.svg",
  48299. extra: 696/508,
  48300. bottom: 0/696
  48301. }
  48302. },
  48303. paw: {
  48304. height: math.unit(16, "cm"),
  48305. name: "Paw",
  48306. image: {
  48307. source: "./media/characters/alphaschakal/paw.svg"
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Normal",
  48314. height: math.unit(47, "cm"),
  48315. default: true
  48316. },
  48317. {
  48318. name: "Macro",
  48319. height: math.unit(340, "cm")
  48320. },
  48321. ]
  48322. ))
  48323. characterMakers.push(() => makeCharacter(
  48324. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48325. {
  48326. front: {
  48327. height: math.unit(36, "earths"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/ecobyss/front.svg",
  48331. extra: 1282/1215,
  48332. bottom: 11/1293
  48333. }
  48334. },
  48335. back: {
  48336. height: math.unit(36, "earths"),
  48337. name: "Back",
  48338. image: {
  48339. source: "./media/characters/ecobyss/back.svg",
  48340. extra: 1291/1222,
  48341. bottom: 8/1299
  48342. }
  48343. },
  48344. },
  48345. [
  48346. {
  48347. name: "Normal",
  48348. height: math.unit(36, "earths"),
  48349. default: true
  48350. },
  48351. ]
  48352. ))
  48353. characterMakers.push(() => makeCharacter(
  48354. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48355. {
  48356. front: {
  48357. height: math.unit(12, "feet"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/vasuk/front.svg",
  48361. extra: 1326/1207,
  48362. bottom: 64/1390
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(12, "feet"),
  48370. default: true
  48371. },
  48372. ]
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48376. {
  48377. side: {
  48378. height: math.unit(100, "feet"),
  48379. name: "Side",
  48380. image: {
  48381. source: "./media/characters/linneaus/side.svg",
  48382. extra: 987/807,
  48383. bottom: 47/1034
  48384. }
  48385. },
  48386. },
  48387. [
  48388. {
  48389. name: "Macro",
  48390. height: math.unit(100, "feet"),
  48391. default: true
  48392. },
  48393. ]
  48394. ))
  48395. characterMakers.push(() => makeCharacter(
  48396. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48397. {
  48398. front: {
  48399. height: math.unit(8, "feet"),
  48400. weight: math.unit(1200, "lb"),
  48401. name: "Front",
  48402. image: {
  48403. source: "./media/characters/nyterious-daligdig/front.svg",
  48404. extra: 1284/1094,
  48405. bottom: 84/1368
  48406. }
  48407. },
  48408. back: {
  48409. height: math.unit(8, "feet"),
  48410. weight: math.unit(1200, "lb"),
  48411. name: "Back",
  48412. image: {
  48413. source: "./media/characters/nyterious-daligdig/back.svg",
  48414. extra: 1301/1121,
  48415. bottom: 129/1430
  48416. }
  48417. },
  48418. mouth: {
  48419. height: math.unit(1.464, "feet"),
  48420. name: "Mouth",
  48421. image: {
  48422. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48423. }
  48424. },
  48425. },
  48426. [
  48427. {
  48428. name: "Small",
  48429. height: math.unit(8, "feet"),
  48430. default: true
  48431. },
  48432. {
  48433. name: "Normal",
  48434. height: math.unit(15, "feet")
  48435. },
  48436. {
  48437. name: "Macro",
  48438. height: math.unit(90, "feet")
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(7 + 4/12, "feet"),
  48447. weight: math.unit(252, "lb"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/bandel/front.svg",
  48451. extra: 1946/1775,
  48452. bottom: 26/1972
  48453. }
  48454. },
  48455. back: {
  48456. height: math.unit(7 + 4/12, "feet"),
  48457. weight: math.unit(252, "lb"),
  48458. name: "Back",
  48459. image: {
  48460. source: "./media/characters/bandel/back.svg",
  48461. extra: 1940/1770,
  48462. bottom: 25/1965
  48463. }
  48464. },
  48465. maw: {
  48466. height: math.unit(2.15, "feet"),
  48467. name: "Maw",
  48468. image: {
  48469. source: "./media/characters/bandel/maw.svg"
  48470. }
  48471. },
  48472. stomach: {
  48473. height: math.unit(1.95, "feet"),
  48474. name: "Stomach",
  48475. image: {
  48476. source: "./media/characters/bandel/stomach.svg"
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(7 + 4/12, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(10 + 5/12, "feet"),
  48493. weight: math.unit(773.5, "kg"),
  48494. name: "Front",
  48495. image: {
  48496. source: "./media/characters/zed/front.svg",
  48497. extra: 987/941,
  48498. bottom: 52/1039
  48499. }
  48500. },
  48501. },
  48502. [
  48503. {
  48504. name: "Short",
  48505. height: math.unit(5 + 4/12, "feet")
  48506. },
  48507. {
  48508. name: "Average",
  48509. height: math.unit(10 + 5/12, "feet"),
  48510. default: true
  48511. },
  48512. {
  48513. name: "Mini-Macro",
  48514. height: math.unit(24 + 9/12, "feet")
  48515. },
  48516. {
  48517. name: "Macro",
  48518. height: math.unit(249, "feet")
  48519. },
  48520. {
  48521. name: "Mega-Macro",
  48522. height: math.unit(12490, "feet")
  48523. },
  48524. {
  48525. name: "Giga-Macro",
  48526. height: math.unit(24.9, "miles")
  48527. },
  48528. {
  48529. name: "Tera-Macro",
  48530. height: math.unit(24900, "miles")
  48531. },
  48532. {
  48533. name: "Cosmic Scale",
  48534. height: math.unit(38.9, "lightyears")
  48535. },
  48536. {
  48537. name: "Universal Scale",
  48538. height: math.unit(138e12, "lightyears")
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(1561, "inches"),
  48547. name: "Front",
  48548. image: {
  48549. source: "./media/characters/ivan/front.svg",
  48550. extra: 1126/1071,
  48551. bottom: 26/1152
  48552. }
  48553. },
  48554. back: {
  48555. height: math.unit(1561, "inches"),
  48556. name: "Back",
  48557. image: {
  48558. source: "./media/characters/ivan/back.svg",
  48559. extra: 1134/1079,
  48560. bottom: 30/1164
  48561. }
  48562. },
  48563. },
  48564. [
  48565. {
  48566. name: "Normal",
  48567. height: math.unit(1561, "inches"),
  48568. default: true
  48569. },
  48570. ]
  48571. ))
  48572. characterMakers.push(() => makeCharacter(
  48573. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48574. {
  48575. front: {
  48576. height: math.unit(5 + 7/12, "feet"),
  48577. weight: math.unit(150, "lb"),
  48578. name: "Front",
  48579. image: {
  48580. source: "./media/characters/robin-arctic-hare/front.svg",
  48581. extra: 1148/974,
  48582. bottom: 20/1168
  48583. }
  48584. },
  48585. },
  48586. [
  48587. {
  48588. name: "Normal",
  48589. height: math.unit(5 + 7/12, "feet"),
  48590. default: true
  48591. },
  48592. ]
  48593. ))
  48594. characterMakers.push(() => makeCharacter(
  48595. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48596. {
  48597. side: {
  48598. height: math.unit(5, "feet"),
  48599. name: "Side",
  48600. image: {
  48601. source: "./media/characters/birch/side.svg",
  48602. extra: 985/796,
  48603. bottom: 111/1096
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(5, "feet"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(4, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/rasp/front.svg",
  48623. extra: 561/478,
  48624. bottom: 74/635
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(4, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(4 + 6/12, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/agatha/front.svg",
  48644. extra: 947/933,
  48645. bottom: 42/989
  48646. }
  48647. },
  48648. back: {
  48649. height: math.unit(4 + 6/12, "feet"),
  48650. name: "Back",
  48651. image: {
  48652. source: "./media/characters/agatha/back.svg",
  48653. extra: 935/922,
  48654. bottom: 48/983
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(4 + 6 /12, "feet"),
  48662. default: true
  48663. },
  48664. {
  48665. name: "Max Size",
  48666. height: math.unit(500, "feet")
  48667. },
  48668. ]
  48669. ))
  48670. characterMakers.push(() => makeCharacter(
  48671. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48672. {
  48673. side: {
  48674. height: math.unit(30, "feet"),
  48675. name: "Side",
  48676. image: {
  48677. source: "./media/characters/roggy/side.svg",
  48678. extra: 909/643,
  48679. bottom: 63/972
  48680. }
  48681. },
  48682. lounging: {
  48683. height: math.unit(20, "feet"),
  48684. name: "Lounging",
  48685. image: {
  48686. source: "./media/characters/roggy/lounging.svg",
  48687. extra: 643/479,
  48688. bottom: 145/788
  48689. }
  48690. },
  48691. handpaw: {
  48692. height: math.unit(13.1, "feet"),
  48693. name: "Handpaw",
  48694. image: {
  48695. source: "./media/characters/roggy/handpaw.svg"
  48696. }
  48697. },
  48698. footpaw: {
  48699. height: math.unit(15.8, "feet"),
  48700. name: "Footpaw",
  48701. image: {
  48702. source: "./media/characters/roggy/footpaw.svg"
  48703. }
  48704. },
  48705. },
  48706. [
  48707. {
  48708. name: "Menacing",
  48709. height: math.unit(30, "feet"),
  48710. default: true
  48711. },
  48712. ]
  48713. ))
  48714. characterMakers.push(() => makeCharacter(
  48715. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48716. {
  48717. front: {
  48718. height: math.unit(5 + 7/12, "feet"),
  48719. weight: math.unit(135, "lb"),
  48720. name: "Front",
  48721. image: {
  48722. source: "./media/characters/naomi/front.svg",
  48723. extra: 1209/1154,
  48724. bottom: 129/1338
  48725. }
  48726. },
  48727. back: {
  48728. height: math.unit(5 + 7/12, "feet"),
  48729. weight: math.unit(135, "lb"),
  48730. name: "Back",
  48731. image: {
  48732. source: "./media/characters/naomi/back.svg",
  48733. extra: 1252/1190,
  48734. bottom: 23/1275
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(5 + 7 /12, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48748. {
  48749. side: {
  48750. height: math.unit(35, "meters"),
  48751. name: "Side",
  48752. image: {
  48753. source: "./media/characters/kimpi/side.svg",
  48754. extra: 419/382,
  48755. bottom: 63/482
  48756. }
  48757. },
  48758. hand: {
  48759. height: math.unit(8.96, "meters"),
  48760. name: "Hand",
  48761. image: {
  48762. source: "./media/characters/kimpi/hand.svg"
  48763. }
  48764. },
  48765. },
  48766. [
  48767. {
  48768. name: "Normal",
  48769. height: math.unit(35, "meters"),
  48770. default: true
  48771. },
  48772. ]
  48773. ))
  48774. characterMakers.push(() => makeCharacter(
  48775. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48776. {
  48777. front: {
  48778. height: math.unit(4 + 4/12, "feet"),
  48779. name: "Front",
  48780. image: {
  48781. source: "./media/characters/pepper-purrloin/front.svg",
  48782. extra: 1141/1024,
  48783. bottom: 21/1162
  48784. }
  48785. },
  48786. },
  48787. [
  48788. {
  48789. name: "Normal",
  48790. height: math.unit(4 + 4/12, "feet"),
  48791. default: true
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48797. {
  48798. front: {
  48799. height: math.unit(6 + 2/12, "feet"),
  48800. name: "Front",
  48801. image: {
  48802. source: "./media/characters/raphael/front.svg",
  48803. extra: 1101/962,
  48804. bottom: 59/1160
  48805. }
  48806. },
  48807. },
  48808. [
  48809. {
  48810. name: "Normal",
  48811. height: math.unit(6 + 2/12, "feet"),
  48812. default: true
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(6, "feet"),
  48821. weight: math.unit(150, "lb"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/victor-williams/front.svg",
  48825. extra: 1894/1825,
  48826. bottom: 67/1961
  48827. }
  48828. },
  48829. },
  48830. [
  48831. {
  48832. name: "Normal",
  48833. height: math.unit(6, "feet"),
  48834. default: true
  48835. },
  48836. ]
  48837. ))
  48838. characterMakers.push(() => makeCharacter(
  48839. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48840. {
  48841. front: {
  48842. height: math.unit(5 + 8/12, "feet"),
  48843. weight: math.unit(150, "lb"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/rachel/front.svg",
  48847. extra: 1902/1787,
  48848. bottom: 46/1948
  48849. }
  48850. },
  48851. },
  48852. [
  48853. {
  48854. name: "Base Height",
  48855. height: math.unit(5 + 8/12, "feet"),
  48856. default: true
  48857. },
  48858. {
  48859. name: "Macro",
  48860. height: math.unit(200, "feet")
  48861. },
  48862. {
  48863. name: "Mega Macro",
  48864. height: math.unit(1, "mile")
  48865. },
  48866. {
  48867. name: "Giga Macro",
  48868. height: math.unit(1500, "miles")
  48869. },
  48870. {
  48871. name: "Tera Macro",
  48872. height: math.unit(8000, "miles")
  48873. },
  48874. {
  48875. name: "Tera Macro+",
  48876. height: math.unit(2e5, "miles")
  48877. },
  48878. ]
  48879. ))
  48880. characterMakers.push(() => makeCharacter(
  48881. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48882. {
  48883. front: {
  48884. height: math.unit(6.5, "feet"),
  48885. name: "Front",
  48886. image: {
  48887. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48888. extra: 860/819,
  48889. bottom: 307/1167
  48890. }
  48891. },
  48892. back: {
  48893. height: math.unit(6.5, "feet"),
  48894. name: "Back",
  48895. image: {
  48896. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48897. extra: 880/837,
  48898. bottom: 395/1275
  48899. }
  48900. },
  48901. sleeping: {
  48902. height: math.unit(2.79, "feet"),
  48903. name: "Sleeping",
  48904. image: {
  48905. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48906. extra: 465/383,
  48907. bottom: 263/728
  48908. }
  48909. },
  48910. maw: {
  48911. height: math.unit(2.52, "feet"),
  48912. name: "Maw",
  48913. image: {
  48914. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48915. }
  48916. },
  48917. },
  48918. [
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(6.5, "feet"),
  48922. default: true
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48928. {
  48929. front: {
  48930. height: math.unit(5, "feet"),
  48931. name: "Front",
  48932. image: {
  48933. source: "./media/characters/nova-nerium/front.svg",
  48934. extra: 1548/1392,
  48935. bottom: 374/1922
  48936. }
  48937. },
  48938. back: {
  48939. height: math.unit(5, "feet"),
  48940. name: "Back",
  48941. image: {
  48942. source: "./media/characters/nova-nerium/back.svg",
  48943. extra: 1658/1468,
  48944. bottom: 257/1915
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(5, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(5 + 4/12, "feet"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/ashe-pyriph/front.svg",
  48964. extra: 1935/1747,
  48965. bottom: 60/1995
  48966. }
  48967. },
  48968. },
  48969. [
  48970. {
  48971. name: "Normal",
  48972. height: math.unit(5 + 4/12, "feet"),
  48973. default: true
  48974. },
  48975. ]
  48976. ))
  48977. characterMakers.push(() => makeCharacter(
  48978. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48979. {
  48980. front: {
  48981. height: math.unit(8.7, "feet"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/flicker-wisp/front.svg",
  48985. extra: 1835/1613,
  48986. bottom: 449/2284
  48987. }
  48988. },
  48989. side: {
  48990. height: math.unit(8.7, "feet"),
  48991. name: "Side",
  48992. image: {
  48993. source: "./media/characters/flicker-wisp/side.svg",
  48994. extra: 1841/1642,
  48995. bottom: 336/2177
  48996. },
  48997. default: true
  48998. },
  48999. maw: {
  49000. height: math.unit(3.35, "feet"),
  49001. name: "Maw",
  49002. image: {
  49003. source: "./media/characters/flicker-wisp/maw.svg",
  49004. extra: 2338/1506,
  49005. bottom: 0/2338
  49006. }
  49007. },
  49008. ovipositor: {
  49009. height: math.unit(4.95, "feet"),
  49010. name: "Ovipositor",
  49011. image: {
  49012. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49013. }
  49014. },
  49015. egg: {
  49016. height: math.unit(0.385, "feet"),
  49017. weight: math.unit(2, "lb"),
  49018. name: "Egg",
  49019. image: {
  49020. source: "./media/characters/flicker-wisp/egg.svg"
  49021. }
  49022. },
  49023. },
  49024. [
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(8.7, "feet"),
  49028. default: true
  49029. },
  49030. ]
  49031. ))
  49032. characterMakers.push(() => makeCharacter(
  49033. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49034. {
  49035. side: {
  49036. height: math.unit(11, "feet"),
  49037. name: "Side",
  49038. image: {
  49039. source: "./media/characters/faefnul/side.svg",
  49040. extra: 1100/1007,
  49041. bottom: 0/1100
  49042. }
  49043. },
  49044. },
  49045. [
  49046. {
  49047. name: "Normal",
  49048. height: math.unit(11, "feet"),
  49049. default: true
  49050. },
  49051. ]
  49052. ))
  49053. characterMakers.push(() => makeCharacter(
  49054. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49055. {
  49056. front: {
  49057. height: math.unit(6 + 2/12, "feet"),
  49058. name: "Front",
  49059. image: {
  49060. source: "./media/characters/shady/front.svg",
  49061. extra: 502/461,
  49062. bottom: 9/511
  49063. }
  49064. },
  49065. kneeling: {
  49066. height: math.unit(4.6, "feet"),
  49067. name: "Kneeling",
  49068. image: {
  49069. source: "./media/characters/shady/kneeling.svg",
  49070. extra: 1328/1219,
  49071. bottom: 117/1445
  49072. }
  49073. },
  49074. maw: {
  49075. height: math.unit(2, "feet"),
  49076. name: "Maw",
  49077. image: {
  49078. source: "./media/characters/shady/maw.svg"
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Nano",
  49085. height: math.unit(1, "mm")
  49086. },
  49087. {
  49088. name: "Micro",
  49089. height: math.unit(12, "mm")
  49090. },
  49091. {
  49092. name: "Tiny",
  49093. height: math.unit(3, "inches")
  49094. },
  49095. {
  49096. name: "Normal",
  49097. height: math.unit(6 + 2/12, "feet"),
  49098. default: true
  49099. },
  49100. {
  49101. name: "Big",
  49102. height: math.unit(15, "feet")
  49103. },
  49104. {
  49105. name: "Macro",
  49106. height: math.unit(150, "feet")
  49107. },
  49108. {
  49109. name: "Titanic",
  49110. height: math.unit(500, "feet")
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(12, "feet"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/fenrir/front.svg",
  49122. extra: 968/875,
  49123. bottom: 22/990
  49124. }
  49125. },
  49126. },
  49127. [
  49128. {
  49129. name: "Big",
  49130. height: math.unit(12, "feet"),
  49131. default: true
  49132. },
  49133. ]
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49137. {
  49138. front: {
  49139. height: math.unit(5 + 4/12, "feet"),
  49140. name: "Front",
  49141. image: {
  49142. source: "./media/characters/makar/front.svg",
  49143. extra: 1181/1112,
  49144. bottom: 78/1259
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(5 + 4/12, "feet"),
  49152. default: true
  49153. },
  49154. ]
  49155. ))
  49156. characterMakers.push(() => makeCharacter(
  49157. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49158. {
  49159. front: {
  49160. height: math.unit(5 + 7/12, "feet"),
  49161. name: "Front",
  49162. image: {
  49163. source: "./media/characters/callow/front.svg",
  49164. extra: 1482/1304,
  49165. bottom: 23/1505
  49166. }
  49167. },
  49168. back: {
  49169. height: math.unit(5 + 7/12, "feet"),
  49170. name: "Back",
  49171. image: {
  49172. source: "./media/characters/callow/back.svg",
  49173. extra: 1484/1296,
  49174. bottom: 25/1509
  49175. }
  49176. },
  49177. },
  49178. [
  49179. {
  49180. name: "Micro",
  49181. height: math.unit(3, "inches"),
  49182. default: true
  49183. },
  49184. {
  49185. name: "Normal",
  49186. height: math.unit(5 + 7/12, "feet")
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49192. {
  49193. front: {
  49194. height: math.unit(6 + 2/12, "feet"),
  49195. name: "Front",
  49196. image: {
  49197. source: "./media/characters/natel/front.svg",
  49198. extra: 1833/1692,
  49199. bottom: 166/1999
  49200. }
  49201. },
  49202. },
  49203. [
  49204. {
  49205. name: "Normal",
  49206. height: math.unit(6 + 2/12, "feet"),
  49207. default: true
  49208. },
  49209. ]
  49210. ))
  49211. characterMakers.push(() => makeCharacter(
  49212. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49213. {
  49214. front: {
  49215. height: math.unit(1.75, "meters"),
  49216. name: "Front",
  49217. image: {
  49218. source: "./media/characters/misu/front.svg",
  49219. extra: 1690/1558,
  49220. bottom: 234/1924
  49221. }
  49222. },
  49223. back: {
  49224. height: math.unit(1.75, "meters"),
  49225. name: "Back",
  49226. image: {
  49227. source: "./media/characters/misu/back.svg",
  49228. extra: 1762/1618,
  49229. bottom: 146/1908
  49230. }
  49231. },
  49232. frontNude: {
  49233. height: math.unit(1.75, "meters"),
  49234. name: "Front (Nude)",
  49235. image: {
  49236. source: "./media/characters/misu/front-nude.svg",
  49237. extra: 1690/1558,
  49238. bottom: 234/1924
  49239. }
  49240. },
  49241. backNude: {
  49242. height: math.unit(1.75, "meters"),
  49243. name: "Back (Nude)",
  49244. image: {
  49245. source: "./media/characters/misu/back-nude.svg",
  49246. extra: 1762/1618,
  49247. bottom: 146/1908
  49248. }
  49249. },
  49250. frontErect: {
  49251. height: math.unit(1.75, "meters"),
  49252. name: "Front (Erect)",
  49253. image: {
  49254. source: "./media/characters/misu/front-erect.svg",
  49255. extra: 1690/1558,
  49256. bottom: 234/1924
  49257. }
  49258. },
  49259. maw: {
  49260. height: math.unit(0.47, "meters"),
  49261. name: "Maw",
  49262. image: {
  49263. source: "./media/characters/misu/maw.svg"
  49264. }
  49265. },
  49266. head: {
  49267. height: math.unit(0.35, "meters"),
  49268. name: "Head",
  49269. image: {
  49270. source: "./media/characters/misu/head.svg"
  49271. }
  49272. },
  49273. rear: {
  49274. height: math.unit(0.47, "meters"),
  49275. name: "Rear",
  49276. image: {
  49277. source: "./media/characters/misu/rear.svg"
  49278. }
  49279. },
  49280. },
  49281. [
  49282. {
  49283. name: "Normal",
  49284. height: math.unit(1.75, "meters")
  49285. },
  49286. {
  49287. name: "Not good for the people",
  49288. height: math.unit(42, "meters")
  49289. },
  49290. {
  49291. name: "Not good for the neighborhood",
  49292. height: math.unit(135, "meters")
  49293. },
  49294. {
  49295. name: "Bit bigger problem",
  49296. height: math.unit(380, "meters"),
  49297. default: true
  49298. },
  49299. {
  49300. name: "Not good for the city",
  49301. height: math.unit(1.5, "km")
  49302. },
  49303. {
  49304. name: "Not good for the county",
  49305. height: math.unit(5.5, "km")
  49306. },
  49307. {
  49308. name: "Not good for the state",
  49309. height: math.unit(25, "km")
  49310. },
  49311. {
  49312. name: "Not good for the country",
  49313. height: math.unit(125, "km")
  49314. },
  49315. {
  49316. name: "Not good for the continent",
  49317. height: math.unit(2100, "km")
  49318. },
  49319. {
  49320. name: "Not good for the planet",
  49321. height: math.unit(35000, "km")
  49322. },
  49323. {
  49324. name: "Just no",
  49325. height: math.unit(8.5e18, "km")
  49326. },
  49327. ]
  49328. ))
  49329. characterMakers.push(() => makeCharacter(
  49330. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49331. {
  49332. front: {
  49333. height: math.unit(6.5, "feet"),
  49334. name: "Front",
  49335. image: {
  49336. source: "./media/characters/poppy/front.svg",
  49337. extra: 1878/1812,
  49338. bottom: 43/1921
  49339. }
  49340. },
  49341. feet: {
  49342. height: math.unit(1.06, "feet"),
  49343. name: "Feet",
  49344. image: {
  49345. source: "./media/characters/poppy/feet.svg",
  49346. extra: 1083/1083,
  49347. bottom: 87/1170
  49348. }
  49349. },
  49350. },
  49351. [
  49352. {
  49353. name: "Human",
  49354. height: math.unit(6.5, "feet")
  49355. },
  49356. {
  49357. name: "Default",
  49358. height: math.unit(300, "feet"),
  49359. default: true
  49360. },
  49361. {
  49362. name: "Huge",
  49363. height: math.unit(850, "feet")
  49364. },
  49365. {
  49366. name: "Mega",
  49367. height: math.unit(8000, "feet")
  49368. },
  49369. {
  49370. name: "Giga",
  49371. height: math.unit(300, "miles")
  49372. },
  49373. ]
  49374. ))
  49375. characterMakers.push(() => makeCharacter(
  49376. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49377. {
  49378. bipedal: {
  49379. height: math.unit(7, "feet"),
  49380. name: "Bipedal",
  49381. image: {
  49382. source: "./media/characters/zener/bipedal.svg",
  49383. extra: 874/805,
  49384. bottom: 109/983
  49385. }
  49386. },
  49387. quadrupedal: {
  49388. height: math.unit(4.64, "feet"),
  49389. name: "Quadrupedal",
  49390. image: {
  49391. source: "./media/characters/zener/quadrupedal.svg",
  49392. extra: 638/507,
  49393. bottom: 190/828
  49394. }
  49395. },
  49396. cock: {
  49397. height: math.unit(18, "inches"),
  49398. name: "Cock",
  49399. image: {
  49400. source: "./media/characters/zener/cock.svg"
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Normal",
  49407. height: math.unit(7, "feet"),
  49408. default: true
  49409. },
  49410. ]
  49411. ))
  49412. characterMakers.push(() => makeCharacter(
  49413. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49414. {
  49415. nude: {
  49416. height: math.unit(5 + 6/12, "feet"),
  49417. name: "Nude",
  49418. image: {
  49419. source: "./media/characters/charlie-dog/nude.svg",
  49420. extra: 768/734,
  49421. bottom: 26/794
  49422. }
  49423. },
  49424. dressed: {
  49425. height: math.unit(5 + 6/12, "feet"),
  49426. name: "Dressed",
  49427. image: {
  49428. source: "./media/characters/charlie-dog/dressed.svg",
  49429. extra: 768/734,
  49430. bottom: 26/794
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Normal",
  49437. height: math.unit(5 + 6/12, "feet"),
  49438. default: true
  49439. },
  49440. ]
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(6 + 4/12, "feet"),
  49447. name: "Front",
  49448. image: {
  49449. source: "./media/characters/ir'istrasz/front.svg",
  49450. extra: 1014/977,
  49451. bottom: 65/1079
  49452. }
  49453. },
  49454. back: {
  49455. height: math.unit(6 + 4/12, "feet"),
  49456. name: "Back",
  49457. image: {
  49458. source: "./media/characters/ir'istrasz/back.svg",
  49459. extra: 1024/992,
  49460. bottom: 34/1058
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(6 + 4/12, "feet"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49474. {
  49475. front: {
  49476. height: math.unit(5 + 8/12, "feet"),
  49477. name: "Front",
  49478. image: {
  49479. source: "./media/characters/dee-ditto/front.svg",
  49480. extra: 1874/1785,
  49481. bottom: 68/1942
  49482. }
  49483. },
  49484. back: {
  49485. height: math.unit(5 + 8/12, "feet"),
  49486. name: "Back",
  49487. image: {
  49488. source: "./media/characters/dee-ditto/back.svg",
  49489. extra: 1870/1783,
  49490. bottom: 77/1947
  49491. }
  49492. },
  49493. },
  49494. [
  49495. {
  49496. name: "Normal",
  49497. height: math.unit(5 + 8/12, "feet"),
  49498. default: true
  49499. },
  49500. ]
  49501. ))
  49502. characterMakers.push(() => makeCharacter(
  49503. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49504. {
  49505. front: {
  49506. height: math.unit(7 + 6/12, "feet"),
  49507. name: "Front",
  49508. image: {
  49509. source: "./media/characters/fey/front.svg",
  49510. extra: 995/979,
  49511. bottom: 30/1025
  49512. }
  49513. },
  49514. back: {
  49515. height: math.unit(7 + 6/12, "feet"),
  49516. name: "Back",
  49517. image: {
  49518. source: "./media/characters/fey/back.svg",
  49519. extra: 1079/1008,
  49520. bottom: 5/1084
  49521. }
  49522. },
  49523. dressed: {
  49524. height: math.unit(7 + 6/12, "feet"),
  49525. name: "Dressed",
  49526. image: {
  49527. source: "./media/characters/fey/dressed.svg",
  49528. extra: 995/979,
  49529. bottom: 30/1025
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(7 + 6/12, "feet"),
  49537. default: true
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49543. {
  49544. standing: {
  49545. height: math.unit(17, "feet"),
  49546. name: "Standing",
  49547. image: {
  49548. source: "./media/characters/aster/standing.svg",
  49549. extra: 1798/1598,
  49550. bottom: 117/1915
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(17, "feet"),
  49558. default: true
  49559. },
  49560. {
  49561. name: "Homewrecker",
  49562. height: math.unit(95, "feet")
  49563. },
  49564. {
  49565. name: "Planet Devourer",
  49566. height: math.unit(1008000, "miles")
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49572. {
  49573. front: {
  49574. height: math.unit(6 + 5/12, "feet"),
  49575. weight: math.unit(265, "lb"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/devon-childs/front.svg",
  49579. extra: 1795/1721,
  49580. bottom: 41/1836
  49581. }
  49582. },
  49583. side: {
  49584. height: math.unit(6 + 5/12, "feet"),
  49585. weight: math.unit(265, "lb"),
  49586. name: "Side",
  49587. image: {
  49588. source: "./media/characters/devon-childs/side.svg",
  49589. extra: 1812/1738,
  49590. bottom: 30/1842
  49591. }
  49592. },
  49593. back: {
  49594. height: math.unit(6 + 5/12, "feet"),
  49595. weight: math.unit(265, "lb"),
  49596. name: "Back",
  49597. image: {
  49598. source: "./media/characters/devon-childs/back.svg",
  49599. extra: 1808/1735,
  49600. bottom: 23/1831
  49601. }
  49602. },
  49603. hand: {
  49604. height: math.unit(1.464, "feet"),
  49605. name: "Hand",
  49606. image: {
  49607. source: "./media/characters/devon-childs/hand.svg"
  49608. }
  49609. },
  49610. foot: {
  49611. height: math.unit(1.6, "feet"),
  49612. name: "Foot",
  49613. image: {
  49614. source: "./media/characters/devon-childs/foot.svg"
  49615. }
  49616. },
  49617. },
  49618. [
  49619. {
  49620. name: "Micro",
  49621. height: math.unit(7, "cm")
  49622. },
  49623. {
  49624. name: "Normal",
  49625. height: math.unit(6 + 5/12, "feet"),
  49626. default: true
  49627. },
  49628. {
  49629. name: "Macro",
  49630. height: math.unit(154, "feet")
  49631. },
  49632. ]
  49633. ))
  49634. characterMakers.push(() => makeCharacter(
  49635. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49636. {
  49637. front: {
  49638. height: math.unit(6, "feet"),
  49639. weight: math.unit(180, "lb"),
  49640. name: "Front",
  49641. image: {
  49642. source: "./media/characters/lydemox-vir/front.svg",
  49643. extra: 1632/1435,
  49644. bottom: 58/1690
  49645. }
  49646. },
  49647. frontSFW: {
  49648. height: math.unit(6, "feet"),
  49649. weight: math.unit(180, "lb"),
  49650. name: "Front (SFW)",
  49651. image: {
  49652. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49653. extra: 1632/1435,
  49654. bottom: 58/1690
  49655. }
  49656. },
  49657. back: {
  49658. height: math.unit(6, "feet"),
  49659. weight: math.unit(180, "lb"),
  49660. name: "Back",
  49661. image: {
  49662. source: "./media/characters/lydemox-vir/back.svg",
  49663. extra: 1593/1408,
  49664. bottom: 31/1624
  49665. }
  49666. },
  49667. paw: {
  49668. height: math.unit(1.85, "feet"),
  49669. name: "Paw",
  49670. image: {
  49671. source: "./media/characters/lydemox-vir/paw.svg"
  49672. }
  49673. },
  49674. dick: {
  49675. height: math.unit(1.8, "feet"),
  49676. name: "Dick",
  49677. image: {
  49678. source: "./media/characters/lydemox-vir/dick.svg"
  49679. }
  49680. },
  49681. },
  49682. [
  49683. {
  49684. name: "Macro",
  49685. height: math.unit(100, "feet"),
  49686. default: true
  49687. },
  49688. {
  49689. name: "Teramacro",
  49690. height: math.unit(1, "earth")
  49691. },
  49692. {
  49693. name: "Planetary",
  49694. height: math.unit(20, "earths")
  49695. },
  49696. ]
  49697. ))
  49698. characterMakers.push(() => makeCharacter(
  49699. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49700. {
  49701. front: {
  49702. height: math.unit(15 + 8/12, "feet"),
  49703. weight: math.unit(1237, "kg"),
  49704. name: "Front",
  49705. image: {
  49706. source: "./media/characters/mia/front.svg",
  49707. extra: 1573/1446,
  49708. bottom: 58/1631
  49709. }
  49710. },
  49711. },
  49712. [
  49713. {
  49714. name: "Small",
  49715. height: math.unit(9 + 5/12, "feet")
  49716. },
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(15 + 8/12, "feet"),
  49720. default: true
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49726. {
  49727. front: {
  49728. height: math.unit(10 + 6/12, "feet"),
  49729. weight: math.unit(1.3, "tons"),
  49730. name: "Front",
  49731. image: {
  49732. source: "./media/characters/mr-graves/front.svg",
  49733. extra: 1779/1695,
  49734. bottom: 198/1977
  49735. }
  49736. },
  49737. },
  49738. [
  49739. {
  49740. name: "Normal",
  49741. height: math.unit(10 + 6 /12, "feet"),
  49742. default: true
  49743. },
  49744. ]
  49745. ))
  49746. characterMakers.push(() => makeCharacter(
  49747. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49748. {
  49749. dressedFront: {
  49750. height: math.unit(5 + 8/12, "feet"),
  49751. weight: math.unit(125, "lb"),
  49752. name: "Dressed (Front)",
  49753. image: {
  49754. source: "./media/characters/jess/dressed-front.svg",
  49755. extra: 1176/1152,
  49756. bottom: 42/1218
  49757. }
  49758. },
  49759. dressedSide: {
  49760. height: math.unit(5 + 8/12, "feet"),
  49761. weight: math.unit(125, "lb"),
  49762. name: "Dressed (Side)",
  49763. image: {
  49764. source: "./media/characters/jess/dressed-side.svg",
  49765. extra: 1204/1190,
  49766. bottom: 6/1210
  49767. }
  49768. },
  49769. nudeFront: {
  49770. height: math.unit(5 + 8/12, "feet"),
  49771. weight: math.unit(125, "lb"),
  49772. name: "Nude (Front)",
  49773. image: {
  49774. source: "./media/characters/jess/nude-front.svg",
  49775. extra: 1176/1152,
  49776. bottom: 42/1218
  49777. }
  49778. },
  49779. nudeSide: {
  49780. height: math.unit(5 + 8/12, "feet"),
  49781. weight: math.unit(125, "lb"),
  49782. name: "Nude (Side)",
  49783. image: {
  49784. source: "./media/characters/jess/nude-side.svg",
  49785. extra: 1204/1190,
  49786. bottom: 6/1210
  49787. }
  49788. },
  49789. organsFront: {
  49790. height: math.unit(2.83799342105, "feet"),
  49791. name: "Organs (Front)",
  49792. image: {
  49793. source: "./media/characters/jess/organs-front.svg"
  49794. }
  49795. },
  49796. organsSide: {
  49797. height: math.unit(2.64225290474, "feet"),
  49798. name: "Organs (Side)",
  49799. image: {
  49800. source: "./media/characters/jess/organs-side.svg"
  49801. }
  49802. },
  49803. digestiveTractFront: {
  49804. height: math.unit(2.8106580871, "feet"),
  49805. name: "Digestive Tract (Front)",
  49806. image: {
  49807. source: "./media/characters/jess/digestive-tract-front.svg"
  49808. }
  49809. },
  49810. digestiveTractSide: {
  49811. height: math.unit(2.54365045014, "feet"),
  49812. name: "Digestive Tract (Side)",
  49813. image: {
  49814. source: "./media/characters/jess/digestive-tract-side.svg"
  49815. }
  49816. },
  49817. respiratorySystemFront: {
  49818. height: math.unit(1.11196233456, "feet"),
  49819. name: "Respiratory System (Front)",
  49820. image: {
  49821. source: "./media/characters/jess/respiratory-system-front.svg"
  49822. }
  49823. },
  49824. respiratorySystemSide: {
  49825. height: math.unit(0.89327966297, "feet"),
  49826. name: "Respiratory System (Side)",
  49827. image: {
  49828. source: "./media/characters/jess/respiratory-system-side.svg"
  49829. }
  49830. },
  49831. urinaryTractFront: {
  49832. height: math.unit(1.16126356186, "feet"),
  49833. name: "Urinary Tract (Front)",
  49834. image: {
  49835. source: "./media/characters/jess/urinary-tract-front.svg"
  49836. }
  49837. },
  49838. urinaryTractSide: {
  49839. height: math.unit(1.20910039627, "feet"),
  49840. name: "Urinary Tract (Side)",
  49841. image: {
  49842. source: "./media/characters/jess/urinary-tract-side.svg"
  49843. }
  49844. },
  49845. reproductiveOrgansFront: {
  49846. height: math.unit(0.48422591566, "feet"),
  49847. name: "Reproductive Organs (Front)",
  49848. image: {
  49849. source: "./media/characters/jess/reproductive-organs-front.svg"
  49850. }
  49851. },
  49852. reproductiveOrgansSide: {
  49853. height: math.unit(0.61553314481, "feet"),
  49854. name: "Reproductive Organs (Side)",
  49855. image: {
  49856. source: "./media/characters/jess/reproductive-organs-side.svg"
  49857. }
  49858. },
  49859. breastsFront: {
  49860. height: math.unit(0.47690395121, "feet"),
  49861. name: "Breasts (Front)",
  49862. image: {
  49863. source: "./media/characters/jess/breasts-front.svg"
  49864. }
  49865. },
  49866. breastsSide: {
  49867. height: math.unit(0.30556998307, "feet"),
  49868. name: "Breasts (Side)",
  49869. image: {
  49870. source: "./media/characters/jess/breasts-side.svg"
  49871. }
  49872. },
  49873. heartFront: {
  49874. height: math.unit(0.53011022622, "feet"),
  49875. name: "Heart (Front)",
  49876. image: {
  49877. source: "./media/characters/jess/heart-front.svg"
  49878. }
  49879. },
  49880. heartSide: {
  49881. height: math.unit(0.51790695213, "feet"),
  49882. name: "Heart (Side)",
  49883. image: {
  49884. source: "./media/characters/jess/heart-side.svg"
  49885. }
  49886. },
  49887. earsAndNoseFront: {
  49888. height: math.unit(0.29385483995, "feet"),
  49889. name: "Ears and Nose (Front)",
  49890. image: {
  49891. source: "./media/characters/jess/ears-and-nose-front.svg"
  49892. }
  49893. },
  49894. earsAndNoseSide: {
  49895. height: math.unit(0.18109658741, "feet"),
  49896. name: "Ears and Nose (Side)",
  49897. image: {
  49898. source: "./media/characters/jess/ears-and-nose-side.svg"
  49899. }
  49900. },
  49901. },
  49902. [
  49903. {
  49904. name: "Normal",
  49905. height: math.unit(5 + 8/12, "feet"),
  49906. default: true
  49907. },
  49908. ]
  49909. ))
  49910. characterMakers.push(() => makeCharacter(
  49911. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49912. {
  49913. front: {
  49914. height: math.unit(6, "feet"),
  49915. weight: math.unit(6.64467e-7, "grams"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/wimpering/front.svg",
  49919. extra: 597/587,
  49920. bottom: 34/631
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Micro",
  49927. height: math.unit(0.4, "mm"),
  49928. default: true
  49929. },
  49930. ]
  49931. ))
  49932. characterMakers.push(() => makeCharacter(
  49933. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49934. {
  49935. front: {
  49936. height: math.unit(5 + 2/12, "feet"),
  49937. weight: math.unit(110, "lb"),
  49938. name: "Front",
  49939. image: {
  49940. source: "./media/characters/keltre/front.svg",
  49941. extra: 1099/1057,
  49942. bottom: 22/1121
  49943. }
  49944. },
  49945. back: {
  49946. height: math.unit(5 + 2/12, "feet"),
  49947. weight: math.unit(110, "lb"),
  49948. name: "Back",
  49949. image: {
  49950. source: "./media/characters/keltre/back.svg",
  49951. extra: 1095/1053,
  49952. bottom: 17/1112
  49953. }
  49954. },
  49955. dressed: {
  49956. height: math.unit(5 + 2/12, "feet"),
  49957. weight: math.unit(110, "lb"),
  49958. name: "Dressed",
  49959. image: {
  49960. source: "./media/characters/keltre/dressed.svg",
  49961. extra: 1099/1057,
  49962. bottom: 22/1121
  49963. }
  49964. },
  49965. winter: {
  49966. height: math.unit(5 + 2/12, "feet"),
  49967. weight: math.unit(110, "lb"),
  49968. name: "Winter",
  49969. image: {
  49970. source: "./media/characters/keltre/winter.svg",
  49971. extra: 1099/1057,
  49972. bottom: 22/1121
  49973. }
  49974. },
  49975. head: {
  49976. height: math.unit(1.61 * 0.86, "feet"),
  49977. name: "Head",
  49978. image: {
  49979. source: "./media/characters/keltre/head.svg",
  49980. extra: 534/421,
  49981. bottom: 0/534
  49982. }
  49983. },
  49984. hand: {
  49985. height: math.unit(1.3 * 0.86, "feet"),
  49986. name: "Hand",
  49987. image: {
  49988. source: "./media/characters/keltre/hand.svg"
  49989. }
  49990. },
  49991. foot: {
  49992. height: math.unit(1.8 * 0.86, "feet"),
  49993. name: "Foot",
  49994. image: {
  49995. source: "./media/characters/keltre/foot.svg"
  49996. }
  49997. },
  49998. },
  49999. [
  50000. {
  50001. name: "Fine",
  50002. height: math.unit(1, "inch")
  50003. },
  50004. {
  50005. name: "Dimnutive",
  50006. height: math.unit(4, "inches")
  50007. },
  50008. {
  50009. name: "Tiny",
  50010. height: math.unit(1, "foot")
  50011. },
  50012. {
  50013. name: "Small",
  50014. height: math.unit(3, "feet")
  50015. },
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(5 + 2/12, "feet"),
  50019. default: true
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50025. {
  50026. front: {
  50027. height: math.unit(6 + 2/12, "feet"),
  50028. name: "Front",
  50029. image: {
  50030. source: "./media/characters/nox/front.svg",
  50031. extra: 1917/1830,
  50032. bottom: 74/1991
  50033. }
  50034. },
  50035. back: {
  50036. height: math.unit(6 + 2/12, "feet"),
  50037. name: "Back",
  50038. image: {
  50039. source: "./media/characters/nox/back.svg",
  50040. extra: 1896/1815,
  50041. bottom: 21/1917
  50042. }
  50043. },
  50044. head: {
  50045. height: math.unit(1.1, "feet"),
  50046. name: "Head",
  50047. image: {
  50048. source: "./media/characters/nox/head.svg",
  50049. extra: 874/704,
  50050. bottom: 0/874
  50051. }
  50052. },
  50053. tattoo: {
  50054. height: math.unit(0.729, "feet"),
  50055. name: "Tattoo",
  50056. image: {
  50057. source: "./media/characters/nox/tattoo.svg"
  50058. }
  50059. },
  50060. },
  50061. [
  50062. {
  50063. name: "Normal",
  50064. height: math.unit(6 + 2/12, "feet")
  50065. },
  50066. {
  50067. name: "Gigamacro",
  50068. height: math.unit(2, "earths"),
  50069. default: true
  50070. },
  50071. {
  50072. name: "Cosmic",
  50073. height: math.unit(867, "yottameters")
  50074. },
  50075. ]
  50076. ))
  50077. characterMakers.push(() => makeCharacter(
  50078. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50079. {
  50080. front: {
  50081. height: math.unit(6, "feet"),
  50082. weight: math.unit(150, "lb"),
  50083. name: "Front",
  50084. image: {
  50085. source: "./media/characters/caspian/front.svg",
  50086. extra: 1443/1359,
  50087. bottom: 0/1443
  50088. }
  50089. },
  50090. back: {
  50091. height: math.unit(6, "feet"),
  50092. weight: math.unit(150, "lb"),
  50093. name: "Back",
  50094. image: {
  50095. source: "./media/characters/caspian/back.svg",
  50096. extra: 1379/1309,
  50097. bottom: 0/1379
  50098. }
  50099. },
  50100. head: {
  50101. height: math.unit(0.9, "feet"),
  50102. name: "Head",
  50103. image: {
  50104. source: "./media/characters/caspian/head.svg",
  50105. extra: 692/492,
  50106. bottom: 0/692
  50107. }
  50108. },
  50109. headAlt: {
  50110. height: math.unit(0.95, "feet"),
  50111. name: "Head (Alt)",
  50112. image: {
  50113. source: "./media/characters/caspian/head-alt.svg",
  50114. extra: 668/508,
  50115. bottom: 0/668
  50116. }
  50117. },
  50118. hand: {
  50119. height: math.unit(0.8, "feet"),
  50120. name: "Hand",
  50121. image: {
  50122. source: "./media/characters/caspian/hand.svg"
  50123. }
  50124. },
  50125. paw: {
  50126. height: math.unit(0.95, "feet"),
  50127. name: "Paw",
  50128. image: {
  50129. source: "./media/characters/caspian/paw.svg"
  50130. }
  50131. },
  50132. },
  50133. [
  50134. {
  50135. name: "Normal",
  50136. height: math.unit(162, "feet"),
  50137. default: true
  50138. },
  50139. ]
  50140. ))
  50141. characterMakers.push(() => makeCharacter(
  50142. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50143. {
  50144. front: {
  50145. height: math.unit(6, "feet"),
  50146. name: "Front",
  50147. image: {
  50148. source: "./media/characters/myra-aisling/front.svg",
  50149. extra: 1268/1166,
  50150. bottom: 73/1341
  50151. }
  50152. },
  50153. back: {
  50154. height: math.unit(6, "feet"),
  50155. name: "Back",
  50156. image: {
  50157. source: "./media/characters/myra-aisling/back.svg",
  50158. extra: 1249/1149,
  50159. bottom: 79/1328
  50160. }
  50161. },
  50162. dressed: {
  50163. height: math.unit(6, "feet"),
  50164. name: "Dressed",
  50165. image: {
  50166. source: "./media/characters/myra-aisling/dressed.svg",
  50167. extra: 1290/1189,
  50168. bottom: 47/1337
  50169. }
  50170. },
  50171. hand: {
  50172. height: math.unit(1.1, "feet"),
  50173. name: "Hand",
  50174. image: {
  50175. source: "./media/characters/myra-aisling/hand.svg"
  50176. }
  50177. },
  50178. paw: {
  50179. height: math.unit(1.23, "feet"),
  50180. name: "Paw",
  50181. image: {
  50182. source: "./media/characters/myra-aisling/paw.svg"
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Normal",
  50189. height: math.unit(160, "feet"),
  50190. default: true
  50191. },
  50192. ]
  50193. ))
  50194. characterMakers.push(() => makeCharacter(
  50195. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50196. {
  50197. front: {
  50198. height: math.unit(6, "feet"),
  50199. name: "Front",
  50200. image: {
  50201. source: "./media/characters/tenley-sidero/front.svg",
  50202. extra: 1365/1276,
  50203. bottom: 47/1412
  50204. }
  50205. },
  50206. back: {
  50207. height: math.unit(6, "feet"),
  50208. name: "Back",
  50209. image: {
  50210. source: "./media/characters/tenley-sidero/back.svg",
  50211. extra: 1383/1283,
  50212. bottom: 35/1418
  50213. }
  50214. },
  50215. dressed: {
  50216. height: math.unit(6, "feet"),
  50217. name: "Dressed",
  50218. image: {
  50219. source: "./media/characters/tenley-sidero/dressed.svg",
  50220. extra: 1364/1275,
  50221. bottom: 42/1406
  50222. }
  50223. },
  50224. head: {
  50225. height: math.unit(1.47, "feet"),
  50226. name: "Head",
  50227. image: {
  50228. source: "./media/characters/tenley-sidero/head.svg",
  50229. extra: 610/490,
  50230. bottom: 0/610
  50231. }
  50232. },
  50233. },
  50234. [
  50235. {
  50236. name: "Normal",
  50237. height: math.unit(154, "feet"),
  50238. default: true
  50239. },
  50240. ]
  50241. ))
  50242. characterMakers.push(() => makeCharacter(
  50243. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50244. {
  50245. front: {
  50246. height: math.unit(5, "inches"),
  50247. name: "Front",
  50248. image: {
  50249. source: "./media/characters/mallory/front.svg",
  50250. extra: 1919/1678,
  50251. bottom: 29/1948
  50252. }
  50253. },
  50254. hand: {
  50255. height: math.unit(0.73, "inches"),
  50256. name: "Hand",
  50257. image: {
  50258. source: "./media/characters/mallory/hand.svg"
  50259. }
  50260. },
  50261. paw: {
  50262. height: math.unit(0.68, "inches"),
  50263. name: "Paw",
  50264. image: {
  50265. source: "./media/characters/mallory/paw.svg"
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Small",
  50272. height: math.unit(5, "inches"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50279. {
  50280. naked: {
  50281. height: math.unit(6, "feet"),
  50282. name: "Naked",
  50283. image: {
  50284. source: "./media/characters/mab/naked.svg",
  50285. extra: 1855/1757,
  50286. bottom: 208/2063
  50287. }
  50288. },
  50289. outside: {
  50290. height: math.unit(6, "feet"),
  50291. name: "Outside",
  50292. image: {
  50293. source: "./media/characters/mab/outside.svg",
  50294. extra: 1855/1757,
  50295. bottom: 208/2063
  50296. }
  50297. },
  50298. party: {
  50299. height: math.unit(6, "feet"),
  50300. name: "Party",
  50301. image: {
  50302. source: "./media/characters/mab/party.svg",
  50303. extra: 1855/1757,
  50304. bottom: 208/2063
  50305. }
  50306. },
  50307. },
  50308. [
  50309. {
  50310. name: "Normal",
  50311. height: math.unit(165, "feet"),
  50312. default: true
  50313. },
  50314. ]
  50315. ))
  50316. characterMakers.push(() => makeCharacter(
  50317. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50318. {
  50319. feral: {
  50320. height: math.unit(12, "feet"),
  50321. weight: math.unit(20000, "lb"),
  50322. name: "Side",
  50323. image: {
  50324. source: "./media/characters/winter/feral.svg",
  50325. extra: 1286/943,
  50326. bottom: 112/1398
  50327. },
  50328. form: "feral",
  50329. default: true
  50330. },
  50331. feralNsfw: {
  50332. height: math.unit(12, "feet"),
  50333. weight: math.unit(20000, "lb"),
  50334. name: "Side (NSFW)",
  50335. image: {
  50336. source: "./media/characters/winter/feral-nsfw.svg",
  50337. extra: 1286/943,
  50338. bottom: 112/1398
  50339. },
  50340. form: "feral"
  50341. },
  50342. dick: {
  50343. height: math.unit(3.79, "feet"),
  50344. name: "Dick",
  50345. image: {
  50346. source: "./media/characters/winter/dick.svg"
  50347. },
  50348. form: "feral"
  50349. },
  50350. anthro: {
  50351. height: math.unit(12, "feet"),
  50352. weight: math.unit(10, "tons"),
  50353. name: "Anthro",
  50354. image: {
  50355. source: "./media/characters/winter/anthro.svg",
  50356. extra: 1701/1553,
  50357. bottom: 64/1765
  50358. },
  50359. form: "anthro",
  50360. default: true
  50361. },
  50362. },
  50363. [
  50364. {
  50365. name: "Big",
  50366. height: math.unit(12, "feet"),
  50367. default: true,
  50368. form: "feral"
  50369. },
  50370. {
  50371. name: "Big",
  50372. height: math.unit(12, "feet"),
  50373. default: true,
  50374. form: "anthro"
  50375. },
  50376. ],
  50377. {
  50378. "feral": {
  50379. name: "Feral",
  50380. default: true
  50381. },
  50382. "anthro": {
  50383. name: "Anthro"
  50384. }
  50385. }
  50386. ))
  50387. characterMakers.push(() => makeCharacter(
  50388. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50389. {
  50390. front: {
  50391. height: math.unit(4.1, "inches"),
  50392. name: "Front",
  50393. image: {
  50394. source: "./media/characters/alto/front.svg",
  50395. extra: 736/627,
  50396. bottom: 90/826
  50397. }
  50398. },
  50399. },
  50400. [
  50401. {
  50402. name: "Normal",
  50403. height: math.unit(4.1, "inches"),
  50404. default: true
  50405. },
  50406. ]
  50407. ))
  50408. characterMakers.push(() => makeCharacter(
  50409. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50410. {
  50411. sitting: {
  50412. height: math.unit(3, "feet"),
  50413. name: "Sitting",
  50414. image: {
  50415. source: "./media/characters/ratstrid-v/sitting.svg",
  50416. extra: 355/310,
  50417. bottom: 136/491
  50418. }
  50419. },
  50420. },
  50421. [
  50422. {
  50423. name: "Normal",
  50424. height: math.unit(3, "feet"),
  50425. default: true
  50426. },
  50427. ]
  50428. ))
  50429. characterMakers.push(() => makeCharacter(
  50430. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50431. {
  50432. back: {
  50433. height: math.unit(6, "feet"),
  50434. weight: math.unit(450, "lb"),
  50435. name: "Back",
  50436. image: {
  50437. source: "./media/characters/siz/back.svg",
  50438. extra: 1449/1274,
  50439. bottom: 13/1462
  50440. }
  50441. },
  50442. },
  50443. [
  50444. {
  50445. name: "Smallest",
  50446. height: math.unit(18 + 3/12, "feet")
  50447. },
  50448. {
  50449. name: "Modest",
  50450. height: math.unit(56 + 8/12, "feet"),
  50451. default: true
  50452. },
  50453. {
  50454. name: "Largest",
  50455. height: math.unit(3590, "feet")
  50456. },
  50457. ]
  50458. ))
  50459. characterMakers.push(() => makeCharacter(
  50460. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50461. {
  50462. front: {
  50463. height: math.unit(5 + 9/12, "feet"),
  50464. weight: math.unit(150, "lb"),
  50465. name: "Front",
  50466. image: {
  50467. source: "./media/characters/ven/front.svg",
  50468. extra: 1372/1320,
  50469. bottom: 73/1445
  50470. }
  50471. },
  50472. side: {
  50473. height: math.unit(5 + 9/12, "feet"),
  50474. weight: math.unit(1150, "lb"),
  50475. name: "Side",
  50476. image: {
  50477. source: "./media/characters/ven/side.svg",
  50478. extra: 1119/1070,
  50479. bottom: 42/1161
  50480. },
  50481. default: true
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(5 + 9/12, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(12, "feet"),
  50497. weight: math.unit(1000, "kg"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/maple/front.svg",
  50501. extra: 1193/1081,
  50502. bottom: 22/1215
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Compressed",
  50509. height: math.unit(7, "feet")
  50510. },
  50511. {
  50512. name: "Normal",
  50513. height: math.unit(12, "feet"),
  50514. default: true
  50515. },
  50516. ]
  50517. ))
  50518. characterMakers.push(() => makeCharacter(
  50519. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50520. {
  50521. front: {
  50522. height: math.unit(9, "feet"),
  50523. weight: math.unit(1500, "lb"),
  50524. name: "Front",
  50525. image: {
  50526. source: "./media/characters/nora/front.svg",
  50527. extra: 1348/1286,
  50528. bottom: 218/1566
  50529. }
  50530. },
  50531. erect: {
  50532. height: math.unit(9, "feet"),
  50533. weight: math.unit(11500, "lb"),
  50534. name: "Erect",
  50535. image: {
  50536. source: "./media/characters/nora/erect.svg",
  50537. extra: 1488/1433,
  50538. bottom: 133/1621
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Normal",
  50545. height: math.unit(9, "feet"),
  50546. default: true
  50547. },
  50548. ]
  50549. ))
  50550. characterMakers.push(() => makeCharacter(
  50551. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50552. {
  50553. front: {
  50554. height: math.unit(25, "feet"),
  50555. weight: math.unit(27500, "lb"),
  50556. name: "Front",
  50557. image: {
  50558. source: "./media/characters/north-caudin/front.svg",
  50559. extra: 1184/1082,
  50560. bottom: 23/1207
  50561. }
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Compressed",
  50567. height: math.unit(10, "feet")
  50568. },
  50569. {
  50570. name: "Normal",
  50571. height: math.unit(25, "feet"),
  50572. default: true
  50573. },
  50574. ]
  50575. ))
  50576. characterMakers.push(() => makeCharacter(
  50577. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50578. {
  50579. front: {
  50580. height: math.unit(9, "feet"),
  50581. weight: math.unit(1250, "lb"),
  50582. name: "Front",
  50583. image: {
  50584. source: "./media/characters/merrian/front.svg",
  50585. extra: 2393/2304,
  50586. bottom: 40/2433
  50587. }
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Normal",
  50593. height: math.unit(9, "feet"),
  50594. default: true
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50600. {
  50601. front: {
  50602. height: math.unit(9, "feet"),
  50603. weight: math.unit(1000, "lb"),
  50604. name: "Front",
  50605. image: {
  50606. source: "./media/characters/hazel/front.svg",
  50607. extra: 2351/2298,
  50608. bottom: 38/2389
  50609. }
  50610. },
  50611. },
  50612. [
  50613. {
  50614. name: "Normal",
  50615. height: math.unit(9, "feet"),
  50616. default: true
  50617. },
  50618. ]
  50619. ))
  50620. characterMakers.push(() => makeCharacter(
  50621. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50622. {
  50623. front: {
  50624. height: math.unit(13, "feet"),
  50625. weight: math.unit(3200, "lb"),
  50626. name: "Front",
  50627. image: {
  50628. source: "./media/characters/emma/front.svg",
  50629. extra: 2263/2029,
  50630. bottom: 68/2331
  50631. }
  50632. },
  50633. },
  50634. [
  50635. {
  50636. name: "Normal",
  50637. height: math.unit(13, "feet"),
  50638. default: true
  50639. },
  50640. ]
  50641. ))
  50642. characterMakers.push(() => makeCharacter(
  50643. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50644. {
  50645. front: {
  50646. height: math.unit(11 + 9/12, "feet"),
  50647. weight: math.unit(2500, "lb"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/ilumina/front.svg",
  50651. extra: 2248/2209,
  50652. bottom: 164/2412
  50653. }
  50654. },
  50655. },
  50656. [
  50657. {
  50658. name: "Normal",
  50659. height: math.unit(11 + 9/12, "feet"),
  50660. default: true
  50661. },
  50662. ]
  50663. ))
  50664. characterMakers.push(() => makeCharacter(
  50665. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50666. {
  50667. front: {
  50668. height: math.unit(8 + 10/12, "feet"),
  50669. weight: math.unit(1350, "lb"),
  50670. name: "Front",
  50671. image: {
  50672. source: "./media/characters/moonshine/front.svg",
  50673. extra: 2395/2288,
  50674. bottom: 40/2435
  50675. }
  50676. },
  50677. },
  50678. [
  50679. {
  50680. name: "Normal",
  50681. height: math.unit(8 + 10/12, "feet"),
  50682. default: true
  50683. },
  50684. ]
  50685. ))
  50686. characterMakers.push(() => makeCharacter(
  50687. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50688. {
  50689. front: {
  50690. height: math.unit(14, "feet"),
  50691. weight: math.unit(3400, "lb"),
  50692. name: "Front",
  50693. image: {
  50694. source: "./media/characters/aletia/front.svg",
  50695. extra: 1185/1052,
  50696. bottom: 21/1206
  50697. }
  50698. },
  50699. },
  50700. [
  50701. {
  50702. name: "Compressed",
  50703. height: math.unit(8, "feet")
  50704. },
  50705. {
  50706. name: "Normal",
  50707. height: math.unit(14, "feet"),
  50708. default: true
  50709. },
  50710. ]
  50711. ))
  50712. characterMakers.push(() => makeCharacter(
  50713. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50714. {
  50715. front: {
  50716. height: math.unit(17, "feet"),
  50717. weight: math.unit(6500, "lb"),
  50718. name: "Front",
  50719. image: {
  50720. source: "./media/characters/deidra/front.svg",
  50721. extra: 1201/1081,
  50722. bottom: 16/1217
  50723. }
  50724. },
  50725. },
  50726. [
  50727. {
  50728. name: "Compressed",
  50729. height: math.unit(9 + 6/12, "feet")
  50730. },
  50731. {
  50732. name: "Normal",
  50733. height: math.unit(17, "feet"),
  50734. default: true
  50735. },
  50736. ]
  50737. ))
  50738. characterMakers.push(() => makeCharacter(
  50739. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50740. {
  50741. front: {
  50742. height: math.unit(7 + 4/12, "feet"),
  50743. weight: math.unit(280, "lb"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/freki-yrmori/front.svg",
  50747. extra: 1286/1182,
  50748. bottom: 29/1315
  50749. }
  50750. },
  50751. maw: {
  50752. height: math.unit(0.9, "feet"),
  50753. name: "Maw",
  50754. image: {
  50755. source: "./media/characters/freki-yrmori/maw.svg"
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(7 + 4/12, "feet"),
  50763. default: true
  50764. },
  50765. {
  50766. name: "Macro",
  50767. height: math.unit(38.5, "meters")
  50768. },
  50769. ]
  50770. ))
  50771. characterMakers.push(() => makeCharacter(
  50772. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50773. {
  50774. side: {
  50775. height: math.unit(47.2, "meters"),
  50776. weight: math.unit(10000, "tons"),
  50777. name: "Side",
  50778. image: {
  50779. source: "./media/characters/aetherios/side.svg",
  50780. extra: 2363/642,
  50781. bottom: 221/2584
  50782. }
  50783. },
  50784. top: {
  50785. height: math.unit(240, "meters"),
  50786. weight: math.unit(10000, "tons"),
  50787. name: "Top",
  50788. image: {
  50789. source: "./media/characters/aetherios/top.svg"
  50790. }
  50791. },
  50792. bottom: {
  50793. height: math.unit(240, "meters"),
  50794. weight: math.unit(10000, "tons"),
  50795. name: "Bottom",
  50796. image: {
  50797. source: "./media/characters/aetherios/bottom.svg"
  50798. }
  50799. },
  50800. head: {
  50801. height: math.unit(38.6, "meters"),
  50802. name: "Head",
  50803. image: {
  50804. source: "./media/characters/aetherios/head.svg",
  50805. extra: 1335/1112,
  50806. bottom: 0/1335
  50807. }
  50808. },
  50809. front: {
  50810. height: math.unit(29, "meters"),
  50811. name: "Front",
  50812. image: {
  50813. source: "./media/characters/aetherios/front.svg",
  50814. extra: 1266/953,
  50815. bottom: 158/1424
  50816. }
  50817. },
  50818. maw: {
  50819. height: math.unit(16.37, "meters"),
  50820. name: "Maw",
  50821. image: {
  50822. source: "./media/characters/aetherios/maw.svg",
  50823. extra: 748/637,
  50824. bottom: 0/748
  50825. },
  50826. extraAttributes: {
  50827. preyCapacity: {
  50828. name: "Capacity",
  50829. power: 3,
  50830. type: "volume",
  50831. base: math.unit(1000, "people")
  50832. },
  50833. tongueSize: {
  50834. name: "Tongue Size",
  50835. power: 2,
  50836. type: "area",
  50837. base: math.unit(21, "m^2")
  50838. }
  50839. }
  50840. },
  50841. forepaw: {
  50842. height: math.unit(18, "meters"),
  50843. name: "Forepaw",
  50844. image: {
  50845. source: "./media/characters/aetherios/forepaw.svg"
  50846. }
  50847. },
  50848. hindpaw: {
  50849. height: math.unit(23, "meters"),
  50850. name: "Hindpaw",
  50851. image: {
  50852. source: "./media/characters/aetherios/hindpaw.svg"
  50853. }
  50854. },
  50855. genitals: {
  50856. height: math.unit(42, "meters"),
  50857. name: "Genitals",
  50858. image: {
  50859. source: "./media/characters/aetherios/genitals.svg"
  50860. }
  50861. },
  50862. },
  50863. [
  50864. {
  50865. name: "Normal",
  50866. height: math.unit(47.2, "meters"),
  50867. default: true
  50868. },
  50869. {
  50870. name: "Macro",
  50871. height: math.unit(160, "meters")
  50872. },
  50873. {
  50874. name: "Mega",
  50875. height: math.unit(1.87, "km")
  50876. },
  50877. {
  50878. name: "Giga",
  50879. height: math.unit(40000, "km")
  50880. },
  50881. {
  50882. name: "Stellar",
  50883. height: math.unit(158000000, "km")
  50884. },
  50885. {
  50886. name: "Cosmic",
  50887. height: math.unit(9.46e12, "km")
  50888. },
  50889. ]
  50890. ))
  50891. characterMakers.push(() => makeCharacter(
  50892. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50893. {
  50894. front: {
  50895. height: math.unit(5 + 4/12, "feet"),
  50896. weight: math.unit(80, "lb"),
  50897. name: "Front",
  50898. image: {
  50899. source: "./media/characters/mizu-gieeg/front.svg",
  50900. extra: 850/709,
  50901. bottom: 52/902
  50902. }
  50903. },
  50904. back: {
  50905. height: math.unit(5 + 4/12, "feet"),
  50906. weight: math.unit(80, "lb"),
  50907. name: "Back",
  50908. image: {
  50909. source: "./media/characters/mizu-gieeg/back.svg",
  50910. extra: 882/745,
  50911. bottom: 25/907
  50912. }
  50913. },
  50914. },
  50915. [
  50916. {
  50917. name: "Normal",
  50918. height: math.unit(5 + 4/12, "feet"),
  50919. default: true
  50920. },
  50921. ]
  50922. ))
  50923. characterMakers.push(() => makeCharacter(
  50924. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50925. {
  50926. front: {
  50927. height: math.unit(6, "feet"),
  50928. name: "Front",
  50929. image: {
  50930. source: "./media/characters/roselle-st-papier/front.svg",
  50931. extra: 1430/1280,
  50932. bottom: 37/1467
  50933. }
  50934. },
  50935. back: {
  50936. height: math.unit(6, "feet"),
  50937. name: "Back",
  50938. image: {
  50939. source: "./media/characters/roselle-st-papier/back.svg",
  50940. extra: 1491/1296,
  50941. bottom: 23/1514
  50942. }
  50943. },
  50944. ear: {
  50945. height: math.unit(1.26, "feet"),
  50946. name: "Ear",
  50947. image: {
  50948. source: "./media/characters/roselle-st-papier/ear.svg"
  50949. }
  50950. },
  50951. },
  50952. [
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(150, "feet"),
  50956. default: true
  50957. },
  50958. ]
  50959. ))
  50960. characterMakers.push(() => makeCharacter(
  50961. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50962. {
  50963. front: {
  50964. height: math.unit(1, "inches"),
  50965. name: "Front",
  50966. image: {
  50967. source: "./media/characters/valargent/front.svg",
  50968. extra: 1825/1694,
  50969. bottom: 62/1887
  50970. }
  50971. },
  50972. back: {
  50973. height: math.unit(1, "inches"),
  50974. name: "Back",
  50975. image: {
  50976. source: "./media/characters/valargent/back.svg",
  50977. extra: 1775/1682,
  50978. bottom: 88/1863
  50979. }
  50980. },
  50981. },
  50982. [
  50983. {
  50984. name: "Micro",
  50985. height: math.unit(1, "inch"),
  50986. default: true
  50987. },
  50988. ]
  50989. ))
  50990. characterMakers.push(() => makeCharacter(
  50991. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50992. {
  50993. front: {
  50994. height: math.unit(3.4, "meters"),
  50995. name: "Front",
  50996. image: {
  50997. source: "./media/characters/zarina/front.svg",
  50998. extra: 1733/1425,
  50999. bottom: 93/1826
  51000. }
  51001. },
  51002. squatting: {
  51003. height: math.unit(2.14, "meters"),
  51004. name: "Squatting",
  51005. image: {
  51006. source: "./media/characters/zarina/squatting.svg",
  51007. extra: 1073/788,
  51008. bottom: 63/1136
  51009. }
  51010. },
  51011. back: {
  51012. height: math.unit(2.14, "meters"),
  51013. name: "Back",
  51014. image: {
  51015. source: "./media/characters/zarina/back.svg",
  51016. extra: 1128/885,
  51017. bottom: 0/1128
  51018. }
  51019. },
  51020. },
  51021. [
  51022. {
  51023. name: "Normal",
  51024. height: math.unit(3.4, "meters"),
  51025. default: true
  51026. },
  51027. {
  51028. name: "Big",
  51029. height: math.unit(5, "meters")
  51030. },
  51031. {
  51032. name: "Macro",
  51033. height: math.unit(110, "meters")
  51034. },
  51035. ]
  51036. ))
  51037. characterMakers.push(() => makeCharacter(
  51038. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51039. {
  51040. front: {
  51041. height: math.unit(7, "feet"),
  51042. name: "Front",
  51043. image: {
  51044. source: "./media/characters/ventus-astro-fox/front.svg",
  51045. extra: 1792/1623,
  51046. bottom: 28/1820
  51047. }
  51048. },
  51049. back: {
  51050. height: math.unit(7, "feet"),
  51051. name: "Back",
  51052. image: {
  51053. source: "./media/characters/ventus-astro-fox/back.svg",
  51054. extra: 1789/1620,
  51055. bottom: 31/1820
  51056. }
  51057. },
  51058. outfit: {
  51059. height: math.unit(7, "feet"),
  51060. name: "Outfit",
  51061. image: {
  51062. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51063. extra: 1054/925,
  51064. bottom: 15/1069
  51065. }
  51066. },
  51067. head: {
  51068. height: math.unit(1.12, "feet"),
  51069. name: "Head",
  51070. image: {
  51071. source: "./media/characters/ventus-astro-fox/head.svg",
  51072. extra: 866/504,
  51073. bottom: 0/866
  51074. }
  51075. },
  51076. hand: {
  51077. height: math.unit(1, "feet"),
  51078. name: "Hand",
  51079. image: {
  51080. source: "./media/characters/ventus-astro-fox/hand.svg"
  51081. }
  51082. },
  51083. paw: {
  51084. height: math.unit(1.5, "feet"),
  51085. name: "Paw",
  51086. image: {
  51087. source: "./media/characters/ventus-astro-fox/paw.svg"
  51088. }
  51089. },
  51090. },
  51091. [
  51092. {
  51093. name: "Normal",
  51094. height: math.unit(7, "feet"),
  51095. default: true
  51096. },
  51097. {
  51098. name: "Macro",
  51099. height: math.unit(200, "feet")
  51100. },
  51101. {
  51102. name: "Cosmic",
  51103. height: math.unit(3, "universes")
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51109. {
  51110. front: {
  51111. height: math.unit(3, "meters"),
  51112. weight: math.unit(7000, "lb"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/core-t/front.svg",
  51116. extra: 5729/4941,
  51117. bottom: 1129/6858
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Big",
  51124. height: math.unit(3, "meters"),
  51125. default: true
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51131. {
  51132. normal: {
  51133. height: math.unit(6 + 6/12, "feet"),
  51134. weight: math.unit(275, "lb"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/cadbunny/normal.svg",
  51138. extra: 1129/947,
  51139. bottom: 93/1222
  51140. },
  51141. default: true,
  51142. form: "normal"
  51143. },
  51144. gigantamax: {
  51145. height: math.unit(26, "feet"),
  51146. weight: math.unit(16000, "lb"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/cadbunny/gigantamax.svg",
  51150. extra: 1133/944,
  51151. bottom: 90/1223
  51152. },
  51153. default: true,
  51154. form: "gigantamax"
  51155. },
  51156. },
  51157. [
  51158. {
  51159. name: "Normal",
  51160. height: math.unit(6 + 6/12, "feet"),
  51161. default: true,
  51162. form: "normal"
  51163. },
  51164. {
  51165. name: "Small",
  51166. height: math.unit(26, "feet"),
  51167. default: true,
  51168. form: "gigantamax"
  51169. },
  51170. {
  51171. name: "Large",
  51172. height: math.unit(78, "feet"),
  51173. form: "gigantamax"
  51174. },
  51175. ],
  51176. {
  51177. "normal": {
  51178. name: "Normal",
  51179. default: true
  51180. },
  51181. "gigantamax": {
  51182. name: "Gigantamax"
  51183. }
  51184. }
  51185. ))
  51186. characterMakers.push(() => makeCharacter(
  51187. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51188. {
  51189. anthroFront: {
  51190. height: math.unit(8, "feet"),
  51191. weight: math.unit(300, "lb"),
  51192. name: "Front",
  51193. image: {
  51194. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51195. extra: 1272/1176,
  51196. bottom: 53/1325
  51197. },
  51198. form: "anthro",
  51199. default: true
  51200. },
  51201. feralSide: {
  51202. height: math.unit(4, "feet"),
  51203. weight: math.unit(250, "lb"),
  51204. name: "Side",
  51205. image: {
  51206. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51207. extra: 731/621,
  51208. bottom: 0/731
  51209. },
  51210. form: "feral",
  51211. default: true
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Regular",
  51217. height: math.unit(8, "feet"),
  51218. form: "anthro"
  51219. },
  51220. {
  51221. name: "Macro",
  51222. height: math.unit(250, "feet"),
  51223. form: "anthro",
  51224. default: true
  51225. },
  51226. {
  51227. name: "Regular",
  51228. height: math.unit(4, "feet"),
  51229. form: "feral"
  51230. },
  51231. {
  51232. name: "Macro",
  51233. height: math.unit(125, "feet"),
  51234. form: "feral",
  51235. default: true
  51236. },
  51237. ],
  51238. {
  51239. "anthro": {
  51240. name: "Anthro",
  51241. default: true
  51242. },
  51243. "feral": {
  51244. name: "Feral",
  51245. },
  51246. }
  51247. ))
  51248. characterMakers.push(() => makeCharacter(
  51249. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51250. {
  51251. front: {
  51252. height: math.unit(11 + 10/12, "feet"),
  51253. weight: math.unit(1587, "kg"),
  51254. name: "Front",
  51255. image: {
  51256. source: "./media/characters/maple-javira-dragon/front.svg",
  51257. extra: 1136/744,
  51258. bottom: 73/1209
  51259. }
  51260. },
  51261. side: {
  51262. height: math.unit(11 + 10/12, "feet"),
  51263. weight: math.unit(1587, "kg"),
  51264. name: "Side",
  51265. image: {
  51266. source: "./media/characters/maple-javira-dragon/side.svg",
  51267. extra: 712/505,
  51268. bottom: 17/729
  51269. }
  51270. },
  51271. head: {
  51272. height: math.unit(8.05, "feet"),
  51273. name: "Head",
  51274. image: {
  51275. source: "./media/characters/maple-javira-dragon/head.svg",
  51276. extra: 1420/1344,
  51277. bottom: 0/1420
  51278. }
  51279. },
  51280. },
  51281. [
  51282. {
  51283. name: "Normal",
  51284. height: math.unit(11 + 10/12, "feet"),
  51285. default: true
  51286. },
  51287. ]
  51288. ))
  51289. characterMakers.push(() => makeCharacter(
  51290. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51291. {
  51292. front: {
  51293. height: math.unit(117, "cm"),
  51294. weight: math.unit(50, "kg"),
  51295. name: "Front",
  51296. image: {
  51297. source: "./media/characters/sonia-wyverntail/front.svg",
  51298. extra: 708/592,
  51299. bottom: 25/733
  51300. }
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Normal",
  51306. height: math.unit(117, "cm"),
  51307. default: true
  51308. },
  51309. ]
  51310. ))
  51311. characterMakers.push(() => makeCharacter(
  51312. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51313. {
  51314. front: {
  51315. height: math.unit(6 + 5/12, "feet"),
  51316. name: "Front",
  51317. image: {
  51318. source: "./media/characters/micah/front.svg",
  51319. extra: 1758/1546,
  51320. bottom: 214/1972
  51321. }
  51322. },
  51323. },
  51324. [
  51325. {
  51326. name: "Normal",
  51327. height: math.unit(6 + 5/12, "feet"),
  51328. default: true
  51329. },
  51330. ]
  51331. ))
  51332. characterMakers.push(() => makeCharacter(
  51333. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51334. {
  51335. front: {
  51336. height: math.unit(1.75, "meters"),
  51337. weight: math.unit(100, "kg"),
  51338. name: "Front",
  51339. image: {
  51340. source: "./media/characters/zarya/front.svg",
  51341. extra: 741/735,
  51342. bottom: 44/785
  51343. },
  51344. extraAttributes: {
  51345. "tailLength": {
  51346. name: "Tail Length",
  51347. power: 1,
  51348. type: "length",
  51349. base: math.unit(180, "cm")
  51350. },
  51351. "pawLength": {
  51352. name: "Paw Length",
  51353. power: 1,
  51354. type: "length",
  51355. base: math.unit(31, "cm")
  51356. },
  51357. }
  51358. },
  51359. side: {
  51360. height: math.unit(1.75, "meters"),
  51361. weight: math.unit(100, "kg"),
  51362. name: "Side",
  51363. image: {
  51364. source: "./media/characters/zarya/side.svg",
  51365. extra: 776/770,
  51366. bottom: 17/793
  51367. },
  51368. extraAttributes: {
  51369. "tailLength": {
  51370. name: "Tail Length",
  51371. power: 1,
  51372. type: "length",
  51373. base: math.unit(180, "cm")
  51374. },
  51375. "pawLength": {
  51376. name: "Paw Length",
  51377. power: 1,
  51378. type: "length",
  51379. base: math.unit(31, "cm")
  51380. },
  51381. }
  51382. },
  51383. back: {
  51384. height: math.unit(1.75, "meters"),
  51385. weight: math.unit(100, "kg"),
  51386. name: "Back",
  51387. image: {
  51388. source: "./media/characters/zarya/back.svg",
  51389. extra: 741/735,
  51390. bottom: 44/785
  51391. },
  51392. extraAttributes: {
  51393. "tailLength": {
  51394. name: "Tail Length",
  51395. power: 1,
  51396. type: "length",
  51397. base: math.unit(180, "cm")
  51398. },
  51399. "pawLength": {
  51400. name: "Paw Length",
  51401. power: 1,
  51402. type: "length",
  51403. base: math.unit(31, "cm")
  51404. },
  51405. }
  51406. },
  51407. frontNoTail: {
  51408. height: math.unit(1.75, "meters"),
  51409. weight: math.unit(100, "kg"),
  51410. name: "Front (No Tail)",
  51411. image: {
  51412. source: "./media/characters/zarya/front-no-tail.svg",
  51413. extra: 741/735,
  51414. bottom: 44/785
  51415. },
  51416. extraAttributes: {
  51417. "tailLength": {
  51418. name: "Tail Length",
  51419. power: 1,
  51420. type: "length",
  51421. base: math.unit(180, "cm")
  51422. },
  51423. "pawLength": {
  51424. name: "Paw Length",
  51425. power: 1,
  51426. type: "length",
  51427. base: math.unit(31, "cm")
  51428. },
  51429. }
  51430. },
  51431. dressed: {
  51432. height: math.unit(1.75, "meters"),
  51433. weight: math.unit(100, "kg"),
  51434. name: "Dressed",
  51435. image: {
  51436. source: "./media/characters/zarya/dressed.svg",
  51437. extra: 683/672,
  51438. bottom: 79/762
  51439. },
  51440. extraAttributes: {
  51441. "tailLength": {
  51442. name: "Tail Length",
  51443. power: 1,
  51444. type: "length",
  51445. base: math.unit(180, "cm")
  51446. },
  51447. "pawLength": {
  51448. name: "Paw Length",
  51449. power: 1,
  51450. type: "length",
  51451. base: math.unit(31, "cm")
  51452. },
  51453. }
  51454. },
  51455. },
  51456. [
  51457. {
  51458. name: "Micro",
  51459. height: math.unit(5, "cm")
  51460. },
  51461. {
  51462. name: "Normal",
  51463. height: math.unit(1.75, "meters"),
  51464. default: true
  51465. },
  51466. {
  51467. name: "Macro",
  51468. height: math.unit(122, "meters")
  51469. },
  51470. ]
  51471. ))
  51472. characterMakers.push(() => makeCharacter(
  51473. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51474. {
  51475. front: {
  51476. height: math.unit(7.5, "feet"),
  51477. name: "Front",
  51478. image: {
  51479. source: "./media/characters/sven-hatisson/front.svg",
  51480. extra: 917/857,
  51481. bottom: 42/959
  51482. }
  51483. },
  51484. back: {
  51485. height: math.unit(7.5, "feet"),
  51486. name: "Back",
  51487. image: {
  51488. source: "./media/characters/sven-hatisson/back.svg",
  51489. extra: 903/856,
  51490. bottom: 15/918
  51491. }
  51492. },
  51493. },
  51494. [
  51495. {
  51496. name: "Base Height",
  51497. height: math.unit(7.5, "feet")
  51498. },
  51499. {
  51500. name: "Usual Height",
  51501. height: math.unit(13.5, "feet"),
  51502. default: true
  51503. },
  51504. {
  51505. name: "Smaller Macro",
  51506. height: math.unit(85, "feet")
  51507. },
  51508. {
  51509. name: "Moderate Macro",
  51510. height: math.unit(320, "feet")
  51511. },
  51512. {
  51513. name: "Large Macro",
  51514. height: math.unit(1000, "feet")
  51515. },
  51516. {
  51517. name: "Largest Size",
  51518. height: math.unit(2, "miles")
  51519. },
  51520. ]
  51521. ))
  51522. characterMakers.push(() => makeCharacter(
  51523. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51524. {
  51525. side: {
  51526. height: math.unit(1.8, "meters"),
  51527. weight: math.unit(275, "kg"),
  51528. name: "Side",
  51529. image: {
  51530. source: "./media/characters/terra/side.svg",
  51531. extra: 1273/1147,
  51532. bottom: 0/1273
  51533. }
  51534. },
  51535. },
  51536. [
  51537. {
  51538. name: "Normal",
  51539. height: math.unit(16.2, "meters"),
  51540. default: true
  51541. },
  51542. ]
  51543. ))
  51544. characterMakers.push(() => makeCharacter(
  51545. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51546. {
  51547. borzoiFront: {
  51548. height: math.unit(6 + 9/12, "feet"),
  51549. name: "Front",
  51550. image: {
  51551. source: "./media/characters/rae/borzoi-front.svg",
  51552. extra: 1161/1098,
  51553. bottom: 31/1192
  51554. },
  51555. form: "borzoi",
  51556. default: true
  51557. },
  51558. werewolfFront: {
  51559. height: math.unit(8 + 7/12, "feet"),
  51560. name: "Front",
  51561. image: {
  51562. source: "./media/characters/rae/werewolf-front.svg",
  51563. extra: 1411/1334,
  51564. bottom: 127/1538
  51565. },
  51566. form: "werewolf",
  51567. default: true
  51568. },
  51569. },
  51570. [
  51571. {
  51572. name: "Normal",
  51573. height: math.unit(6 + 9/12, "feet"),
  51574. default: true,
  51575. form: "borzoi"
  51576. },
  51577. {
  51578. name: "Normal",
  51579. height: math.unit(8 + 7/12, "feet"),
  51580. default: true,
  51581. form: "werewolf"
  51582. },
  51583. ],
  51584. {
  51585. "borzoi": {
  51586. name: "Borzoi",
  51587. default: true
  51588. },
  51589. "werewolf": {
  51590. name: "Werewolf",
  51591. },
  51592. }
  51593. ))
  51594. characterMakers.push(() => makeCharacter(
  51595. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51596. {
  51597. front: {
  51598. height: math.unit(8 + 7/12, "feet"),
  51599. weight: math.unit(482, "lb"),
  51600. name: "Front",
  51601. image: {
  51602. source: "./media/characters/kit/front.svg",
  51603. extra: 1247/1103,
  51604. bottom: 41/1288
  51605. }
  51606. },
  51607. back: {
  51608. height: math.unit(8 + 7/12, "feet"),
  51609. weight: math.unit(482, "lb"),
  51610. name: "Back",
  51611. image: {
  51612. source: "./media/characters/kit/back.svg",
  51613. extra: 1252/1123,
  51614. bottom: 21/1273
  51615. }
  51616. },
  51617. paw: {
  51618. height: math.unit(1.46, "feet"),
  51619. name: "Paw",
  51620. image: {
  51621. source: "./media/characters/kit/paw.svg"
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(2.61, "meters"),
  51629. default: true
  51630. },
  51631. {
  51632. name: "\"Tall\"",
  51633. height: math.unit(8.21, "meters")
  51634. },
  51635. {
  51636. name: "Tall",
  51637. height: math.unit(19.6, "meters")
  51638. },
  51639. {
  51640. name: "Very Tall",
  51641. height: math.unit(57.91, "meters")
  51642. },
  51643. {
  51644. name: "Semi-Macro",
  51645. height: math.unit(138.64, "meters")
  51646. },
  51647. {
  51648. name: "Macro",
  51649. height: math.unit(831.99, "meters")
  51650. },
  51651. {
  51652. name: "EX-Macro",
  51653. height: math.unit(96451121, "meters")
  51654. },
  51655. {
  51656. name: "S1-Omnipotent",
  51657. height: math.unit(4.42074e+9, "meters")
  51658. },
  51659. {
  51660. name: "S2-Omnipotent",
  51661. height: math.unit(9.42074e+17, "meters")
  51662. },
  51663. {
  51664. name: "Omnipotent",
  51665. height: math.unit(4.23112e+24, "meters")
  51666. },
  51667. {
  51668. name: "Hypergod",
  51669. height: math.unit(5.05176e+27, "meters")
  51670. },
  51671. {
  51672. name: "Hypergod-EX",
  51673. height: math.unit(9.45532e+49, "meters")
  51674. },
  51675. {
  51676. name: "Hypergod-SP",
  51677. height: math.unit(9.45532e+195, "meters")
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51683. {
  51684. side: {
  51685. height: math.unit(0.6, "meters"),
  51686. weight: math.unit(24, "kg"),
  51687. name: "Side",
  51688. image: {
  51689. source: "./media/characters/celeste/side.svg",
  51690. extra: 810/517,
  51691. bottom: 53/863
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Velociraptor",
  51698. height: math.unit(0.6, "meters"),
  51699. default: true
  51700. },
  51701. {
  51702. name: "Utahraptor",
  51703. height: math.unit(1.8, "meters")
  51704. },
  51705. {
  51706. name: "Gallimimus",
  51707. height: math.unit(4.0, "meters")
  51708. },
  51709. {
  51710. name: "Large",
  51711. height: math.unit(20, "meters")
  51712. },
  51713. {
  51714. name: "Planetary",
  51715. height: math.unit(50, "megameters")
  51716. },
  51717. {
  51718. name: "Stellar",
  51719. height: math.unit(1.5, "gigameters")
  51720. },
  51721. {
  51722. name: "Galactic",
  51723. height: math.unit(100, "exameters")
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51729. {
  51730. front: {
  51731. height: math.unit(6, "feet"),
  51732. weight: math.unit(210, "lb"),
  51733. name: "Front",
  51734. image: {
  51735. source: "./media/characters/glacia/front.svg",
  51736. extra: 958/901,
  51737. bottom: 45/1003
  51738. }
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Macro",
  51744. height: math.unit(1000, "meters"),
  51745. default: true
  51746. },
  51747. ]
  51748. ))
  51749. characterMakers.push(() => makeCharacter(
  51750. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51751. {
  51752. front: {
  51753. height: math.unit(4, "meters"),
  51754. name: "Front",
  51755. image: {
  51756. source: "./media/characters/giri/front.svg",
  51757. extra: 966/894,
  51758. bottom: 21/987
  51759. }
  51760. },
  51761. },
  51762. [
  51763. {
  51764. name: "Normal",
  51765. height: math.unit(4, "meters"),
  51766. default: true
  51767. },
  51768. ]
  51769. ))
  51770. characterMakers.push(() => makeCharacter(
  51771. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51772. {
  51773. back: {
  51774. height: math.unit(4, "feet"),
  51775. weight: math.unit(37, "lb"),
  51776. name: "Back",
  51777. image: {
  51778. source: "./media/characters/tin/back.svg",
  51779. extra: 845/780,
  51780. bottom: 28/873
  51781. }
  51782. },
  51783. },
  51784. [
  51785. {
  51786. name: "Normal",
  51787. height: math.unit(4, "feet"),
  51788. default: true
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51794. {
  51795. front: {
  51796. height: math.unit(25, "feet"),
  51797. name: "Front",
  51798. image: {
  51799. source: "./media/characters/cadenza-vivace/front.svg",
  51800. extra: 1842/1578,
  51801. bottom: 30/1872
  51802. }
  51803. },
  51804. },
  51805. [
  51806. {
  51807. name: "Macro",
  51808. height: math.unit(25, "feet"),
  51809. default: true
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51815. {
  51816. front: {
  51817. height: math.unit(10, "feet"),
  51818. weight: math.unit(625, "kg"),
  51819. name: "Front",
  51820. image: {
  51821. source: "./media/characters/zain/front.svg",
  51822. extra: 1682/1498,
  51823. bottom: 223/1905
  51824. }
  51825. },
  51826. back: {
  51827. height: math.unit(10, "feet"),
  51828. weight: math.unit(625, "kg"),
  51829. name: "Back",
  51830. image: {
  51831. source: "./media/characters/zain/back.svg",
  51832. extra: 1814/1657,
  51833. bottom: 152/1966
  51834. }
  51835. },
  51836. head: {
  51837. height: math.unit(10, "feet"),
  51838. weight: math.unit(625, "kg"),
  51839. name: "Head",
  51840. image: {
  51841. source: "./media/characters/zain/head.svg",
  51842. extra: 1059/762,
  51843. bottom: 0/1059
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Normal",
  51850. height: math.unit(10, "feet"),
  51851. default: true
  51852. },
  51853. ]
  51854. ))
  51855. characterMakers.push(() => makeCharacter(
  51856. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51857. {
  51858. front: {
  51859. height: math.unit(6 + 5/12, "feet"),
  51860. weight: math.unit(750, "lb"),
  51861. name: "Front",
  51862. image: {
  51863. source: "./media/characters/ruchex/front.svg",
  51864. extra: 877/820,
  51865. bottom: 17/894
  51866. },
  51867. extraAttributes: {
  51868. "width": {
  51869. name: "Width",
  51870. power: 1,
  51871. type: "length",
  51872. base: math.unit(4.757, "feet")
  51873. },
  51874. }
  51875. },
  51876. },
  51877. [
  51878. {
  51879. name: "Normal",
  51880. height: math.unit(6 + 5/12, "feet"),
  51881. default: true
  51882. },
  51883. ]
  51884. ))
  51885. characterMakers.push(() => makeCharacter(
  51886. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51887. {
  51888. dressedFront: {
  51889. height: math.unit(191, "cm"),
  51890. weight: math.unit(80, "kg"),
  51891. name: "Front",
  51892. image: {
  51893. source: "./media/characters/buster/dressed-front.svg",
  51894. extra: 1022/973,
  51895. bottom: 69/1091
  51896. }
  51897. },
  51898. dressedBack: {
  51899. height: math.unit(191, "cm"),
  51900. weight: math.unit(80, "kg"),
  51901. name: "Back",
  51902. image: {
  51903. source: "./media/characters/buster/dressed-back.svg",
  51904. extra: 1018/970,
  51905. bottom: 55/1073
  51906. }
  51907. },
  51908. nudeFront: {
  51909. height: math.unit(191, "cm"),
  51910. weight: math.unit(80, "kg"),
  51911. name: "Front (Nude)",
  51912. image: {
  51913. source: "./media/characters/buster/nude-front.svg",
  51914. extra: 1022/973,
  51915. bottom: 69/1091
  51916. }
  51917. },
  51918. nudeBack: {
  51919. height: math.unit(191, "cm"),
  51920. weight: math.unit(80, "kg"),
  51921. name: "Back (Nude)",
  51922. image: {
  51923. source: "./media/characters/buster/nude-back.svg",
  51924. extra: 1018/970,
  51925. bottom: 55/1073
  51926. }
  51927. },
  51928. dick: {
  51929. height: math.unit(2.59, "feet"),
  51930. name: "Dick",
  51931. image: {
  51932. source: "./media/characters/buster/dick.svg"
  51933. }
  51934. },
  51935. ass: {
  51936. height: math.unit(1.2, "feet"),
  51937. name: "Ass",
  51938. image: {
  51939. source: "./media/characters/buster/ass.svg"
  51940. }
  51941. },
  51942. },
  51943. [
  51944. {
  51945. name: "Normal",
  51946. height: math.unit(191, "cm"),
  51947. default: true
  51948. },
  51949. ]
  51950. ))
  51951. characterMakers.push(() => makeCharacter(
  51952. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51953. {
  51954. side: {
  51955. height: math.unit(8.1, "feet"),
  51956. weight: math.unit(3500, "lb"),
  51957. name: "Side",
  51958. image: {
  51959. source: "./media/characters/sonya/side.svg",
  51960. extra: 1730/1317,
  51961. bottom: 86/1816
  51962. }
  51963. },
  51964. },
  51965. [
  51966. {
  51967. name: "Normal",
  51968. height: math.unit(8.1, "feet"),
  51969. default: true
  51970. },
  51971. ]
  51972. ))
  51973. characterMakers.push(() => makeCharacter(
  51974. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51975. {
  51976. front: {
  51977. height: math.unit(6, "feet"),
  51978. weight: math.unit(150, "lb"),
  51979. name: "Front",
  51980. image: {
  51981. source: "./media/characters/cadence-andrysiak/front.svg",
  51982. extra: 1164/1121,
  51983. bottom: 60/1224
  51984. }
  51985. },
  51986. back: {
  51987. height: math.unit(6, "feet"),
  51988. weight: math.unit(150, "lb"),
  51989. name: "Back",
  51990. image: {
  51991. source: "./media/characters/cadence-andrysiak/back.svg",
  51992. extra: 1200/1165,
  51993. bottom: 9/1209
  51994. }
  51995. },
  51996. dressed: {
  51997. height: math.unit(6, "feet"),
  51998. weight: math.unit(150, "lb"),
  51999. name: "Dressed",
  52000. image: {
  52001. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52002. extra: 1164/1121,
  52003. bottom: 60/1224
  52004. }
  52005. },
  52006. },
  52007. [
  52008. {
  52009. name: "Micro",
  52010. height: math.unit(1, "mm")
  52011. },
  52012. {
  52013. name: "Normal",
  52014. height: math.unit(6, "feet"),
  52015. default: true
  52016. },
  52017. ]
  52018. ))
  52019. characterMakers.push(() => makeCharacter(
  52020. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52021. {
  52022. front: {
  52023. height: math.unit(60, "inches"),
  52024. weight: math.unit(16, "lb"),
  52025. preyCapacity: math.unit(80, "liters"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/penny-lynx/front.svg",
  52029. extra: 1959/1769,
  52030. bottom: 49/2008
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Nokia",
  52037. height: math.unit(2, "inches")
  52038. },
  52039. {
  52040. name: "Desktop",
  52041. height: math.unit(24, "inches")
  52042. },
  52043. {
  52044. name: "TV",
  52045. height: math.unit(60, "inches")
  52046. },
  52047. {
  52048. name: "Jumbotron",
  52049. height: math.unit(12, "feet")
  52050. },
  52051. {
  52052. name: "Billboard",
  52053. height: math.unit(48, "feet"),
  52054. default: true
  52055. },
  52056. {
  52057. name: "IMAX",
  52058. height: math.unit(96, "feet")
  52059. },
  52060. {
  52061. name: "SINGULARITY",
  52062. height: math.unit(864938, "miles")
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52068. {
  52069. front: {
  52070. height: math.unit(5 + 4/12, "feet"),
  52071. weight: math.unit(230, "lb"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/sukebe/front.svg",
  52075. extra: 2130/2038,
  52076. bottom: 90/2220
  52077. }
  52078. },
  52079. back: {
  52080. height: math.unit(3.48, "feet"),
  52081. weight: math.unit(230, "lb"),
  52082. name: "Back",
  52083. image: {
  52084. source: "./media/characters/sukebe/back.svg",
  52085. extra: 1670/1604,
  52086. bottom: 0/1670
  52087. }
  52088. },
  52089. },
  52090. [
  52091. {
  52092. name: "Normal",
  52093. height: math.unit(5 + 4/12, "feet"),
  52094. default: true
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(6, "feet"),
  52103. name: "Front",
  52104. image: {
  52105. source: "./media/characters/nylla/front.svg",
  52106. extra: 1868/1699,
  52107. bottom: 97/1965
  52108. }
  52109. },
  52110. back: {
  52111. height: math.unit(6, "feet"),
  52112. name: "Back",
  52113. image: {
  52114. source: "./media/characters/nylla/back.svg",
  52115. extra: 1889/1712,
  52116. bottom: 93/1982
  52117. }
  52118. },
  52119. frontNsfw: {
  52120. height: math.unit(6, "feet"),
  52121. name: "Front (NSFW)",
  52122. image: {
  52123. source: "./media/characters/nylla/front-nsfw.svg",
  52124. extra: 1868/1699,
  52125. bottom: 97/1965
  52126. },
  52127. extraAttributes: {
  52128. "dickLength": {
  52129. name: "Dick Length",
  52130. power: 1,
  52131. type: "length",
  52132. base: math.unit(1.4, "feet")
  52133. },
  52134. "cumVolume": {
  52135. name: "Cum Volume",
  52136. power: 3,
  52137. type: "volume",
  52138. base: math.unit(100, "mL")
  52139. },
  52140. }
  52141. },
  52142. backNsfw: {
  52143. height: math.unit(6, "feet"),
  52144. name: "Back (NSFW)",
  52145. image: {
  52146. source: "./media/characters/nylla/back-nsfw.svg",
  52147. extra: 1889/1712,
  52148. bottom: 93/1982
  52149. }
  52150. },
  52151. maw: {
  52152. height: math.unit(2.10, "feet"),
  52153. name: "Maw",
  52154. image: {
  52155. source: "./media/characters/nylla/maw.svg"
  52156. }
  52157. },
  52158. paws: {
  52159. height: math.unit(2.06, "feet"),
  52160. name: "Paws",
  52161. image: {
  52162. source: "./media/characters/nylla/paws.svg"
  52163. }
  52164. },
  52165. muzzle: {
  52166. height: math.unit(0.61, "feet"),
  52167. name: "Muzzle",
  52168. image: {
  52169. source: "./media/characters/nylla/muzzle.svg"
  52170. }
  52171. },
  52172. sheath: {
  52173. height: math.unit(1.305, "feet"),
  52174. name: "Sheath",
  52175. image: {
  52176. source: "./media/characters/nylla/sheath.svg"
  52177. }
  52178. },
  52179. },
  52180. [
  52181. {
  52182. name: "Micro",
  52183. height: math.unit(7.5, "inches")
  52184. },
  52185. {
  52186. name: "Normal",
  52187. height: math.unit(7, "feet"),
  52188. default: true
  52189. },
  52190. {
  52191. name: "Macro",
  52192. height: math.unit(60, "feet")
  52193. },
  52194. {
  52195. name: "Mega",
  52196. height: math.unit(200, "feet")
  52197. },
  52198. ]
  52199. ))
  52200. characterMakers.push(() => makeCharacter(
  52201. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52202. {
  52203. front: {
  52204. height: math.unit(10, "feet"),
  52205. weight: math.unit(2300, "lb"),
  52206. name: "Front",
  52207. image: {
  52208. source: "./media/characters/hunt3r/front.svg",
  52209. extra: 1909/1742,
  52210. bottom: 46/1955
  52211. }
  52212. },
  52213. },
  52214. [
  52215. {
  52216. name: "Normal",
  52217. height: math.unit(10, "feet"),
  52218. default: true
  52219. },
  52220. ]
  52221. ))
  52222. characterMakers.push(() => makeCharacter(
  52223. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52224. {
  52225. dressed: {
  52226. height: math.unit(11, "feet"),
  52227. weight: math.unit(18500, "lb"),
  52228. preyCapacity: math.unit(9, "people"),
  52229. name: "Dressed",
  52230. image: {
  52231. source: "./media/characters/cylphis/dressed.svg",
  52232. extra: 1028/1003,
  52233. bottom: 75/1103
  52234. },
  52235. },
  52236. undressed: {
  52237. height: math.unit(11, "feet"),
  52238. weight: math.unit(18500, "lb"),
  52239. preyCapacity: math.unit(9, "people"),
  52240. name: "Undressed",
  52241. image: {
  52242. source: "./media/characters/cylphis/undressed.svg",
  52243. extra: 1028/1003,
  52244. bottom: 75/1103
  52245. }
  52246. },
  52247. full: {
  52248. height: math.unit(11, "feet"),
  52249. weight: math.unit(18500 + 150*9, "lb"),
  52250. preyCapacity: math.unit(9, "people"),
  52251. name: "Full",
  52252. image: {
  52253. source: "./media/characters/cylphis/full.svg",
  52254. extra: 1028/1003,
  52255. bottom: 75/1103
  52256. }
  52257. },
  52258. },
  52259. [
  52260. {
  52261. name: "Small",
  52262. height: math.unit(8, "feet")
  52263. },
  52264. {
  52265. name: "Normal",
  52266. height: math.unit(11, "feet"),
  52267. default: true
  52268. },
  52269. ]
  52270. ))
  52271. characterMakers.push(() => makeCharacter(
  52272. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52273. {
  52274. front: {
  52275. height: math.unit(2 + 7/12, "feet"),
  52276. name: "Front",
  52277. image: {
  52278. source: "./media/characters/orishan/front.svg",
  52279. extra: 1058/1023,
  52280. bottom: 23/1081
  52281. }
  52282. },
  52283. back: {
  52284. height: math.unit(2 + 7/12, "feet"),
  52285. name: "Back",
  52286. image: {
  52287. source: "./media/characters/orishan/back.svg",
  52288. extra: 1058/1023,
  52289. bottom: 23/1081
  52290. }
  52291. },
  52292. },
  52293. [
  52294. {
  52295. name: "Micro",
  52296. height: math.unit(2, "cm")
  52297. },
  52298. {
  52299. name: "Normal",
  52300. height: math.unit(2 + 7/12, "feet"),
  52301. default: true
  52302. },
  52303. ]
  52304. ))
  52305. characterMakers.push(() => makeCharacter(
  52306. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52307. {
  52308. front: {
  52309. height: math.unit(3, "meters"),
  52310. weight: math.unit(508, "kg"),
  52311. name: "Front",
  52312. image: {
  52313. source: "./media/characters/seranis/front.svg",
  52314. extra: 1478/1454,
  52315. bottom: 41/1519
  52316. }
  52317. },
  52318. },
  52319. [
  52320. {
  52321. name: "Normal",
  52322. height: math.unit(3, "meters"),
  52323. default: true
  52324. },
  52325. {
  52326. name: "Macro",
  52327. height: math.unit(108, "meters")
  52328. },
  52329. {
  52330. name: "Megamacro",
  52331. height: math.unit(1250, "meters")
  52332. },
  52333. ]
  52334. ))
  52335. characterMakers.push(() => makeCharacter(
  52336. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52337. {
  52338. undressed: {
  52339. height: math.unit(5 + 3/12, "feet"),
  52340. name: "Undressed",
  52341. image: {
  52342. source: "./media/characters/ankou/undressed.svg",
  52343. extra: 1301/1213,
  52344. bottom: 87/1388
  52345. }
  52346. },
  52347. dressed: {
  52348. height: math.unit(5 + 3/12, "feet"),
  52349. name: "Dressed",
  52350. image: {
  52351. source: "./media/characters/ankou/dressed.svg",
  52352. extra: 1301/1213,
  52353. bottom: 87/1388
  52354. }
  52355. },
  52356. head: {
  52357. height: math.unit(1.61, "feet"),
  52358. name: "Head",
  52359. image: {
  52360. source: "./media/characters/ankou/head.svg"
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(5 + 3/12, "feet"),
  52368. default: true
  52369. },
  52370. ]
  52371. ))
  52372. characterMakers.push(() => makeCharacter(
  52373. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52374. {
  52375. side: {
  52376. height: math.unit(6 + 3/12, "feet"),
  52377. weight: math.unit(200, "kg"),
  52378. name: "Side",
  52379. image: {
  52380. source: "./media/characters/juniper-skunktaur/side.svg",
  52381. extra: 1574/1229,
  52382. bottom: 38/1612
  52383. }
  52384. },
  52385. front: {
  52386. height: math.unit(6 + 3/12, "feet"),
  52387. weight: math.unit(200, "kg"),
  52388. name: "Front",
  52389. image: {
  52390. source: "./media/characters/juniper-skunktaur/front.svg",
  52391. extra: 1337/1278,
  52392. bottom: 22/1359
  52393. }
  52394. },
  52395. back: {
  52396. height: math.unit(6 + 3/12, "feet"),
  52397. weight: math.unit(200, "kg"),
  52398. name: "Back",
  52399. image: {
  52400. source: "./media/characters/juniper-skunktaur/back.svg",
  52401. extra: 1618/1273,
  52402. bottom: 13/1631
  52403. }
  52404. },
  52405. top: {
  52406. height: math.unit(2.62, "feet"),
  52407. weight: math.unit(200, "kg"),
  52408. name: "Top",
  52409. image: {
  52410. source: "./media/characters/juniper-skunktaur/top.svg"
  52411. }
  52412. },
  52413. },
  52414. [
  52415. {
  52416. name: "Normal",
  52417. height: math.unit(6 + 3/12, "feet"),
  52418. default: true
  52419. },
  52420. ]
  52421. ))
  52422. characterMakers.push(() => makeCharacter(
  52423. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52424. {
  52425. front: {
  52426. height: math.unit(20.5, "feet"),
  52427. name: "Front",
  52428. image: {
  52429. source: "./media/characters/rei/front.svg",
  52430. extra: 1349/1195,
  52431. bottom: 31/1380
  52432. }
  52433. },
  52434. back: {
  52435. height: math.unit(20.5, "feet"),
  52436. name: "Back",
  52437. image: {
  52438. source: "./media/characters/rei/back.svg",
  52439. extra: 1358/1204,
  52440. bottom: 22/1380
  52441. }
  52442. },
  52443. pawsDigi: {
  52444. height: math.unit(3.45, "feet"),
  52445. name: "Paws (Digi)",
  52446. image: {
  52447. source: "./media/characters/rei/paws-digi.svg"
  52448. }
  52449. },
  52450. pawsPlanti: {
  52451. height: math.unit(3.45, "feet"),
  52452. name: "Paws (Planti)",
  52453. image: {
  52454. source: "./media/characters/rei/paws-planti.svg"
  52455. }
  52456. },
  52457. },
  52458. [
  52459. {
  52460. name: "Normal",
  52461. height: math.unit(20.5, "feet"),
  52462. default: true
  52463. },
  52464. ]
  52465. ))
  52466. characterMakers.push(() => makeCharacter(
  52467. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52468. {
  52469. front: {
  52470. height: math.unit(5 + 11/12, "feet"),
  52471. name: "Front",
  52472. image: {
  52473. source: "./media/characters/carina/front.svg",
  52474. extra: 1720/1449,
  52475. bottom: 14/1734
  52476. }
  52477. },
  52478. back: {
  52479. height: math.unit(5 + 11/12, "feet"),
  52480. name: "Back",
  52481. image: {
  52482. source: "./media/characters/carina/back.svg",
  52483. extra: 1493/1445,
  52484. bottom: 17/1510
  52485. }
  52486. },
  52487. paw: {
  52488. height: math.unit(0.92, "feet"),
  52489. name: "Paw",
  52490. image: {
  52491. source: "./media/characters/carina/paw.svg"
  52492. }
  52493. },
  52494. },
  52495. [
  52496. {
  52497. name: "Normal",
  52498. height: math.unit(5 + 11/12, "feet"),
  52499. default: true
  52500. },
  52501. ]
  52502. ))
  52503. characterMakers.push(() => makeCharacter(
  52504. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52505. {
  52506. front: {
  52507. height: math.unit(4.88, "meters"),
  52508. name: "Front",
  52509. image: {
  52510. source: "./media/characters/maya/front.svg",
  52511. extra: 1222/1145,
  52512. bottom: 57/1279
  52513. }
  52514. },
  52515. },
  52516. [
  52517. {
  52518. name: "Normal",
  52519. height: math.unit(4.88, "meters"),
  52520. default: true
  52521. },
  52522. {
  52523. name: "Macro",
  52524. height: math.unit(38.1, "meters")
  52525. },
  52526. {
  52527. name: "Macro+",
  52528. height: math.unit(152.4, "meters")
  52529. },
  52530. {
  52531. name: "Macro++",
  52532. height: math.unit(16.09, "km")
  52533. },
  52534. {
  52535. name: "Mega-macro",
  52536. height: math.unit(700, "megameters")
  52537. },
  52538. ]
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52542. {
  52543. front: {
  52544. height: math.unit(6 + 2/12, "feet"),
  52545. weight: math.unit(500, "lb"),
  52546. preyCapacity: math.unit(4, "people"),
  52547. name: "Front",
  52548. image: {
  52549. source: "./media/characters/yepir/front.svg"
  52550. }
  52551. },
  52552. side: {
  52553. height: math.unit(6 + 2/12, "feet"),
  52554. weight: math.unit(500, "lb"),
  52555. preyCapacity: math.unit(4, "people"),
  52556. name: "Side",
  52557. image: {
  52558. source: "./media/characters/yepir/side.svg"
  52559. }
  52560. },
  52561. paw: {
  52562. height: math.unit(1.05, "feet"),
  52563. name: "Paw",
  52564. image: {
  52565. source: "./media/characters/yepir/paw.svg"
  52566. }
  52567. },
  52568. },
  52569. [
  52570. {
  52571. name: "Normal",
  52572. height: math.unit(6 + 2/12, "feet"),
  52573. default: true
  52574. },
  52575. ]
  52576. ))
  52577. characterMakers.push(() => makeCharacter(
  52578. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52579. {
  52580. front: {
  52581. height: math.unit(5 + 4/12, "feet"),
  52582. name: "Front",
  52583. image: {
  52584. source: "./media/characters/russec/front.svg",
  52585. extra: 1926/1626,
  52586. bottom: 72/1998
  52587. }
  52588. },
  52589. back: {
  52590. height: math.unit(5 + 4/12, "feet"),
  52591. name: "Back",
  52592. image: {
  52593. source: "./media/characters/russec/back.svg",
  52594. extra: 1910/1591,
  52595. bottom: 48/1958
  52596. }
  52597. },
  52598. },
  52599. [
  52600. {
  52601. name: "Small",
  52602. height: math.unit(5 + 4/12, "feet")
  52603. },
  52604. {
  52605. name: "Normal",
  52606. height: math.unit(72, "feet"),
  52607. default: true
  52608. },
  52609. ]
  52610. ))
  52611. characterMakers.push(() => makeCharacter(
  52612. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52613. {
  52614. side: {
  52615. height: math.unit(12, "feet"),
  52616. name: "Side",
  52617. image: {
  52618. source: "./media/characters/cianus/side.svg",
  52619. extra: 808/526,
  52620. bottom: 61/869
  52621. }
  52622. },
  52623. },
  52624. [
  52625. {
  52626. name: "Normal",
  52627. height: math.unit(12, "feet"),
  52628. default: true
  52629. },
  52630. ]
  52631. ))
  52632. characterMakers.push(() => makeCharacter(
  52633. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52634. {
  52635. front: {
  52636. height: math.unit(9 + 6/12, "feet"),
  52637. weight: math.unit(300, "lb"),
  52638. name: "Front",
  52639. image: {
  52640. source: "./media/characters/ahab/front.svg",
  52641. extra: 1897/1868,
  52642. bottom: 121/2018
  52643. }
  52644. },
  52645. frontNsfw: {
  52646. height: math.unit(9 + 6/12, "feet"),
  52647. weight: math.unit(300, "lb"),
  52648. name: "Front-nsfw",
  52649. image: {
  52650. source: "./media/characters/ahab/front-nsfw.svg",
  52651. extra: 1897/1868,
  52652. bottom: 121/2018
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(9 + 6/12, "feet")
  52660. },
  52661. {
  52662. name: "Macro",
  52663. height: math.unit(657, "feet"),
  52664. default: true
  52665. },
  52666. ]
  52667. ))
  52668. characterMakers.push(() => makeCharacter(
  52669. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52670. {
  52671. front: {
  52672. height: math.unit(2.69, "meters"),
  52673. weight: math.unit(132, "kg"),
  52674. name: "Front",
  52675. image: {
  52676. source: "./media/characters/aarkus/front.svg",
  52677. extra: 1400/1231,
  52678. bottom: 34/1434
  52679. }
  52680. },
  52681. back: {
  52682. height: math.unit(2.69, "meters"),
  52683. weight: math.unit(132, "kg"),
  52684. name: "Back",
  52685. image: {
  52686. source: "./media/characters/aarkus/back.svg",
  52687. extra: 1381/1218,
  52688. bottom: 30/1411
  52689. }
  52690. },
  52691. frontNsfw: {
  52692. height: math.unit(2.69, "meters"),
  52693. weight: math.unit(132, "kg"),
  52694. name: "Front (NSFW)",
  52695. image: {
  52696. source: "./media/characters/aarkus/front-nsfw.svg",
  52697. extra: 1400/1231,
  52698. bottom: 34/1434
  52699. }
  52700. },
  52701. foot: {
  52702. height: math.unit(1.45, "feet"),
  52703. name: "Foot",
  52704. image: {
  52705. source: "./media/characters/aarkus/foot.svg"
  52706. }
  52707. },
  52708. head: {
  52709. height: math.unit(2.85, "feet"),
  52710. name: "Head",
  52711. image: {
  52712. source: "./media/characters/aarkus/head.svg"
  52713. }
  52714. },
  52715. headAlt: {
  52716. height: math.unit(3.07, "feet"),
  52717. name: "Head (Alt)",
  52718. image: {
  52719. source: "./media/characters/aarkus/head-alt.svg"
  52720. }
  52721. },
  52722. mouth: {
  52723. height: math.unit(1.25, "feet"),
  52724. name: "Mouth",
  52725. image: {
  52726. source: "./media/characters/aarkus/mouth.svg"
  52727. }
  52728. },
  52729. dick: {
  52730. height: math.unit(1.77, "feet"),
  52731. name: "Dick",
  52732. image: {
  52733. source: "./media/characters/aarkus/dick.svg"
  52734. }
  52735. },
  52736. },
  52737. [
  52738. {
  52739. name: "Normal",
  52740. height: math.unit(2.69, "meters"),
  52741. default: true
  52742. },
  52743. {
  52744. name: "Macro",
  52745. height: math.unit(269, "meters")
  52746. },
  52747. {
  52748. name: "Macro+",
  52749. height: math.unit(672.5, "meters")
  52750. },
  52751. {
  52752. name: "Megamacro",
  52753. height: math.unit(2.017, "km")
  52754. },
  52755. ]
  52756. ))
  52757. characterMakers.push(() => makeCharacter(
  52758. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52759. {
  52760. front: {
  52761. height: math.unit(23.47, "cm"),
  52762. weight: math.unit(600, "grams"),
  52763. name: "Front",
  52764. image: {
  52765. source: "./media/characters/diode/front.svg",
  52766. extra: 1778/1396,
  52767. bottom: 95/1873
  52768. }
  52769. },
  52770. side: {
  52771. height: math.unit(23.47, "cm"),
  52772. weight: math.unit(600, "grams"),
  52773. name: "Side",
  52774. image: {
  52775. source: "./media/characters/diode/side.svg",
  52776. extra: 1831/1404,
  52777. bottom: 86/1917
  52778. }
  52779. },
  52780. wings: {
  52781. height: math.unit(0.683, "feet"),
  52782. name: "Wings",
  52783. image: {
  52784. source: "./media/characters/diode/wings.svg"
  52785. }
  52786. },
  52787. },
  52788. [
  52789. {
  52790. name: "Normal",
  52791. height: math.unit(23.47, "cm"),
  52792. default: true
  52793. },
  52794. ]
  52795. ))
  52796. characterMakers.push(() => makeCharacter(
  52797. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52798. {
  52799. front: {
  52800. height: math.unit(6 + 3/12, "feet"),
  52801. weight: math.unit(250, "lb"),
  52802. name: "Front",
  52803. image: {
  52804. source: "./media/characters/reika/front.svg",
  52805. extra: 1120/1078,
  52806. bottom: 86/1206
  52807. }
  52808. },
  52809. },
  52810. [
  52811. {
  52812. name: "Normal",
  52813. height: math.unit(6 + 3/12, "feet"),
  52814. default: true
  52815. },
  52816. ]
  52817. ))
  52818. characterMakers.push(() => makeCharacter(
  52819. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52820. {
  52821. front: {
  52822. height: math.unit(16 + 8/12, "feet"),
  52823. weight: math.unit(9000, "lb"),
  52824. name: "Front",
  52825. image: {
  52826. source: "./media/characters/lokuto-takama/front.svg",
  52827. extra: 1774/1632,
  52828. bottom: 147/1921
  52829. },
  52830. extraAttributes: {
  52831. "bustWidth": {
  52832. name: "Bust Width",
  52833. power: 1,
  52834. type: "length",
  52835. base: math.unit(2.4, "meters")
  52836. },
  52837. "breastWeight": {
  52838. name: "Breast Weight",
  52839. power: 3,
  52840. type: "mass",
  52841. base: math.unit(1000, "kg")
  52842. },
  52843. }
  52844. },
  52845. },
  52846. [
  52847. {
  52848. name: "Normal",
  52849. height: math.unit(16 + 8/12, "feet"),
  52850. default: true
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52856. {
  52857. front: {
  52858. height: math.unit(10, "cm"),
  52859. weight: math.unit(850, "grams"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/owak-bone/front.svg",
  52863. extra: 1965/1801,
  52864. bottom: 31/1996
  52865. }
  52866. },
  52867. },
  52868. [
  52869. {
  52870. name: "Normal",
  52871. height: math.unit(10, "cm"),
  52872. default: true
  52873. },
  52874. ]
  52875. ))
  52876. characterMakers.push(() => makeCharacter(
  52877. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52878. {
  52879. front: {
  52880. height: math.unit(2 + 6/12, "feet"),
  52881. weight: math.unit(9, "lb"),
  52882. name: "Front",
  52883. image: {
  52884. source: "./media/characters/muffin/front.svg",
  52885. extra: 1220/1195,
  52886. bottom: 84/1304
  52887. }
  52888. },
  52889. },
  52890. [
  52891. {
  52892. name: "Normal",
  52893. height: math.unit(2 + 6/12, "feet"),
  52894. default: true
  52895. },
  52896. ]
  52897. ))
  52898. characterMakers.push(() => makeCharacter(
  52899. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52900. {
  52901. front: {
  52902. height: math.unit(7, "feet"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/chimera/front.svg",
  52906. extra: 1752/1614,
  52907. bottom: 68/1820
  52908. }
  52909. },
  52910. },
  52911. [
  52912. {
  52913. name: "Normal",
  52914. height: math.unit(7, "feet")
  52915. },
  52916. {
  52917. name: "Gigamacro",
  52918. height: math.unit(2.9, "gigameters"),
  52919. default: true
  52920. },
  52921. {
  52922. name: "Universal",
  52923. height: math.unit(1.56e26, "yottameters")
  52924. },
  52925. ]
  52926. ))
  52927. characterMakers.push(() => makeCharacter(
  52928. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52929. {
  52930. front: {
  52931. height: math.unit(3, "feet"),
  52932. weight: math.unit(20, "lb"),
  52933. name: "Front",
  52934. image: {
  52935. source: "./media/characters/kit-fennec-fox/front.svg",
  52936. extra: 1027/932,
  52937. bottom: 16/1043
  52938. }
  52939. },
  52940. back: {
  52941. height: math.unit(3, "feet"),
  52942. weight: math.unit(20, "lb"),
  52943. name: "Back",
  52944. image: {
  52945. source: "./media/characters/kit-fennec-fox/back.svg",
  52946. extra: 1027/932,
  52947. bottom: 16/1043
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(3, "feet"),
  52955. default: true
  52956. },
  52957. ]
  52958. ))
  52959. characterMakers.push(() => makeCharacter(
  52960. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52961. {
  52962. front: {
  52963. height: math.unit(167, "cm"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/blue-otter/front.svg",
  52967. extra: 1951/1920,
  52968. bottom: 31/1982
  52969. }
  52970. },
  52971. },
  52972. [
  52973. {
  52974. name: "Otter-Sized",
  52975. height: math.unit(100, "cm")
  52976. },
  52977. {
  52978. name: "Normal",
  52979. height: math.unit(167, "cm"),
  52980. default: true
  52981. },
  52982. ]
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52986. {
  52987. front: {
  52988. height: math.unit(4 + 4/12, "feet"),
  52989. name: "Front",
  52990. image: {
  52991. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52992. extra: 1072/1067,
  52993. bottom: 117/1189
  52994. }
  52995. },
  52996. back: {
  52997. height: math.unit(4 + 4/12, "feet"),
  52998. name: "Back",
  52999. image: {
  53000. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53001. extra: 1135/1129,
  53002. bottom: 57/1192
  53003. }
  53004. },
  53005. head: {
  53006. height: math.unit(1.77, "feet"),
  53007. name: "Head",
  53008. image: {
  53009. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(4 + 4/12, "feet"),
  53017. default: true
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(2, "inches"),
  53026. name: "Front",
  53027. image: {
  53028. source: "./media/characters/carley-hartford/front.svg",
  53029. extra: 1035/988,
  53030. bottom: 23/1058
  53031. }
  53032. },
  53033. back: {
  53034. height: math.unit(2, "inches"),
  53035. name: "Back",
  53036. image: {
  53037. source: "./media/characters/carley-hartford/back.svg",
  53038. extra: 1035/988,
  53039. bottom: 23/1058
  53040. }
  53041. },
  53042. dressed: {
  53043. height: math.unit(2, "inches"),
  53044. name: "Dressed",
  53045. image: {
  53046. source: "./media/characters/carley-hartford/dressed.svg",
  53047. extra: 651/620,
  53048. bottom: 0/651
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Micro",
  53055. height: math.unit(2, "inches"),
  53056. default: true
  53057. },
  53058. {
  53059. name: "Macro",
  53060. height: math.unit(6 + 3/12, "feet")
  53061. },
  53062. ]
  53063. ))
  53064. characterMakers.push(() => makeCharacter(
  53065. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53066. {
  53067. front: {
  53068. height: math.unit(2 + 3/12, "feet"),
  53069. weight: math.unit(15 + 7/16, "lb"),
  53070. name: "Front",
  53071. image: {
  53072. source: "./media/characters/duke/front.svg",
  53073. extra: 910/815,
  53074. bottom: 30/940
  53075. }
  53076. },
  53077. },
  53078. [
  53079. {
  53080. name: "Normal",
  53081. height: math.unit(2 + 3/12, "feet"),
  53082. default: true
  53083. },
  53084. ]
  53085. ))
  53086. characterMakers.push(() => makeCharacter(
  53087. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53088. {
  53089. front: {
  53090. height: math.unit(5 + 4/12, "feet"),
  53091. weight: math.unit(156, "lb"),
  53092. name: "Front",
  53093. image: {
  53094. source: "./media/characters/dein/front.svg",
  53095. extra: 855/815,
  53096. bottom: 48/903
  53097. }
  53098. },
  53099. side: {
  53100. height: math.unit(5 + 4/12, "feet"),
  53101. weight: math.unit(156, "lb"),
  53102. name: "side",
  53103. image: {
  53104. source: "./media/characters/dein/side.svg",
  53105. extra: 846/803,
  53106. bottom: 25/871
  53107. }
  53108. },
  53109. maw: {
  53110. height: math.unit(1.45, "feet"),
  53111. name: "Maw",
  53112. image: {
  53113. source: "./media/characters/dein/maw.svg"
  53114. }
  53115. },
  53116. },
  53117. [
  53118. {
  53119. name: "Ferret Sized",
  53120. height: math.unit(2 + 5/12, "feet")
  53121. },
  53122. {
  53123. name: "Normal",
  53124. height: math.unit(5 + 4/12, "feet"),
  53125. default: true
  53126. },
  53127. ]
  53128. ))
  53129. characterMakers.push(() => makeCharacter(
  53130. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53131. {
  53132. front: {
  53133. height: math.unit(84 + 8/12, "feet"),
  53134. weight: math.unit(942180, "lb"),
  53135. name: "Front",
  53136. image: {
  53137. source: "./media/characters/daurine-arima/front.svg",
  53138. extra: 1989/1782,
  53139. bottom: 37/2026
  53140. }
  53141. },
  53142. side: {
  53143. height: math.unit(84 + 8/12, "feet"),
  53144. weight: math.unit(942180, "lb"),
  53145. name: "Side",
  53146. image: {
  53147. source: "./media/characters/daurine-arima/side.svg",
  53148. extra: 1997/1790,
  53149. bottom: 21/2018
  53150. }
  53151. },
  53152. back: {
  53153. height: math.unit(84 + 8/12, "feet"),
  53154. weight: math.unit(942180, "lb"),
  53155. name: "Back",
  53156. image: {
  53157. source: "./media/characters/daurine-arima/back.svg",
  53158. extra: 1992/1800,
  53159. bottom: 12/2004
  53160. }
  53161. },
  53162. head: {
  53163. height: math.unit(15.5, "feet"),
  53164. name: "Head",
  53165. image: {
  53166. source: "./media/characters/daurine-arima/head.svg"
  53167. }
  53168. },
  53169. headAlt: {
  53170. height: math.unit(19.19, "feet"),
  53171. name: "Head (Alt)",
  53172. image: {
  53173. source: "./media/characters/daurine-arima/head-alt.svg"
  53174. }
  53175. },
  53176. },
  53177. [
  53178. {
  53179. name: "Minimum height",
  53180. height: math.unit(8 + 10/12, "feet")
  53181. },
  53182. {
  53183. name: "Comfort height",
  53184. height: math.unit(19 + 6 /12, "feet")
  53185. },
  53186. {
  53187. name: "\"Normal\" height",
  53188. height: math.unit(28 + 10/12, "feet")
  53189. },
  53190. {
  53191. name: "Base height",
  53192. height: math.unit(84 + 8/12, "feet"),
  53193. default: true
  53194. },
  53195. {
  53196. name: "Mini-macro",
  53197. height: math.unit(2360, "feet")
  53198. },
  53199. {
  53200. name: "Macro",
  53201. height: math.unit(10, "miles")
  53202. },
  53203. {
  53204. name: "Goddess",
  53205. height: math.unit(9.99e40, "yottameters")
  53206. },
  53207. ]
  53208. ))
  53209. characterMakers.push(() => makeCharacter(
  53210. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53211. {
  53212. front: {
  53213. height: math.unit(2.3, "meters"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/cilenomon/front.svg",
  53217. extra: 1963/1778,
  53218. bottom: 54/2017
  53219. }
  53220. },
  53221. },
  53222. [
  53223. {
  53224. name: "Normal",
  53225. height: math.unit(2.3, "meters"),
  53226. default: true
  53227. },
  53228. {
  53229. name: "Big",
  53230. height: math.unit(5, "meters")
  53231. },
  53232. {
  53233. name: "Macro",
  53234. height: math.unit(30, "meters")
  53235. },
  53236. {
  53237. name: "True",
  53238. height: math.unit(1, "universe")
  53239. },
  53240. ]
  53241. ))
  53242. characterMakers.push(() => makeCharacter(
  53243. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53244. {
  53245. front: {
  53246. height: math.unit(5, "feet"),
  53247. name: "Front",
  53248. image: {
  53249. source: "./media/characters/sen-mink/front.svg",
  53250. extra: 1727/1675,
  53251. bottom: 35/1762
  53252. }
  53253. },
  53254. },
  53255. [
  53256. {
  53257. name: "Normal",
  53258. height: math.unit(5, "feet"),
  53259. default: true
  53260. },
  53261. ]
  53262. ))
  53263. characterMakers.push(() => makeCharacter(
  53264. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53265. {
  53266. front: {
  53267. height: math.unit(5.42999, "feet"),
  53268. weight: math.unit(100, "lb"),
  53269. name: "Front",
  53270. image: {
  53271. source: "./media/characters/ophois/front.svg",
  53272. extra: 1429/1286,
  53273. bottom: 60/1489
  53274. }
  53275. },
  53276. },
  53277. [
  53278. {
  53279. name: "Normal",
  53280. height: math.unit(5.42999, "feet"),
  53281. default: true
  53282. },
  53283. ]
  53284. ))
  53285. characterMakers.push(() => makeCharacter(
  53286. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53287. {
  53288. front: {
  53289. height: math.unit(2, "meters"),
  53290. name: "Front",
  53291. image: {
  53292. source: "./media/characters/riley/front.svg",
  53293. extra: 1779/1754,
  53294. bottom: 139/1918
  53295. }
  53296. },
  53297. },
  53298. [
  53299. {
  53300. name: "Normal",
  53301. height: math.unit(2, "meters"),
  53302. default: true
  53303. },
  53304. ]
  53305. ))
  53306. characterMakers.push(() => makeCharacter(
  53307. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53308. {
  53309. front: {
  53310. height: math.unit(6 + 2/12, "feet"),
  53311. weight: math.unit(195, "lb"),
  53312. preyCapacity: math.unit(6, "people"),
  53313. name: "Front",
  53314. image: {
  53315. source: "./media/characters/shuken-flash/front.svg",
  53316. extra: 1905/1739,
  53317. bottom: 65/1970
  53318. }
  53319. },
  53320. back: {
  53321. height: math.unit(6 + 2/12, "feet"),
  53322. weight: math.unit(195, "lb"),
  53323. preyCapacity: math.unit(6, "people"),
  53324. name: "Back",
  53325. image: {
  53326. source: "./media/characters/shuken-flash/back.svg",
  53327. extra: 1912/1751,
  53328. bottom: 13/1925
  53329. }
  53330. },
  53331. },
  53332. [
  53333. {
  53334. name: "Normal",
  53335. height: math.unit(6 + 2/12, "feet"),
  53336. default: true
  53337. },
  53338. ]
  53339. ))
  53340. characterMakers.push(() => makeCharacter(
  53341. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53342. {
  53343. front: {
  53344. height: math.unit(5 + 9/12, "feet"),
  53345. weight: math.unit(150, "lb"),
  53346. name: "Front",
  53347. image: {
  53348. source: "./media/characters/plat/front.svg",
  53349. extra: 1816/1703,
  53350. bottom: 43/1859
  53351. }
  53352. },
  53353. side: {
  53354. height: math.unit(5 + 9/12, "feet"),
  53355. weight: math.unit(300, "lb"),
  53356. name: "Side",
  53357. image: {
  53358. source: "./media/characters/plat/side.svg",
  53359. extra: 1824/1699,
  53360. bottom: 18/1842
  53361. }
  53362. },
  53363. },
  53364. [
  53365. {
  53366. name: "Normal",
  53367. height: math.unit(5 + 9/12, "feet"),
  53368. default: true
  53369. },
  53370. ]
  53371. ))
  53372. characterMakers.push(() => makeCharacter(
  53373. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53374. {
  53375. front: {
  53376. height: math.unit(9, "feet"),
  53377. weight: math.unit(1800, "lb"),
  53378. name: "Front",
  53379. image: {
  53380. source: "./media/characters/elaine/front.svg",
  53381. extra: 1833/1354,
  53382. bottom: 25/1858
  53383. }
  53384. },
  53385. back: {
  53386. height: math.unit(8.8, "feet"),
  53387. weight: math.unit(1800, "lb"),
  53388. name: "Back",
  53389. image: {
  53390. source: "./media/characters/elaine/back.svg",
  53391. extra: 1641/1233,
  53392. bottom: 53/1694
  53393. }
  53394. },
  53395. },
  53396. [
  53397. {
  53398. name: "Normal",
  53399. height: math.unit(9, "feet"),
  53400. default: true
  53401. },
  53402. ]
  53403. ))
  53404. characterMakers.push(() => makeCharacter(
  53405. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53406. {
  53407. front: {
  53408. height: math.unit(17 + 9/12, "feet"),
  53409. weight: math.unit(8000, "lb"),
  53410. name: "Front",
  53411. image: {
  53412. source: "./media/characters/vera-raven/front.svg",
  53413. extra: 1457/1412,
  53414. bottom: 121/1578
  53415. }
  53416. },
  53417. side: {
  53418. height: math.unit(17 + 9/12, "feet"),
  53419. weight: math.unit(8000, "lb"),
  53420. name: "Side",
  53421. image: {
  53422. source: "./media/characters/vera-raven/side.svg",
  53423. extra: 1510/1464,
  53424. bottom: 54/1564
  53425. }
  53426. },
  53427. },
  53428. [
  53429. {
  53430. name: "Normal",
  53431. height: math.unit(17 + 9/12, "feet"),
  53432. default: true
  53433. },
  53434. ]
  53435. ))
  53436. characterMakers.push(() => makeCharacter(
  53437. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53438. {
  53439. dressed: {
  53440. height: math.unit(6 + 9/12, "feet"),
  53441. name: "Dressed",
  53442. image: {
  53443. source: "./media/characters/nakisha/dressed.svg",
  53444. extra: 1909/1757,
  53445. bottom: 48/1957
  53446. }
  53447. },
  53448. nude: {
  53449. height: math.unit(6 + 9/12, "feet"),
  53450. name: "Nude",
  53451. image: {
  53452. source: "./media/characters/nakisha/nude.svg",
  53453. extra: 1917/1765,
  53454. bottom: 34/1951
  53455. }
  53456. },
  53457. },
  53458. [
  53459. {
  53460. name: "Normal",
  53461. height: math.unit(6 + 9/12, "feet"),
  53462. default: true
  53463. },
  53464. ]
  53465. ))
  53466. characterMakers.push(() => makeCharacter(
  53467. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53468. {
  53469. front: {
  53470. height: math.unit(87, "meters"),
  53471. name: "Front",
  53472. image: {
  53473. source: "./media/characters/serafin/front.svg",
  53474. extra: 1919/1776,
  53475. bottom: 65/1984
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(87, "meters"),
  53483. default: true
  53484. },
  53485. ]
  53486. ))
  53487. characterMakers.push(() => makeCharacter(
  53488. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53489. {
  53490. front: {
  53491. height: math.unit(6, "feet"),
  53492. weight: math.unit(200, "lb"),
  53493. name: "Front",
  53494. image: {
  53495. source: "./media/characters/poptart/front.svg",
  53496. extra: 615/583,
  53497. bottom: 23/638
  53498. }
  53499. },
  53500. back: {
  53501. height: math.unit(6, "feet"),
  53502. weight: math.unit(200, "lb"),
  53503. name: "Back",
  53504. image: {
  53505. source: "./media/characters/poptart/back.svg",
  53506. extra: 617/584,
  53507. bottom: 22/639
  53508. }
  53509. },
  53510. frontNsfw: {
  53511. height: math.unit(6, "feet"),
  53512. weight: math.unit(200, "lb"),
  53513. name: "Front (NSFW)",
  53514. image: {
  53515. source: "./media/characters/poptart/front-nsfw.svg",
  53516. extra: 615/583,
  53517. bottom: 23/638
  53518. }
  53519. },
  53520. backNsfw: {
  53521. height: math.unit(6, "feet"),
  53522. weight: math.unit(200, "lb"),
  53523. name: "Back (NSFW)",
  53524. image: {
  53525. source: "./media/characters/poptart/back-nsfw.svg",
  53526. extra: 617/584,
  53527. bottom: 22/639
  53528. }
  53529. },
  53530. hand: {
  53531. height: math.unit(1.14, "feet"),
  53532. name: "Hand",
  53533. image: {
  53534. source: "./media/characters/poptart/hand.svg"
  53535. }
  53536. },
  53537. foot: {
  53538. height: math.unit(1.5, "feet"),
  53539. name: "Foot",
  53540. image: {
  53541. source: "./media/characters/poptart/foot.svg"
  53542. }
  53543. },
  53544. },
  53545. [
  53546. {
  53547. name: "Normal",
  53548. height: math.unit(6, "feet"),
  53549. default: true
  53550. },
  53551. {
  53552. name: "Grande",
  53553. height: math.unit(350, "feet")
  53554. },
  53555. {
  53556. name: "Massif",
  53557. height: math.unit(967, "feet")
  53558. },
  53559. ]
  53560. ))
  53561. characterMakers.push(() => makeCharacter(
  53562. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53563. {
  53564. hyenaSide: {
  53565. height: math.unit(120, "cm"),
  53566. weight: math.unit(120, "lb"),
  53567. name: "Side",
  53568. image: {
  53569. source: "./media/characters/trance/hyena-side.svg",
  53570. extra: 998/904,
  53571. bottom: 76/1074
  53572. }
  53573. },
  53574. },
  53575. [
  53576. {
  53577. name: "Normal",
  53578. height: math.unit(120, "cm"),
  53579. default: true
  53580. },
  53581. {
  53582. name: "Dire",
  53583. height: math.unit(230, "cm")
  53584. },
  53585. {
  53586. name: "Macro",
  53587. height: math.unit(37, "feet")
  53588. },
  53589. ]
  53590. ))
  53591. characterMakers.push(() => makeCharacter(
  53592. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53593. {
  53594. front: {
  53595. height: math.unit(6 + 3/12, "feet"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/michael-berretta/front.svg",
  53599. extra: 515/494,
  53600. bottom: 20/535
  53601. }
  53602. },
  53603. back: {
  53604. height: math.unit(6 + 3/12, "feet"),
  53605. name: "Back",
  53606. image: {
  53607. source: "./media/characters/michael-berretta/back.svg",
  53608. extra: 520/497,
  53609. bottom: 21/541
  53610. }
  53611. },
  53612. frontNsfw: {
  53613. height: math.unit(6 + 3/12, "feet"),
  53614. name: "Front (NSFW)",
  53615. image: {
  53616. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53617. extra: 515/494,
  53618. bottom: 20/535
  53619. }
  53620. },
  53621. dick: {
  53622. height: math.unit(1, "feet"),
  53623. name: "Dick",
  53624. image: {
  53625. source: "./media/characters/michael-berretta/dick.svg"
  53626. }
  53627. },
  53628. },
  53629. [
  53630. {
  53631. name: "Normal",
  53632. height: math.unit(6 + 3/12, "feet"),
  53633. default: true
  53634. },
  53635. {
  53636. name: "Big",
  53637. height: math.unit(12, "feet")
  53638. },
  53639. {
  53640. name: "Macro",
  53641. height: math.unit(187.5, "feet")
  53642. },
  53643. ]
  53644. ))
  53645. characterMakers.push(() => makeCharacter(
  53646. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53647. {
  53648. front: {
  53649. height: math.unit(9 + 9/12, "feet"),
  53650. weight: math.unit(1244, "lb"),
  53651. name: "Front",
  53652. image: {
  53653. source: "./media/characters/stella-edgecomb/front.svg",
  53654. extra: 1835/1706,
  53655. bottom: 49/1884
  53656. }
  53657. },
  53658. pen: {
  53659. height: math.unit(0.95, "feet"),
  53660. name: "Pen",
  53661. image: {
  53662. source: "./media/characters/stella-edgecomb/pen.svg"
  53663. }
  53664. },
  53665. },
  53666. [
  53667. {
  53668. name: "Cozy Bear",
  53669. height: math.unit(0.5, "inches")
  53670. },
  53671. {
  53672. name: "Normal",
  53673. height: math.unit(9 + 9/12, "feet"),
  53674. default: true
  53675. },
  53676. {
  53677. name: "Giga Bear",
  53678. height: math.unit(1, "mile")
  53679. },
  53680. {
  53681. name: "Great Bear",
  53682. height: math.unit(53, "miles")
  53683. },
  53684. {
  53685. name: "Goddess Bear",
  53686. height: math.unit(40000, "miles")
  53687. },
  53688. {
  53689. name: "Sun Bear",
  53690. height: math.unit(900000, "miles")
  53691. },
  53692. ]
  53693. ))
  53694. characterMakers.push(() => makeCharacter(
  53695. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53696. {
  53697. anthroFront: {
  53698. height: math.unit(556, "cm"),
  53699. weight: math.unit(2650, "kg"),
  53700. preyCapacity: math.unit(3, "people"),
  53701. name: "Front",
  53702. image: {
  53703. source: "./media/characters/ash´iika/front.svg",
  53704. extra: 710/673,
  53705. bottom: 15/725
  53706. },
  53707. form: "anthro",
  53708. default: true
  53709. },
  53710. anthroSide: {
  53711. height: math.unit(556, "cm"),
  53712. weight: math.unit(2650, "kg"),
  53713. preyCapacity: math.unit(3, "people"),
  53714. name: "Side",
  53715. image: {
  53716. source: "./media/characters/ash´iika/side.svg",
  53717. extra: 696/676,
  53718. bottom: 13/709
  53719. },
  53720. form: "anthro"
  53721. },
  53722. anthroDressed: {
  53723. height: math.unit(556, "cm"),
  53724. weight: math.unit(2650, "kg"),
  53725. preyCapacity: math.unit(3, "people"),
  53726. name: "Dressed",
  53727. image: {
  53728. source: "./media/characters/ash´iika/dressed.svg",
  53729. extra: 710/673,
  53730. bottom: 15/725
  53731. },
  53732. form: "anthro"
  53733. },
  53734. anthroHead: {
  53735. height: math.unit(3.5, "feet"),
  53736. name: "Head",
  53737. image: {
  53738. source: "./media/characters/ash´iika/head.svg",
  53739. extra: 348/291,
  53740. bottom: 45/393
  53741. },
  53742. form: "anthro"
  53743. },
  53744. feralSide: {
  53745. height: math.unit(870, "cm"),
  53746. weight: math.unit(17500, "kg"),
  53747. preyCapacity: math.unit(15, "people"),
  53748. name: "Side",
  53749. image: {
  53750. source: "./media/characters/ash´iika/feral.svg",
  53751. extra: 595/199,
  53752. bottom: 7/602
  53753. },
  53754. form: "feral",
  53755. default: true,
  53756. },
  53757. },
  53758. [
  53759. {
  53760. name: "Normal",
  53761. height: math.unit(556, "cm"),
  53762. default: true,
  53763. form: "anthro"
  53764. },
  53765. {
  53766. name: "Macro",
  53767. height: math.unit(88, "meters"),
  53768. form: "anthro"
  53769. },
  53770. {
  53771. name: "Normal",
  53772. height: math.unit(870, "cm"),
  53773. default: true,
  53774. form: "feral"
  53775. },
  53776. {
  53777. name: "Large",
  53778. height: math.unit(25, "meters"),
  53779. form: "feral"
  53780. },
  53781. ],
  53782. {
  53783. "anthro": {
  53784. name: "Anthro",
  53785. default: true
  53786. },
  53787. "feral": {
  53788. name: "Feral",
  53789. },
  53790. }
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53794. {
  53795. front: {
  53796. height: math.unit(10, "feet"),
  53797. weight: math.unit(800, "lb"),
  53798. name: "Front",
  53799. image: {
  53800. source: "./media/characters/yen/front.svg",
  53801. extra: 443/411,
  53802. bottom: 6/449
  53803. }
  53804. },
  53805. sleeping: {
  53806. height: math.unit(10, "feet"),
  53807. weight: math.unit(800, "lb"),
  53808. name: "Sleeping",
  53809. image: {
  53810. source: "./media/characters/yen/sleeping.svg",
  53811. extra: 470/422,
  53812. bottom: 0/470
  53813. }
  53814. },
  53815. head: {
  53816. height: math.unit(2.2, "feet"),
  53817. name: "Head",
  53818. image: {
  53819. source: "./media/characters/yen/head.svg"
  53820. }
  53821. },
  53822. headAlt: {
  53823. height: math.unit(2.1, "feet"),
  53824. name: "Head (Alt)",
  53825. image: {
  53826. source: "./media/characters/yen/head-alt.svg"
  53827. }
  53828. },
  53829. },
  53830. [
  53831. {
  53832. name: "Normal",
  53833. height: math.unit(10, "feet"),
  53834. default: true
  53835. },
  53836. ]
  53837. ))
  53838. characterMakers.push(() => makeCharacter(
  53839. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53840. {
  53841. front: {
  53842. height: math.unit(12, "feet"),
  53843. name: "Front",
  53844. image: {
  53845. source: "./media/characters/citra/front.svg",
  53846. extra: 1950/1710,
  53847. bottom: 47/1997
  53848. }
  53849. },
  53850. },
  53851. [
  53852. {
  53853. name: "Normal",
  53854. height: math.unit(12, "feet"),
  53855. default: true
  53856. },
  53857. ]
  53858. ))
  53859. characterMakers.push(() => makeCharacter(
  53860. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53861. {
  53862. side: {
  53863. height: math.unit(7 + 10/12, "feet"),
  53864. name: "Side",
  53865. image: {
  53866. source: "./media/characters/sholstim/side.svg",
  53867. extra: 786/682,
  53868. bottom: 40/826
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(7 + 10/12, "feet"),
  53876. default: true
  53877. },
  53878. ]
  53879. ))
  53880. characterMakers.push(() => makeCharacter(
  53881. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53882. {
  53883. front: {
  53884. height: math.unit(3.10, "meters"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/aggyn/front.svg",
  53888. extra: 1188/963,
  53889. bottom: 24/1212
  53890. }
  53891. },
  53892. },
  53893. [
  53894. {
  53895. name: "Normal",
  53896. height: math.unit(3.10, "meters"),
  53897. default: true
  53898. },
  53899. ]
  53900. ))
  53901. characterMakers.push(() => makeCharacter(
  53902. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53903. {
  53904. front: {
  53905. height: math.unit(7 + 5/12, "feet"),
  53906. weight: math.unit(687, "lb"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/alsandair-hergenroether/front.svg",
  53910. extra: 1251/1186,
  53911. bottom: 75/1326
  53912. }
  53913. },
  53914. back: {
  53915. height: math.unit(7 + 5/12, "feet"),
  53916. weight: math.unit(687, "lb"),
  53917. name: "Back",
  53918. image: {
  53919. source: "./media/characters/alsandair-hergenroether/back.svg",
  53920. extra: 1290/1229,
  53921. bottom: 17/1307
  53922. }
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Max Compression",
  53928. height: math.unit(7 + 5/12, "feet"),
  53929. default: true
  53930. },
  53931. {
  53932. name: "\"Normal\"",
  53933. height: math.unit(2, "universes")
  53934. },
  53935. ]
  53936. ))
  53937. characterMakers.push(() => makeCharacter(
  53938. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53939. {
  53940. front: {
  53941. height: math.unit(4 + 1/12, "feet"),
  53942. weight: math.unit(92, "lb"),
  53943. name: "Front",
  53944. image: {
  53945. source: "./media/characters/ie/front.svg",
  53946. extra: 1585/1352,
  53947. bottom: 91/1676
  53948. }
  53949. },
  53950. },
  53951. [
  53952. {
  53953. name: "Normal",
  53954. height: math.unit(4 + 1/12, "feet"),
  53955. default: true
  53956. },
  53957. ]
  53958. ))
  53959. characterMakers.push(() => makeCharacter(
  53960. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53961. {
  53962. anthro: {
  53963. height: math.unit(6, "feet"),
  53964. weight: math.unit(150, "lb"),
  53965. name: "Front",
  53966. image: {
  53967. source: "./media/characters/willow/anthro.svg",
  53968. extra: 1073/986,
  53969. bottom: 34/1107
  53970. },
  53971. form: "anthro",
  53972. default: true
  53973. },
  53974. taur: {
  53975. height: math.unit(6, "feet"),
  53976. weight: math.unit(150, "lb"),
  53977. name: "Side",
  53978. image: {
  53979. source: "./media/characters/willow/taur.svg",
  53980. extra: 647/512,
  53981. bottom: 136/783
  53982. },
  53983. form: "taur",
  53984. default: true
  53985. },
  53986. },
  53987. [
  53988. {
  53989. name: "Humanoid",
  53990. height: math.unit(2.7, "meters"),
  53991. form: "anthro"
  53992. },
  53993. {
  53994. name: "Normal",
  53995. height: math.unit(9, "meters"),
  53996. form: "anthro",
  53997. default: true
  53998. },
  53999. {
  54000. name: "Humanoid",
  54001. height: math.unit(2.1, "meters"),
  54002. form: "taur"
  54003. },
  54004. {
  54005. name: "Normal",
  54006. height: math.unit(7, "meters"),
  54007. form: "taur",
  54008. default: true
  54009. },
  54010. ],
  54011. {
  54012. "anthro": {
  54013. name: "Anthro",
  54014. default: true
  54015. },
  54016. "taur": {
  54017. name: "Taur",
  54018. },
  54019. }
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54023. {
  54024. front: {
  54025. height: math.unit(2 + 5/12, "feet"),
  54026. name: "Front",
  54027. image: {
  54028. source: "./media/characters/kyan/front.svg",
  54029. extra: 460/334,
  54030. bottom: 23/483
  54031. },
  54032. extraAttributes: {
  54033. "toeLength": {
  54034. name: "Toe Length",
  54035. power: 1,
  54036. type: "length",
  54037. base: math.unit(7, "cm")
  54038. },
  54039. "toeclawLength": {
  54040. name: "Toeclaw Length",
  54041. power: 1,
  54042. type: "length",
  54043. base: math.unit(4.7, "cm")
  54044. },
  54045. "earHeight": {
  54046. name: "Ear Height",
  54047. power: 1,
  54048. type: "length",
  54049. base: math.unit(14.1, "cm")
  54050. },
  54051. }
  54052. },
  54053. paws: {
  54054. height: math.unit(0.45, "feet"),
  54055. name: "Paws",
  54056. image: {
  54057. source: "./media/characters/kyan/paws.svg",
  54058. extra: 581/581,
  54059. bottom: 114/695
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Normal",
  54066. height: math.unit(2 + 5/12, "feet"),
  54067. default: true
  54068. },
  54069. ]
  54070. ))
  54071. characterMakers.push(() => makeCharacter(
  54072. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54073. {
  54074. front: {
  54075. height: math.unit(2 + 2/3, "feet"),
  54076. name: "Front",
  54077. image: {
  54078. source: "./media/characters/xazzon/front.svg",
  54079. extra: 1109/984,
  54080. bottom: 42/1151
  54081. }
  54082. },
  54083. back: {
  54084. height: math.unit(2 + 2/3, "feet"),
  54085. name: "Back",
  54086. image: {
  54087. source: "./media/characters/xazzon/back.svg",
  54088. extra: 1095/971,
  54089. bottom: 23/1118
  54090. }
  54091. },
  54092. },
  54093. [
  54094. {
  54095. name: "Normal",
  54096. height: math.unit(2 + 2/3, "feet"),
  54097. default: true
  54098. },
  54099. ]
  54100. ))
  54101. characterMakers.push(() => makeCharacter(
  54102. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54103. {
  54104. dressed: {
  54105. height: math.unit(5 + 7/12, "feet"),
  54106. weight: math.unit(173, "lb"),
  54107. name: "Dressed",
  54108. image: {
  54109. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54110. extra: 3262/2862,
  54111. bottom: 188/3450
  54112. }
  54113. },
  54114. undressed: {
  54115. height: math.unit(5 + 7/12, "feet"),
  54116. weight: math.unit(173, "lb"),
  54117. name: "Undressed",
  54118. image: {
  54119. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54120. extra: 3262/2862,
  54121. bottom: 188/3450
  54122. }
  54123. },
  54124. },
  54125. [
  54126. {
  54127. name: "The void",
  54128. height: math.unit(7.29193e-34, "angstroms")
  54129. },
  54130. {
  54131. name: "Uh-Oh.",
  54132. height: math.unit(5.734e-7, "angstroms")
  54133. },
  54134. {
  54135. name: "Pico",
  54136. height: math.unit(0.876, "angstroms")
  54137. },
  54138. {
  54139. name: "Nano",
  54140. height: math.unit(0.000134200, "mm")
  54141. },
  54142. {
  54143. name: "Micro",
  54144. height: math.unit(0.0673020, "mm")
  54145. },
  54146. {
  54147. name: "Tiny",
  54148. height: math.unit(2.4, "mm")
  54149. },
  54150. {
  54151. name: "Actual Normal",
  54152. height: math.unit(3, "inches"),
  54153. default: true
  54154. },
  54155. {
  54156. name: "Normal",
  54157. height: math.unit(5 + 8/12, "feet")
  54158. },
  54159. {
  54160. name: "Giant",
  54161. height: math.unit(12, "feet")
  54162. },
  54163. {
  54164. name: "City Ruler",
  54165. height: math.unit(270, "meters")
  54166. },
  54167. {
  54168. name: "Giga",
  54169. height: math.unit(1117.6, "km")
  54170. },
  54171. {
  54172. name: "All-Powerful Queen",
  54173. height: math.unit(70.8, "gigameters")
  54174. },
  54175. {
  54176. name: "'Goddess'",
  54177. height: math.unit(600, "yottameters")
  54178. },
  54179. {
  54180. name: "Biggest!",
  54181. height: math.unit(4.23e5, "yottameters")
  54182. },
  54183. ]
  54184. ))
  54185. characterMakers.push(() => makeCharacter(
  54186. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54187. {
  54188. front: {
  54189. height: math.unit(8, "feet"),
  54190. weight: math.unit(300, "lb"),
  54191. name: "Front",
  54192. image: {
  54193. source: "./media/characters/khyla-shadowsong/front.svg",
  54194. extra: 861/798,
  54195. bottom: 32/893
  54196. }
  54197. },
  54198. side: {
  54199. height: math.unit(8, "feet"),
  54200. weight: math.unit(300, "lb"),
  54201. name: "Side",
  54202. image: {
  54203. source: "./media/characters/khyla-shadowsong/side.svg",
  54204. extra: 790/750,
  54205. bottom: 87/877
  54206. }
  54207. },
  54208. back: {
  54209. height: math.unit(8, "feet"),
  54210. weight: math.unit(300, "lb"),
  54211. name: "Back",
  54212. image: {
  54213. source: "./media/characters/khyla-shadowsong/back.svg",
  54214. extra: 855/808,
  54215. bottom: 14/869
  54216. }
  54217. },
  54218. head: {
  54219. height: math.unit(2.7, "feet"),
  54220. name: "Head",
  54221. image: {
  54222. source: "./media/characters/khyla-shadowsong/head.svg"
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Micro",
  54229. height: math.unit(6, "inches")
  54230. },
  54231. {
  54232. name: "Normal",
  54233. height: math.unit(8, "feet"),
  54234. default: true
  54235. },
  54236. ]
  54237. ))
  54238. characterMakers.push(() => makeCharacter(
  54239. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54240. {
  54241. hyperFront: {
  54242. height: math.unit(9 + 4/12, "feet"),
  54243. weight: math.unit(2000, "lb"),
  54244. name: "Front",
  54245. image: {
  54246. source: "./media/characters/tiden/hyper-front.svg",
  54247. extra: 400/382,
  54248. bottom: 6/406
  54249. },
  54250. form: "hyper",
  54251. },
  54252. regularFront: {
  54253. height: math.unit(7 + 10/12, "feet"),
  54254. weight: math.unit(470, "lb"),
  54255. name: "Front",
  54256. image: {
  54257. source: "./media/characters/tiden/regular-front.svg",
  54258. extra: 468/442,
  54259. bottom: 6/474
  54260. },
  54261. form: "regular",
  54262. },
  54263. },
  54264. [
  54265. {
  54266. name: "Normal",
  54267. height: math.unit(9 + 4/12, "feet"),
  54268. default: true,
  54269. form: "hyper"
  54270. },
  54271. {
  54272. name: "Normal",
  54273. height: math.unit(7 + 10/12, "feet"),
  54274. default: true,
  54275. form: "regular"
  54276. },
  54277. ],
  54278. {
  54279. "hyper": {
  54280. name: "Hyper",
  54281. default: true
  54282. },
  54283. "regular": {
  54284. name: "Regular",
  54285. },
  54286. }
  54287. ))
  54288. characterMakers.push(() => makeCharacter(
  54289. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54290. {
  54291. side: {
  54292. height: math.unit(6, "feet"),
  54293. weight: math.unit(150, "lb"),
  54294. name: "Side",
  54295. image: {
  54296. source: "./media/characters/jason-crowe/side.svg",
  54297. extra: 1771/766,
  54298. bottom: 219/1990
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Pocket Gryphon",
  54305. height: math.unit(6, "cm")
  54306. },
  54307. {
  54308. name: "Raven",
  54309. height: math.unit(60, "cm")
  54310. },
  54311. {
  54312. name: "Normal",
  54313. height: math.unit(1, "meter"),
  54314. default: true
  54315. },
  54316. ]
  54317. ))
  54318. characterMakers.push(() => makeCharacter(
  54319. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54320. {
  54321. front: {
  54322. height: math.unit(9 + 6/12, "feet"),
  54323. weight: math.unit(1100, "lb"),
  54324. name: "Front",
  54325. image: {
  54326. source: "./media/characters/django/front.svg",
  54327. extra: 1231/1136,
  54328. bottom: 34/1265
  54329. }
  54330. },
  54331. side: {
  54332. height: math.unit(9 + 6/12, "feet"),
  54333. weight: math.unit(1100, "lb"),
  54334. name: "Side",
  54335. image: {
  54336. source: "./media/characters/django/side.svg",
  54337. extra: 1267/1174,
  54338. bottom: 9/1276
  54339. }
  54340. },
  54341. },
  54342. [
  54343. {
  54344. name: "Normal",
  54345. height: math.unit(9 + 6/12, "feet"),
  54346. default: true
  54347. },
  54348. {
  54349. name: "Macro 1",
  54350. height: math.unit(50, "feet")
  54351. },
  54352. {
  54353. name: "Macro 2",
  54354. height: math.unit(500, "feet")
  54355. },
  54356. {
  54357. name: "Mega Macro",
  54358. height: math.unit(5300, "feet")
  54359. },
  54360. ]
  54361. ))
  54362. characterMakers.push(() => makeCharacter(
  54363. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54364. {
  54365. frontSfw: {
  54366. height: math.unit(120, "cm"),
  54367. weight: math.unit(15, "kg"),
  54368. name: "Front (SFW)",
  54369. image: {
  54370. source: "./media/characters/eri/front-sfw.svg",
  54371. extra: 1014/939,
  54372. bottom: 37/1051
  54373. },
  54374. form: "moth",
  54375. },
  54376. frontNsfw: {
  54377. height: math.unit(120, "cm"),
  54378. weight: math.unit(15, "kg"),
  54379. name: "Front (NSFW)",
  54380. image: {
  54381. source: "./media/characters/eri/front-nsfw.svg",
  54382. extra: 1014/939,
  54383. bottom: 37/1051
  54384. },
  54385. form: "moth",
  54386. default: true
  54387. },
  54388. egg: {
  54389. height: math.unit(10, "cm"),
  54390. name: "Egg",
  54391. image: {
  54392. source: "./media/characters/eri/egg.svg"
  54393. },
  54394. form: "egg",
  54395. default: true
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(120, "cm"),
  54402. default: true,
  54403. form: "moth"
  54404. },
  54405. {
  54406. name: "Normal",
  54407. height: math.unit(10, "cm"),
  54408. default: true,
  54409. form: "egg"
  54410. },
  54411. ],
  54412. {
  54413. "moth": {
  54414. name: "Moth",
  54415. default: true
  54416. },
  54417. "egg": {
  54418. name: "Egg",
  54419. },
  54420. }
  54421. ))
  54422. characterMakers.push(() => makeCharacter(
  54423. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54424. {
  54425. front: {
  54426. height: math.unit(200, "feet"),
  54427. name: "Front",
  54428. image: {
  54429. source: "./media/characters/bishop-dowser/front.svg",
  54430. extra: 933/868,
  54431. bottom: 106/1039
  54432. }
  54433. },
  54434. },
  54435. [
  54436. {
  54437. name: "Giant",
  54438. height: math.unit(200, "feet"),
  54439. default: true
  54440. },
  54441. ]
  54442. ))
  54443. characterMakers.push(() => makeCharacter(
  54444. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54445. {
  54446. front: {
  54447. height: math.unit(2, "meters"),
  54448. preyCapacity: math.unit(3, "people"),
  54449. name: "Front",
  54450. image: {
  54451. source: "./media/characters/fryra/front.svg",
  54452. extra: 1025/948,
  54453. bottom: 30/1055
  54454. },
  54455. extraAttributes: {
  54456. "breastVolume": {
  54457. name: "Breast Volume",
  54458. power: 3,
  54459. type: "volume",
  54460. base: math.unit(8, "liters")
  54461. },
  54462. }
  54463. },
  54464. back: {
  54465. height: math.unit(2, "meters"),
  54466. preyCapacity: math.unit(3, "people"),
  54467. name: "Back",
  54468. image: {
  54469. source: "./media/characters/fryra/back.svg",
  54470. extra: 993/938,
  54471. bottom: 38/1031
  54472. },
  54473. extraAttributes: {
  54474. "breastVolume": {
  54475. name: "Breast Volume",
  54476. power: 3,
  54477. type: "volume",
  54478. base: math.unit(8, "liters")
  54479. },
  54480. }
  54481. },
  54482. head: {
  54483. height: math.unit(1.33, "feet"),
  54484. name: "Head",
  54485. image: {
  54486. source: "./media/characters/fryra/head.svg"
  54487. }
  54488. },
  54489. maw: {
  54490. height: math.unit(0.56, "feet"),
  54491. name: "Maw",
  54492. image: {
  54493. source: "./media/characters/fryra/maw.svg"
  54494. }
  54495. },
  54496. },
  54497. [
  54498. {
  54499. name: "Micro",
  54500. height: math.unit(5, "cm")
  54501. },
  54502. {
  54503. name: "Normal",
  54504. height: math.unit(2, "meters"),
  54505. default: true
  54506. },
  54507. {
  54508. name: "Small Macro",
  54509. height: math.unit(8, "meters")
  54510. },
  54511. {
  54512. name: "Macro",
  54513. height: math.unit(50, "meters")
  54514. },
  54515. {
  54516. name: "Megamacro",
  54517. height: math.unit(1, "km")
  54518. },
  54519. {
  54520. name: "Planetary",
  54521. height: math.unit(300000, "km")
  54522. },
  54523. {
  54524. name: "Universal",
  54525. height: math.unit(250, "lightyears")
  54526. },
  54527. {
  54528. name: "Fabric of Reality",
  54529. height: math.unit(1000, "multiverses")
  54530. },
  54531. ]
  54532. ))
  54533. characterMakers.push(() => makeCharacter(
  54534. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54535. {
  54536. frontDressed: {
  54537. height: math.unit(6 + 2/12, "feet"),
  54538. name: "Front (Dressed)",
  54539. image: {
  54540. source: "./media/characters/fiera/front-dressed.svg",
  54541. extra: 1883/1793,
  54542. bottom: 70/1953
  54543. }
  54544. },
  54545. backDressed: {
  54546. height: math.unit(6 + 2/12, "feet"),
  54547. name: "Back (Dressed)",
  54548. image: {
  54549. source: "./media/characters/fiera/back-dressed.svg",
  54550. extra: 1847/1780,
  54551. bottom: 70/1917
  54552. }
  54553. },
  54554. frontNude: {
  54555. height: math.unit(6 + 2/12, "feet"),
  54556. name: "Front (Nude)",
  54557. image: {
  54558. source: "./media/characters/fiera/front-nude.svg",
  54559. extra: 1875/1785,
  54560. bottom: 66/1941
  54561. }
  54562. },
  54563. backNude: {
  54564. height: math.unit(6 + 2/12, "feet"),
  54565. name: "Back (Nude)",
  54566. image: {
  54567. source: "./media/characters/fiera/back-nude.svg",
  54568. extra: 1855/1788,
  54569. bottom: 44/1899
  54570. }
  54571. },
  54572. maw: {
  54573. height: math.unit(1.3, "feet"),
  54574. name: "Maw",
  54575. image: {
  54576. source: "./media/characters/fiera/maw.svg"
  54577. }
  54578. },
  54579. paw: {
  54580. height: math.unit(1, "feet"),
  54581. name: "Paw",
  54582. image: {
  54583. source: "./media/characters/fiera/paw.svg"
  54584. }
  54585. },
  54586. shoe: {
  54587. height: math.unit(1.05, "feet"),
  54588. name: "Shoe",
  54589. image: {
  54590. source: "./media/characters/fiera/shoe.svg"
  54591. }
  54592. },
  54593. },
  54594. [
  54595. {
  54596. name: "Normal",
  54597. height: math.unit(6 + 2/12, "feet"),
  54598. default: true
  54599. },
  54600. {
  54601. name: "Size Difference",
  54602. height: math.unit(13, "feet")
  54603. },
  54604. {
  54605. name: "Macro",
  54606. height: math.unit(60, "feet")
  54607. },
  54608. {
  54609. name: "Mega Macro",
  54610. height: math.unit(200, "feet")
  54611. },
  54612. ]
  54613. ))
  54614. characterMakers.push(() => makeCharacter(
  54615. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54616. {
  54617. back: {
  54618. height: math.unit(6, "feet"),
  54619. name: "Back",
  54620. image: {
  54621. source: "./media/characters/flare/back.svg",
  54622. extra: 1883/1765,
  54623. bottom: 32/1915
  54624. }
  54625. },
  54626. },
  54627. [
  54628. {
  54629. name: "Normal",
  54630. height: math.unit(6 + 2/12, "feet"),
  54631. default: true
  54632. },
  54633. {
  54634. name: "Size Difference",
  54635. height: math.unit(13, "feet")
  54636. },
  54637. {
  54638. name: "Macro",
  54639. height: math.unit(60, "feet")
  54640. },
  54641. {
  54642. name: "Macro 2",
  54643. height: math.unit(100, "feet")
  54644. },
  54645. {
  54646. name: "Mega Macro",
  54647. height: math.unit(200, "feet")
  54648. },
  54649. ]
  54650. ))
  54651. characterMakers.push(() => makeCharacter(
  54652. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54653. {
  54654. front: {
  54655. height: math.unit(2.2, "m"),
  54656. weight: math.unit(300, "kg"),
  54657. name: "Front",
  54658. image: {
  54659. source: "./media/characters/hanna/front.svg",
  54660. extra: 1696/1502,
  54661. bottom: 206/1902
  54662. }
  54663. },
  54664. },
  54665. [
  54666. {
  54667. name: "Humanoid",
  54668. height: math.unit(2.2, "meters")
  54669. },
  54670. {
  54671. name: "Normal",
  54672. height: math.unit(4.8, "meters"),
  54673. default: true
  54674. },
  54675. ]
  54676. ))
  54677. characterMakers.push(() => makeCharacter(
  54678. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54679. {
  54680. front: {
  54681. height: math.unit(2.8, "meters"),
  54682. name: "Front",
  54683. image: {
  54684. source: "./media/characters/argo/front.svg",
  54685. extra: 731/518,
  54686. bottom: 84/815
  54687. }
  54688. },
  54689. },
  54690. [
  54691. {
  54692. name: "Normal",
  54693. height: math.unit(3, "meters"),
  54694. default: true
  54695. },
  54696. ]
  54697. ))
  54698. characterMakers.push(() => makeCharacter(
  54699. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54700. {
  54701. side: {
  54702. height: math.unit(3.8, "meters"),
  54703. name: "Side",
  54704. image: {
  54705. source: "./media/characters/sybil/side.svg",
  54706. extra: 382/361,
  54707. bottom: 25/407
  54708. }
  54709. },
  54710. },
  54711. [
  54712. {
  54713. name: "Normal",
  54714. height: math.unit(3.8, "meters"),
  54715. default: true
  54716. },
  54717. ]
  54718. ))
  54719. characterMakers.push(() => makeCharacter(
  54720. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54721. {
  54722. side: {
  54723. height: math.unit(6, "meters"),
  54724. name: "Side",
  54725. image: {
  54726. source: "./media/characters/plum/side.svg",
  54727. extra: 858/755,
  54728. bottom: 45/903
  54729. },
  54730. form: "taur",
  54731. default: true
  54732. },
  54733. back: {
  54734. height: math.unit(6.3, "meters"),
  54735. name: "Back",
  54736. image: {
  54737. source: "./media/characters/plum/back.svg",
  54738. extra: 887/813,
  54739. bottom: 32/919
  54740. },
  54741. form: "taur",
  54742. },
  54743. feral: {
  54744. height: math.unit(5.5, "meter"),
  54745. name: "Front",
  54746. image: {
  54747. source: "./media/characters/plum/feral.svg",
  54748. extra: 568/403,
  54749. bottom: 51/619
  54750. },
  54751. form: "feral",
  54752. default: true
  54753. },
  54754. head: {
  54755. height: math.unit(1.46, "meter"),
  54756. name: "Head",
  54757. image: {
  54758. source: "./media/characters/plum/head.svg"
  54759. },
  54760. form: "taur"
  54761. },
  54762. tailTop: {
  54763. height: math.unit(5.6, "meter"),
  54764. name: "Tail (Top)",
  54765. image: {
  54766. source: "./media/characters/plum/tail-top.svg"
  54767. },
  54768. form: "taur",
  54769. },
  54770. tailBottom: {
  54771. height: math.unit(5.6, "meter"),
  54772. name: "Tail (Bottom)",
  54773. image: {
  54774. source: "./media/characters/plum/tail-bottom.svg"
  54775. },
  54776. form: "taur",
  54777. },
  54778. feralHead: {
  54779. height: math.unit(2.56549521, "meter"),
  54780. name: "Head",
  54781. image: {
  54782. source: "./media/characters/plum/head.svg"
  54783. },
  54784. form: "feral"
  54785. },
  54786. feralTailTop: {
  54787. height: math.unit(5.44728435, "meter"),
  54788. name: "Tail (Top)",
  54789. image: {
  54790. source: "./media/characters/plum/tail-top.svg"
  54791. },
  54792. form: "feral",
  54793. },
  54794. feralTailBottom: {
  54795. height: math.unit(5.44728435, "meter"),
  54796. name: "Tail (Bottom)",
  54797. image: {
  54798. source: "./media/characters/plum/tail-bottom.svg"
  54799. },
  54800. form: "feral",
  54801. },
  54802. },
  54803. [
  54804. {
  54805. name: "Normal",
  54806. height: math.unit(6, "meters"),
  54807. default: true,
  54808. form: "taur"
  54809. },
  54810. {
  54811. name: "Normal",
  54812. height: math.unit(5.5, "meters"),
  54813. default: true,
  54814. form: "feral"
  54815. },
  54816. ],
  54817. {
  54818. "taur": {
  54819. name: "Taur",
  54820. default: true
  54821. },
  54822. "feral": {
  54823. name: "Feral",
  54824. },
  54825. }
  54826. ))
  54827. characterMakers.push(() => makeCharacter(
  54828. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54829. {
  54830. front: {
  54831. height: math.unit(6, "feet"),
  54832. weight: math.unit(115, "lb"),
  54833. name: "Front",
  54834. image: {
  54835. source: "./media/characters/celeste-kitsune/front.svg",
  54836. extra: 393/366,
  54837. bottom: 7/400
  54838. }
  54839. },
  54840. side: {
  54841. height: math.unit(6, "feet"),
  54842. weight: math.unit(115, "lb"),
  54843. name: "Side",
  54844. image: {
  54845. source: "./media/characters/celeste-kitsune/side.svg",
  54846. extra: 818/765,
  54847. bottom: 40/858
  54848. }
  54849. },
  54850. },
  54851. [
  54852. {
  54853. name: "Megamacro",
  54854. height: math.unit(1500, "miles"),
  54855. default: true
  54856. },
  54857. ]
  54858. ))
  54859. characterMakers.push(() => makeCharacter(
  54860. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54861. {
  54862. front: {
  54863. height: math.unit(8, "meters"),
  54864. name: "Front",
  54865. image: {
  54866. source: "./media/characters/io/front.svg",
  54867. extra: 865/722,
  54868. bottom: 58/923
  54869. }
  54870. },
  54871. back: {
  54872. height: math.unit(8, "meters"),
  54873. name: "Back",
  54874. image: {
  54875. source: "./media/characters/io/back.svg",
  54876. extra: 920/776,
  54877. bottom: 42/962
  54878. }
  54879. },
  54880. head: {
  54881. height: math.unit(5.09, "meters"),
  54882. name: "Head",
  54883. image: {
  54884. source: "./media/characters/io/head.svg"
  54885. }
  54886. },
  54887. hand: {
  54888. height: math.unit(1.6, "meters"),
  54889. name: "Hand",
  54890. image: {
  54891. source: "./media/characters/io/hand.svg"
  54892. }
  54893. },
  54894. foot: {
  54895. height: math.unit(2.4, "meters"),
  54896. name: "Foot",
  54897. image: {
  54898. source: "./media/characters/io/foot.svg"
  54899. }
  54900. },
  54901. },
  54902. [
  54903. {
  54904. name: "Normal",
  54905. height: math.unit(8, "meters"),
  54906. default: true
  54907. },
  54908. ]
  54909. ))
  54910. characterMakers.push(() => makeCharacter(
  54911. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54912. {
  54913. side: {
  54914. height: math.unit(6 + 3/12, "feet"),
  54915. weight: math.unit(225, "lb"),
  54916. name: "Side",
  54917. image: {
  54918. source: "./media/characters/silas/side.svg",
  54919. extra: 703/653,
  54920. bottom: 23/726
  54921. },
  54922. extraAttributes: {
  54923. "pawLength": {
  54924. name: "Paw Length",
  54925. power: 1,
  54926. type: "length",
  54927. base: math.unit(12, "inches")
  54928. },
  54929. "pawWidth": {
  54930. name: "Paw Width",
  54931. power: 1,
  54932. type: "length",
  54933. base: math.unit(4.5, "inches")
  54934. },
  54935. "pawArea": {
  54936. name: "Paw Area",
  54937. power: 2,
  54938. type: "area",
  54939. base: math.unit(12 * 4.5, "inches^2")
  54940. },
  54941. }
  54942. },
  54943. },
  54944. [
  54945. {
  54946. name: "Normal",
  54947. height: math.unit(6 + 3/12, "feet"),
  54948. default: true
  54949. },
  54950. ]
  54951. ))
  54952. characterMakers.push(() => makeCharacter(
  54953. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54954. {
  54955. back: {
  54956. height: math.unit(1.6, "meters"),
  54957. weight: math.unit(150, "lb"),
  54958. name: "Back",
  54959. image: {
  54960. source: "./media/characters/zari/back.svg",
  54961. extra: 424/411,
  54962. bottom: 32/456
  54963. },
  54964. extraAttributes: {
  54965. "bladderCapacity": {
  54966. name: "Bladder Size",
  54967. power: 3,
  54968. type: "volume",
  54969. base: math.unit(500, "mL")
  54970. },
  54971. "bladderFlow": {
  54972. name: "Flow Rate",
  54973. power: 3,
  54974. type: "volume",
  54975. base: math.unit(25, "mL")
  54976. },
  54977. }
  54978. },
  54979. },
  54980. [
  54981. {
  54982. name: "Normal",
  54983. height: math.unit(1.6, "meters"),
  54984. default: true
  54985. },
  54986. ]
  54987. ))
  54988. characterMakers.push(() => makeCharacter(
  54989. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54990. {
  54991. front: {
  54992. height: math.unit(25, "feet"),
  54993. weight: math.unit(5, "tons"),
  54994. name: "Front",
  54995. image: {
  54996. source: "./media/characters/charlie-human/front.svg",
  54997. extra: 1870/1740,
  54998. bottom: 102/1972
  54999. },
  55000. extraAttributes: {
  55001. "dickLength": {
  55002. name: "Dick Length",
  55003. power: 1,
  55004. type: "length",
  55005. base: math.unit(9, "feet")
  55006. },
  55007. }
  55008. },
  55009. back: {
  55010. height: math.unit(25, "feet"),
  55011. weight: math.unit(5, "tons"),
  55012. name: "Back",
  55013. image: {
  55014. source: "./media/characters/charlie-human/back.svg",
  55015. extra: 1858/1733,
  55016. bottom: 105/1963
  55017. },
  55018. extraAttributes: {
  55019. "dickLength": {
  55020. name: "Dick Length",
  55021. power: 1,
  55022. type: "length",
  55023. base: math.unit(9, "feet")
  55024. },
  55025. }
  55026. },
  55027. },
  55028. [
  55029. {
  55030. name: "\"Normal\"",
  55031. height: math.unit(6 + 4/12, "feet")
  55032. },
  55033. {
  55034. name: "Big",
  55035. height: math.unit(25, "feet"),
  55036. default: true
  55037. },
  55038. ]
  55039. ))
  55040. characterMakers.push(() => makeCharacter(
  55041. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55042. {
  55043. front: {
  55044. height: math.unit(6 + 4/12, "feet"),
  55045. weight: math.unit(320, "lb"),
  55046. name: "Front",
  55047. image: {
  55048. source: "./media/characters/ookitsu/front.svg",
  55049. extra: 1160/976,
  55050. bottom: 38/1198
  55051. }
  55052. },
  55053. frontNsfw: {
  55054. height: math.unit(6 + 4/12, "feet"),
  55055. weight: math.unit(320, "lb"),
  55056. name: "Front (NSFW)",
  55057. image: {
  55058. source: "./media/characters/ookitsu/front-nsfw.svg",
  55059. extra: 1160/976,
  55060. bottom: 38/1198
  55061. }
  55062. },
  55063. back: {
  55064. height: math.unit(6 + 4/12, "feet"),
  55065. weight: math.unit(320, "lb"),
  55066. name: "Back",
  55067. image: {
  55068. source: "./media/characters/ookitsu/back.svg",
  55069. extra: 1030/975,
  55070. bottom: 70/1100
  55071. }
  55072. },
  55073. head: {
  55074. height: math.unit(1.79, "feet"),
  55075. name: "Head",
  55076. image: {
  55077. source: "./media/characters/ookitsu/head.svg"
  55078. }
  55079. },
  55080. hand: {
  55081. height: math.unit(0.92, "feet"),
  55082. name: "Hand",
  55083. image: {
  55084. source: "./media/characters/ookitsu/hand.svg"
  55085. }
  55086. },
  55087. tails: {
  55088. height: math.unit(3.3, "feet"),
  55089. name: "Tails",
  55090. image: {
  55091. source: "./media/characters/ookitsu/tails.svg"
  55092. }
  55093. },
  55094. dick: {
  55095. height: math.unit(1.10833, "feet"),
  55096. name: "Dick",
  55097. image: {
  55098. source: "./media/characters/ookitsu/dick.svg"
  55099. }
  55100. },
  55101. },
  55102. [
  55103. {
  55104. name: "Normal",
  55105. height: math.unit(6 + 4/12, "feet"),
  55106. default: true
  55107. },
  55108. {
  55109. name: "Macro",
  55110. height: math.unit(30, "feet")
  55111. },
  55112. ]
  55113. ))
  55114. characterMakers.push(() => makeCharacter(
  55115. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55116. {
  55117. anthroFront: {
  55118. height: math.unit(6, "feet"),
  55119. weight: math.unit(250, "lb"),
  55120. name: "Front",
  55121. image: {
  55122. source: "./media/characters/jhusky/anthro-front.svg",
  55123. extra: 474/439,
  55124. bottom: 7/481
  55125. },
  55126. form: "anthro",
  55127. default: true
  55128. },
  55129. taurSideSfw: {
  55130. height: math.unit(6 + 4/12, "feet"),
  55131. weight: math.unit(500, "lb"),
  55132. name: "Side (SFW)",
  55133. image: {
  55134. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55135. extra: 1741/1629,
  55136. bottom: 196/1937
  55137. },
  55138. form: "taur",
  55139. default: true
  55140. },
  55141. taurSideNsfw: {
  55142. height: math.unit(6 + 4/12, "feet"),
  55143. weight: math.unit(500, "lb"),
  55144. name: "Taur (NSFW)",
  55145. image: {
  55146. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55147. extra: 1741/1629,
  55148. bottom: 196/1937
  55149. },
  55150. form: "taur",
  55151. },
  55152. },
  55153. [
  55154. {
  55155. name: "Huge",
  55156. height: math.unit(500, "feet"),
  55157. form: "anthro"
  55158. },
  55159. {
  55160. name: "Macro",
  55161. height: math.unit(1000, "feet"),
  55162. default: true,
  55163. form: "anthro"
  55164. },
  55165. {
  55166. name: "Megamacro",
  55167. height: math.unit(10000, "feet"),
  55168. form: "anthro"
  55169. },
  55170. {
  55171. name: "Huge",
  55172. height: math.unit(528, "feet"),
  55173. form: "taur"
  55174. },
  55175. {
  55176. name: "Macro",
  55177. height: math.unit(1056, "feet"),
  55178. default: true,
  55179. form: "taur"
  55180. },
  55181. {
  55182. name: "Megamacro",
  55183. height: math.unit(10556, "feet"),
  55184. form: "taur"
  55185. },
  55186. ],
  55187. {
  55188. "anthro": {
  55189. name: "Anthro",
  55190. default: true
  55191. },
  55192. "taur": {
  55193. name: "Taur",
  55194. },
  55195. }
  55196. ))
  55197. characterMakers.push(() => makeCharacter(
  55198. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55199. {
  55200. front: {
  55201. height: math.unit(8, "feet"),
  55202. weight: math.unit(500, "lb"),
  55203. name: "Front",
  55204. image: {
  55205. source: "./media/characters/armail/front.svg",
  55206. extra: 1753/1669,
  55207. bottom: 155/1908
  55208. }
  55209. },
  55210. back: {
  55211. height: math.unit(8, "feet"),
  55212. weight: math.unit(500, "lb"),
  55213. name: "Back",
  55214. image: {
  55215. source: "./media/characters/armail/back.svg",
  55216. extra: 1872/1803,
  55217. bottom: 63/1935
  55218. }
  55219. },
  55220. },
  55221. [
  55222. {
  55223. name: "Micro",
  55224. height: math.unit(0.25, "feet")
  55225. },
  55226. {
  55227. name: "Normal",
  55228. height: math.unit(8, "feet"),
  55229. default: true
  55230. },
  55231. {
  55232. name: "Mini-macro",
  55233. height: math.unit(30, "feet")
  55234. },
  55235. {
  55236. name: "Macro",
  55237. height: math.unit(400, "feet")
  55238. },
  55239. {
  55240. name: "Mega-macro",
  55241. height: math.unit(6000, "feet")
  55242. },
  55243. ]
  55244. ))
  55245. characterMakers.push(() => makeCharacter(
  55246. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55247. {
  55248. front: {
  55249. height: math.unit(6 + 7/12, "feet"),
  55250. weight: math.unit(210, "lb"),
  55251. name: "Front",
  55252. image: {
  55253. source: "./media/characters/wilfred-t-buxton/front.svg",
  55254. extra: 1068/882,
  55255. bottom: 28/1096
  55256. }
  55257. },
  55258. },
  55259. [
  55260. {
  55261. name: "Normal",
  55262. height: math.unit(6 + 7/12, "feet"),
  55263. default: true
  55264. },
  55265. ]
  55266. ))
  55267. characterMakers.push(() => makeCharacter(
  55268. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55269. {
  55270. front: {
  55271. height: math.unit(5 + 2/12, "feet"),
  55272. weight: math.unit(120, "lb"),
  55273. name: "Front",
  55274. image: {
  55275. source: "./media/characters/leighton-marrow/front.svg",
  55276. extra: 441/409,
  55277. bottom: 37/478
  55278. }
  55279. },
  55280. },
  55281. [
  55282. {
  55283. name: "Normal",
  55284. height: math.unit(5 + 2/12, "feet"),
  55285. default: true
  55286. },
  55287. ]
  55288. ))
  55289. characterMakers.push(() => makeCharacter(
  55290. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55291. {
  55292. front: {
  55293. height: math.unit(4, "meters"),
  55294. weight: math.unit(1200, "kg"),
  55295. name: "Front",
  55296. image: {
  55297. source: "./media/characters/licos/front.svg",
  55298. extra: 1727/1604,
  55299. bottom: 101/1828
  55300. },
  55301. form: "anthro",
  55302. default: true
  55303. },
  55304. taur_side: {
  55305. height: math.unit(20, "meters"),
  55306. weight: math.unit(1100000, "kg"),
  55307. name: "Side",
  55308. image: {
  55309. source: "./media/characters/licos/taur.svg",
  55310. extra: 1158/1091,
  55311. bottom: 80/1238
  55312. },
  55313. form: "taur",
  55314. default: true
  55315. },
  55316. },
  55317. [
  55318. {
  55319. name: "Normal",
  55320. height: math.unit(4, "meters"),
  55321. default: true,
  55322. form: "anthro"
  55323. },
  55324. {
  55325. name: "Normal",
  55326. height: math.unit(20, "meters"),
  55327. default: true,
  55328. form: "taur"
  55329. },
  55330. ],
  55331. {
  55332. "anthro": {
  55333. name: "Anthro",
  55334. default: true
  55335. },
  55336. "taur": {
  55337. name: "Taur",
  55338. },
  55339. }
  55340. ))
  55341. characterMakers.push(() => makeCharacter(
  55342. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55343. {
  55344. front: {
  55345. height: math.unit(10 + 3/12, "feet"),
  55346. name: "Front",
  55347. image: {
  55348. source: "./media/characters/theo-monkey/front.svg",
  55349. extra: 1735/1658,
  55350. bottom: 73/1808
  55351. }
  55352. },
  55353. back: {
  55354. height: math.unit(10 + 3/12, "feet"),
  55355. name: "Back",
  55356. image: {
  55357. source: "./media/characters/theo-monkey/back.svg",
  55358. extra: 1742/1664,
  55359. bottom: 33/1775
  55360. }
  55361. },
  55362. head: {
  55363. height: math.unit(2.29, "feet"),
  55364. name: "Head",
  55365. image: {
  55366. source: "./media/characters/theo-monkey/head.svg"
  55367. }
  55368. },
  55369. handPalm: {
  55370. height: math.unit(1.73, "feet"),
  55371. name: "Hand (Palm)",
  55372. image: {
  55373. source: "./media/characters/theo-monkey/hand-palm.svg"
  55374. }
  55375. },
  55376. handBack: {
  55377. height: math.unit(1.63, "feet"),
  55378. name: "Hand (Back)",
  55379. image: {
  55380. source: "./media/characters/theo-monkey/hand-back.svg"
  55381. }
  55382. },
  55383. footSole: {
  55384. height: math.unit(2.15, "feet"),
  55385. name: "Foot (Sole)",
  55386. image: {
  55387. source: "./media/characters/theo-monkey/foot-sole.svg"
  55388. }
  55389. },
  55390. footSide: {
  55391. height: math.unit(1.6, "feet"),
  55392. name: "Foot (Side)",
  55393. image: {
  55394. source: "./media/characters/theo-monkey/foot-side.svg"
  55395. }
  55396. },
  55397. },
  55398. [
  55399. {
  55400. name: "Normal",
  55401. height: math.unit(10 + 3/12, "feet"),
  55402. default: true
  55403. },
  55404. ]
  55405. ))
  55406. characterMakers.push(() => makeCharacter(
  55407. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55408. {
  55409. front: {
  55410. height: math.unit(11, "feet"),
  55411. weight: math.unit(3000, "lb"),
  55412. preyCapacity: math.unit(10, "people"),
  55413. name: "Front",
  55414. image: {
  55415. source: "./media/characters/brook/front.svg",
  55416. extra: 909/835,
  55417. bottom: 108/1017
  55418. }
  55419. },
  55420. back: {
  55421. height: math.unit(11, "feet"),
  55422. weight: math.unit(3000, "lb"),
  55423. preyCapacity: math.unit(10, "people"),
  55424. name: "Back",
  55425. image: {
  55426. source: "./media/characters/brook/back.svg",
  55427. extra: 976/916,
  55428. bottom: 34/1010
  55429. }
  55430. },
  55431. backAlt: {
  55432. height: math.unit(11, "feet"),
  55433. weight: math.unit(3000, "lb"),
  55434. preyCapacity: math.unit(10, "people"),
  55435. name: "Back (Alt)",
  55436. image: {
  55437. source: "./media/characters/brook/back-alt.svg",
  55438. extra: 1283/1213,
  55439. bottom: 35/1318
  55440. }
  55441. },
  55442. bust: {
  55443. height: math.unit(9.0859030837, "feet"),
  55444. weight: math.unit(3000, "lb"),
  55445. preyCapacity: math.unit(10, "people"),
  55446. name: "Bust",
  55447. image: {
  55448. source: "./media/characters/brook/bust.svg",
  55449. extra: 2043/1923,
  55450. bottom: 0/2043
  55451. }
  55452. },
  55453. },
  55454. [
  55455. {
  55456. name: "Small",
  55457. height: math.unit(11, "feet"),
  55458. default: true
  55459. },
  55460. {
  55461. name: "Towering",
  55462. height: math.unit(5, "km")
  55463. },
  55464. {
  55465. name: "Enormous",
  55466. height: math.unit(25, "earths")
  55467. },
  55468. ]
  55469. ))
  55470. characterMakers.push(() => makeCharacter(
  55471. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55472. {
  55473. front: {
  55474. height: math.unit(4, "feet"),
  55475. weight: math.unit(150, "lb"),
  55476. name: "Front",
  55477. image: {
  55478. source: "./media/characters/squishi/front.svg",
  55479. extra: 1428/1271,
  55480. bottom: 30/1458
  55481. },
  55482. extraAttributes: {
  55483. "pawSize": {
  55484. name: "Paw Size",
  55485. power: 1,
  55486. type: "length",
  55487. base: math.unit(14, "ShoeSizeMensUS"),
  55488. defaultUnit: "ShoeSizeMensUS"
  55489. },
  55490. }
  55491. },
  55492. side: {
  55493. height: math.unit(4, "feet"),
  55494. weight: math.unit(150, "lb"),
  55495. name: "Side",
  55496. image: {
  55497. source: "./media/characters/squishi/side.svg",
  55498. extra: 1428/1271,
  55499. bottom: 30/1458
  55500. },
  55501. extraAttributes: {
  55502. "pawSize": {
  55503. name: "Paw Size",
  55504. power: 1,
  55505. type: "length",
  55506. base: math.unit(14, "ShoeSizeMensUS"),
  55507. defaultUnit: "ShoeSizeMensUS"
  55508. },
  55509. }
  55510. },
  55511. back: {
  55512. height: math.unit(4, "feet"),
  55513. weight: math.unit(150, "lb"),
  55514. name: "Back",
  55515. image: {
  55516. source: "./media/characters/squishi/back.svg",
  55517. extra: 1428/1271,
  55518. bottom: 30/1458
  55519. },
  55520. extraAttributes: {
  55521. "pawSize": {
  55522. name: "Paw Size",
  55523. power: 1,
  55524. type: "length",
  55525. base: math.unit(14, "ShoeSizeMensUS"),
  55526. defaultUnit: "ShoeSizeMensUS"
  55527. },
  55528. }
  55529. },
  55530. },
  55531. [
  55532. {
  55533. name: "Normal",
  55534. height: math.unit(4, "feet"),
  55535. default: true
  55536. },
  55537. ]
  55538. ))
  55539. characterMakers.push(() => makeCharacter(
  55540. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55541. {
  55542. front: {
  55543. height: math.unit(7 + 8/12, "feet"),
  55544. weight: math.unit(333, "lb"),
  55545. name: "Front",
  55546. image: {
  55547. source: "./media/characters/vincent-vasroc/front.svg",
  55548. extra: 1962/1860,
  55549. bottom: 41/2003
  55550. }
  55551. },
  55552. back: {
  55553. height: math.unit(7 + 8/12, "feet"),
  55554. weight: math.unit(333, "lb"),
  55555. name: "Back",
  55556. image: {
  55557. source: "./media/characters/vincent-vasroc/back.svg",
  55558. extra: 1952/1815,
  55559. bottom: 33/1985
  55560. }
  55561. },
  55562. paw: {
  55563. height: math.unit(1.24, "feet"),
  55564. name: "Paw",
  55565. image: {
  55566. source: "./media/characters/vincent-vasroc/paw.svg"
  55567. }
  55568. },
  55569. ear: {
  55570. height: math.unit(0.75, "feet"),
  55571. name: "Ear",
  55572. image: {
  55573. source: "./media/characters/vincent-vasroc/ear.svg"
  55574. }
  55575. },
  55576. },
  55577. [
  55578. {
  55579. name: "Nano",
  55580. height: math.unit(92, "micrometers")
  55581. },
  55582. {
  55583. name: "Normal",
  55584. height: math.unit(7 + 8/12, "feet"),
  55585. default: true
  55586. },
  55587. ]
  55588. ))
  55589. characterMakers.push(() => makeCharacter(
  55590. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55591. {
  55592. frontNsfw: {
  55593. height: math.unit(40, "feet"),
  55594. weight: math.unit(58, "tons"),
  55595. name: "Front (NSFW)",
  55596. image: {
  55597. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55598. extra: 1265/965,
  55599. bottom: 155/1420
  55600. }
  55601. },
  55602. frontSfw: {
  55603. height: math.unit(40, "feet"),
  55604. weight: math.unit(58, "tons"),
  55605. name: "Front (SFW)",
  55606. image: {
  55607. source: "./media/characters/ru-kahn/front-sfw.svg",
  55608. extra: 1265/965,
  55609. bottom: 80/1345
  55610. }
  55611. },
  55612. },
  55613. [
  55614. {
  55615. name: "Small",
  55616. height: math.unit(4, "feet")
  55617. },
  55618. {
  55619. name: "Normal",
  55620. height: math.unit(40, "feet"),
  55621. default: true
  55622. },
  55623. {
  55624. name: "Macro",
  55625. height: math.unit(400, "feet")
  55626. },
  55627. ]
  55628. ))
  55629. characterMakers.push(() => makeCharacter(
  55630. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55631. {
  55632. frontNude: {
  55633. height: math.unit(6 + 5/12, "feet"),
  55634. name: "Front (Nude)",
  55635. image: {
  55636. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55637. extra: 1369/1366,
  55638. bottom: 68/1437
  55639. }
  55640. },
  55641. frontDressed: {
  55642. height: math.unit(6 + 5/12, "feet"),
  55643. name: "Front (Dressed)",
  55644. image: {
  55645. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55646. extra: 1369/1366,
  55647. bottom: 68/1437
  55648. }
  55649. },
  55650. },
  55651. [
  55652. {
  55653. name: "Normal",
  55654. height: math.unit(6 + 5/12, "feet"),
  55655. default: true
  55656. },
  55657. {
  55658. name: "Maximum",
  55659. height: math.unit(1930, "feet")
  55660. },
  55661. ]
  55662. ))
  55663. characterMakers.push(() => makeCharacter(
  55664. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55665. {
  55666. front: {
  55667. height: math.unit(5 + 6/12, "feet"),
  55668. name: "Front",
  55669. image: {
  55670. source: "./media/characters/kaja/front.svg",
  55671. extra: 1874/1514,
  55672. bottom: 117/1991
  55673. }
  55674. },
  55675. },
  55676. [
  55677. {
  55678. name: "Normal",
  55679. height: math.unit(5 + 6/12, "feet"),
  55680. default: true
  55681. },
  55682. ]
  55683. ))
  55684. characterMakers.push(() => makeCharacter(
  55685. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55686. {
  55687. front: {
  55688. height: math.unit(5 + 9/12, "feet"),
  55689. weight: math.unit(200, "lb"),
  55690. name: "Front",
  55691. image: {
  55692. source: "./media/characters/mark-smith/front.svg",
  55693. extra: 1004/943,
  55694. bottom: 58/1062
  55695. }
  55696. },
  55697. back: {
  55698. height: math.unit(5 + 9/12, "feet"),
  55699. weight: math.unit(200, "lb"),
  55700. name: "Back",
  55701. image: {
  55702. source: "./media/characters/mark-smith/back.svg",
  55703. extra: 1023/953,
  55704. bottom: 24/1047
  55705. }
  55706. },
  55707. head: {
  55708. height: math.unit(1.82, "feet"),
  55709. name: "Head",
  55710. image: {
  55711. source: "./media/characters/mark-smith/head.svg"
  55712. }
  55713. },
  55714. hand: {
  55715. height: math.unit(1.4, "feet"),
  55716. name: "Hand",
  55717. image: {
  55718. source: "./media/characters/mark-smith/hand.svg"
  55719. }
  55720. },
  55721. paw: {
  55722. height: math.unit(1.69, "feet"),
  55723. name: "Paw",
  55724. image: {
  55725. source: "./media/characters/mark-smith/paw.svg"
  55726. }
  55727. },
  55728. },
  55729. [
  55730. {
  55731. name: "Micro",
  55732. height: math.unit(0.25, "inches")
  55733. },
  55734. {
  55735. name: "Normal",
  55736. height: math.unit(5 + 9/12, "feet"),
  55737. default: true
  55738. },
  55739. {
  55740. name: "Macro",
  55741. height: math.unit(500, "feet")
  55742. },
  55743. ]
  55744. ))
  55745. characterMakers.push(() => makeCharacter(
  55746. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55747. {
  55748. frontNude: {
  55749. height: math.unit(6, "feet"),
  55750. name: "Front (Nude)",
  55751. image: {
  55752. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55753. extra: 1384/1321,
  55754. bottom: 57/1441
  55755. }
  55756. },
  55757. frontDressed: {
  55758. height: math.unit(6, "feet"),
  55759. name: "Front (Dressed)",
  55760. image: {
  55761. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55762. extra: 1384/1321,
  55763. bottom: 57/1441
  55764. }
  55765. },
  55766. },
  55767. [
  55768. {
  55769. name: "Normal",
  55770. height: math.unit(6, "feet"),
  55771. default: true
  55772. },
  55773. {
  55774. name: "Maximum",
  55775. height: math.unit(1776, "feet")
  55776. },
  55777. ]
  55778. ))
  55779. characterMakers.push(() => makeCharacter(
  55780. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55781. {
  55782. front: {
  55783. height: math.unit(2 + 4/12, "feet"),
  55784. weight: math.unit(350, "lb"),
  55785. name: "Front",
  55786. image: {
  55787. source: "./media/characters/devos/front.svg",
  55788. extra: 958/852,
  55789. bottom: 143/1101
  55790. }
  55791. },
  55792. },
  55793. [
  55794. {
  55795. name: "Base",
  55796. height: math.unit(2 + 4/12, "feet"),
  55797. default: true
  55798. },
  55799. ]
  55800. ))
  55801. characterMakers.push(() => makeCharacter(
  55802. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55803. {
  55804. front: {
  55805. height: math.unit(9 + 2/12, "feet"),
  55806. name: "Front",
  55807. image: {
  55808. source: "./media/characters/hiveheart/front.svg",
  55809. extra: 394/364,
  55810. bottom: 65/459
  55811. }
  55812. },
  55813. back: {
  55814. height: math.unit(9 + 2/12, "feet"),
  55815. name: "Back",
  55816. image: {
  55817. source: "./media/characters/hiveheart/back.svg",
  55818. extra: 374/357,
  55819. bottom: 63/437
  55820. }
  55821. },
  55822. },
  55823. [
  55824. {
  55825. name: "Base",
  55826. height: math.unit(9 + 2/12, "feet"),
  55827. default: true
  55828. },
  55829. ]
  55830. ))
  55831. characterMakers.push(() => makeCharacter(
  55832. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55833. {
  55834. front: {
  55835. height: math.unit(2.5, "inches"),
  55836. weight: math.unit(0.6, "oz"),
  55837. name: "Front",
  55838. image: {
  55839. source: "./media/characters/bryn/front.svg",
  55840. extra: 1480/1205,
  55841. bottom: 27/1507
  55842. }
  55843. },
  55844. back: {
  55845. height: math.unit(2.5, "inches"),
  55846. weight: math.unit(0.6, "oz"),
  55847. name: "Back",
  55848. image: {
  55849. source: "./media/characters/bryn/back.svg",
  55850. extra: 1475/1201,
  55851. bottom: 39/1514
  55852. }
  55853. },
  55854. foot: {
  55855. height: math.unit(0.4, "inches"),
  55856. name: "Foot",
  55857. image: {
  55858. source: "./media/characters/bryn/foot.svg"
  55859. }
  55860. },
  55861. },
  55862. [
  55863. {
  55864. name: "Normal",
  55865. height: math.unit(2.5, "inches"),
  55866. default: true
  55867. },
  55868. ]
  55869. ))
  55870. characterMakers.push(() => makeCharacter(
  55871. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55872. {
  55873. side: {
  55874. height: math.unit(7, "feet"),
  55875. weight: math.unit(657, "kg"),
  55876. name: "Side",
  55877. image: {
  55878. source: "./media/characters/delta/side.svg",
  55879. extra: 781/212,
  55880. bottom: 7/788
  55881. },
  55882. extraAttributes: {
  55883. "wingspan": {
  55884. name: "Wingspan",
  55885. power: 1,
  55886. type: "length",
  55887. base: math.unit(48, "feet")
  55888. },
  55889. "length": {
  55890. name: "Length",
  55891. power: 1,
  55892. type: "length",
  55893. base: math.unit(21, "feet")
  55894. },
  55895. "pawSize": {
  55896. name: "Paw Size",
  55897. power: 2,
  55898. type: "area",
  55899. base: math.unit(1.5*1.4, "feet^2")
  55900. },
  55901. }
  55902. },
  55903. },
  55904. [
  55905. {
  55906. name: "Normal",
  55907. height: math.unit(6, "feet"),
  55908. default: true
  55909. },
  55910. ]
  55911. ))
  55912. characterMakers.push(() => makeCharacter(
  55913. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55914. {
  55915. front: {
  55916. height: math.unit(6, "feet"),
  55917. name: "Front",
  55918. image: {
  55919. source: "./media/characters/pyrow/front.svg",
  55920. extra: 513/486,
  55921. bottom: 14/527
  55922. }
  55923. },
  55924. frontWing: {
  55925. height: math.unit(6, "feet"),
  55926. name: "Front (Wing)",
  55927. image: {
  55928. source: "./media/characters/pyrow/front-wing.svg",
  55929. extra: 539/383,
  55930. bottom: 20/559
  55931. }
  55932. },
  55933. back: {
  55934. height: math.unit(6, "feet"),
  55935. name: "Back",
  55936. image: {
  55937. source: "./media/characters/pyrow/back.svg",
  55938. extra: 500/473,
  55939. bottom: 9/509
  55940. }
  55941. },
  55942. },
  55943. [
  55944. {
  55945. name: "Normal",
  55946. height: math.unit(6, "feet"),
  55947. default: true
  55948. },
  55949. ]
  55950. ))
  55951. characterMakers.push(() => makeCharacter(
  55952. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55953. {
  55954. front: {
  55955. height: math.unit(5, "meters"),
  55956. weight: math.unit(3, "tonnes"),
  55957. name: "Front",
  55958. image: {
  55959. source: "./media/characters/velikan/front.svg",
  55960. extra: 867/744,
  55961. bottom: 71/938
  55962. },
  55963. extraAttributes: {
  55964. "shoeSize": {
  55965. name: "Shoe Size",
  55966. power: 1,
  55967. type: "length",
  55968. base: math.unit(135, "ShoeSizeUK"),
  55969. defaultUnit: "ShoeSizeUK"
  55970. },
  55971. }
  55972. },
  55973. },
  55974. [
  55975. {
  55976. name: "Normal",
  55977. height: math.unit(5, "meters"),
  55978. default: true
  55979. },
  55980. {
  55981. name: "Macro",
  55982. height: math.unit(1, "km")
  55983. },
  55984. {
  55985. name: "Mega Macro",
  55986. height: math.unit(100, "km")
  55987. },
  55988. {
  55989. name: "Giga Macro",
  55990. height: math.unit(2, "megameters")
  55991. },
  55992. {
  55993. name: "Planetary",
  55994. height: math.unit(22, "megameters")
  55995. },
  55996. {
  55997. name: "Solar",
  55998. height: math.unit(8, "gigameters")
  55999. },
  56000. {
  56001. name: "Cosmic",
  56002. height: math.unit(10, "zettameters")
  56003. },
  56004. {
  56005. name: "Omni",
  56006. height: math.unit(9e260, "multiverses")
  56007. },
  56008. ]
  56009. ))
  56010. characterMakers.push(() => makeCharacter(
  56011. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56012. {
  56013. front: {
  56014. height: math.unit(4 + 3/12, "feet"),
  56015. weight: math.unit(90, "lb"),
  56016. name: "Front",
  56017. image: {
  56018. source: "./media/characters/sabiki/front.svg",
  56019. extra: 1662/1423,
  56020. bottom: 65/1727
  56021. }
  56022. },
  56023. },
  56024. [
  56025. {
  56026. name: "Normal",
  56027. height: math.unit(4 + 3/12, "feet"),
  56028. default: true
  56029. },
  56030. ]
  56031. ))
  56032. characterMakers.push(() => makeCharacter(
  56033. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56034. {
  56035. frontSfw: {
  56036. height: math.unit(2, "mm"),
  56037. name: "Front (SFW)",
  56038. image: {
  56039. source: "./media/characters/carmel/front-sfw.svg",
  56040. extra: 1131/1006,
  56041. bottom: 66/1197
  56042. }
  56043. },
  56044. frontNsfw: {
  56045. height: math.unit(2, "mm"),
  56046. name: "Front (NSFW)",
  56047. image: {
  56048. source: "./media/characters/carmel/front-nsfw.svg",
  56049. extra: 1131/1006,
  56050. bottom: 66/1197
  56051. }
  56052. },
  56053. foot: {
  56054. height: math.unit(0.3, "mm"),
  56055. name: "Foot",
  56056. image: {
  56057. source: "./media/characters/carmel/foot.svg"
  56058. }
  56059. },
  56060. tongue: {
  56061. height: math.unit(0.71, "mm"),
  56062. name: "Tongue",
  56063. image: {
  56064. source: "./media/characters/carmel/tongue.svg"
  56065. }
  56066. },
  56067. dick: {
  56068. height: math.unit(0.085, "mm"),
  56069. name: "Dick",
  56070. image: {
  56071. source: "./media/characters/carmel/dick.svg"
  56072. }
  56073. },
  56074. },
  56075. [
  56076. {
  56077. name: "Micro",
  56078. height: math.unit(2, "mm"),
  56079. default: true
  56080. },
  56081. {
  56082. name: "Normal",
  56083. height: math.unit(4 + 8/12, "feet")
  56084. },
  56085. {
  56086. name: "Mega Macro",
  56087. height: math.unit(250, "feet")
  56088. },
  56089. {
  56090. name: "BIGGER",
  56091. height: math.unit(1000, "feet")
  56092. },
  56093. {
  56094. name: "BIGGEST",
  56095. height: math.unit(2, "miles")
  56096. },
  56097. ]
  56098. ))
  56099. characterMakers.push(() => makeCharacter(
  56100. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56101. {
  56102. front: {
  56103. height: math.unit(6.5, "feet"),
  56104. weight: math.unit(198, "lb"),
  56105. name: "Front",
  56106. image: {
  56107. source: "./media/characters/tamani/anthro.svg",
  56108. extra: 930/890,
  56109. bottom: 34/964
  56110. },
  56111. form: "anthro",
  56112. default: true
  56113. },
  56114. side: {
  56115. height: math.unit(6, "feet"),
  56116. weight: math.unit(198*2, "lb"),
  56117. name: "Side",
  56118. image: {
  56119. source: "./media/characters/tamani/feral.svg",
  56120. extra: 559/519,
  56121. bottom: 43/602
  56122. },
  56123. form: "feral"
  56124. },
  56125. },
  56126. [
  56127. {
  56128. name: "Normal",
  56129. height: math.unit(6.5, "feet"),
  56130. default: true,
  56131. form: "anthro"
  56132. },
  56133. {
  56134. name: "Normal",
  56135. height: math.unit(6, "feet"),
  56136. default: true,
  56137. form: "feral"
  56138. },
  56139. ],
  56140. {
  56141. "anthro": {
  56142. name: "Anthro",
  56143. default: true
  56144. },
  56145. "feral": {
  56146. name: "Feral",
  56147. },
  56148. }
  56149. ))
  56150. characterMakers.push(() => makeCharacter(
  56151. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56152. {
  56153. front: {
  56154. height: math.unit(4 + 1/12, "feet"),
  56155. weight: math.unit(114, "lb"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/dex/front.svg",
  56159. extra: 787/680,
  56160. bottom: 18/805
  56161. }
  56162. },
  56163. side: {
  56164. height: math.unit(4 + 1/12, "feet"),
  56165. weight: math.unit(114, "lb"),
  56166. name: "Side",
  56167. image: {
  56168. source: "./media/characters/dex/side.svg",
  56169. extra: 785/680,
  56170. bottom: 12/797
  56171. }
  56172. },
  56173. back: {
  56174. height: math.unit(4 + 1/12, "feet"),
  56175. weight: math.unit(114, "lb"),
  56176. name: "Back",
  56177. image: {
  56178. source: "./media/characters/dex/back.svg",
  56179. extra: 785/681,
  56180. bottom: 17/802
  56181. }
  56182. },
  56183. loungewear: {
  56184. height: math.unit(4 + 1/12, "feet"),
  56185. weight: math.unit(114, "lb"),
  56186. name: "Loungewear",
  56187. image: {
  56188. source: "./media/characters/dex/loungewear.svg",
  56189. extra: 787/680,
  56190. bottom: 18/805
  56191. }
  56192. },
  56193. workout: {
  56194. height: math.unit(4 + 1/12, "feet"),
  56195. weight: math.unit(114, "lb"),
  56196. name: "Workout",
  56197. image: {
  56198. source: "./media/characters/dex/workout.svg",
  56199. extra: 787/680,
  56200. bottom: 18/805
  56201. }
  56202. },
  56203. schoolUniform: {
  56204. height: math.unit(4 + 1/12, "feet"),
  56205. weight: math.unit(114, "lb"),
  56206. name: "School-uniform",
  56207. image: {
  56208. source: "./media/characters/dex/school-uniform.svg",
  56209. extra: 787/680,
  56210. bottom: 18/805
  56211. }
  56212. },
  56213. maw: {
  56214. height: math.unit(0.55, "feet"),
  56215. name: "Maw",
  56216. image: {
  56217. source: "./media/characters/dex/maw.svg"
  56218. }
  56219. },
  56220. paw: {
  56221. height: math.unit(0.87, "feet"),
  56222. name: "Paw",
  56223. image: {
  56224. source: "./media/characters/dex/paw.svg"
  56225. }
  56226. },
  56227. bust: {
  56228. height: math.unit(1.67, "feet"),
  56229. name: "Bust",
  56230. image: {
  56231. source: "./media/characters/dex/bust.svg"
  56232. }
  56233. },
  56234. },
  56235. [
  56236. {
  56237. name: "Normal",
  56238. height: math.unit(4 + 1/12, "feet"),
  56239. default: true
  56240. },
  56241. ]
  56242. ))
  56243. characterMakers.push(() => makeCharacter(
  56244. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56245. {
  56246. front: {
  56247. height: math.unit(4 + 3/12, "feet"),
  56248. weight: math.unit(60, "lb"),
  56249. name: "Front",
  56250. image: {
  56251. source: "./media/characters/silke/front.svg",
  56252. extra: 1334/1122,
  56253. bottom: 21/1355
  56254. }
  56255. },
  56256. back: {
  56257. height: math.unit(4 + 3/12, "feet"),
  56258. weight: math.unit(60, "lb"),
  56259. name: "Back",
  56260. image: {
  56261. source: "./media/characters/silke/back.svg",
  56262. extra: 1328/1092,
  56263. bottom: 16/1344
  56264. }
  56265. },
  56266. dressed: {
  56267. height: math.unit(4 + 3/12, "feet"),
  56268. weight: math.unit(60, "lb"),
  56269. name: "Dressed",
  56270. image: {
  56271. source: "./media/characters/silke/dressed.svg",
  56272. extra: 1334/1122,
  56273. bottom: 43/1377
  56274. }
  56275. },
  56276. },
  56277. [
  56278. {
  56279. name: "Normal",
  56280. height: math.unit(4 + 3/12, "feet"),
  56281. default: true
  56282. },
  56283. ]
  56284. ))
  56285. characterMakers.push(() => makeCharacter(
  56286. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56287. {
  56288. front: {
  56289. height: math.unit(1.58, "meters"),
  56290. weight: math.unit(47, "kg"),
  56291. name: "Front",
  56292. image: {
  56293. source: "./media/characters/wireshark/front.svg",
  56294. extra: 883/838,
  56295. bottom: 66/949
  56296. }
  56297. },
  56298. },
  56299. [
  56300. {
  56301. name: "Normal",
  56302. height: math.unit(1.58, "meters"),
  56303. default: true
  56304. },
  56305. ]
  56306. ))
  56307. characterMakers.push(() => makeCharacter(
  56308. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56309. {
  56310. front: {
  56311. height: math.unit(6, "meters"),
  56312. weight: math.unit(15000, "kg"),
  56313. name: "Front",
  56314. image: {
  56315. source: "./media/characters/gallagher/front.svg",
  56316. extra: 532/493,
  56317. bottom: 0/532
  56318. }
  56319. },
  56320. },
  56321. [
  56322. {
  56323. name: "Normal",
  56324. height: math.unit(6, "meters"),
  56325. default: true
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56331. {
  56332. front: {
  56333. height: math.unit(2.4, "meters"),
  56334. weight: math.unit(270, "kg"),
  56335. name: "Front",
  56336. image: {
  56337. source: "./media/characters/alice/front.svg",
  56338. extra: 950/900,
  56339. bottom: 36/986
  56340. }
  56341. },
  56342. side: {
  56343. height: math.unit(2.4, "meters"),
  56344. weight: math.unit(270, "kg"),
  56345. name: "Side",
  56346. image: {
  56347. source: "./media/characters/alice/side.svg",
  56348. extra: 921/876,
  56349. bottom: 19/940
  56350. }
  56351. },
  56352. dressed: {
  56353. height: math.unit(2.4, "meters"),
  56354. weight: math.unit(270, "kg"),
  56355. name: "Dressed",
  56356. image: {
  56357. source: "./media/characters/alice/dressed.svg",
  56358. extra: 905/850,
  56359. bottom: 81/986
  56360. }
  56361. },
  56362. fishnet: {
  56363. height: math.unit(2.4, "meters"),
  56364. weight: math.unit(270, "kg"),
  56365. name: "Fishnet",
  56366. image: {
  56367. source: "./media/characters/alice/fishnet.svg",
  56368. extra: 905/850,
  56369. bottom: 81/986
  56370. }
  56371. },
  56372. },
  56373. [
  56374. {
  56375. name: "Normal",
  56376. height: math.unit(2.4, "meters"),
  56377. default: true
  56378. },
  56379. ]
  56380. ))
  56381. characterMakers.push(() => makeCharacter(
  56382. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56383. {
  56384. front: {
  56385. height: math.unit(175.25, "feet"),
  56386. name: "Front",
  56387. image: {
  56388. source: "./media/characters/fio/front.svg",
  56389. extra: 1883/1591,
  56390. bottom: 34/1917
  56391. }
  56392. },
  56393. },
  56394. [
  56395. {
  56396. name: "Normal",
  56397. height: math.unit(175.25, "cm"),
  56398. default: true
  56399. },
  56400. ]
  56401. ))
  56402. characterMakers.push(() => makeCharacter(
  56403. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56404. {
  56405. side: {
  56406. height: math.unit(6, "meters"),
  56407. weight: math.unit(3400, "kg"),
  56408. preyCapacity: math.unit(1700, "liters"),
  56409. name: "Side",
  56410. image: {
  56411. source: "./media/characters/hass/side.svg",
  56412. extra: 1058/997,
  56413. bottom: 177/1235
  56414. }
  56415. },
  56416. feeding: {
  56417. height: math.unit(6*0.63, "meters"),
  56418. weight: math.unit(3400, "kg"),
  56419. preyCapacity: math.unit(1700, "liters"),
  56420. name: "Feeding",
  56421. image: {
  56422. source: "./media/characters/hass/feeding.svg",
  56423. extra: 689/579,
  56424. bottom: 146/835
  56425. }
  56426. },
  56427. guts: {
  56428. height: math.unit(6, "meters"),
  56429. weight: math.unit(3400, "kg"),
  56430. name: "Guts",
  56431. image: {
  56432. source: "./media/characters/hass/guts.svg",
  56433. extra: 1223/1198,
  56434. bottom: 182/1405
  56435. }
  56436. },
  56437. dickFront: {
  56438. height: math.unit(1.4, "meters"),
  56439. name: "Dick (Front)",
  56440. image: {
  56441. source: "./media/characters/hass/dick-front.svg"
  56442. }
  56443. },
  56444. dickSide: {
  56445. height: math.unit(1.3, "meters"),
  56446. name: "Dick (Side)",
  56447. image: {
  56448. source: "./media/characters/hass/dick-side.svg"
  56449. }
  56450. },
  56451. dickBack: {
  56452. height: math.unit(1.4, "meters"),
  56453. name: "Dick (Back)",
  56454. image: {
  56455. source: "./media/characters/hass/dick-back.svg"
  56456. }
  56457. },
  56458. },
  56459. [
  56460. {
  56461. name: "Normal",
  56462. height: math.unit(6, "meters"),
  56463. default: true
  56464. },
  56465. ]
  56466. ))
  56467. characterMakers.push(() => makeCharacter(
  56468. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56469. {
  56470. front: {
  56471. height: math.unit(4, "feet"),
  56472. weight: math.unit(60, "lb"),
  56473. name: "Front",
  56474. image: {
  56475. source: "./media/characters/hickory-finnegan/front.svg",
  56476. extra: 444/411,
  56477. bottom: 10/454
  56478. }
  56479. },
  56480. side: {
  56481. height: math.unit(4, "feet"),
  56482. weight: math.unit(60, "lb"),
  56483. name: "Side",
  56484. image: {
  56485. source: "./media/characters/hickory-finnegan/side.svg",
  56486. extra: 444/411,
  56487. bottom: 10/454
  56488. }
  56489. },
  56490. back: {
  56491. height: math.unit(4, "feet"),
  56492. weight: math.unit(60, "lb"),
  56493. name: "Back",
  56494. image: {
  56495. source: "./media/characters/hickory-finnegan/back.svg",
  56496. extra: 444/411,
  56497. bottom: 10/454
  56498. }
  56499. },
  56500. },
  56501. [
  56502. {
  56503. name: "Normal",
  56504. height: math.unit(4, "feet"),
  56505. default: true
  56506. },
  56507. ]
  56508. ))
  56509. characterMakers.push(() => makeCharacter(
  56510. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56511. {
  56512. snivy_front: {
  56513. height: math.unit(2, "feet"),
  56514. weight: math.unit(17.9, "lb"),
  56515. name: "Front",
  56516. image: {
  56517. source: "./media/characters/robin-phox/snivy-front.svg",
  56518. extra: 569/504,
  56519. bottom: 33/602
  56520. },
  56521. form: "snivy",
  56522. default: true
  56523. },
  56524. snivy_frontNsfw: {
  56525. height: math.unit(2, "feet"),
  56526. weight: math.unit(17.9, "lb"),
  56527. name: "Front (NSFW)",
  56528. image: {
  56529. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56530. extra: 569/504,
  56531. bottom: 33/602
  56532. },
  56533. form: "snivy",
  56534. },
  56535. snivy_back: {
  56536. height: math.unit(2, "feet"),
  56537. weight: math.unit(17.9, "lb"),
  56538. name: "Back",
  56539. image: {
  56540. source: "./media/characters/robin-phox/snivy-back.svg",
  56541. extra: 577/508,
  56542. bottom: 21/598
  56543. },
  56544. form: "snivy",
  56545. },
  56546. snivy_foot: {
  56547. height: math.unit(0.68, "feet"),
  56548. name: "Foot",
  56549. image: {
  56550. source: "./media/characters/robin-phox/snivy-foot.svg"
  56551. },
  56552. form: "snivy",
  56553. },
  56554. snivy_sole: {
  56555. height: math.unit(0.68, "feet"),
  56556. name: "Sole",
  56557. image: {
  56558. source: "./media/characters/robin-phox/snivy-sole.svg"
  56559. },
  56560. form: "snivy",
  56561. },
  56562. yoshi_front: {
  56563. height: math.unit(6, "feet"),
  56564. weight: math.unit(150, "lb"),
  56565. name: "Front",
  56566. image: {
  56567. source: "./media/characters/robin-phox/yoshi-front.svg",
  56568. extra: 890/792,
  56569. bottom: 29/919
  56570. },
  56571. form: "yoshi",
  56572. default: true
  56573. },
  56574. yoshi_frontNsfw: {
  56575. height: math.unit(6, "feet"),
  56576. weight: math.unit(150, "lb"),
  56577. name: "Front (NSFW)",
  56578. image: {
  56579. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56580. extra: 890/792,
  56581. bottom: 29/919
  56582. },
  56583. form: "yoshi",
  56584. },
  56585. yoshi_back: {
  56586. height: math.unit(6, "feet"),
  56587. weight: math.unit(150, "lb"),
  56588. name: "Back",
  56589. image: {
  56590. source: "./media/characters/robin-phox/yoshi-back.svg",
  56591. extra: 890/792,
  56592. bottom: 29/919
  56593. },
  56594. form: "yoshi",
  56595. },
  56596. yoshi_foot: {
  56597. height: math.unit(1.5, "feet"),
  56598. name: "Foot",
  56599. image: {
  56600. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56601. },
  56602. form: "yoshi",
  56603. },
  56604. delphox_front: {
  56605. height: math.unit(4 + 11/12, "feet"),
  56606. weight: math.unit(86, "lb"),
  56607. name: "Front",
  56608. image: {
  56609. source: "./media/characters/robin-phox/delphox-front.svg",
  56610. extra: 1266/1069,
  56611. bottom: 32/1298
  56612. },
  56613. form: "delphox",
  56614. default: true
  56615. },
  56616. delphox_frontNsfw: {
  56617. height: math.unit(4 + 11/12, "feet"),
  56618. weight: math.unit(86, "lb"),
  56619. name: "Front (NSFW)",
  56620. image: {
  56621. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56622. extra: 1266/1069,
  56623. bottom: 32/1298
  56624. },
  56625. form: "delphox",
  56626. },
  56627. delphox_back: {
  56628. height: math.unit(4 + 11/12, "feet"),
  56629. weight: math.unit(86, "lb"),
  56630. name: "Back",
  56631. image: {
  56632. source: "./media/characters/robin-phox/delphox-back.svg",
  56633. extra: 1269/1083,
  56634. bottom: 15/1284
  56635. },
  56636. form: "delphox",
  56637. },
  56638. mienshao_front: {
  56639. height: math.unit(4 + 7/12, "feet"),
  56640. weight: math.unit(78.3, "lb"),
  56641. name: "Front",
  56642. image: {
  56643. source: "./media/characters/robin-phox/mienshao-front.svg",
  56644. extra: 1052/970,
  56645. bottom: 108/1160
  56646. },
  56647. form: "mienshao",
  56648. default: true
  56649. },
  56650. mienshao_frontNsfw: {
  56651. height: math.unit(4 + 7/12, "feet"),
  56652. weight: math.unit(78.3, "lb"),
  56653. name: "Front (NSFW)",
  56654. image: {
  56655. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56656. extra: 1052/970,
  56657. bottom: 108/1160
  56658. },
  56659. form: "mienshao",
  56660. },
  56661. mienshao_back: {
  56662. height: math.unit(4 + 7/12, "feet"),
  56663. weight: math.unit(78.3, "lb"),
  56664. name: "Back",
  56665. image: {
  56666. source: "./media/characters/robin-phox/mienshao-back.svg",
  56667. extra: 1102/982,
  56668. bottom: 32/1134
  56669. },
  56670. form: "mienshao",
  56671. },
  56672. inteleon_front: {
  56673. height: math.unit(6 + 3/12, "feet"),
  56674. weight: math.unit(99.6, "lb"),
  56675. name: "Front",
  56676. image: {
  56677. source: "./media/characters/robin-phox/inteleon-front.svg",
  56678. extra: 910/799,
  56679. bottom: 76/986
  56680. },
  56681. form: "inteleon",
  56682. default: true
  56683. },
  56684. inteleon_frontNsfw: {
  56685. height: math.unit(6 + 3/12, "feet"),
  56686. weight: math.unit(99.6, "lb"),
  56687. name: "Front (NSFW)",
  56688. image: {
  56689. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56690. extra: 910/799,
  56691. bottom: 76/986
  56692. },
  56693. form: "inteleon",
  56694. },
  56695. inteleon_back: {
  56696. height: math.unit(6 + 3/12, "feet"),
  56697. weight: math.unit(99.6, "lb"),
  56698. name: "Back",
  56699. image: {
  56700. source: "./media/characters/robin-phox/inteleon-back.svg",
  56701. extra: 907/796,
  56702. bottom: 25/932
  56703. },
  56704. form: "inteleon",
  56705. },
  56706. reshiram_front: {
  56707. height: math.unit(10 + 6/12, "feet"),
  56708. weight: math.unit(727.5, "lb"),
  56709. name: "Front",
  56710. image: {
  56711. source: "./media/characters/robin-phox/reshiram-front.svg",
  56712. extra: 1198/940,
  56713. bottom: 123/1321
  56714. },
  56715. form: "reshiram",
  56716. },
  56717. reshiram_frontNsfw: {
  56718. height: math.unit(10 + 6/12, "feet"),
  56719. weight: math.unit(727.5, "lb"),
  56720. name: "Front-nsfw",
  56721. image: {
  56722. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56723. extra: 1198/940,
  56724. bottom: 123/1321
  56725. },
  56726. form: "reshiram",
  56727. },
  56728. reshiram_back: {
  56729. height: math.unit(10 + 6/12, "feet"),
  56730. weight: math.unit(727.5, "lb"),
  56731. name: "Back",
  56732. image: {
  56733. source: "./media/characters/robin-phox/reshiram-back.svg",
  56734. extra: 1024/904,
  56735. bottom: 85/1109
  56736. },
  56737. form: "reshiram",
  56738. },
  56739. samurott_front: {
  56740. height: math.unit(8, "feet"),
  56741. weight: math.unit(208.6, "lb"),
  56742. name: "Front",
  56743. image: {
  56744. source: "./media/characters/robin-phox/samurott-front.svg",
  56745. extra: 1048/984,
  56746. bottom: 100/1148
  56747. },
  56748. form: "samurott",
  56749. },
  56750. samurott_frontNsfw: {
  56751. height: math.unit(8, "feet"),
  56752. weight: math.unit(208.6, "lb"),
  56753. name: "Front-nsfw",
  56754. image: {
  56755. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56756. extra: 1048/984,
  56757. bottom: 100/1148
  56758. },
  56759. form: "samurott",
  56760. },
  56761. samurott_back: {
  56762. height: math.unit(8, "feet"),
  56763. weight: math.unit(208.6, "lb"),
  56764. name: "Back",
  56765. image: {
  56766. source: "./media/characters/robin-phox/samurott-back.svg",
  56767. extra: 1110/1042,
  56768. bottom: 12/1122
  56769. },
  56770. form: "samurott",
  56771. },
  56772. samurott_feral: {
  56773. height: math.unit(4 + 11/12, "feet"),
  56774. weight: math.unit(208.6, "lb"),
  56775. name: "Feral",
  56776. image: {
  56777. source: "./media/characters/robin-phox/samurott-feral.svg",
  56778. extra: 766/681,
  56779. bottom: 108/874
  56780. },
  56781. form: "samurott",
  56782. },
  56783. },
  56784. [
  56785. {
  56786. name: "Normal",
  56787. height: math.unit(2, "feet"),
  56788. default: true,
  56789. form: "snivy"
  56790. },
  56791. {
  56792. name: "Normal",
  56793. height: math.unit(6, "feet"),
  56794. default: true,
  56795. form: "yoshi"
  56796. },
  56797. {
  56798. name: "Normal",
  56799. height: math.unit(4 + 11/12, "feet"),
  56800. default: true,
  56801. form: "delphox"
  56802. },
  56803. {
  56804. name: "Normal",
  56805. height: math.unit(4 + 7/12, "feet"),
  56806. default: true,
  56807. form: "mienshao"
  56808. },
  56809. {
  56810. name: "Normal",
  56811. height: math.unit(6 + 3/12, "feet"),
  56812. default: true,
  56813. form: "inteleon"
  56814. },
  56815. {
  56816. name: "Normal",
  56817. height: math.unit(10 + 6/12, "feet"),
  56818. default: true,
  56819. form: "reshiram"
  56820. },
  56821. {
  56822. name: "Normal",
  56823. height: math.unit(8, "feet"),
  56824. default: true,
  56825. form: "samurott"
  56826. },
  56827. {
  56828. name: "Macro",
  56829. height: math.unit(500, "feet"),
  56830. allForms: true
  56831. },
  56832. {
  56833. name: "Mega Macro",
  56834. height: math.unit(10, "earths"),
  56835. allForms: true
  56836. },
  56837. {
  56838. name: "Giga Macro",
  56839. height: math.unit(1, "galaxy"),
  56840. allForms: true
  56841. },
  56842. {
  56843. name: "Godly Macro",
  56844. height: math.unit(1e10, "multiverses"),
  56845. allForms: true
  56846. },
  56847. ],
  56848. {
  56849. "snivy": {
  56850. name: "Snivy",
  56851. default: true
  56852. },
  56853. "yoshi": {
  56854. name: "Yoshi",
  56855. },
  56856. "delphox": {
  56857. name: "Delphox",
  56858. },
  56859. "mienshao": {
  56860. name: "Mienshao",
  56861. },
  56862. "inteleon": {
  56863. name: "Inteleon",
  56864. },
  56865. "reshiram": {
  56866. name: "Reshiram",
  56867. },
  56868. "samurott": {
  56869. name: "Samurott",
  56870. },
  56871. }
  56872. ))
  56873. characterMakers.push(() => makeCharacter(
  56874. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56875. {
  56876. front: {
  56877. height: math.unit(4, "feet"),
  56878. name: "Front",
  56879. image: {
  56880. source: "./media/characters/ash-leung/front.svg",
  56881. extra: 1916/1792,
  56882. bottom: 50/1966
  56883. }
  56884. },
  56885. },
  56886. [
  56887. {
  56888. name: "Atomic",
  56889. height: math.unit(1, "angstrom")
  56890. },
  56891. {
  56892. name: "Microscopic",
  56893. height: math.unit(4000, "angstroms")
  56894. },
  56895. {
  56896. name: "Speck",
  56897. height: math.unit(1, "mm")
  56898. },
  56899. {
  56900. name: "Small",
  56901. height: math.unit(1, "inch")
  56902. },
  56903. {
  56904. name: "Normal",
  56905. height: math.unit(4, "feet"),
  56906. default: true
  56907. },
  56908. ]
  56909. ))
  56910. characterMakers.push(() => makeCharacter(
  56911. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56912. {
  56913. frontDressed: {
  56914. height: math.unit(2.08, "meters"),
  56915. weight: math.unit(175, "lb"),
  56916. name: "Front (Dressed)",
  56917. image: {
  56918. source: "./media/characters/carie/front-dressed.svg",
  56919. extra: 456/417,
  56920. bottom: 7/463
  56921. }
  56922. },
  56923. backDressed: {
  56924. height: math.unit(2.08, "meters"),
  56925. weight: math.unit(175, "lb"),
  56926. name: "Back (Dressed)",
  56927. image: {
  56928. source: "./media/characters/carie/back-dressed.svg",
  56929. extra: 455/414,
  56930. bottom: 11/466
  56931. }
  56932. },
  56933. front: {
  56934. height: math.unit(2, "meters"),
  56935. weight: math.unit(175, "lb"),
  56936. name: "Front",
  56937. image: {
  56938. source: "./media/characters/carie/front.svg",
  56939. extra: 438/399,
  56940. bottom: 12/450
  56941. }
  56942. },
  56943. back: {
  56944. height: math.unit(2, "meters"),
  56945. weight: math.unit(175, "lb"),
  56946. name: "Back",
  56947. image: {
  56948. source: "./media/characters/carie/back.svg",
  56949. extra: 438/397,
  56950. bottom: 7/445
  56951. }
  56952. },
  56953. },
  56954. [
  56955. {
  56956. name: "Normal",
  56957. height: math.unit(2.08, "meters"),
  56958. default: true
  56959. },
  56960. {
  56961. name: "Macro",
  56962. height: math.unit(2.08e3, "meters")
  56963. },
  56964. {
  56965. name: "Mega Macro",
  56966. height: math.unit(2.08e6, "meters")
  56967. },
  56968. {
  56969. name: "Giga Macro",
  56970. height: math.unit(2.08e9, "meters")
  56971. },
  56972. {
  56973. name: "Tera Macro",
  56974. height: math.unit(2.08e12, "meters")
  56975. },
  56976. {
  56977. name: "Peta Macro",
  56978. height: math.unit(2.08e15, "meters")
  56979. },
  56980. {
  56981. name: "Exa Macro",
  56982. height: math.unit(2.08e18, "meters")
  56983. },
  56984. {
  56985. name: "Zetta Macro",
  56986. height: math.unit(2.08e21, "meters")
  56987. },
  56988. {
  56989. name: "Yotta Macro",
  56990. height: math.unit(2.08e24, "meters")
  56991. },
  56992. ]
  56993. ))
  56994. characterMakers.push(() => makeCharacter(
  56995. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56996. {
  56997. front: {
  56998. height: math.unit(5 + 2/12, "feet"),
  56999. weight: math.unit(120, "lb"),
  57000. name: "Front",
  57001. image: {
  57002. source: "./media/characters/sai-bree/front.svg",
  57003. extra: 1843/1702,
  57004. bottom: 91/1934
  57005. }
  57006. },
  57007. back: {
  57008. height: math.unit(5 + 2/12, "feet"),
  57009. weight: math.unit(120, "lb"),
  57010. name: "Back",
  57011. image: {
  57012. source: "./media/characters/sai-bree/back.svg",
  57013. extra: 1809/1637,
  57014. bottom: 56/1865
  57015. }
  57016. },
  57017. },
  57018. [
  57019. {
  57020. name: "Normal",
  57021. height: math.unit(5 + 2/12, "feet"),
  57022. default: true
  57023. },
  57024. {
  57025. name: "Macro",
  57026. height: math.unit(500, "feet")
  57027. },
  57028. ]
  57029. ))
  57030. characterMakers.push(() => makeCharacter(
  57031. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57032. {
  57033. side: {
  57034. height: math.unit(0.77, "meters"),
  57035. weight: math.unit(120, "lb"),
  57036. name: "Side",
  57037. image: {
  57038. source: "./media/characters/davwyn/side.svg",
  57039. extra: 1557/1225,
  57040. bottom: 131/1688
  57041. }
  57042. },
  57043. front: {
  57044. height: math.unit(0.835410, "meters"),
  57045. weight: math.unit(120, "lb"),
  57046. name: "Front",
  57047. image: {
  57048. source: "./media/characters/davwyn/front.svg",
  57049. extra: 870/843,
  57050. bottom: 175/1045
  57051. }
  57052. },
  57053. },
  57054. [
  57055. {
  57056. name: "Minidrake",
  57057. height: math.unit(0.77/4, "meters")
  57058. },
  57059. {
  57060. name: "Normal",
  57061. height: math.unit(0.77, "meters"),
  57062. default: true
  57063. },
  57064. ]
  57065. ))
  57066. characterMakers.push(() => makeCharacter(
  57067. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57068. {
  57069. front: {
  57070. height: math.unit(10 + 3/12, "feet"),
  57071. weight: math.unit(2857, "lb"),
  57072. name: "Front",
  57073. image: {
  57074. source: "./media/characters/balans/front.svg",
  57075. extra: 427/402,
  57076. bottom: 26/453
  57077. }
  57078. },
  57079. side: {
  57080. height: math.unit(10 + 3/12, "feet"),
  57081. weight: math.unit(2857, "lb"),
  57082. name: "Side",
  57083. image: {
  57084. source: "./media/characters/balans/side.svg",
  57085. extra: 397/371,
  57086. bottom: 17/414
  57087. }
  57088. },
  57089. back: {
  57090. height: math.unit(10 + 3/12, "feet"),
  57091. weight: math.unit(2857, "lb"),
  57092. name: "Back",
  57093. image: {
  57094. source: "./media/characters/balans/back.svg",
  57095. extra: 408/381,
  57096. bottom: 14/422
  57097. }
  57098. },
  57099. hand: {
  57100. height: math.unit(1.15, "feet"),
  57101. name: "Hand",
  57102. image: {
  57103. source: "./media/characters/balans/hand.svg"
  57104. }
  57105. },
  57106. footRest: {
  57107. height: math.unit(3.1, "feet"),
  57108. name: "Foot (Rest)",
  57109. image: {
  57110. source: "./media/characters/balans/foot-rest.svg"
  57111. }
  57112. },
  57113. footActive: {
  57114. height: math.unit(3.5, "feet"),
  57115. name: "Foot (Active)",
  57116. image: {
  57117. source: "./media/characters/balans/foot-active.svg"
  57118. }
  57119. },
  57120. },
  57121. [
  57122. {
  57123. name: "Normal",
  57124. height: math.unit(10 + 3/12, "feet"),
  57125. default: true
  57126. },
  57127. ]
  57128. ))
  57129. characterMakers.push(() => makeCharacter(
  57130. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57131. {
  57132. side: {
  57133. height: math.unit(9, "meters"),
  57134. weight: math.unit(114, "tonnes"),
  57135. name: "Side",
  57136. image: {
  57137. source: "./media/characters/eldkveikir/side.svg",
  57138. extra: 1927/338,
  57139. bottom: 42/1969
  57140. }
  57141. },
  57142. sitting: {
  57143. height: math.unit(13.4, "meters"),
  57144. weight: math.unit(114, "tonnes"),
  57145. name: "Sitting",
  57146. image: {
  57147. source: "./media/characters/eldkveikir/sitting.svg",
  57148. extra: 1108/963,
  57149. bottom: 610/1718
  57150. }
  57151. },
  57152. maw: {
  57153. height: math.unit(8.36, "meters"),
  57154. name: "Maw",
  57155. image: {
  57156. source: "./media/characters/eldkveikir/maw.svg"
  57157. }
  57158. },
  57159. hand: {
  57160. height: math.unit(4.84, "meters"),
  57161. name: "Hand",
  57162. image: {
  57163. source: "./media/characters/eldkveikir/hand.svg"
  57164. }
  57165. },
  57166. foot: {
  57167. height: math.unit(6.9, "meters"),
  57168. name: "Foot",
  57169. image: {
  57170. source: "./media/characters/eldkveikir/foot.svg"
  57171. }
  57172. },
  57173. genitals: {
  57174. height: math.unit(9.6, "meters"),
  57175. name: "Genitals",
  57176. image: {
  57177. source: "./media/characters/eldkveikir/genitals.svg"
  57178. }
  57179. },
  57180. },
  57181. [
  57182. {
  57183. name: "Normal",
  57184. height: math.unit(9, "meters"),
  57185. default: true
  57186. },
  57187. ]
  57188. ))
  57189. characterMakers.push(() => makeCharacter(
  57190. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57191. {
  57192. front: {
  57193. height: math.unit(14, "feet"),
  57194. weight: math.unit(4100, "lb"),
  57195. name: "Front",
  57196. image: {
  57197. source: "./media/characters/arrow/front.svg",
  57198. extra: 330/318,
  57199. bottom: 56/386
  57200. }
  57201. },
  57202. },
  57203. [
  57204. {
  57205. name: "Normal",
  57206. height: math.unit(14, "feet"),
  57207. default: true
  57208. },
  57209. {
  57210. name: "Minimacro",
  57211. height: math.unit(63, "feet")
  57212. },
  57213. {
  57214. name: "Macro",
  57215. height: math.unit(630, "feet")
  57216. },
  57217. {
  57218. name: "Megamacro",
  57219. height: math.unit(12600, "feet")
  57220. },
  57221. {
  57222. name: "Gigamacro",
  57223. height: math.unit(18000, "miles")
  57224. },
  57225. ]
  57226. ))
  57227. characterMakers.push(() => makeCharacter(
  57228. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57229. {
  57230. front: {
  57231. height: math.unit(10, "feet"),
  57232. weight: math.unit(2.4, "tons"),
  57233. name: "Front",
  57234. image: {
  57235. source: "./media/characters/3yk-k0-unit/front.svg",
  57236. extra: 573/561,
  57237. bottom: 33/606
  57238. }
  57239. },
  57240. back: {
  57241. height: math.unit(10, "feet"),
  57242. weight: math.unit(2.4, "tons"),
  57243. name: "Back",
  57244. image: {
  57245. source: "./media/characters/3yk-k0-unit/back.svg",
  57246. extra: 614/573,
  57247. bottom: 32/646
  57248. }
  57249. },
  57250. maw: {
  57251. height: math.unit(2.15, "feet"),
  57252. name: "Maw",
  57253. image: {
  57254. source: "./media/characters/3yk-k0-unit/maw.svg"
  57255. }
  57256. },
  57257. },
  57258. [
  57259. {
  57260. name: "Normal",
  57261. height: math.unit(10, "feet"),
  57262. default: true
  57263. },
  57264. ]
  57265. ))
  57266. characterMakers.push(() => makeCharacter(
  57267. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57268. {
  57269. front: {
  57270. height: math.unit(8 + 8/12, "feet"),
  57271. name: "Front",
  57272. image: {
  57273. source: "./media/characters/nemo/front.svg",
  57274. extra: 1308/1217,
  57275. bottom: 57/1365
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Normal",
  57282. height: math.unit(8 + 8/12, "feet"),
  57283. default: true
  57284. },
  57285. ]
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(8, "feet"),
  57292. weight: math.unit(760, "lb"),
  57293. name: "Front",
  57294. image: {
  57295. source: "./media/characters/rexx/front.svg",
  57296. extra: 786/750,
  57297. bottom: 17/803
  57298. },
  57299. extraAttributes: {
  57300. "pawLength": {
  57301. name: "Paw Length",
  57302. power: 1,
  57303. type: "length",
  57304. base: math.unit(27, "inches")
  57305. },
  57306. }
  57307. },
  57308. },
  57309. [
  57310. {
  57311. name: "Micro",
  57312. height: math.unit(2, "inches")
  57313. },
  57314. {
  57315. name: "Normal",
  57316. height: math.unit(8, "feet"),
  57317. default: true
  57318. },
  57319. {
  57320. name: "Macro",
  57321. height: math.unit(150, "feet")
  57322. },
  57323. ]
  57324. ))
  57325. characterMakers.push(() => makeCharacter(
  57326. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57327. {
  57328. front: {
  57329. height: math.unit(18, "feet"),
  57330. weight: math.unit(1975, "lb"),
  57331. name: "Front",
  57332. image: {
  57333. source: "./media/characters/draco/front.svg",
  57334. extra: 1325/1241,
  57335. bottom: 83/1408
  57336. }
  57337. },
  57338. back: {
  57339. height: math.unit(18, "feet"),
  57340. weight: math.unit(1975, "lb"),
  57341. name: "Back",
  57342. image: {
  57343. source: "./media/characters/draco/back.svg",
  57344. extra: 1332/1250,
  57345. bottom: 43/1375
  57346. }
  57347. },
  57348. dick: {
  57349. height: math.unit(7.5, "feet"),
  57350. name: "Dick",
  57351. image: {
  57352. source: "./media/characters/draco/dick.svg"
  57353. }
  57354. },
  57355. },
  57356. [
  57357. {
  57358. name: "Normal",
  57359. height: math.unit(18, "feet"),
  57360. default: true
  57361. },
  57362. ]
  57363. ))
  57364. characterMakers.push(() => makeCharacter(
  57365. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57366. {
  57367. front: {
  57368. height: math.unit(3.2, "meters"),
  57369. name: "Front",
  57370. image: {
  57371. source: "./media/characters/harriett/front.svg",
  57372. extra: 1966/1915,
  57373. bottom: 9/1975
  57374. }
  57375. },
  57376. },
  57377. [
  57378. {
  57379. name: "Normal",
  57380. height: math.unit(3.2, "meters"),
  57381. default: true
  57382. },
  57383. ]
  57384. ))
  57385. characterMakers.push(() => makeCharacter(
  57386. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57387. {
  57388. sitting: {
  57389. height: math.unit(0.8, "meter"),
  57390. name: "Sitting",
  57391. image: {
  57392. source: "./media/characters/serpentus/sitting.svg",
  57393. extra: 293/290,
  57394. bottom: 140/433
  57395. }
  57396. },
  57397. },
  57398. [
  57399. {
  57400. name: "Normal",
  57401. height: math.unit(0.8, "meter"),
  57402. default: true
  57403. },
  57404. ]
  57405. ))
  57406. characterMakers.push(() => makeCharacter(
  57407. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57408. {
  57409. front: {
  57410. height: math.unit(5.7174385736, "feet"),
  57411. name: "Front",
  57412. image: {
  57413. source: "./media/characters/nova-polecat/front.svg",
  57414. extra: 1317/1216,
  57415. bottom: 92/1409
  57416. }
  57417. },
  57418. },
  57419. [
  57420. {
  57421. name: "Normal",
  57422. height: math.unit(5.7174385736, "feet"),
  57423. default: true
  57424. },
  57425. ]
  57426. ))
  57427. characterMakers.push(() => makeCharacter(
  57428. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57429. {
  57430. front: {
  57431. height: math.unit(5 + 4/12, "feet"),
  57432. weight: math.unit(250, "lb"),
  57433. name: "Front",
  57434. image: {
  57435. source: "./media/characters/mook/front.svg",
  57436. extra: 1088/1037,
  57437. bottom: 132/1220
  57438. }
  57439. },
  57440. back: {
  57441. height: math.unit(5 + 1/12, "feet"),
  57442. weight: math.unit(250, "lb"),
  57443. name: "Back",
  57444. image: {
  57445. source: "./media/characters/mook/back.svg",
  57446. extra: 1184/905,
  57447. bottom: 96/1280
  57448. }
  57449. },
  57450. head: {
  57451. height: math.unit(1.85, "feet"),
  57452. name: "Head",
  57453. image: {
  57454. source: "./media/characters/mook/head.svg"
  57455. }
  57456. },
  57457. hand: {
  57458. height: math.unit(1.9, "feet"),
  57459. name: "Hand",
  57460. image: {
  57461. source: "./media/characters/mook/hand.svg"
  57462. }
  57463. },
  57464. palm: {
  57465. height: math.unit(1.84, "feet"),
  57466. name: "Palm",
  57467. image: {
  57468. source: "./media/characters/mook/palm.svg"
  57469. }
  57470. },
  57471. foot: {
  57472. height: math.unit(1.44, "feet"),
  57473. name: "Foot",
  57474. image: {
  57475. source: "./media/characters/mook/foot.svg"
  57476. }
  57477. },
  57478. sole: {
  57479. height: math.unit(1.44, "feet"),
  57480. name: "Sole",
  57481. image: {
  57482. source: "./media/characters/mook/sole.svg"
  57483. }
  57484. },
  57485. },
  57486. [
  57487. {
  57488. name: "Normal",
  57489. height: math.unit(5 + 4/12, "feet"),
  57490. default: true
  57491. },
  57492. {
  57493. name: "Big",
  57494. height: math.unit(12, "feet")
  57495. },
  57496. ]
  57497. ))
  57498. characterMakers.push(() => makeCharacter(
  57499. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57500. {
  57501. front: {
  57502. height: math.unit(6 + 10/12, "feet"),
  57503. weight: math.unit(233, "lb"),
  57504. name: "Front",
  57505. image: {
  57506. source: "./media/characters/kayla/front.svg",
  57507. extra: 1850/1775,
  57508. bottom: 65/1915
  57509. }
  57510. },
  57511. },
  57512. [
  57513. {
  57514. name: "Normal",
  57515. height: math.unit(6 + 10/12, "feet"),
  57516. default: true
  57517. },
  57518. {
  57519. name: "Amazonian",
  57520. height: math.unit(12 + 5/12, "feet")
  57521. },
  57522. {
  57523. name: "Mini Giantess",
  57524. height: math.unit(26, "feet")
  57525. },
  57526. {
  57527. name: "Giantess",
  57528. height: math.unit(200, "feet")
  57529. },
  57530. {
  57531. name: "Mega Giantess",
  57532. height: math.unit(2500, "feet")
  57533. },
  57534. {
  57535. name: "City Sized",
  57536. height: math.unit(50, "miles")
  57537. },
  57538. {
  57539. name: "Country Sized",
  57540. height: math.unit(500, "miles")
  57541. },
  57542. {
  57543. name: "Continent Sized",
  57544. height: math.unit(2500, "miles")
  57545. },
  57546. {
  57547. name: "Planet Sized",
  57548. height: math.unit(10000, "miles")
  57549. },
  57550. {
  57551. name: "Star Sized",
  57552. height: math.unit(5e6, "miles")
  57553. },
  57554. {
  57555. name: "Solar System Sized",
  57556. height: math.unit(125, "AU")
  57557. },
  57558. {
  57559. name: "Galaxy Sized",
  57560. height: math.unit(300e3, "lightyears")
  57561. },
  57562. {
  57563. name: "Universe Sized",
  57564. height: math.unit(200e9, "lightyears")
  57565. },
  57566. {
  57567. name: "Multiverse Sized",
  57568. height: math.unit(20, "exauniverses")
  57569. },
  57570. {
  57571. name: "Mother of Existence",
  57572. height: math.unit(1e6, "yottauniverses")
  57573. },
  57574. ]
  57575. ))
  57576. characterMakers.push(() => makeCharacter(
  57577. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57578. {
  57579. side: {
  57580. height: math.unit(9.5, "meters"),
  57581. name: "Side",
  57582. image: {
  57583. source: "./media/characters/kulve-ragnarok/side.svg",
  57584. extra: 364/326,
  57585. bottom: 50/414
  57586. }
  57587. },
  57588. },
  57589. [
  57590. {
  57591. name: "Normal",
  57592. height: math.unit(9.5, "meters"),
  57593. default: true
  57594. },
  57595. ]
  57596. ))
  57597. characterMakers.push(() => makeCharacter(
  57598. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57599. {
  57600. front: {
  57601. height: math.unit(8 + 9/12, "feet"),
  57602. name: "Front",
  57603. image: {
  57604. source: "./media/characters/atlas-goat/front.svg",
  57605. extra: 1462/1323,
  57606. bottom: 12/1474
  57607. }
  57608. },
  57609. },
  57610. [
  57611. {
  57612. name: "Normal",
  57613. height: math.unit(8 + 9/12, "feet"),
  57614. default: true
  57615. },
  57616. {
  57617. name: "Skyline",
  57618. height: math.unit(845, "feet")
  57619. },
  57620. {
  57621. name: "Orbital",
  57622. height: math.unit(93000, "miles")
  57623. },
  57624. {
  57625. name: "Constellation",
  57626. height: math.unit(27000, "lightyears")
  57627. },
  57628. ]
  57629. ))
  57630. characterMakers.push(() => makeCharacter(
  57631. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57632. {
  57633. side: {
  57634. height: math.unit(1.8, "meters"),
  57635. weight: math.unit(120, "kg"),
  57636. name: "Side",
  57637. image: {
  57638. source: "./media/characters/xie-ling/side.svg",
  57639. extra: 646/574,
  57640. bottom: 44/690
  57641. }
  57642. },
  57643. },
  57644. [
  57645. {
  57646. name: "Tiny",
  57647. height: math.unit(1.80, "meters")
  57648. },
  57649. {
  57650. name: "Small",
  57651. height: math.unit(6, "meters")
  57652. },
  57653. {
  57654. name: "Medium",
  57655. height: math.unit(15, "meters")
  57656. },
  57657. {
  57658. name: "Normal",
  57659. height: math.unit(30, "meters"),
  57660. default: true
  57661. },
  57662. {
  57663. name: "Above Normal",
  57664. height: math.unit(60, "meters")
  57665. },
  57666. {
  57667. name: "Big",
  57668. height: math.unit(220, "meters")
  57669. },
  57670. {
  57671. name: "Giant",
  57672. height: math.unit(2.2, "km")
  57673. },
  57674. {
  57675. name: "Macro",
  57676. height: math.unit(25, "km")
  57677. },
  57678. {
  57679. name: "Mega Macro",
  57680. height: math.unit(350, "km")
  57681. },
  57682. {
  57683. name: "Mega Macro+",
  57684. height: math.unit(5000, "km")
  57685. },
  57686. {
  57687. name: "Goddess",
  57688. height: math.unit(3, "multiverses")
  57689. },
  57690. ]
  57691. ))
  57692. characterMakers.push(() => makeCharacter(
  57693. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57694. {
  57695. frontSfw: {
  57696. height: math.unit(5 + 11/12, "feet"),
  57697. weight: math.unit(210, "lb"),
  57698. name: "Front",
  57699. image: {
  57700. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57701. extra: 1928/1821,
  57702. bottom: 45/1973
  57703. }
  57704. },
  57705. backSfw: {
  57706. height: math.unit(5 + 11/12, "feet"),
  57707. weight: math.unit(210, "lb"),
  57708. name: "Back",
  57709. image: {
  57710. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57711. extra: 1920/1813,
  57712. bottom: 34/1954
  57713. }
  57714. },
  57715. frontNsfw: {
  57716. height: math.unit(5 + 11/12, "feet"),
  57717. weight: math.unit(210, "lb"),
  57718. name: "Front (NSFW)",
  57719. image: {
  57720. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57721. extra: 1928/1821,
  57722. bottom: 45/1973
  57723. }
  57724. },
  57725. backNsfw: {
  57726. height: math.unit(5 + 11/12, "feet"),
  57727. weight: math.unit(210, "lb"),
  57728. name: "Back (NSFW)",
  57729. image: {
  57730. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57731. extra: 1920/1813,
  57732. bottom: 34/1954
  57733. }
  57734. },
  57735. },
  57736. [
  57737. {
  57738. name: "Normal",
  57739. height: math.unit(5 + 11/12, "feet"),
  57740. default: true
  57741. },
  57742. {
  57743. name: "Goddess",
  57744. height: math.unit(20 + 3/12, "feet")
  57745. },
  57746. {
  57747. name: "Breaker of Man",
  57748. height: math.unit(329 + 9/12, "feet")
  57749. },
  57750. {
  57751. name: "Solar Justice",
  57752. height: math.unit(0.6, "solarradii")
  57753. },
  57754. {
  57755. name: "She Who Judges",
  57756. height: math.unit(1, "universe")
  57757. },
  57758. ]
  57759. ))
  57760. characterMakers.push(() => makeCharacter(
  57761. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57762. {
  57763. casual_front: {
  57764. height: math.unit(6 + 1/12, "feet"),
  57765. weight: math.unit(190, "lb"),
  57766. preyCapacity: math.unit(1, "people"),
  57767. name: "Front",
  57768. image: {
  57769. source: "./media/characters/managarmr/casual-front.svg",
  57770. extra: 411/381,
  57771. bottom: 15/426
  57772. },
  57773. extraAttributes: {
  57774. "pawSize": {
  57775. name: "Paw Size",
  57776. power: 1,
  57777. type: "length",
  57778. base: math.unit(0.2, "meters")
  57779. },
  57780. },
  57781. form: "casual",
  57782. },
  57783. casual_back: {
  57784. height: math.unit(6 + 1/12, "feet"),
  57785. weight: math.unit(190, "lb"),
  57786. preyCapacity: math.unit(1, "people"),
  57787. name: "Back",
  57788. image: {
  57789. source: "./media/characters/managarmr/casual-back.svg",
  57790. extra: 413/383,
  57791. bottom: 13/426
  57792. },
  57793. extraAttributes: {
  57794. "pawSize": {
  57795. name: "Paw Size",
  57796. power: 1,
  57797. type: "length",
  57798. base: math.unit(0.2, "meters")
  57799. },
  57800. },
  57801. form: "casual",
  57802. },
  57803. base_front: {
  57804. height: math.unit(7, "feet"),
  57805. weight: math.unit(210, "lb"),
  57806. preyCapacity: math.unit(2, "people"),
  57807. name: "Front",
  57808. image: {
  57809. source: "./media/characters/managarmr/base-front.svg",
  57810. extra: 580/485,
  57811. bottom: 32/612
  57812. },
  57813. extraAttributes: {
  57814. "wingspan": {
  57815. name: "Wingspan",
  57816. power: 1,
  57817. type: "length",
  57818. base: math.unit(4, "meters")
  57819. },
  57820. "pawSize": {
  57821. name: "Paw Size",
  57822. power: 1,
  57823. type: "length",
  57824. base: math.unit(0.2, "meters")
  57825. },
  57826. },
  57827. form: "base",
  57828. },
  57829. "true-divine_front": {
  57830. height: math.unit(40, "feet"),
  57831. weight: math.unit(39000, "lb"),
  57832. preyCapacity: math.unit(375, "people"),
  57833. name: "Front",
  57834. image: {
  57835. source: "./media/characters/managarmr/true-divine-front.svg",
  57836. extra: 725/573,
  57837. bottom: 120/845
  57838. },
  57839. extraAttributes: {
  57840. "wingspan": {
  57841. name: "Wingspan",
  57842. power: 1,
  57843. type: "length",
  57844. base: math.unit(20, "meters")
  57845. },
  57846. "pawSize": {
  57847. name: "Paw Size",
  57848. power: 1,
  57849. type: "length",
  57850. base: math.unit(1.5, "meters")
  57851. },
  57852. },
  57853. form: "true-divine",
  57854. },
  57855. },
  57856. [
  57857. {
  57858. name: "Normal",
  57859. height: math.unit(6 + 1/12, "feet"),
  57860. form: "casual",
  57861. default: true
  57862. },
  57863. {
  57864. name: "Normal",
  57865. height: math.unit(7, "feet"),
  57866. form: "base",
  57867. default: true
  57868. },
  57869. ],
  57870. {
  57871. "casual": {
  57872. name: "Casual",
  57873. default: true
  57874. },
  57875. "base": {
  57876. name: "Base",
  57877. },
  57878. "true-divine": {
  57879. name: "True Divine",
  57880. },
  57881. }
  57882. ))
  57883. characterMakers.push(() => makeCharacter(
  57884. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  57885. {
  57886. front: {
  57887. height: math.unit(1.8, "meters"),
  57888. weight: math.unit(110, "kg"),
  57889. name: "Front",
  57890. image: {
  57891. source: "./media/characters/mystra/front.svg",
  57892. extra: 529/442,
  57893. bottom: 31/560
  57894. }
  57895. },
  57896. frontLewd: {
  57897. height: math.unit(1.8, "meters"),
  57898. weight: math.unit(110, "kg"),
  57899. name: "Front (Lewd)",
  57900. image: {
  57901. source: "./media/characters/mystra/front-lewd.svg",
  57902. extra: 529/442,
  57903. bottom: 31/560
  57904. }
  57905. },
  57906. head: {
  57907. height: math.unit(1.63, "feet"),
  57908. name: "Head",
  57909. image: {
  57910. source: "./media/characters/mystra/head.svg"
  57911. }
  57912. },
  57913. paw: {
  57914. height: math.unit(1.9, "feet"),
  57915. name: "Paw",
  57916. image: {
  57917. source: "./media/characters/mystra/paw.svg"
  57918. }
  57919. },
  57920. },
  57921. [
  57922. {
  57923. name: "Incognito",
  57924. height: math.unit(2.3, "meters")
  57925. },
  57926. {
  57927. name: "Small Macro",
  57928. height: math.unit(300, "meters")
  57929. },
  57930. {
  57931. name: "Small Mega",
  57932. height: math.unit(2, "km")
  57933. },
  57934. {
  57935. name: "Mega",
  57936. height: math.unit(30, "km")
  57937. },
  57938. {
  57939. name: "Small Giga",
  57940. height: math.unit(100, "km")
  57941. },
  57942. {
  57943. name: "Giga",
  57944. height: math.unit(1000, "km"),
  57945. default: true
  57946. },
  57947. {
  57948. name: "Continental",
  57949. height: math.unit(5000, "km")
  57950. },
  57951. {
  57952. name: "Terra",
  57953. height: math.unit(20000, "km")
  57954. },
  57955. {
  57956. name: "Solar",
  57957. height: math.unit(2e6, "km")
  57958. },
  57959. {
  57960. name: "Galactic",
  57961. height: math.unit(528502, "lightyears")
  57962. },
  57963. {
  57964. name: "Universal",
  57965. height: math.unit(20, "universes")
  57966. },
  57967. ]
  57968. ))
  57969. characterMakers.push(() => makeCharacter(
  57970. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  57971. {
  57972. front: {
  57973. height: math.unit(2, "meters"),
  57974. weight: math.unit(140, "kg"),
  57975. name: "Front",
  57976. image: {
  57977. source: "./media/characters/caleb/front.svg",
  57978. extra: 873/817,
  57979. bottom: 47/920
  57980. }
  57981. },
  57982. back: {
  57983. height: math.unit(2, "meters"),
  57984. weight: math.unit(140, "kg"),
  57985. name: "Back",
  57986. image: {
  57987. source: "./media/characters/caleb/back.svg",
  57988. extra: 877/828,
  57989. bottom: 24/901
  57990. }
  57991. },
  57992. snakeTail: {
  57993. height: math.unit(1.44, "feet"),
  57994. name: "Snake Tail",
  57995. image: {
  57996. source: "./media/characters/caleb/snake-tail.svg"
  57997. }
  57998. },
  57999. dick: {
  58000. height: math.unit(2.6, "feet"),
  58001. name: "Dick",
  58002. image: {
  58003. source: "./media/characters/caleb/dick.svg"
  58004. }
  58005. },
  58006. },
  58007. [
  58008. {
  58009. name: "Incognito",
  58010. height: math.unit(3, "meters")
  58011. },
  58012. {
  58013. name: "Home Size",
  58014. height: math.unit(200, "meters"),
  58015. default: true
  58016. },
  58017. {
  58018. name: "Macro",
  58019. height: math.unit(500, "meters")
  58020. },
  58021. {
  58022. name: "Big Macro",
  58023. height: math.unit(5, "km")
  58024. },
  58025. {
  58026. name: "Giga",
  58027. height: math.unit(250, "km")
  58028. },
  58029. {
  58030. name: "Giga+",
  58031. height: math.unit(5000, "km")
  58032. },
  58033. {
  58034. name: "Small Terra",
  58035. height: math.unit(35e3, "km")
  58036. },
  58037. {
  58038. name: "Terra",
  58039. height: math.unit(2e6, "km")
  58040. },
  58041. {
  58042. name: "Terra+",
  58043. height: math.unit(1.5e6, "km")
  58044. },
  58045. ]
  58046. ))
  58047. characterMakers.push(() => makeCharacter(
  58048. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58049. {
  58050. front: {
  58051. height: math.unit(2, "meters"),
  58052. weight: math.unit(120, "kg"),
  58053. name: "Front",
  58054. image: {
  58055. source: "./media/characters/gilirian/front.svg",
  58056. extra: 805/737,
  58057. bottom: 13/818
  58058. }
  58059. },
  58060. side: {
  58061. height: math.unit(2, "meters"),
  58062. weight: math.unit(120, "kg"),
  58063. name: "Side",
  58064. image: {
  58065. source: "./media/characters/gilirian/side.svg",
  58066. extra: 810/746,
  58067. bottom: 6/816
  58068. }
  58069. },
  58070. back: {
  58071. height: math.unit(2, "meters"),
  58072. weight: math.unit(120, "kg"),
  58073. name: "Back",
  58074. image: {
  58075. source: "./media/characters/gilirian/back.svg",
  58076. extra: 815/745,
  58077. bottom: 15/830
  58078. }
  58079. },
  58080. frontNsfw: {
  58081. height: math.unit(2, "meters"),
  58082. weight: math.unit(120, "kg"),
  58083. name: "Front (NSFW)",
  58084. image: {
  58085. source: "./media/characters/gilirian/front-nsfw.svg",
  58086. extra: 805/737,
  58087. bottom: 13/818
  58088. }
  58089. },
  58090. sideNsfw: {
  58091. height: math.unit(2, "meters"),
  58092. weight: math.unit(120, "kg"),
  58093. name: "Side (NSFW)",
  58094. image: {
  58095. source: "./media/characters/gilirian/side-nsfw.svg",
  58096. extra: 810/746,
  58097. bottom: 6/816
  58098. }
  58099. },
  58100. },
  58101. [
  58102. {
  58103. name: "Incognito",
  58104. height: math.unit(2, "meters"),
  58105. default: true
  58106. },
  58107. {
  58108. name: "Macro",
  58109. height: math.unit(250, "meters")
  58110. },
  58111. {
  58112. name: "Big Macro",
  58113. height: math.unit(1500, "meters")
  58114. },
  58115. {
  58116. name: "Mega",
  58117. height: math.unit(40, "km")
  58118. },
  58119. {
  58120. name: "Giga",
  58121. height: math.unit(300, "km")
  58122. },
  58123. {
  58124. name: "Extra Giga",
  58125. height: math.unit(5000, "km")
  58126. },
  58127. {
  58128. name: "Small Terra",
  58129. height: math.unit(10e3, "km")
  58130. },
  58131. {
  58132. name: "Terra",
  58133. height: math.unit(3e5, "km")
  58134. },
  58135. {
  58136. name: "Galactic",
  58137. height: math.unit(369950, "lightyears")
  58138. },
  58139. ]
  58140. ))
  58141. characterMakers.push(() => makeCharacter(
  58142. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58143. {
  58144. front: {
  58145. height: math.unit(2.5, "meters"),
  58146. weight: math.unit(230, "lb"),
  58147. name: "Front",
  58148. image: {
  58149. source: "./media/characters/tarken/front.svg",
  58150. extra: 764/720,
  58151. bottom: 49/813
  58152. }
  58153. },
  58154. back: {
  58155. height: math.unit(2.5, "meters"),
  58156. weight: math.unit(230, "lb"),
  58157. name: "Back",
  58158. image: {
  58159. source: "./media/characters/tarken/back.svg",
  58160. extra: 756/720,
  58161. bottom: 35/791
  58162. }
  58163. },
  58164. frontNsfw: {
  58165. height: math.unit(2.5, "meters"),
  58166. weight: math.unit(230, "lb"),
  58167. name: "Front (NSFW)",
  58168. image: {
  58169. source: "./media/characters/tarken/front-nsfw.svg",
  58170. extra: 764/720,
  58171. bottom: 49/813
  58172. }
  58173. },
  58174. backNsfw: {
  58175. height: math.unit(2.5, "meters"),
  58176. weight: math.unit(230, "lb"),
  58177. name: "Back (NSFW)",
  58178. image: {
  58179. source: "./media/characters/tarken/back-nsfw.svg",
  58180. extra: 756/720,
  58181. bottom: 35/791
  58182. }
  58183. },
  58184. head: {
  58185. height: math.unit(2.22, "feet"),
  58186. name: "Head",
  58187. image: {
  58188. source: "./media/characters/tarken/head.svg"
  58189. }
  58190. },
  58191. tail: {
  58192. height: math.unit(5.25, "feet"),
  58193. name: "Tail",
  58194. image: {
  58195. source: "./media/characters/tarken/tail.svg"
  58196. }
  58197. },
  58198. dick: {
  58199. height: math.unit(1.95, "feet"),
  58200. name: "Dick",
  58201. image: {
  58202. source: "./media/characters/tarken/dick.svg"
  58203. }
  58204. },
  58205. hand: {
  58206. height: math.unit(1.78, "feet"),
  58207. name: "Hand",
  58208. image: {
  58209. source: "./media/characters/tarken/hand.svg"
  58210. }
  58211. },
  58212. beam: {
  58213. height: math.unit(1.5, "feet"),
  58214. name: "Beam",
  58215. image: {
  58216. source: "./media/characters/tarken/beam.svg"
  58217. }
  58218. },
  58219. },
  58220. [
  58221. {
  58222. name: "Original Size",
  58223. height: math.unit(2.5, "meters")
  58224. },
  58225. {
  58226. name: "Macro",
  58227. height: math.unit(150, "meters"),
  58228. default: true
  58229. },
  58230. {
  58231. name: "Macro+",
  58232. height: math.unit(300, "meters")
  58233. },
  58234. {
  58235. name: "Mega",
  58236. height: math.unit(2, "km")
  58237. },
  58238. {
  58239. name: "Mega+",
  58240. height: math.unit(35, "km")
  58241. },
  58242.  {
  58243. name: "Mega++",
  58244. height: math.unit(60, "km")
  58245. },
  58246. {
  58247. name: "Giga",
  58248. height: math.unit(200, "km")
  58249. },
  58250. {
  58251. name: "Giga+",
  58252. height: math.unit(2500, "km")
  58253. },
  58254. {
  58255. name: "Giga++",
  58256. height: math.unit(6600, "km")
  58257. },
  58258. {
  58259. name: "Terra",
  58260. height: math.unit(20000, "km")
  58261. },
  58262. {
  58263. name: "Terra+",
  58264. height: math.unit(300000, "km")
  58265. },
  58266. ]
  58267. ))
  58268. characterMakers.push(() => makeCharacter(
  58269. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58270. {
  58271. magpie_dressed: {
  58272. height: math.unit(1.7, "meters"),
  58273. weight: math.unit(70, "kg"),
  58274. name: "Dressed",
  58275. image: {
  58276. source: "./media/characters/otreus/magpie-dressed.svg",
  58277. extra: 691/672,
  58278. bottom: 116/807
  58279. },
  58280. form: "magpie",
  58281. default: true
  58282. },
  58283. magpie_nude: {
  58284. height: math.unit(1.7, "meters"),
  58285. weight: math.unit(70, "kg"),
  58286. name: "Nude",
  58287. image: {
  58288. source: "./media/characters/otreus/magpie-nude.svg",
  58289. extra: 691/672,
  58290. bottom: 116/807
  58291. },
  58292. form: "magpie",
  58293. },
  58294. magpie_dressedLewd: {
  58295. height: math.unit(1.7, "meters"),
  58296. weight: math.unit(70, "kg"),
  58297. name: "Dressed (Lewd)",
  58298. image: {
  58299. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58300. extra: 691/672,
  58301. bottom: 116/807
  58302. },
  58303. form: "magpie",
  58304. },
  58305. magpie_nudeLewd: {
  58306. height: math.unit(1.7, "meters"),
  58307. weight: math.unit(70, "kg"),
  58308. name: "Nude (Lewd)",
  58309. image: {
  58310. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58311. extra: 691/672,
  58312. bottom: 116/807
  58313. },
  58314. form: "magpie",
  58315. },
  58316. magpie_leftFoot: {
  58317. height: math.unit(1.58, "feet"),
  58318. name: "Left Foot",
  58319. image: {
  58320. source: "./media/characters/otreus/magpie-left-foot.svg"
  58321. },
  58322. form: "magpie",
  58323. },
  58324. magpie_rightFoot: {
  58325. height: math.unit(1.58, "feet"),
  58326. name: "Right Foot",
  58327. image: {
  58328. source: "./media/characters/otreus/magpie-right-foot.svg"
  58329. },
  58330. form: "magpie",
  58331. },
  58332. magpie_wingspan: {
  58333. height: math.unit(2, "meters"),
  58334. weight: math.unit(70, "kg"),
  58335. name: "Wingspan",
  58336. image: {
  58337. source: "./media/characters/otreus/magpie-wingspan.svg"
  58338. },
  58339. extraAttributes: {
  58340. "wingspan": {
  58341. name: "Wingspan",
  58342. power: 1,
  58343. type: "length",
  58344. base: math.unit(3.35, "meters")
  58345. },
  58346. },
  58347. form: "magpie",
  58348. },
  58349. hippogriff_dressed: {
  58350. height: math.unit(1.7, "meters"),
  58351. weight: math.unit(70, "kg"),
  58352. name: "Dressed",
  58353. image: {
  58354. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58355. extra: 710/689,
  58356. bottom: 67/777
  58357. },
  58358. form: "hippogriff",
  58359. default: true
  58360. },
  58361. hippogriff_nude: {
  58362. height: math.unit(1.7, "meters"),
  58363. weight: math.unit(70, "kg"),
  58364. name: "Nude",
  58365. image: {
  58366. source: "./media/characters/otreus/hippogriff-nude.svg",
  58367. extra: 710/689,
  58368. bottom: 67/777
  58369. },
  58370. form: "hippogriff",
  58371. },
  58372. hippogriff_dressedLewd: {
  58373. height: math.unit(1.7, "meters"),
  58374. weight: math.unit(70, "kg"),
  58375. name: "Dressed (Lewd)",
  58376. image: {
  58377. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58378. extra: 710/689,
  58379. bottom: 67/777
  58380. },
  58381. form: "hippogriff",
  58382. },
  58383. hippogriff_nudeLewd: {
  58384. height: math.unit(1.7, "meters"),
  58385. weight: math.unit(70, "kg"),
  58386. name: "Nude (Lewd)",
  58387. image: {
  58388. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58389. extra: 710/689,
  58390. bottom: 67/777
  58391. },
  58392. form: "hippogriff",
  58393. },
  58394. },
  58395. [
  58396. {
  58397. name: "Original Size",
  58398. height: math.unit(1.7, "meters"),
  58399. allForms: true
  58400. },
  58401. {
  58402. name: "Incognito Size",
  58403. height: math.unit(2, "meters"),
  58404. allForms: true
  58405. },
  58406. {
  58407. name: "Mega",
  58408. height: math.unit(2, "km"),
  58409. allForms: true
  58410. },
  58411. {
  58412. name: "Mega+",
  58413. height: math.unit(40, "km"),
  58414. allForms: true
  58415. },
  58416. {
  58417. name: "Giga",
  58418. height: math.unit(250, "km"),
  58419. allForms: true
  58420. },
  58421. {
  58422. name: "Giga+",
  58423. height: math.unit(3000, "km"),
  58424. allForms: true
  58425. },
  58426. {
  58427. name: "Terra",
  58428. height: math.unit(20000, "km"),
  58429. allForms: true
  58430. },
  58431. {
  58432. name: "Solar (Home Size)",
  58433. height: math.unit(3e6, "km"),
  58434. allForms: true,
  58435. default: true
  58436. },
  58437. ],
  58438. {
  58439. "magpie": {
  58440. name: "Magpie",
  58441. default: true
  58442. },
  58443. "hippogriff": {
  58444. name: "Hippogriff",
  58445. },
  58446. }
  58447. ))
  58448. characterMakers.push(() => makeCharacter(
  58449. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58450. {
  58451. frontDressed: {
  58452. height: math.unit(1.8, "meters"),
  58453. weight: math.unit(90, "kg"),
  58454. name: "Front (Dressed)",
  58455. image: {
  58456. source: "./media/characters/thalia/front-dressed.svg",
  58457. extra: 478/402,
  58458. bottom: 55/533
  58459. }
  58460. },
  58461. backDressed: {
  58462. height: math.unit(1.8, "meters"),
  58463. weight: math.unit(90, "kg"),
  58464. name: "Back (Dressed)",
  58465. image: {
  58466. source: "./media/characters/thalia/back-dressed.svg",
  58467. extra: 500/424,
  58468. bottom: 15/515
  58469. }
  58470. },
  58471. frontNude: {
  58472. height: math.unit(1.8, "meters"),
  58473. weight: math.unit(90, "kg"),
  58474. name: "Front (Nude)",
  58475. image: {
  58476. source: "./media/characters/thalia/front-nude.svg",
  58477. extra: 478/402,
  58478. bottom: 55/533
  58479. }
  58480. },
  58481. backNude: {
  58482. height: math.unit(1.8, "meters"),
  58483. weight: math.unit(90, "kg"),
  58484. name: "Back (Nude)",
  58485. image: {
  58486. source: "./media/characters/thalia/back-nude.svg",
  58487. extra: 500/424,
  58488. bottom: 15/515
  58489. }
  58490. },
  58491. },
  58492. [
  58493. {
  58494. name: "Incognito",
  58495. height: math.unit(3, "meters")
  58496. },
  58497. {
  58498. name: "Macro",
  58499. height: math.unit(500, "meters")
  58500. },
  58501. {
  58502. name: "Mega",
  58503. height: math.unit(5, "km")
  58504. },
  58505. {
  58506. name: "Mega+",
  58507. height: math.unit(30, "km")
  58508. },
  58509. {
  58510. name: "Giga",
  58511. height: math.unit(350, "km")
  58512. },
  58513. {
  58514. name: "Giga+",
  58515. height: math.unit(4000, "km")
  58516. },
  58517. {
  58518. name: "Terra",
  58519. height: math.unit(35000, "km")
  58520. },
  58521. {
  58522. name: "Original Size",
  58523. height: math.unit(130000, "km")
  58524. },
  58525. {
  58526. name: "Solar (Home Size)",
  58527. height: math.unit(4e6, "km"),
  58528. default: true
  58529. },
  58530. ]
  58531. ))
  58532. characterMakers.push(() => makeCharacter(
  58533. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58534. {
  58535. front: {
  58536. height: math.unit(1.8, "meters"),
  58537. weight: math.unit(95, "kg"),
  58538. name: "Front",
  58539. image: {
  58540. source: "./media/characters/shango/front.svg",
  58541. extra: 1925/1774,
  58542. bottom: 67/1992
  58543. }
  58544. },
  58545. back: {
  58546. height: math.unit(1.8, "meters"),
  58547. weight: math.unit(95, "kg"),
  58548. name: "Back",
  58549. image: {
  58550. source: "./media/characters/shango/back.svg",
  58551. extra: 1915/1766,
  58552. bottom: 52/1967
  58553. }
  58554. },
  58555. frontLewd: {
  58556. height: math.unit(1.8, "meters"),
  58557. weight: math.unit(95, "kg"),
  58558. name: "Front (Lewd)",
  58559. image: {
  58560. source: "./media/characters/shango/front-lewd.svg",
  58561. extra: 1925/1774,
  58562. bottom: 67/1992
  58563. }
  58564. },
  58565. backLewd: {
  58566. height: math.unit(1.8, "meters"),
  58567. weight: math.unit(95, "kg"),
  58568. name: "Back (Lewd)",
  58569. image: {
  58570. source: "./media/characters/shango/back-lewd.svg",
  58571. extra: 1915/1766,
  58572. bottom: 52/1967
  58573. }
  58574. },
  58575. maw: {
  58576. height: math.unit(1.64, "feet"),
  58577. name: "Maw",
  58578. image: {
  58579. source: "./media/characters/shango/maw.svg"
  58580. }
  58581. },
  58582. dick: {
  58583. height: math.unit(2.14, "feet"),
  58584. name: "Dick",
  58585. image: {
  58586. source: "./media/characters/shango/dick.svg"
  58587. }
  58588. },
  58589. },
  58590. [
  58591. {
  58592. name: "Incognito",
  58593. height: math.unit(1.8, "meters")
  58594. },
  58595. {
  58596. name: "Home Size",
  58597. height: math.unit(60, "meters"),
  58598. default: true
  58599. },
  58600. {
  58601. name: "Macro",
  58602. height: math.unit(450, "meters")
  58603. },
  58604. {
  58605. name: "Mega",
  58606. height: math.unit(6, "km")
  58607. },
  58608. {
  58609. name: "Mega+",
  58610. height: math.unit(35, "km")
  58611. },
  58612. {
  58613. name: "Giga",
  58614. height: math.unit(500, "km")
  58615. },
  58616. {
  58617. name: "Giga+",
  58618. height: math.unit(5000, "km")
  58619. },
  58620. {
  58621. name: "Terra",
  58622. height: math.unit(60000, "km")
  58623. },
  58624. {
  58625. name: "Terra+",
  58626. height: math.unit(400000, "km")
  58627. },
  58628. ]
  58629. ))
  58630. characterMakers.push(() => makeCharacter(
  58631. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58632. {
  58633. front: {
  58634. height: math.unit(2, "meters"),
  58635. weight: math.unit(95, "kg"),
  58636. name: "Front",
  58637. image: {
  58638. source: "./media/characters/osiris-gryphon/front.svg",
  58639. extra: 1508/1313,
  58640. bottom: 87/1595
  58641. }
  58642. },
  58643. back: {
  58644. height: math.unit(2, "meters"),
  58645. weight: math.unit(95, "kg"),
  58646. name: "Back",
  58647. image: {
  58648. source: "./media/characters/osiris-gryphon/back.svg",
  58649. extra: 1436/1309,
  58650. bottom: 64/1500
  58651. }
  58652. },
  58653. frontLewd: {
  58654. height: math.unit(2, "meters"),
  58655. weight: math.unit(95, "kg"),
  58656. name: "Front-lewd",
  58657. image: {
  58658. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58659. extra: 1508/1313,
  58660. bottom: 87/1595
  58661. }
  58662. },
  58663. wing: {
  58664. height: math.unit(6.3333, "feet"),
  58665. name: "Wing",
  58666. image: {
  58667. source: "./media/characters/osiris-gryphon/wing.svg"
  58668. }
  58669. },
  58670. },
  58671. [
  58672. {
  58673. name: "Incognito",
  58674. height: math.unit(2, "meters")
  58675. },
  58676. {
  58677. name: "Home Size",
  58678. height: math.unit(30, "meters"),
  58679. default: true
  58680. },
  58681. {
  58682. name: "Macro",
  58683. height: math.unit(100, "meters")
  58684. },
  58685. {
  58686. name: "Macro+",
  58687. height: math.unit(350, "meters")
  58688. },
  58689. {
  58690. name: "Mega",
  58691. height: math.unit(40, "km")
  58692. },
  58693. {
  58694. name: "Giga",
  58695. height: math.unit(300, "km")
  58696. },
  58697. {
  58698. name: "Giga+",
  58699. height: math.unit(2000, "km")
  58700. },
  58701. {
  58702. name: "Terra",
  58703. height: math.unit(30000, "km")
  58704. },
  58705. ]
  58706. ))
  58707. //characters
  58708. function makeCharacters() {
  58709. const results = [];
  58710. characterMakers.forEach(character => {
  58711. results.push(character());
  58712. });
  58713. return results;
  58714. }